:root {
    --ink: #2c2622;
    --ink-muted: #5c534c;
    /* Earth palette (replaces moss greens site-wide) */
    --moss: #5c4439;
    --moss-deep: #3a2924;
    --brand: #b8785d;
    --clay: #b8785d;
    --clay-hover: #9f654c;
    /* Shared horizontal rhythm: hero bar, open menu top, sticky strip */
    --menu-pad-l: clamp(2rem, 7vw, 4.75rem);
    --menu-pad-r: clamp(1.35rem, 3.8vw, 2.85rem);
    --hero-bar-pad-x: clamp(1.1rem, 3vw, 1.75rem);
    --hero-bar-pad-y-top: clamp(1.15rem, 2.8vw, 1.85rem);
    --hero-bar-pad-y-bottom: 0.85rem;
    --hero-bar-after: clamp(1.25rem, 3vw, 2rem);
    /* WhatsApp CTA: green biased toward the hue complement of #B18061 (cool teal) */
    --wa-cta: #2f8674;
    --wa-cta-hover: #24695a;
    --wa-cta-shadow: rgba(36, 105, 90, 0.35);
    --sand: #f3f1ec;
    --stone: #e8e4dc;
    --paper: #faf9f6;
    --white: #ffffff;
    --line: rgba(44, 38, 34, 0.12);
    --announce-h: 2.375rem;
    --hero-radius: clamp(20px, 3.5vw, 32px);
    /* Horizontal gutter around hero card and matching sticky strip (same as .hero-stage sides) */
    --hero-shell-pad-x: clamp(0.75rem, 2.5vw, 1.75rem);
    --menu-moss: #4a3a32;
    /* Scroll strip, hero overlay menu, slide-out drawer (match menu-bg art) */
    --sticky-menu-bg: #b8785d;
    --sticky-header-bg: var(--sticky-menu-bg);
    /* Top strip: darker clay than menus */
    --announcement-strip-bg: #5c3d31;
    /* Menu balloon art (bottom right): hero overlay + sticky drawer only */
    --menu-bg-art-w: min(680px, 72vw);
    /* Horizontal rules under menu chrome / above footer: align with nav padding */
    --menu-rule-height: 2px;
    --menu-rule-color: rgba(255, 255, 255, 0.92);
    /* Hero bar + sticky strip logos share height and max width */
    --chrome-logo-h: clamp(52px, 7.25vw, 76px);
    --sticky-bar-h: 4rem;

    --font-display: "Cormorant Garamond", Georgia, serif;
    --font-body: "Source Sans 3", system-ui, sans-serif;
    --container: 1140px;
    --ease: cubic-bezier(0.25, 0.1, 0.25, 1);
    /* Photos and media (logos use a tighter radius below) */
    --img-radius: clamp(12px, 1.65vw, 20px);
}

@supports (color: color-mix(in oklch, white, black)) {
    :root {
        --wa-cta: color-mix(in oklch, oklch(0.58 0.14 158) 62%, oklch(0.52 0.09 228) 38%);
        --wa-cta-hover: color-mix(in oklch, oklch(0.5 0.13 158) 58%, oklch(0.44 0.08 228) 42%);
    }
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
    }
}

body {
    font-family: var(--font-body);
    font-size: 1.0625rem;
    line-height: 1.65;
    color: var(--ink);
    background: #fdfcf8;
}

h1,
h2,
h3 {
    font-family: var(--font-display);
    font-weight: 600;
    letter-spacing: -0.02em;
    line-height: 1.15;
}

a {
    color: inherit;
    text-decoration: none;
}

a:hover {
    color: var(--clay);
}

img {
    display: block;
    max-width: 100%;
    height: auto;
    border-radius: var(--img-radius);
}

.logo-img,
.logo-img--hero,
.logo-img--sticky {
    border-radius: clamp(4px, 0.55vw, 10px);
}

ul {
    list-style: none;
}

.container {
    width: 100%;
    max-width: var(--container);
    margin-inline: auto;
    padding-inline: clamp(1.25rem, 4vw, 2rem);
}

/* ——— Announcement (above hero card) ——— */
.masthead {
    --announce-h: 2.375rem;
}

.announcement {
    background: var(--announcement-strip-bg);
    background: color-mix(in srgb, var(--sticky-menu-bg) 62%, #0f0a08);
    color: rgba(255, 255, 255, 0.95);
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    min-height: var(--announce-h);
}

.announcement-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: var(--announce-h);
    padding-block: 0.45rem;
    text-align: center;
}

.announcement-text {
    margin: 0;
    max-width: 42rem;
    line-height: 1.35;
}

.logo-link {
    display: inline-flex;
    align-items: center;
    line-height: 0;
    flex-shrink: 0;
}

.logo-img {
    height: 56px;
    width: auto;
    max-width: min(280px, 55vw);
    object-fit: contain;
    object-position: left center;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    min-height: 2.75rem;
    padding: 0.65rem 1.35rem;
    font-family: var(--font-body);
    font-size: 0.8125rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    border: none;
    border-radius: clamp(10px, 0.85vw, 14px);
    cursor: pointer;
    transition:
        background 0.2s var(--ease),
        color 0.2s var(--ease),
        border-color 0.2s var(--ease),
        box-shadow 0.2s var(--ease),
        transform 0.2s var(--ease);
}

.btn-primary {
    background: var(--clay);
    color: #fdfaf6;
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.14) inset, 0 4px 16px rgba(58, 41, 34, 0.18);
}

.btn-primary:hover {
    background: var(--clay-hover);
    color: #fff;
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.12) inset, 0 6px 20px rgba(58, 41, 34, 0.22);
}

.btn-primary:active {
    transform: translateY(1px);
}

.btn-outline-light {
    background: transparent;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.65);
}

.btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
}

/* Light “pill” control on dark earth sections (specs, footer CTAs) */
.btn-surface {
    background: #fdfaf6;
    color: var(--moss-deep);
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.45) inset, 0 4px 18px rgba(22, 14, 10, 0.28);
}

.btn-surface:hover {
    background: #fff;
    color: var(--moss-deep);
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.55) inset, 0 6px 22px rgba(22, 14, 10, 0.32);
}

.btn-surface:active {
    transform: translateY(1px);
}

.btn-inline {
    margin-top: 1.25rem;
}

.btn-block {
    width: 100%;
    padding-block: 0.9rem;
}

.btn-hero-wa {
    background: rgba(255, 252, 247, 0.92);
    color: var(--moss-deep);
    border: 1px solid rgba(255, 255, 255, 0.62);
    border-radius: clamp(10px, 0.85vw, 14px);
    text-transform: none;
    font-weight: 700;
    font-size: 0.86rem;
    letter-spacing: 0.01em;
    min-height: 2.75rem;
    padding: 0.35rem 1.1rem 0.35rem 0.38rem;
    white-space: nowrap;
    box-shadow:
        0 1px 0 rgba(255, 255, 255, 0.85) inset,
        0 1px 0 rgba(44, 38, 34, 0.06) inset,
        0 6px 22px rgba(22, 14, 10, 0.18);
}

.btn-hero-wa:hover {
    background: #fff;
    color: var(--moss-deep);
    border-color: rgba(255, 255, 255, 0.78);
    box-shadow:
        0 1px 0 rgba(255, 255, 255, 1) inset,
        0 8px 28px rgba(22, 14, 10, 0.2);
}

.btn-hero-wa:active {
    transform: translateY(1px);
}

.btn-hero-wa:focus-visible {
    outline: 2px solid rgba(255, 252, 247, 0.9);
    outline-offset: 2px;
}

.btn-hero-wa-icon {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    display: grid;
    place-items: center;
    padding: 7px;
    color: #fff;
    background: var(--wa-cta);
    border-radius: clamp(8px, 0.75vw, 11px);
    box-shadow: 0 4px 12px rgba(36, 105, 90, 0.24);
}

.wa-label {
    display: inline-flex;
    align-items: center;
    min-height: 1.2em;
}

.hero-chrome-actions .btn-hero-wa {
    background: rgba(255, 252, 247, 0.86);
    border-color: rgba(255, 255, 255, 0.5);
    box-shadow:
        0 1px 0 rgba(255, 255, 255, 0.62) inset,
        0 10px 32px rgba(0, 0, 0, 0.24);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

.hero-chrome-actions .btn-hero-wa:hover {
    background: rgba(255, 252, 247, 0.94);
    border-color: rgba(255, 255, 255, 0.58);
}

@media (prefers-reduced-transparency: reduce) {
    .hero-chrome-actions .btn-hero-wa {
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        background: rgba(255, 252, 247, 0.97);
    }

    .hero-chrome-actions .btn-hero-wa:hover {
        background: #fff;
    }
}

body.nav-open {
    overflow: hidden;
}

/* ——— Hero: floating rounded card (Solterra-style) ——— */
.hero-stage {
    position: relative;
    z-index: 2;
    background: #fdfcf8;
    padding-top: clamp(0.5rem, 1.5vw, 1rem);
    padding-right: var(--hero-shell-pad-x);
    padding-bottom: var(--hero-shell-pad-x);
    padding-left: var(--hero-shell-pad-x);
}

.hero-frame {
    position: relative;
    max-width: 1440px;
    margin-inline: auto;
    min-height: min(88vh, 880px);
    min-height: min(88dvh, 880px);
    border-radius: var(--hero-radius);
    overflow: hidden;
    box-shadow: 0 28px 80px rgba(44, 38, 34, 0.12);
    display: flex;
    flex-direction: column;
}

.hero-frame.nav-open .hero-chrome,
.hero-frame.nav-open .hero-inner,
.hero-frame.nav-open .hero-scroll-hint {
    visibility: hidden;
    pointer-events: none;
}

.hero-media {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 56% 42%;
    border-radius: 0;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(105deg, rgba(28, 24, 22, 0.78) 0%, rgba(28, 24, 22, 0.42) 45%, rgba(72, 48, 38, 0.4) 100%);
    z-index: 1;
}

.hero-chrome {
    position: relative;
    z-index: 10;
    display: grid;
    grid-template-columns: minmax(0, 1fr) max-content;
    align-items: center;
    column-gap: 0.75rem;
    padding: var(--hero-bar-pad-y-top) var(--hero-bar-pad-x) var(--hero-bar-pad-y-bottom) var(--menu-pad-l);
}

.logo-link--hero-bar {
    display: flex;
    align-items: center;
    align-self: center;
    justify-content: flex-start;
    justify-self: start;
    min-width: 0;
    max-width: 100%;
    line-height: 0;
}

.hero-chrome-actions {
    display: inline-flex;
    align-items: center;
    align-self: center;
    justify-content: flex-end;
    flex-wrap: nowrap;
    gap: 0.5rem;
    justify-self: end;
    flex-shrink: 0;
}

/* Same vertical band as 48px menu toggle (hero chrome, sticky bar, open menu top) */
.hero-chrome-actions .btn-hero-wa,
.sticky-nav-actions .btn-hero-wa,
.hero-menu-top-actions .btn-hero-wa {
    min-height: 48px;
    padding-top: 0;
    padding-bottom: 0;
}

.logo-img--hero,
.hero-menu-logo {
    height: var(--chrome-logo-h);
    width: auto;
    max-width: min(300px, 64vw);
    object-fit: contain;
    object-position: left center;
}

.logo-img--sticky {
    height: var(--chrome-logo-h);
    width: auto;
    max-width: min(300px, 64vw);
    object-fit: contain;
    object-position: left center;
    filter: drop-shadow(0 1px 8px rgba(0, 0, 0, 0.22));
}

.logo-img--hero {
    filter: drop-shadow(0 2px 12px rgba(0, 0, 0, 0.3));
}

.menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 7px;
    width: 48px;
    height: 48px;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.36);
    border-radius: clamp(10px, 0.85vw, 14px);
    background: rgba(255, 252, 247, 0.12);
    box-shadow:
        0 1px 0 rgba(255, 255, 255, 0.16) inset,
        0 8px 24px rgba(0, 0, 0, 0.18);
    cursor: pointer;
    flex-shrink: 0;
    align-self: center;
    position: relative;
    z-index: 12;
    transition:
        background 0.2s var(--ease),
        border-color 0.2s var(--ease),
        transform 0.2s var(--ease);
}

.menu-toggle:hover {
    background: rgba(255, 252, 247, 0.2);
    border-color: rgba(255, 255, 255, 0.52);
}

.menu-toggle:active {
    transform: translateY(1px);
}

.menu-toggle:focus-visible {
    outline: 2px solid rgba(255, 252, 247, 0.86);
    outline-offset: 2px;
}

.menu-toggle span {
    display: block;
    width: 26px;
    height: 2px;
    background: #fff;
    border-radius: 1px;
    transition: transform 0.3s var(--ease);
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(4.5px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
    transform: translateY(-4.5px) rotate(-45deg);
}

/* Hero menu close: same two-bar X as sticky menu-toggle when open */
.menu-toggle--as-close span:nth-child(1) {
    transform: translateY(4.5px) rotate(45deg);
}

.menu-toggle--as-close span:nth-child(2) {
    transform: translateY(-4.5px) rotate(-45deg);
}

.hero-inner {
    position: relative;
    z-index: 2;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-self: flex-start;
    width: 100%;
    max-width: 52rem;
    color: #fff;
    padding: clamp(0.5rem, 2vw, 1rem) var(--hero-bar-pad-x) clamp(2rem, 5vw, 3rem) clamp(0.2rem, 0.9vw, 0.65rem);
}

@media (min-width: 769px) {
    .hero-inner {
        margin-inline: 0;
        max-width: min(60rem, calc(100vw - 2 * var(--hero-shell-pad-x)));
        padding-left: var(--menu-pad-l);
        padding-right: clamp(1rem, 2.5vw, 2rem);
    }
}

.hero-title {
    font-size: clamp(2.85rem, 7.25vw, 5.15rem);
    font-weight: 600;
    line-height: 1.02;
    margin-bottom: 1.25rem;
}

.hero-title-line {
    display: inline-block;
    white-space: nowrap;
    max-width: 100%;
}

.hero-title br {
    line-height: 0;
}

.hero-title .hero-title-line:nth-child(3) {
    margin-top: -0.08em;
}

.hero-title em {
    font-style: italic;
    font-weight: 600;
    color: #e8dcc8;
}

.hero-lead {
    font-size: clamp(1.05rem, 2vw, 1.2rem);
    max-width: 36em;
    opacity: 0.92;
    margin-bottom: 0;
    font-weight: 400;
    line-height: 1.6;
}

.hero-scroll-hint {
    position: relative;
    z-index: 2;
    margin-top: 1.25rem;
    padding: 0 0 clamp(0.75rem, 2vw, 1.25rem) 0;
    align-self: flex-start;
}

.hero-scroll-icon {
    display: flex;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.35);
    align-items: center;
    justify-content: center;
}

.hero-scroll-icon::after {
    content: "";
    width: 8px;
    height: 8px;
    border-right: 2px solid rgba(255, 255, 255, 0.85);
    border-bottom: 2px solid rgba(255, 255, 255, 0.85);
    transform: rotate(45deg) translateY(-2px);
}

/* In-card menu overlay (inside rounded hero frame) */
.hero-menu {
    position: absolute;
    inset: 0;
    z-index: 25;
    border-radius: inherit;
    background-color: var(--sticky-menu-bg);
    background-image: url("assets/menu-bg.png");
    background-repeat: no-repeat;
    background-position: right bottom;
    background-size: var(--menu-bg-art-w) auto;
    color: #fff;
    display: flex;
    flex-direction: column;
    transform: translateY(-100%);
    visibility: hidden;
    pointer-events: none;
    transition:
        transform 0.42s var(--ease),
        visibility 0s linear 0.42s;
}

.hero-frame.nav-open .hero-menu {
    transform: translateY(0);
    visibility: visible;
    pointer-events: auto;
    transition:
        transform 0.42s var(--ease),
        visibility 0s linear 0s;
}

.hero-menu-inner {
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 0;
    padding: 0;
}

.hero-menu-top {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1fr) max-content;
    align-items: center;
    column-gap: 0.75rem;
    padding: var(--hero-bar-pad-y-top) var(--hero-bar-pad-x) var(--hero-bar-pad-y-bottom) var(--menu-pad-l);
    background-color: transparent;
    border-bottom: none;
    flex-shrink: 0;
}

.hero-menu-top-actions {
    display: inline-flex;
    align-items: center;
    align-self: center;
    justify-content: flex-end;
    flex-wrap: nowrap;
    gap: 0.5rem;
    justify-self: end;
    flex-shrink: 0;
}

.hero-menu-logo {
    filter: drop-shadow(0 2px 12px rgba(0, 0, 0, 0.2));
}

.hero-menu-nav {
    flex: 1;
    min-height: 0;
    overflow-y: auto;
    padding: clamp(1.75rem, 4.5vw, 3rem) var(--menu-pad-r) clamp(1.5rem, 3.5vw, 2.5rem) var(--menu-pad-l);
}

.hero-menu-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.55rem clamp(2rem, 5vw, 3.5rem);
    max-width: 48rem;
}

.hero-menu-links a {
    font-family: var(--font-display);
    font-size: clamp(1.55rem, 4.2vw, 2.45rem);
    font-weight: 600;
    line-height: 1.28;
    letter-spacing: -0.02em;
    color: #fff;
    padding: 0.55rem 0;
    border-bottom: 1px solid transparent;
    transition: opacity 0.2s var(--ease);
}

.hero-menu-links a:hover {
    opacity: 0.85;
    color: #fff;
}

.hero-menu-foot {
    flex-shrink: 0;
    position: relative;
    margin-top: 0.25rem;
    padding: clamp(1.25rem, 3vw, 1.75rem) var(--menu-pad-r) clamp(1.25rem, 3vw, 1.75rem) var(--menu-pad-l);
    border-top: none;
}

.hero-menu-foot::before {
    content: "";
    position: absolute;
    left: var(--menu-pad-l);
    right: var(--menu-pad-r);
    top: 0;
    height: var(--menu-rule-height);
    background: var(--menu-rule-color);
    pointer-events: none;
}

.hero-menu-contact {
    font-size: clamp(0.9rem, 2vw, 1rem);
    font-weight: 600;
    letter-spacing: 0.04em;
    color: rgba(255, 255, 255, 0.88);
}

.hero-menu-contact:hover {
    color: #fff;
}

section[id] {
    scroll-margin-top: clamp(1rem, 4vw, 1.5rem);
}

html.has-sticky-nav {
    scroll-padding-top: calc(var(--sticky-bar-h) + env(safe-area-inset-top, 0px));
}

html.has-sticky-nav section[id] {
    scroll-margin-top: calc(var(--sticky-bar-h) + env(safe-area-inset-top, 0px) + 0.75rem);
}

/* Sticky: solid bar (Solterra-style); menu-bg + balloon art only on slide-out drawer */
.sticky-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1700;
    padding: max(0px, env(safe-area-inset-top, 0px)) var(--hero-shell-pad-x) 0;
    pointer-events: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-100%);
    transition: opacity 0.3s var(--ease), visibility 0.3s var(--ease), transform 0.32s var(--ease);
}

.sticky-nav.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

.sticky-nav-inner {
    pointer-events: auto;
    display: grid;
    grid-template-columns: minmax(0, 1fr) max-content;
    align-items: center;
    column-gap: 0.75rem;
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding: var(--hero-bar-pad-y-top) var(--hero-bar-pad-x) var(--hero-bar-pad-y-bottom) var(--menu-pad-l);
    color: #fff;
    background-color: var(--sticky-menu-bg);
    border-radius: 0 0 var(--hero-radius) var(--hero-radius);
    border: 1px solid rgba(44, 38, 34, 0.14);
    border-top: none;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.28);
    transition: border-radius 0.2s var(--ease), box-shadow 0.2s var(--ease), border-color 0.2s var(--ease);
}

body.sticky-menu-open .sticky-nav-inner {
    border-radius: 0;
    border-bottom: none;
    box-shadow: none;
}

.sticky-nav-actions {
    display: inline-flex;
    align-items: center;
    align-self: center;
    flex-wrap: nowrap;
    gap: 0.5rem;
    justify-self: end;
    flex-shrink: 0;
}

.menu-toggle--sticky span {
    background: #fff;
}

.sticky-menu-backdrop {
    position: fixed;
    inset: 0;
    z-index: 1685;
    background: rgba(22, 18, 16, 0.32);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.3s var(--ease), visibility 0.3s var(--ease);
}

body.sticky-menu-open .sticky-menu-backdrop {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.sticky-menu-drawer {
    position: fixed;
    top: var(--sticky-bar-h);
    left: 50%;
    z-index: 1690;
    display: flex;
    flex-direction: column;
    width: min(1440px, calc(100vw - 2 * var(--hero-shell-pad-x)));
    max-height: min(72vh, 28rem);
    max-height: min(72dvh, 28rem);
    overflow: hidden;
    color: #fff;
    background-color: var(--sticky-menu-bg);
    background-image: url("assets/menu-bg.png");
    background-repeat: no-repeat;
    background-position: right bottom;
    background-size: var(--menu-bg-art-w) auto;
    border-radius: 0 0 var(--hero-radius) var(--hero-radius);
    border: 1px solid rgba(44, 38, 34, 0.14);
    border-top: none;
    margin-top: -1px;
    box-shadow: none;
    transform: translate(-50%, calc(-100% - 2px));
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: transform 0.38s var(--ease), opacity 0.28s var(--ease), visibility 0.28s var(--ease), box-shadow 0.28s var(--ease);
}

body.sticky-menu-open .sticky-menu-drawer {
    transform: translate(-50%, -1px);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    box-shadow: 0 20px 48px rgba(0, 0, 0, 0.3);
}

.sticky-menu-drawer-inner {
    display: flex;
    flex-direction: column;
    min-height: 0;
    padding: 0;
}

.sticky-menu-drawer-nav {
    flex: 1;
    min-height: 0;
    overflow-y: auto;
    padding: clamp(1.75rem, 4.5vw, 3rem) var(--menu-pad-r) clamp(1.5rem, 3.5vw, 2.5rem) var(--menu-pad-l);
}

.sticky-menu-drawer-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.55rem clamp(2rem, 5vw, 3.5rem);
    max-width: 48rem;
}

.sticky-menu-drawer-links a {
    display: block;
    font-family: var(--font-display);
    font-size: clamp(1.55rem, 4.2vw, 2.45rem);
    font-weight: 600;
    line-height: 1.28;
    letter-spacing: -0.02em;
    color: #fff;
    padding: 0.55rem 0;
    border-bottom: 1px solid transparent;
    transition: opacity 0.2s var(--ease);
}

.sticky-menu-drawer-links a:hover {
    opacity: 0.85;
    color: #fff;
}

.sticky-menu-drawer a:hover {
    color: #fff;
}

.sticky-menu-drawer-foot {
    flex-shrink: 0;
    position: relative;
    padding: clamp(1.25rem, 3vw, 1.75rem) var(--menu-pad-r) clamp(1.25rem, 3vw, 1.75rem) var(--menu-pad-l);
    border-top: none;
    margin-top: 0.25rem;
}

.sticky-menu-drawer-foot::before {
    content: "";
    position: absolute;
    left: var(--menu-pad-l);
    right: var(--menu-pad-r);
    top: 0;
    height: var(--menu-rule-height);
    background: var(--menu-rule-color);
    pointer-events: none;
}

.sticky-menu-drawer-contact {
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    color: rgba(255, 255, 255, 0.9);
}

.sticky-menu-drawer-contact:hover {
    color: #fff;
}

/* ——— Decorative line art (SVG): full viewport width, clipped by section edges / overlap ——— */
.section-bg-line {
    position: relative;
    z-index: 0;
    overflow: hidden;
}

.section-bg-line::before {
    content: "";
    position: absolute;
    left: 50%;
    width: 100vw;
    margin-left: -50vw;
    top: clamp(-5.5rem, -14vw, -1.5rem);
    height: calc(100% + clamp(5.5rem, 14vw, 1.5rem) + 1px);
    background-repeat: no-repeat;
    pointer-events: none;
    z-index: 0;
}

.section-bg-line--1::before {
    background-image: url("assets/CB_bg_line_1.svg");
    background-position: 100% 0;
    background-size: 100vw auto;
}

.section-bg-line--2::before {
    background-image: url("assets/CB_bg_line_2.svg");
    background-position: max(2vw, 0.65rem) 0;
    background-size: min(130vw, 2800px) auto;
}

/* Why section: warm cream + sweeping lines (Solterra-style) */
.why.section-bg-line.section-bg-line--2::before {
    top: clamp(-4rem, -10vw, -1rem);
    background-position: 100% 0;
    background-size: min(155vw, 3200px) auto;
    opacity: 0.38;
    filter: sepia(0.55) saturate(0.42) hue-rotate(318deg) brightness(1.12);
}

.section-bg-line > * {
    position: relative;
    z-index: 1;
}

/* ——— Statement band ——— */
.statement {
    padding: clamp(3.5rem, 8vw, 5.5rem) 0;
    background: var(--paper);
    border-block: 1px solid var(--line);
}

.statement.section-bg-line {
    margin-top: clamp(-2.75rem, -6vw, -1rem);
    padding: calc(clamp(3.5rem, 8vw, 5.5rem) + clamp(2.75rem, 6vw, 1rem)) 0 clamp(3.5rem, 8vw, 5.5rem);
    border-top: none;
}

.statement-grid {
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    gap: clamp(2rem, 5vw, 4rem);
    align-items: start;
}

.statement-heading {
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    font-weight: 600;
    color: var(--moss-deep);
}

.statement-body {
    padding-top: 0.35rem;
}

.statement-accent {
    font-family: var(--font-display);
    font-size: clamp(1.2rem, 2.2vw, 1.45rem);
    color: var(--ink-muted);
    line-height: 1.55;
}

.statement-accent em {
    font-style: italic;
    color: var(--moss);
}

/* ——— Split band ——— */
.band {
    padding: clamp(3.5rem, 8vw, 5rem) 0;
}

.band-muted {
    background: var(--sand);
}

.band-tint {
    background: var(--stone);
}

.band-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(2rem, 5vw, 3.5rem);
    align-items: center;
}

.section-label {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--clay);
    margin-bottom: 0.75rem;
}

.center-label {
    text-align: center;
}

.section-title {
    font-size: clamp(1.85rem, 3.5vw, 2.65rem);
    color: var(--moss-deep);
    margin-bottom: 1.25rem;
}

.title-center {
    text-align: center;
    max-width: 40rem;
    margin-inline: auto;
    margin-bottom: 2.5rem;
}

.band-copy p + p {
    margin-top: 1rem;
    color: var(--ink-muted);
}

.band-figure {
    margin: 0;
    overflow: hidden;
    border-radius: var(--img-radius);
    box-shadow: 0 24px 60px rgba(44, 38, 34, 0.12);
}

.band-figure img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    border-radius: 0;
}

/* ——— Full bleed ——— */
.full-bleed {
    position: relative;
    z-index: 2;
    margin: 0 var(--hero-shell-pad-x);
    max-height: min(70vh, 720px);
    overflow: hidden;
    border-radius: var(--img-radius);
    box-shadow: 0 20px 50px rgba(44, 38, 34, 0.1);
}

.full-bleed img {
    width: 100%;
    height: min(70vh, 720px);
    object-fit: cover;
    border-radius: 0;
}

/* ——— Why (numbered) ——— */
.why {
    padding: clamp(3.5rem, 8vw, 5rem) 0;
    background: #f5f1eb;
    border-block: 1px solid var(--line);
}

.why-heading {
    font-family: var(--font-display);
    font-size: clamp(1.45rem, 3.4vw, 2.15rem);
    font-weight: 600;
    letter-spacing: -0.02em;
    line-height: 1.15;
    text-align: center;
    color: var(--moss-deep);
    margin: 0 auto clamp(1.75rem, 4vw, 2.5rem);
    max-width: 100%;
    white-space: nowrap;
}

.why.section-bg-line {
    margin-top: clamp(-2.5rem, -6vw, -1rem);
    padding: calc(clamp(3.5rem, 8vw, 5rem) + clamp(2.5rem, 6vw, 1rem)) 0 clamp(3.5rem, 8vw, 5rem);
    border-top: none;
    position: relative;
    z-index: 0;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(1.5rem, 4vw, 2.5rem);
}

.why-card {
    padding-top: 0.5rem;
    border-top: 2px solid var(--moss);
}

.why-index {
    font-family: var(--font-body);
    font-size: 0.8125rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    color: var(--clay);
    margin: 1rem 0 0.75rem;
}

.why-card h3 {
    font-size: 1.35rem;
    margin-bottom: 0.65rem;
    color: var(--moss-deep);
}

.why-card p {
    font-size: 0.98rem;
    color: var(--ink-muted);
}

/* ——— Areas ——— */
.areas {
    padding: clamp(4rem, 8vw, 6rem) 0;
    background:
        linear-gradient(180deg, rgba(255, 252, 247, 0.62), rgba(243, 241, 236, 0.92)),
        var(--sand);
    border-top: 1px solid var(--line);
}

.areas-shell {
    max-width: min(1180px, 100%);
}

.areas-head {
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(18rem, 0.75fr);
    gap: clamp(1.25rem, 4vw, 3rem);
    align-items: end;
    margin-bottom: clamp(1.5rem, 3vw, 2.1rem);
}

.areas-head .section-label {
    margin-bottom: 0.7rem;
}

.areas-head .section-title {
    margin-bottom: 0;
    max-width: 13em;
    font-size: clamp(2.15rem, 4.6vw, 3.85rem);
    line-height: 1.04;
}

.areas-intro {
    margin: 0 0 0.25rem;
    font-size: clamp(1rem, 1.7vw, 1.12rem);
    line-height: 1.65;
    color: var(--ink-muted);
}

.areas-proof-strip {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1px;
    overflow: hidden;
    margin-bottom: clamp(1.75rem, 4vw, 2.75rem);
    border: 1px solid rgba(92, 68, 57, 0.14);
    border-radius: clamp(14px, 1.6vw, 20px);
    background: rgba(92, 68, 57, 0.14);
    box-shadow: 0 16px 38px rgba(44, 38, 34, 0.045);
}

.areas-proof-item {
    padding: clamp(1rem, 2.4vw, 1.35rem);
    background: rgba(255, 252, 247, 0.88);
}

.areas-proof-label {
    display: block;
    margin-bottom: 0.35rem;
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    line-height: 1.3;
    text-transform: uppercase;
    color: var(--clay-hover);
}

.areas-proof-item strong {
    display: block;
    font-size: clamp(1rem, 2vw, 1.15rem);
    line-height: 1.28;
    color: var(--moss-deep);
}

.areas-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: clamp(1.5rem, 3vw, 2rem);
}

.area-card {
    background: #fffaf4;
    border: 1px solid rgba(92, 68, 57, 0.14);
    border-radius: clamp(16px, 1.8vw, 22px);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 18px 46px rgba(44, 38, 34, 0.06);
}

.area-media {
    margin: 0;
    position: relative;
    overflow: hidden;
    background: var(--moss-deep);
}

.area-media img {
    width: 100%;
    aspect-ratio: 16 / 9.4;
    object-fit: cover;
    border-radius: 0;
    transform: scale(1.01);
}

.area-media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 48%, rgba(28, 20, 16, 0.58));
    pointer-events: none;
}

.area-badge {
    position: absolute;
    right: 1rem;
    bottom: 1rem;
    z-index: 1;
    max-width: calc(100% - 2rem);
    padding: 0.45rem 0.7rem;
    border-radius: 10px;
    background: rgba(255, 252, 247, 0.9);
    color: var(--moss-deep);
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    line-height: 1.2;
    text-transform: uppercase;
    box-shadow: 0 8px 24px rgba(22, 14, 10, 0.18);
}

.area-body {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: clamp(1.45rem, 3vw, 1.9rem);
}

.area-kicker {
    margin: 0 0 0.45rem;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    line-height: 1.35;
    text-transform: uppercase;
    color: var(--clay-hover);
}

.area-body h3 {
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    margin-bottom: 0.5rem;
    color: var(--moss-deep);
}

.area-lead {
    color: var(--ink-muted);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.1rem;
}

.area-check-list {
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
    margin: 0 0 1.25rem;
    padding: 1rem 0 0;
    border-top: 1px solid rgba(92, 68, 57, 0.12);
    list-style: none;
    color: var(--ink);
    font-size: 0.95rem;
    line-height: 1.45;
}

.area-check-list li {
    position: relative;
    padding-left: 1.35rem;
}

.area-check-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.56em;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--wa-cta);
    box-shadow: 0 0 0 4px rgba(47, 134, 116, 0.12);
}

.area-link {
    margin-top: auto;
    padding-top: 0.2rem;
}

.text-link {
    font-weight: 700;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--moss);
}

.text-link:hover {
    color: var(--clay);
}

/* ——— Gallery (intro + horizontal rail, portrait cards) ——— */
.gallery-rail-shell {
    max-width: var(--container);
    margin-inline: auto;
}

.gallery-rail-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(1.25rem, 3vw, 2rem);
    align-items: start;
}

.gallery-rail-intro .section-title {
    margin-bottom: 0.85rem;
}

.gallery-rail-lead {
    font-size: 0.98rem;
    line-height: 1.6;
    color: var(--ink-muted);
    max-width: 28rem;
}

.gallery-rail-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    margin-top: 1.5rem;
}

.gallery-rail-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.75rem;
    height: 2.75rem;
    min-width: 44px;
    min-height: 44px;
    padding: 0;
    border: 1px solid rgba(44, 38, 34, 0.18);
    border-radius: 50%;
    background: var(--paper);
    color: var(--moss-deep);
    cursor: pointer;
    transition:
        background 0.2s var(--ease),
        border-color 0.2s var(--ease),
        color 0.2s var(--ease);
}

.gallery-rail-arrow:hover {
    background: #fff;
    border-color: rgba(44, 38, 34, 0.28);
    color: var(--clay);
}

.gallery-rail-arrow:focus-visible {
    outline: 2px solid var(--moss);
    outline-offset: 2px;
}

.gallery-rail-viewport {
    min-width: 0;
    margin-inline: calc(-1 * clamp(1.25rem, 4vw, 2rem));
    padding-inline: clamp(1.25rem, 4vw, 2rem);
}

.gallery-rail-track {
    display: flex;
    gap: clamp(0.85rem, 2vw, 1.25rem);
    overflow-x: auto;
    overscroll-behavior-x: contain;
    scroll-snap-type: x mandatory;
    scroll-padding-inline: clamp(1.25rem, 4vw, 2rem);
    padding-bottom: 0.35rem;
    scrollbar-width: thin;
}

.gallery-rail-track::-webkit-scrollbar {
    height: 6px;
}

.gallery-rail-track::-webkit-scrollbar-thumb {
    background: rgba(44, 38, 34, 0.2);
    border-radius: 999px;
}

.gallery-rail-card {
    flex: 0 0 min(78vw, 260px);
    margin: 0;
    scroll-snap-align: start;
}

.gallery-rail-media {
    overflow: hidden;
    border-radius: var(--img-radius);
    border: 1px solid var(--line);
    box-shadow: 0 16px 44px rgba(44, 38, 34, 0.1);
}

.gallery-rail-media img {
    display: block;
    width: 100%;
    aspect-ratio: 3 / 4;
    height: auto;
    object-fit: cover;
    object-position: center 42%;
    border-radius: 0;
    transition: transform 0.55s var(--ease);
}

.gallery-rail-card:hover .gallery-rail-media img {
    transform: scale(1.03);
}

.gallery-rail-caption {
    margin-top: 0.85rem;
    padding-right: 0.25rem;
}

.gallery-rail-title {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 600;
    letter-spacing: -0.02em;
    color: var(--moss-deep);
    margin-bottom: 0.35rem;
    line-height: 1.2;
}

.gallery-rail-meta {
    font-size: 0.9rem;
    line-height: 1.5;
    color: var(--ink-muted);
}

@media (min-width: 800px) {
    .gallery-rail-grid {
        grid-template-columns: minmax(200px, 30%) minmax(0, 1fr);
        gap: clamp(1.5rem, 3vw, 2.75rem);
        align-items: start;
    }

    .gallery-rail-card {
        flex-basis: clamp(200px, 24vw, 280px);
    }

    .gallery-rail-viewport {
        margin-inline: 0;
        padding-inline: 0;
    }

    .gallery-rail-track {
        scroll-padding-inline: 0;
    }
}

section#gallery.band {
    padding-block: clamp(2.25rem, 5vw, 3.5rem);
}

/* ——— Specs ——— */
.specs {
    padding: clamp(3rem, 6vw, 4rem) 0;
    background: var(--moss-deep);
    color: rgba(255, 255, 255, 0.9);
}

.specs .section-label {
    color: #e8c8bc;
    color: color-mix(in srgb, var(--clay) 72%, #fff 28%);
}

.specs .section-title {
    color: #fff;
}

.spec-list {
    margin: 1.5rem 0 1rem;
}

.spec-list li {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
    padding: 0.85rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    font-size: 0.98rem;
}

.spec-term {
    font-weight: 700;
    color: #fff;
}

.spec-val {
    color: rgba(255, 255, 255, 0.78);
    text-align: right;
}

.spec-note {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.65);
    font-style: italic;
}

.specs-inner {
    max-width: 36rem;
}

/* ——— FAQ ——— */
.faq {
    padding: clamp(4.75rem, 11vw, 7rem) 0 clamp(3.25rem, 7vw, 5rem);
    background: var(--paper);
    border-top: 1px solid var(--line);
    position: relative;
    overflow: hidden;
}

.faq::before {
    content: "";
    position: absolute;
    left: -1.5rem;
    bottom: 0;
    width: min(1500px, calc(100% + 2.25rem));
    height: clamp(19rem, 50vmin, 36rem);
    background-image: url("assets/so-bg-lines-affiliations.svg");
    background-repeat: no-repeat;
    background-position: left bottom;
    background-size: 100% auto;
    pointer-events: none;
    z-index: 0;
}

.faq > .container {
    position: relative;
    z-index: 1;
}

.faq-item[open] summary::after {
    content: "−";
}

.faq-inner {
    display: grid;
    grid-template-columns: minmax(14rem, 0.72fr) minmax(0, 1fr);
    align-items: start;
    gap: clamp(2rem, 6vw, 5rem);
    max-width: min(1120px, 92vw);
}

.faq-head {
    position: sticky;
    top: 6.5rem;
}

.faq-head .section-title {
    max-width: 8.5em;
}

.faq-lead {
    margin-top: 1rem;
    max-width: 28rem;
    color: var(--ink-muted);
    font-size: clamp(1rem, 1.4vw, 1.08rem);
    line-height: 1.7;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    margin-top: 0.15rem;
}

.faq-item {
    border: 1px solid rgba(92, 68, 57, 0.16);
    border-radius: clamp(10px, 0.85vw, 14px);
    padding: 0;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.68);
    box-shadow: 0 18px 44px rgba(65, 42, 32, 0.06);
    transition:
        grid-template-rows 0.4s var(--ease),
        border-color 0.25s var(--ease),
        background 0.25s var(--ease),
        box-shadow 0.25s var(--ease);
}

.faq-item[open] {
    border-color: rgba(178, 111, 78, 0.36);
    background: rgba(255, 252, 247, 0.95);
    box-shadow: 0 24px 56px rgba(65, 42, 32, 0.1);
}

.faq-item-content {
    padding-inline: clamp(1.05rem, 2.4vw, 1.45rem);
}

.faq-item summary {
    cursor: pointer;
    display: flex;
    align-items: center;
    position: relative;
    list-style: none;
    min-height: 4.25rem;
    padding: clamp(1rem, 2vw, 1.2rem) clamp(4.25rem, 5vw, 4.8rem) clamp(1rem, 2vw, 1.2rem) clamp(1.05rem, 2.4vw, 1.45rem);
    color: var(--moss-deep);
    font-weight: 700;
    font-size: clamp(1rem, 1.5vw, 1.12rem);
    line-height: 1.35;
    -webkit-tap-highlight-color: rgba(92, 68, 57, 0.12);
}

.faq-item summary::-webkit-details-marker,
.faq-item summary::marker {
    display: none;
    content: "";
}

.faq-item summary::after {
    content: "+";
    position: absolute;
    right: clamp(1rem, 2.4vw, 1.45rem);
    top: 50%;
    transform: translateY(-50%);
    width: 2rem;
    height: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(178, 111, 78, 0.32);
    border-radius: 10px;
    background: rgba(178, 111, 78, 0.11);
    color: var(--clay-hover);
    font-size: 1.05rem;
    font-weight: 700;
    transition:
        transform 0.25s var(--ease),
        background 0.25s var(--ease),
        color 0.25s var(--ease),
        border-color 0.25s var(--ease);
}

.faq-item summary:hover::after,
.faq-item summary:focus-visible::after {
    border-color: var(--clay);
    background: var(--clay);
    color: #fff;
}

.faq-item summary:focus-visible {
    outline: 3px solid rgba(178, 111, 78, 0.24);
    outline-offset: -3px;
}

.faq-item[open] summary::after {
    content: "-";
    transform: translateY(-50%) rotate(180deg);
    border-color: var(--moss-deep);
    background: var(--moss-deep);
    color: #fff;
}

.faq-item-content p {
    padding: 0 0 clamp(1.1rem, 2vw, 1.35rem);
    line-height: 1.65;
}

/* ——— Booking / form ——— */
.booking {
    padding: clamp(3.5rem, 8vw, 5rem) 0;
    background: var(--sand);
    border-top: 1px solid var(--line);
}

.booking > .container {
    max-width: min(1240px, 96vw);
}

.booking-stack {
    max-width: min(68rem, 96vw);
    margin-inline: auto;
}

.booking-head {
    text-align: center;
    margin-bottom: clamp(1.75rem, 4vw, 2.5rem);
}

.booking-head .section-title {
    margin-bottom: 0.85rem;
}

.booking-head .section-title.title-center {
    max-width: min(44rem, 92vw);
}

.booking-lead {
    margin: 0 auto;
    max-width: min(42rem, 92vw);
    font-size: 0.98rem;
    line-height: 1.65;
    color: var(--ink-muted);
}

.booking-lead a {
    color: var(--moss-deep);
    font-weight: 600;
    text-decoration-thickness: 1px;
    text-underline-offset: 0.12em;
}

.booking-lead a:hover {
    color: #2e211c;
    color: color-mix(in srgb, var(--moss-deep) 85%, #000 15%);
}

.booking-cal {
    margin-bottom: clamp(1.5rem, 4vw, 2.35rem);
}

.booking-cal-head {
    text-align: center;
    margin-bottom: clamp(1rem, 2.5vw, 1.4rem);
    max-width: 100%;
    width: 100%;
    margin-inline: auto;
}

.booking-cal-title {
    margin: 0 0 0.5rem;
    font-family: var(--font-display);
    font-size: clamp(1.35rem, 2.8vw, 1.75rem);
    font-weight: 600;
    color: var(--moss-deep);
    letter-spacing: 0.02em;
}

.booking-cal-lead-outer {
    max-width: 100%;
    overflow-x: visible;
    overflow-y: visible;
    text-align: center;
}

.booking-cal-lead {
    display: block;
    margin: 0 auto;
    max-width: 36rem;
    font-size: 0.92rem;
    line-height: 1.6;
    color: var(--ink-muted);
    text-align: center;
    text-wrap: balance;
}

.booking-cal-embed.booking-form-surface {
    padding: clamp(0.65rem, 1.8vw, 1rem);
    overflow: hidden;
}

.cal-inline-root {
    min-height: min(720px, 85vh);
    min-height: min(720px, 85dvh);
    width: 100%;
}

.booking-cal-error {
    margin: 0;
    padding: 1.25rem 1rem;
    font-size: 0.95rem;
    line-height: 1.55;
    color: var(--ink-muted);
    text-align: center;
}

.booking-cal-error a {
    color: var(--moss-deep);
    font-weight: 600;
}

.booking-form-surface {
    margin-inline: auto;
    max-width: none;
    width: 100%;
    padding: clamp(1.75rem, 4vw, 2.4rem);
    background: #fffcf7;
    border-radius: clamp(14px, 2vw, 22px);
    box-shadow:
        0 1px 0 rgba(255, 255, 255, 0.88) inset,
        0 16px 42px rgba(44, 38, 34, 0.055);
    border: 1px solid rgba(92, 68, 57, 0.09);
}

.quote-important {
    padding: 1.25rem 1.35rem 1.3rem 1.45rem;
    border-radius: 0 clamp(14px, 1.5vw, 18px) clamp(14px, 1.5vw, 18px) 0;
    background: linear-gradient(105deg, rgba(255, 252, 247, 0.98) 0%, rgba(245, 240, 232, 0.55) 100%);
    border: 1px solid rgba(92, 68, 57, 0.12);
    border-left: 4px solid rgba(139, 90, 68, 0.55);
    box-shadow: 0 8px 28px rgba(44, 38, 34, 0.04);
}

.quote-important-title {
    margin: 0 0 0.75rem;
    font-family: var(--font-display);
    font-size: clamp(1.15rem, 2.2vw, 1.35rem);
    font-weight: 600;
    letter-spacing: 0.02em;
    text-transform: none;
    color: var(--moss-deep);
}

.quote-important-list {
    margin: 0;
    padding: 0;
    list-style: none;
    font-size: 0.94rem;
    line-height: 1.58;
    color: var(--ink-muted);
}

.quote-important-list li {
    position: relative;
    padding-left: 1.15rem;
}

.quote-important-list li::before {
    content: "";
    position: absolute;
    left: 0.1rem;
    top: 0.55em;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(139, 90, 68, 0.75);
}

.quote-important-list li + li {
    margin-top: 0.65rem;
}

.quote-important-list strong {
    color: rgba(72, 64, 56, 0.95);
    font-weight: 600;
}

.booking-reminder {
    margin-top: clamp(1.35rem, 3vw, 2rem);
}

/* ——— Footer ——— */
.footer {
    --footer-fg: #fdfcf0;
    --footer-fg-muted: rgba(253, 252, 240, 0.72);
    --footer-line: rgba(253, 252, 240, 0.18);
    background:
        radial-gradient(circle at 12% 8%, rgba(184, 120, 93, 0.28), transparent 34rem),
        linear-gradient(165deg, #49372f 0%, var(--moss-deep) 48%, #251a16 100%);
    color: var(--footer-fg-muted);
    padding: clamp(2.75rem, 6vw, 4.5rem) 0 0;
    overflow-x: visible;
    overflow-y: visible;
}

.footer-main {
    padding-bottom: calc(clamp(1.4rem, 3vw, 2rem) + env(safe-area-inset-bottom, 0px));
}

.footer-cta {
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(1.35rem, 3vw, 2rem);
    align-items: end;
    padding: clamp(1.4rem, 3.5vw, 2.25rem);
    border: 1px solid rgba(255, 252, 247, 0.14);
    border-radius: clamp(18px, 2vw, 26px);
    background:
        linear-gradient(135deg, rgba(255, 252, 247, 0.12), rgba(255, 252, 247, 0.045)),
        rgba(255, 252, 247, 0.03);
    box-shadow: 0 20px 60px rgba(12, 8, 6, 0.22);
}

.footer-cta-copy {
    max-width: 44rem;
}

.footer-kicker {
    margin: 0 0 0.55rem;
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    line-height: 1.35;
    text-transform: uppercase;
    color: #e6b79f;
}

.footer-cta-title {
    margin: 0;
    max-width: 12em;
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 4rem);
    font-weight: 600;
    letter-spacing: -0.02em;
    line-height: 1.02;
    color: #fff;
}

.footer-cta-lead {
    margin: 1rem 0 0;
    max-width: 42rem;
    font-size: clamp(0.98rem, 2vw, 1.08rem);
    line-height: 1.65;
    color: rgba(255, 252, 247, 0.76);
}

.footer-cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    align-items: center;
    justify-content: flex-start;
}

.footer-primary-action {
    min-height: 3rem;
    background: #fffaf3;
    color: var(--moss-deep);
    box-shadow: 0 10px 28px rgba(10, 6, 4, 0.22);
}

.footer-primary-action:hover {
    background: #fff;
    color: var(--moss-deep);
}

.footer-secondary-action {
    min-height: 3rem;
    background: rgba(47, 134, 116, 0.26);
    color: #fff;
    border: 1px solid rgba(163, 220, 207, 0.3);
}

.footer-secondary-action:hover {
    background: rgba(47, 134, 116, 0.4);
    color: #fff;
}

.footer-wa-icon {
    flex-shrink: 0;
    width: 19px;
    height: 19px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(1.5rem, 4vw, 2.4rem);
    padding: clamp(2rem, 5vw, 3.25rem) 0 clamp(1.4rem, 3vw, 2rem);
}

.footer-brand-panel {
    max-width: 25rem;
}

.footer-brand-name {
    margin: 0;
    font-family: var(--font-display);
    font-size: clamp(1.65rem, 3vw, 2.25rem);
    font-weight: 700;
    line-height: 1.05;
    color: #fff;
}

.footer-brand-copy {
    margin: 0.8rem 0 0;
    max-width: 32rem;
    font-size: 0.98rem;
    line-height: 1.65;
    color: rgba(255, 252, 247, 0.7);
}

.footer-info-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
}

.footer-info-block {
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 252, 247, 0.15);
}

.footer-info-title {
    margin: 0 0 0.85rem;
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.13em;
    line-height: 1.35;
    text-transform: uppercase;
    color: rgba(255, 252, 247, 0.58);
}

.footer-address {
    font-style: normal;
    margin: 0;
    font-size: 0.98rem;
    font-weight: 600;
    line-height: 1.65;
    color: rgba(255, 252, 247, 0.86);
}

.footer-link-list,
.footer-service-list {
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
}

.footer-text-link {
    width: fit-content;
    font-size: 0.98rem;
    font-weight: 700;
    line-height: 1.45;
    color: rgba(255, 252, 247, 0.9);
    text-decoration: underline;
    text-decoration-color: rgba(230, 183, 159, 0.4);
    text-decoration-thickness: 1px;
    text-underline-offset: 0.18em;
}

.footer-text-link:hover {
    color: #fff;
    text-decoration-color: rgba(255, 252, 247, 0.75);
}

.footer-text-link--wa {
    display: inline-flex;
    align-items: center;
    gap: 0.42rem;
}

.footer-text-wa-icon {
    flex-shrink: 0;
    color: #8fd6c6;
}

.footer-service-list {
    margin: 0;
    padding: 0;
    list-style: none;
    font-size: 0.95rem;
    font-weight: 600;
    line-height: 1.5;
    color: rgba(255, 252, 247, 0.8);
}

.footer-service-list li {
    position: relative;
    padding-left: 1rem;
}

.footer-service-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.62em;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #e6b79f;
}

.footer-bottom {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem 1rem;
    padding-top: 1.1rem;
    border-top: 1px solid var(--footer-line);
}

.footer-copy {
    margin: 0;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
    line-height: 1.45;
    color: rgba(255, 252, 247, 0.66);
}

.footer-bottom-link {
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    line-height: 1.35;
    text-transform: uppercase;
    color: rgba(255, 252, 247, 0.78);
}

.footer-bottom-link:hover {
    color: #fff;
}

.footer-signature a {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    color: inherit;
    transition: transform 0.3s var(--ease);
}

.footer-signature a:hover {
    transform: translateY(-1px);
}

.footer-signature .sig-tag {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: rgba(255, 252, 247, 0.4);
}

.footer-signature .sig-brand {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 600;
    color: #fff;
    background: linear-gradient(90deg, #fff 0%, #fff 40%, #e6b79f 50%, #fff 60%, #fff 100%);
    background-size: 300% auto;
    background-position: 100% center;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: background-position 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.footer-signature a:hover .sig-brand {
    background-position: 0% center;
}

@media (min-width: 760px) {
    .footer-cta {
        grid-template-columns: minmax(0, 1fr) max-content;
    }

    .footer-cta-actions {
        justify-content: flex-end;
    }

    .footer-content {
        grid-template-columns: minmax(16rem, 0.9fr) minmax(0, 1.5fr);
        align-items: start;
    }

    .footer-info-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .footer-cta-actions,
    .footer-primary-action,
    .footer-secondary-action {
        width: 100%;
    }

    .footer-bottom {
        justify-content: center;
        text-align: center;
    }
}

/* ——— Reveal ——— */
.reveal,
.reveal-left,
.reveal-right {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.reveal-left {
    transform: translateX(-16px);
}

.reveal-right {
    transform: translateX(16px);
}

.reveal.active,
.reveal-left.active,
.reveal-right.active {
    opacity: 1;
    transform: translate(0);
}

/* ——— Mobile nav ——— */
@media (max-width: 900px) {
    .statement-grid,
    .band-split,
    .why-grid,
    .areas-grid {
        grid-template-columns: 1fr;
    }

    .areas-head {
        grid-template-columns: 1fr;
        align-items: start;
    }

    .areas-head .section-title {
        max-width: 12em;
    }

    .areas-proof-strip {
        grid-template-columns: 1fr;
    }

    .faq-inner {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .faq-head {
        position: static;
    }

    .faq-head .section-title,
    .faq-lead {
        max-width: 38rem;
    }
}

@media (max-width: 768px) {
    .masthead {
        --announce-h: 2rem;
    }

    .hero-menu {
        background-size: min(124vw, 34rem) auto;
        background-position: right -1.4rem bottom -1.1rem;
    }

    .sticky-menu-drawer {
        background-size: min(124vw, 34rem) auto;
        background-position: right -1.4rem bottom -1.1rem;
    }

    .hero-menu-links {
        grid-template-columns: 1fr;
        align-content: start;
        width: 100%;
        max-width: none;
        justify-items: center;
        gap: 1rem;
    }

    .hero-menu-nav {
        display: flex;
        align-items: flex-start;
        justify-content: flex-start;
        padding-top: clamp(0.9rem, 3vw, 1.15rem);
        padding-bottom: clamp(0.9rem, 3vw, 1.2rem);
    }

    .hero-menu-links a,
    .sticky-menu-drawer-links a {
        font-size: clamp(1.8rem, 7.6vw, 2.65rem);
        line-height: 1.12;
        text-align: center;
        padding-block: 0.36rem;
    }

    .sticky-menu-drawer-links {
        grid-template-columns: 1fr;
        align-content: start;
        width: 100%;
        max-width: none;
        justify-items: center;
        gap: 1rem;
    }

    .booking-form-surface {
        padding: clamp(1.35rem, 4vw, 2rem);
    }

    .cal-inline-root {
        min-height: min(560px, 70dvh);
        min-height: min(560px, 70vh);
    }

    .hero-menu-contact {
        display: inline-flex;
        min-height: 44px;
        align-items: center;
        padding-block: 0.25rem;
    }

}

@media (max-width: 540px) {
    .section-bg-line::before {
        left: 50%;
        width: 168vw;
        margin-left: -84vw;
        top: clamp(-6rem, -14vw, -2rem);
        height: calc(100% + clamp(9rem, 18vw, 5rem) + 1px);
    }

    .section-bg-line--1::before {
        display: none;
    }

    .section-bg-line--2::before {
        background-size: min(220vw, 44rem) auto;
        background-position: 100% 0;
        opacity: 0.72;
    }

    .why.section-bg-line.section-bg-line--2::before {
        background-size: min(230vw, 46rem) auto;
    }

    .statement.section-bg-line {
        margin-top: clamp(-2rem, -4vw, -0.75rem);
        padding: calc(clamp(3rem, 7vw, 4.25rem) + clamp(1.5rem, 4vw, 2rem)) 0 clamp(2.25rem, 6vw, 3rem);
    }

    .hero-chrome-actions .btn-hero-wa,
    .sticky-nav-actions .btn-hero-wa {
        width: 48px;
        min-width: 48px;
        padding: 0;
        gap: 0;
    }

    .hero-chrome-actions .btn-hero-wa-icon,
    .sticky-nav-actions .btn-hero-wa-icon {
        width: 36px;
        height: 36px;
        padding: 8px;
    }

    .hero-chrome-actions .wa-label,
    .sticky-nav-actions .wa-label {
        display: none;
    }

    .hero-title-line {
        white-space: normal;
    }

    .hero-title {
        font-size: clamp(2.25rem, 11vw, 3.25rem);
        margin-bottom: 1rem;
    }

    .hero-inner {
        padding-right: clamp(0.85rem, 3vw, 1rem);
        padding-left: clamp(0.85rem, 3vw, 1rem);
    }

    .hero-chrome {
        padding-right: clamp(0.75rem, 2.5vw, 1rem);
        padding-left: clamp(0.75rem, 2.5vw, 1rem);
    }

    .hero-menu-top,
    .hero-menu-nav,
    .hero-menu-foot,
    .sticky-menu-drawer-nav,
    .sticky-menu-drawer-foot {
        padding-left: clamp(1rem, 4.5vw, 1.25rem);
        padding-right: clamp(1rem, 4.5vw, 1.25rem);
    }

    .hero-menu-top {
        padding-top: 0.85rem;
        padding-bottom: 0.6rem;
    }

    .hero-menu-logo {
        max-width: min(56vw, 8.8rem);
        height: clamp(40px, 10vw, 54px);
    }

    .hero-menu-foot,
    .sticky-menu-drawer-foot {
        margin-top: 0;
        padding-top: 0.95rem;
        padding-bottom: calc(1rem + env(safe-area-inset-bottom, 0px));
    }

    .container {
        padding-inline: clamp(1rem, 4.5vw, 1.75rem);
    }

    .gallery-rail-card {
        flex: 0 0 min(86vw, 280px);
    }

    .faq {
        padding-top: clamp(3.5rem, 14vw, 4.75rem);
    }

    .faq-list {
        gap: 0.7rem;
    }

    .faq-item summary {
        min-height: 3.75rem;
        padding-right: 3.75rem;
    }
}

@media (max-width: 380px) {
    .btn-hero-wa {
        line-height: 1.25;
    }
}
