/* ==========================================================================
   Aurelle — implementation of "Aurelle Site" design (Claude Design)
   Palette: warm cream / paper white / espresso ink / terracotta accent
   Type: Cormorant Garamond (display) + Karla (text)
   ========================================================================== */

:root {
    --cream: #f6f1e8;
    --paper: #fffdf8;
    --ink: #2b241c;
    --muted: #6f665a;
    --faint: #8c8172;
    --line: #e4dbc9;
    --line-soft: #efe8da;
    --accent: #a4522e;
    --accent-deep: #7d3d20;
    --sand: #c9bda6;
    --rose: #d9b8a4;
    --dark-muted: #a99c86;
    --gold: #d2a86a;
    --serif: 'Cormorant Garamond', Georgia, serif;
    --sans: 'Karla', -apple-system, sans-serif;
}

/* ---------- Base ---------- */

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    margin: 0;
    min-width: 320px;
    background: var(--cream);
    font-family: var(--sans);
    color: var(--ink);
    -webkit-font-smoothing: antialiased;
}

::selection { background: var(--accent); color: var(--cream); }

a { color: var(--accent); text-decoration: none; }
a:hover { color: var(--accent-deep); }

button {
    font-family: var(--sans);
    cursor: pointer;
}

input, select, textarea { font-family: var(--sans); }

[hidden] { display: none !important; }

:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 2px;
}

.shell {
    max-width: 1200px;
    margin: 0 auto;
    padding-inline: clamp(16px, 4vw, 40px);
}

.anchor { scroll-margin-top: 80px; }
.anchor-tight { scroll-margin-top: 100px; }

/* ---------- Shared pieces ---------- */

.kicker {
    margin: 0 0 14px;
    font: 500 11px var(--sans);
    letter-spacing: .26em;
    text-transform: uppercase;
    color: var(--accent);
}

.kicker-gold { color: var(--gold); }

.section-title {
    margin: 0;
    font-family: var(--serif);
    font-weight: 500;
    font-size: clamp(30px, 4.5vw, 46px);
    line-height: 1.1;
}

.section-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 36px;
}

.section-intro {
    margin: 0;
    font: 300 14px/1.65 var(--sans);
    color: var(--muted);
    max-width: 360px;
    text-wrap: pretty;
}

.pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 30px;
    border: 1px solid transparent;
    border-radius: 999px;
    font: 500 14px var(--sans);
    transition: background-color .18s ease, color .18s ease, border-color .18s ease;
}

.pill-ink { background: var(--ink); color: var(--cream); }
.pill-ink:hover { background: var(--accent); color: var(--cream); }

.pill-ghost { border-color: var(--sand); color: var(--ink); background: transparent; }
.pill-ghost:hover { border-color: var(--accent); color: var(--accent); }

/* ---------- Nav ---------- */

.nav {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(246, 241, 232, .92);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--line);
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
    padding-block: 14px;
}

.nav-brand {
    font-family: var(--serif);
    font-size: 24px;
    font-weight: 600;
    letter-spacing: .02em;
    color: var(--ink);
}
.nav-brand:hover { color: var(--accent); }

.nav-links {
    display: flex;
    align-items: center;
    gap: clamp(12px, 2.5vw, 26px);
    flex-wrap: wrap;
}

.nav-links a {
    font: 500 12px var(--sans);
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--muted);
    transition: color .18s ease;
}
.nav-links a:hover { color: var(--accent); }

.nav-links .nav-cta {
    letter-spacing: .08em;
    color: var(--cream);
    background: var(--ink);
    padding: 11px 20px;
    border-radius: 999px;
    transition: background-color .18s ease;
}
.nav-links .nav-cta:hover { background: var(--accent); color: var(--cream); }

.nav-toggle { display: none; background: none; border: none; padding: 10px 4px; }
.nav-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--ink);
    margin: 4px 0;
    transition: transform .18s ease, opacity .18s ease;
}

@media (max-width: 860px) {
    .nav-toggle { display: block; }
    .nav-links {
        display: none;
        width: 100%;
        flex-direction: column;
        align-items: flex-start;
        gap: 18px;
        padding: 8px 0 16px;
    }
    .nav.nav-open .nav-links { display: flex; }
    .nav.nav-open .nav-toggle span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
    .nav.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
    .nav.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
}

/* ---------- Hero ---------- */

.hero .shell {
    padding-block: clamp(48px, 9vw, 110px) clamp(40px, 6vw, 80px);
    text-align: center;
}

.hero-kicker {
    margin: 0 0 20px;
    font: 500 11px var(--sans);
    letter-spacing: .28em;
    text-transform: uppercase;
    color: var(--accent);
}

.hero-title {
    margin: 0 auto;
    max-width: 820px;
    font-family: var(--serif);
    font-weight: 500;
    font-size: clamp(38px, 7vw, 76px);
    line-height: 1.08;
}
.hero-title em { color: var(--accent); }

.hero-sub {
    margin: 24px auto 34px;
    max-width: 560px;
    font: 300 clamp(15px, 2vw, 18px)/1.7 var(--sans);
    color: var(--muted);
    text-wrap: pretty;
}

.hero-actions {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-industries {
    display: flex;
    gap: clamp(14px, 3vw, 30px);
    justify-content: center;
    flex-wrap: wrap;
    margin: clamp(40px, 7vw, 70px) 0 0;
    font: 500 11px var(--sans);
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--faint);
}
.hero-industries .dot { color: var(--sand); }

/* ---------- Manifesto ---------- */

.manifesto {
    background: var(--paper);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.manifesto-inner {
    display: flex;
    gap: clamp(24px, 5vw, 64px);
    flex-wrap: wrap;
    align-items: baseline;
    padding-block: clamp(40px, 6vw, 72px);
}

.manifesto-kicker { flex: 1 1 240px; margin: 0; }

.manifesto-body { flex: 2 1 400px; }

.manifesto-lede {
    margin: 0;
    font-family: var(--serif);
    font-size: clamp(22px, 3vw, 30px);
    line-height: 1.4;
    color: var(--ink);
}
.manifesto-lede em { color: var(--accent); }

.manifesto-note {
    margin: 18px 0 0;
    font: 300 15px/1.7 var(--sans);
    color: var(--muted);
}

/* ---------- Templates ---------- */

.templates .shell { padding-block: clamp(48px, 8vw, 96px); }

.templates .section-title { max-width: 520px; }

.template-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
    gap: 20px;
}

.template-card {
    display: flex;
    flex-direction: column;
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 14px;
    overflow: hidden;
    transition: border-color .18s ease, box-shadow .18s ease;
}
.template-card:hover {
    border-color: var(--accent);
    box-shadow: 0 10px 30px rgba(139, 111, 71, .12);
}

.template-shot { display: block; }
.template-shot img {
    display: block;
    width: 100%;
    height: 200px;
    object-fit: cover;
    object-position: top;
    border-bottom: 1px solid var(--line);
}
@media (max-width: 700px) {
    /* phone cards show a portrait, phone-viewport screenshot */
    .template-shot img {
        height: auto;
        aspect-ratio: 39 / 56;
    }
}

.template-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 18px 20px;
}
.template-body p { margin: 0; }

.template-title-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 10px;
}

.template-name { font: 600 14px var(--sans); color: var(--ink); }

.template-for {
    font: 500 10px var(--sans);
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--faint);
    text-align: right;
}

.template-desc { font: 300 12.5px/1.6 var(--sans); color: var(--muted); }

.template-link-row { margin-top: auto; padding-top: 8px; }

.template-links { display: flex; gap: 16px; flex-wrap: wrap; }

.template-link {
    font: 500 12px var(--sans);
    color: var(--accent);
    border-bottom: 1px solid var(--rose);
    padding-bottom: 2px;
}

.swipe-hint {
    display: none;
    margin: 14px 0 0;
    text-align: center;
    font: 400 12px var(--sans);
    color: var(--faint);
}

@media (max-width: 700px) {
    .template-grid {
        display: flex;
        overflow-x: auto;
        gap: 14px;
        margin-inline: calc(-1 * clamp(16px, 4vw, 40px));
        padding-inline: clamp(16px, 4vw, 40px);
        padding-bottom: 8px;
        scroll-snap-type: x mandatory;
        scrollbar-width: none;
    }
    .template-grid::-webkit-scrollbar { display: none; }
    .template-card {
        flex: 0 0 80vw;
        max-width: 300px;
        scroll-snap-align: start;
    }
    .swipe-hint { display: block; }
}

/* ---------- Templates gallery page ---------- */

.templates-browse { margin: 26px 0 0; text-align: center; }

.gallery-page .shell { padding-block: clamp(48px, 8vw, 96px) clamp(32px, 5vw, 56px); }

.gallery-title { max-width: 560px; }

.filter-row {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 28px;
}

.filter-chip {
    background: var(--paper);
    border: 1px solid var(--line);
    color: var(--muted);
    font: 500 12.5px var(--sans);
    padding: 10px 18px;
    border-radius: 999px;
    min-height: 40px;
    transition: background-color .18s ease, color .18s ease, border-color .18s ease;
}
.filter-chip:hover { border-color: var(--accent); color: var(--accent); }
.filter-chip.is-active {
    background: var(--ink);
    border-color: var(--ink);
    color: var(--cream);
}

.gallery-note {
    margin: 26px 0 0;
    text-align: center;
    font: 300 12.5px var(--sans);
    color: var(--faint);
}

.gallery-cta { background: var(--paper); border-top: 1px solid var(--line); }

.gallery-cta-inner {
    padding-block: clamp(40px, 6vw, 72px);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

.gallery-cta-title { max-width: 420px; margin-bottom: 10px; }

.gallery-cta-copy {
    margin: 0;
    font: 300 14px/1.65 var(--sans);
    color: var(--muted);
    max-width: 460px;
}

@media (max-width: 700px) {
    /* the gallery lists vertically on phones (no carousel) */
    .template-grid.gallery-grid {
        display: grid;
        overflow-x: visible;
        margin-inline: 0;
        padding-inline: 0;
        scroll-snap-type: none;
    }
    .gallery-grid .template-card { flex: none; max-width: none; width: auto; }
}

/* ---------- Live demo ---------- */

.demo { background: var(--ink); }

.demo .shell { padding-block: clamp(48px, 8vw, 90px); }

.demo .section-head { margin-bottom: 30px; }

.demo-heading { color: var(--cream); }

.demo-intro { color: var(--dark-muted); max-width: 340px; }

.demo-tabs {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 22px;
}

.demo-tab {
    background: transparent;
    color: var(--dark-muted);
    border: 1px solid #4a3f33;
    font: 500 12px var(--sans);
    padding: 10px 18px;
    border-radius: 999px;
    transition: background-color .18s ease, color .18s ease, border-color .18s ease;
}
.demo-tab:hover { color: var(--cream); border-color: var(--dark-muted); }
.demo-tab.is-active {
    background: var(--cream);
    color: var(--ink);
    border-color: var(--cream);
}
.demo-tab:focus-visible { outline-color: var(--cream); }

.browser {
    --demo-accent: #7c8a68;
    position: relative;
    background: var(--paper);
    border-radius: 18px;
    overflow: hidden;
    user-select: none;
    -webkit-user-select: none;
    box-shadow: 0 20px 60px rgba(0, 0, 0, .3);
}

.browser-bar {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--line-soft);
    border-bottom: 1px solid var(--line);
    padding: 10px 16px;
}

.browser-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #dcd2bf;
    flex-shrink: 0;
}

.browser-url {
    flex: 1;
    text-align: center;
    background: var(--paper);
    border-radius: 6px;
    padding: 5px 12px;
    margin: 0 8px;
    font: 400 11px var(--sans);
    color: var(--faint);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.browser-open {
    font: 500 10px var(--sans);
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--accent);
    white-space: nowrap;
}

.demo-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
    padding: 16px clamp(18px, 3.5vw, 36px);
    border-bottom: 1px solid var(--line-soft);
}

.demo-brand {
    font-family: var(--serif);
    font-size: 22px;
    font-weight: 600;
    color: var(--demo-accent);
}

.demo-nav-links {
    display: flex;
    gap: 18px;
    align-items: center;
    flex-wrap: wrap;
    font: 500 11px var(--sans);
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--faint);
}

.demo-book-pill {
    background: var(--demo-accent);
    color: var(--paper);
    padding: 9px 16px;
    border-radius: 999px;
    letter-spacing: .06em;
}
.demo-book-pill:hover { color: var(--paper); filter: brightness(.92); }

.demo-hero {
    display: flex;
    gap: clamp(20px, 3.5vw, 40px);
    flex-wrap: wrap;
    align-items: center;
    padding: clamp(26px, 4.5vw, 50px) clamp(18px, 3.5vw, 36px);
}

.demo-hero-copy { flex: 1.2 1 280px; }

.demo-kicker {
    margin: 0 0 12px;
    font: 500 10px var(--sans);
    letter-spacing: .28em;
    text-transform: uppercase;
    color: var(--demo-accent);
}

.demo-hero-title {
    margin: 0;
    font-family: var(--serif);
    font-size: clamp(30px, 4vw, 44px);
    line-height: 1.1;
    color: var(--ink);
}

.demo-tagline {
    margin: 14px 0 20px;
    max-width: 380px;
    font: 300 14px/1.7 var(--sans);
    color: var(--muted);
}

.demo-hero-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    align-items: center;
}

.demo-hero-cta { font-size: 13px; padding: 13px 24px; }

.demo-social {
    font: 500 11px var(--sans);
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--faint);
}

.demo-imagery {
    flex: 1 1 240px;
    min-height: 200px;
    border-radius: 14px;
    background: linear-gradient(150deg, var(--demo-accent), var(--ink));
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    text-align: center;
}

.demo-imagery span {
    font: 500 10px var(--sans);
    letter-spacing: .24em;
    text-transform: uppercase;
    color: rgba(255, 253, 248, .75);
}

/* Booking flow */

.booking {
    display: flex;
    flex-wrap: wrap;
    border-top: 1px solid var(--line-soft);
}

.booking-services {
    flex: 1 1 300px;
    padding: clamp(20px, 3.5vw, 34px);
    border-right: 1px solid var(--line-soft);
}

.booking-right {
    flex: 1.1 1 300px;
    padding: clamp(20px, 3.5vw, 34px);
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.booking-steps {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.step-label {
    margin: 0 0 10px;
    font: 500 10px var(--sans);
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--faint);
}

.step-label-accent { color: var(--demo-accent); margin-bottom: 14px; }

.service-list {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.service-btn {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    width: 100%;
    background: var(--paper);
    border: 1px solid var(--line);
    padding: 12px 16px;
    border-radius: 10px;
    text-align: left;
    min-height: 44px;
    transition: background-color .18s ease, border-color .18s ease;
}
.service-btn:hover { border-color: var(--demo-accent); }

.service-btn .svc-name { font: 500 14px var(--sans); color: var(--ink); }
.service-btn .svc-price { font: 400 12px var(--sans); color: var(--faint); white-space: nowrap; }

.service-btn.is-selected {
    background: var(--demo-accent);
    border-color: var(--demo-accent);
}
.service-btn.is-selected .svc-name { color: var(--paper); }
.service-btn.is-selected .svc-price { color: rgba(255, 253, 248, .8); }

.chip-row {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
}

.chip {
    background: var(--paper);
    border: 1px solid var(--line);
    color: var(--ink);
    font: 500 12.5px var(--sans);
    padding: 11px 16px;
    border-radius: 10px;
    min-height: 44px;
    transition: background-color .18s ease, border-color .18s ease, color .18s ease;
}
.chip:hover { border-color: var(--demo-accent); }
.chip.is-selected {
    background: var(--demo-accent);
    border-color: var(--demo-accent);
    color: var(--paper);
}

.booking-confirm-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
    border-top: 1px solid var(--line);
    padding-top: 16px;
}

.booking-summary {
    margin: 0;
    font: 400 13px var(--sans);
    color: var(--muted);
}

.confirm-btn {
    background: var(--sand);
    color: var(--paper);
    border: none;
    font-size: 13px;
    padding: 13px 24px;
    min-height: 44px;
    cursor: default;
}
.confirm-btn.is-ready { background: var(--demo-accent); cursor: pointer; }

.booking-done {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    text-align: center;
    padding: 40px 10px;
    min-height: 300px;
}

.done-check {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--demo-accent);
    color: var(--paper);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
}

.done-title {
    margin: 0;
    font-family: var(--serif);
    font-size: 28px;
    color: var(--ink);
}

.done-copy {
    margin: 0;
    max-width: 320px;
    font: 400 14px/1.6 var(--sans);
    color: var(--muted);
}

.done-reset { margin-top: 6px; font-size: 12px; padding: 11px 20px; }

.demo-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
    background: var(--demo-accent);
    padding: 16px clamp(18px, 3.5vw, 36px);
}

.demo-meta {
    margin: 0;
    font: 400 12px/1.6 var(--sans);
    color: rgba(255, 253, 248, .85);
}

.demo-made {
    margin: 0;
    font: 500 10px var(--sans);
    letter-spacing: .18em;
    text-transform: uppercase;
    color: rgba(255, 253, 248, .7);
}

.watermark {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image: url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='200'%3E%3Ctext x='20' y='110' font-family='sans-serif' font-size='17' letter-spacing='4' fill='rgba(43,36,28,0.045)' transform='rotate(-18 150 100)'%3EAURELLE %C2%B7 DEMO%3C/text%3E%3C/svg%3E");
}

.demo-note {
    margin: 14px 0 0;
    text-align: center;
    font: 400 11.5px var(--sans);
    color: var(--dark-muted);
}

/* ---------- Features ---------- */

.features .shell { padding-block: clamp(48px, 8vw, 96px); }

.features-title { margin-bottom: 34px; max-width: 560px; }

.feature-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1px;
    background: var(--line);
    border: 1px solid var(--line);
    border-radius: 14px;
    overflow: hidden;
}
@media (min-width: 640px) {
    .feature-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1080px) {
    .feature-grid { grid-template-columns: repeat(4, 1fr); }
}

.feature-cell {
    background: var(--paper);
    padding: 26px 24px;
    transition: background-color .18s ease;
}
.feature-cell:hover { background: var(--cream); }

.feature-cell p { margin: 0; }

.feature-num {
    font-family: var(--serif);
    font-size: 20px;
    color: var(--accent);
    margin-bottom: 8px;
}

.feature-name {
    font: 600 15px var(--sans);
    color: var(--ink);
    margin-bottom: 6px;
}

.feature-desc { font: 300 13px/1.65 var(--sans); color: var(--muted); }

.feature-featured {
    grid-column: 1 / -1;
    background: var(--ink);
}
.feature-grid .feature-cell:last-child { grid-column: 1 / -1; }
.feature-featured:hover { background: var(--ink); }
.feature-tag {
    font: 600 10px var(--sans);
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 10px !important;
}
.feature-featured-main {
    display: flex;
    align-items: baseline;
    gap: 10px;
    margin-bottom: 6px;
}
.feature-featured .feature-num { margin-bottom: 0 !important; color: var(--gold); }
.feature-featured .feature-name { margin-bottom: 0 !important; color: var(--cream); font-size: 17px; }
.feature-featured .feature-desc { color: var(--dark-muted); max-width: 620px; }

/* ---------- Social care ---------- */

.social { background: var(--accent); }

.social .shell { padding-block: clamp(48px, 8vw, 90px); }

.social .kicker { color: #f0cbb5; }

.social .section-head { margin-bottom: 34px; }

.social-heading { color: var(--paper); max-width: 560px; }

.social-intro { color: #f0cbb5; max-width: 340px; }

.social-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr));
    gap: 16px;
}

.social-card {
    background: rgba(255, 253, 248, .09);
    border: 1px solid rgba(255, 253, 248, .18);
    border-radius: 14px;
    padding: 24px 22px;
}
.social-card p { margin: 0; }

.social-card-num {
    font-family: var(--serif);
    font-size: 20px;
    color: var(--paper);
    margin-bottom: 8px !important;
}

.social-card-desc { font: 300 13px/1.65 var(--sans); color: #f0cbb5; }

.social-foot {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 26px;
}

.social-note { margin: 0; font: 300 13px var(--sans); color: #f0cbb5; }
.social-note a { color: var(--paper); border-bottom: 1px solid rgba(255, 253, 248, .4); }
.social-note a:hover { color: var(--paper); border-bottom-color: var(--paper); }

.social-cta {
    background: var(--paper);
    color: var(--accent);
    font: 500 13px var(--sans);
    padding: 13px 24px;
    border-radius: 999px;
    transition: background-color .18s ease;
}
.social-cta:hover { background: #f0d9c4; color: var(--accent-deep); }

.social :focus-visible { outline-color: var(--paper); }

/* Consult-mode visit toggle & schedule hint */

.visit-row { margin-bottom: 12px; }
.visit-row .chip-pill { border-radius: 999px; padding: 10px 16px; }

.times-hint { margin: 0 0 6px; font: 300 12.5px var(--sans); color: var(--faint); }

/* ---------- Process ---------- */

.process {
    background: var(--paper);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.process .shell { padding-block: clamp(48px, 8vw, 96px); }

.process .section-title { margin-bottom: 12px; }

.process-intro {
    margin: 0 0 38px;
    max-width: 480px;
    font: 300 14px/1.65 var(--sans);
    color: var(--muted);
}

.step-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 220px), 1fr));
    gap: 20px;
}

.step {
    border-top: 2px solid var(--accent);
    padding-top: 16px;
}
.step p { margin: 0; }

.step-week {
    font: 500 10px var(--sans);
    letter-spacing: .24em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 8px;
}

.step-title {
    font-family: var(--serif);
    font-size: 22px;
    color: var(--ink);
    margin-bottom: 6px;
}

.step-desc { font: 300 13px/1.65 var(--sans); color: var(--muted); }

/* ---------- Pricing ---------- */

.pricing .shell { padding-block: clamp(48px, 8vw, 96px); }

.pricing-head { margin-bottom: 32px; }

.pricing-head .section-title { margin-bottom: 10px; }

.pricing-intro { max-width: 440px; }

.region-toggle {
    display: flex;
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 999px;
    padding: 4px;
    gap: 2px;
}

.region-btn {
    background: transparent;
    color: var(--muted);
    border: none;
    font: 500 12.5px var(--sans);
    padding: 10px 20px;
    border-radius: 999px;
    min-height: 40px;
    transition: background-color .18s ease, color .18s ease;
}
.region-btn.is-active { background: var(--ink); color: var(--cream); }

.plan-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 250px), 1fr));
    gap: 16px;
}

.plan {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 14px;
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 26px 24px;
}
.plan p { margin: 0; }

.plan-badge {
    position: absolute;
    top: -11px;
    left: 24px;
    background: var(--accent);
    color: var(--paper);
    font: 600 10px var(--sans);
    letter-spacing: .14em;
    text-transform: uppercase;
    padding: 5px 12px;
    border-radius: 999px;
}

.plan-name {
    font-family: var(--serif);
    font-size: 26px;
    color: var(--ink);
}

.plan-sub {
    font: 500 10px var(--sans);
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--faint);
    margin-top: 4px;
}

.plan-price {
    display: flex;
    align-items: baseline;
    gap: 6px;
}

.plan-amount {
    font-family: var(--serif);
    font-size: 38px;
    color: var(--ink);
}

.plan-per { font: 400 12px var(--sans); color: var(--faint); }

.plan-setup {
    font: 400 12px var(--sans);
    color: var(--faint);
    border-bottom: 1px solid var(--line);
    padding-bottom: 14px;
}

.plan-incl {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
}

.plan-incl li {
    display: flex;
    gap: 9px;
    font: 400 13px/1.5 var(--sans);
    color: var(--muted);
}
.plan-incl li::before { content: '·'; color: var(--accent); }

.plan-cta {
    text-align: center;
    font-size: 13px;
    padding: 13px 20px;
    background: transparent;
    border-color: var(--sand);
    color: var(--ink);
}
.plan-cta:hover { border-color: var(--accent); color: var(--accent); }

/* Featured plan (dark card) */

.plan-featured { background: var(--ink); border-color: var(--ink); }
.plan-featured .plan-name,
.plan-featured .plan-amount { color: var(--cream); }
.plan-featured .plan-sub,
.plan-featured .plan-per,
.plan-featured .plan-setup { color: var(--dark-muted); }
.plan-featured .plan-setup { border-bottom-color: var(--ink); }
.plan-featured .plan-incl li { color: #d8cdb9; }
.plan-featured .plan-cta {
    background: var(--accent);
    border-color: var(--accent);
    color: var(--paper);
}
.plan-featured .plan-cta:hover { background: var(--accent-deep); border-color: var(--accent-deep); color: var(--paper); }
.plan-featured :focus-visible { outline-color: var(--cream); }

.pricing-extras {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 22px;
}

.extra-card {
    flex: 1 1 260px;
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 20px 22px;
}
.extra-card p { margin: 0; }

.extra-label {
    font: 600 12px var(--sans);
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 6px;
}

.extra-copy { font: 300 13px/1.7 var(--sans); color: var(--muted); }

/* Plan audience lines & help */

.plan-who { font: 300 13px/1.55 var(--sans); color: var(--muted); }
.plan-featured .plan-who { color: #d8cdb9; }

.pricing-help {
    margin: 24px 0 0;
    text-align: center;
    font: 300 14px var(--sans);
    color: var(--muted);
}
.pricing-help a { border-bottom: 1px solid var(--rose); padding-bottom: 1px; }

/* ---------- Testimonials ---------- */

.quotes {
    background: var(--paper);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.quotes .shell { padding-block: clamp(48px, 8vw, 90px); }

.quotes-kicker { margin-bottom: 30px; }

.quote {
    margin: 0;
    border-left: 1px solid var(--rose);
    padding-left: 20px;
}

.quote blockquote {
    margin: 0;
    font-family: var(--serif);
    font-size: 19px;
    line-height: 1.45;
    font-style: italic;
    color: var(--ink);
}

.quote figcaption {
    margin-top: 12px;
    font: 500 11px var(--sans);
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--faint);
}

.quote-solo {
    border-left: none;
    padding-left: 0;
    max-width: 560px;
    margin: 0 auto;
    text-align: center;
}
.quote-solo blockquote { font-size: clamp(20px, 2.6vw, 26px); }
.quote-solo figcaption { margin-top: 14px; }

/* ---------- Contact ---------- */

.contact .shell { padding-block: clamp(48px, 8vw, 96px); }

.contact-inner {
    display: flex;
    gap: clamp(28px, 5vw, 64px);
    flex-wrap: wrap;
}

.contact-copy { flex: 1 1 300px; }

.contact-copy .section-title { margin-bottom: 14px; }

.contact-sub {
    margin: 0 0 26px;
    max-width: 400px;
    font: 300 14px/1.7 var(--sans);
    color: var(--muted);
}

.contact-channels {
    display: flex;
    flex-direction: column;
    gap: 12px;
    font: 400 14px var(--sans);
}

.contact-channels a { color: var(--ink); transition: color .18s ease; }
.contact-channels a:hover { color: var(--accent); }

.enquiry {
    flex: 1 1 320px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: clamp(22px, 3vw, 32px);
}

.enquiry-row {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.enquiry input,
.enquiry select,
.enquiry textarea {
    border: 1px solid var(--line);
    border-radius: 10px;
    padding: 13px 14px;
    font-size: 14px;
    background: var(--cream);
    color: var(--ink);
    min-height: 44px;
    width: 100%;
}
.enquiry-row input { width: auto; flex: 1 1 130px; }

.enquiry input:focus,
.enquiry select:focus,
.enquiry textarea:focus {
    outline: none;
    border-color: var(--accent);
}

.enquiry input::placeholder,
.enquiry textarea::placeholder { color: var(--faint); }

.enquiry textarea { resize: vertical; min-height: 100px; }

.enquiry-send {
    border: none;
    padding: 15px 24px;
    min-height: 48px;
}

.enquiry-note {
    margin: 0;
    text-align: center;
    font: 300 11.5px/1.5 var(--sans);
    color: var(--faint);
}

/* ---------- Footer ---------- */

.footer { background: var(--ink); }

.footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    padding-block: clamp(32px, 5vw, 48px);
}

.footer-brand {
    margin: 0;
    font-family: var(--serif);
    font-size: 22px;
    color: var(--cream);
}

.footer-edition {
    margin: 4px 0 0;
    font: 400 10px var(--sans);
    letter-spacing: .24em;
    text-transform: uppercase;
    color: var(--dark-muted);
}

.footer-links {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    font: 400 12px var(--sans);
}

.footer-links a { color: var(--dark-muted); transition: color .18s ease; }
.footer-links a:hover { color: var(--cream); }

.footer :focus-visible { outline-color: var(--cream); }

/* ---------- Reduced motion ---------- */

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after { transition: none !important; }
}
