/* DTA Latomix: landing (enhanced visual system) */

:root {
    --c-limestone: #e8e4dc;
    --c-limestone-deep: #dcd6cc;
    --c-terracotta: #8b5a3c;
    --c-terracotta-bright: #c47a52;
    --c-terracotta-glow: rgba(196, 122, 82, 0.45);
    --c-shadow: #2a2d33;
    --c-sand: #d4c4a8;
    --c-sand-muted: #b8a88c;
    --c-ink: #121418;
    --c-hero-deep: #0a0b0d;
    --f-display: 'Outfit', system-ui, sans-serif;
    --f-body: 'IBM Plex Sans', system-ui, sans-serif;
    --f-mono: 'IBM Plex Mono', ui-monospace, monospace;
    --ease: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-out-soft: cubic-bezier(0.22, 1, 0.36, 1);
    --gap: clamp(1.25rem, 4vw, 3rem);
    --header-h: 4rem;
    --radius: 12px;
    --radius-lg: 18px;
    --max-text: 38rem;
    --shadow-sm: 0 2px 8px rgba(18, 20, 24, 0.06);
    --shadow-md: 0 12px 40px rgba(18, 20, 24, 0.12);
    --shadow-lg: 0 24px 80px rgba(18, 20, 24, 0.18);
    --shadow-glow-warm: 0 0 80px rgba(196, 122, 82, 0.2);
    /* Unified CTAs (reference: Location “Satellite view…”): shape, edge, inset, motion */
    --btn-radius: var(--radius);
    --btn-transition: transform 0.28s var(--ease), box-shadow 0.28s var(--ease), filter 0.28s var(--ease),
        border-color 0.28s var(--ease);
    --btn-border: 1px solid rgba(0, 0, 0, 0.12);
    --btn-inset-light: 0 1px 0 rgba(255, 255, 255, 0.12) inset;
    --btn-shadow-neutral: 0 2px 8px rgba(0, 0, 0, 0.2), var(--btn-inset-light);
    --btn-shadow-neutral-hover: 0 6px 22px rgba(0, 0, 0, 0.26), 0 1px 0 rgba(255, 255, 255, 0.14) inset;
    --btn-shadow-warm: 0 2px 8px rgba(139, 90, 60, 0.28), var(--btn-inset-light);
    --btn-shadow-warm-hover: 0 6px 22px rgba(139, 90, 60, 0.35), 0 1px 0 rgba(255, 255, 255, 0.15) inset;
    --btn-font-size: 0.86rem;
    --btn-letter-spacing: 0.1em;
    --btn-line-height: 1.45;
    /* IBM Plex Sans for all CTA / button surfaces (with nav cluster) */
    --btn-font-family: var(--f-body);
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

body {
    font-family: var(--f-body);
    font-size: 1.05rem;
    line-height: 1.6;
    color: var(--c-shadow);
    background: var(--c-limestone);
    background-image:
        radial-gradient(ellipse 120% 80% at 50% -20%, rgba(212, 196, 168, 0.35) 0%, transparent 50%),
        linear-gradient(180deg, var(--c-limestone-deep) 0%, var(--c-limestone) 35%, var(--c-limestone) 100%);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

::selection {
    background: rgba(139, 90, 60, 0.22);
    color: var(--c-ink);
}

:focus-visible {
    outline: 2px solid var(--c-terracotta-bright);
    outline-offset: 3px;
}

.site-header .nav-desktop a:focus-visible,
.site-header .brand-lockup:focus-visible {
    outline-offset: 4px;
}

a {
    color: inherit;
    text-decoration: none;
}

/* --- Utilities --- */
.container-wide {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--gap);
}

.container-narrow {
    width: 100%;
    max-width: 720px;
    margin: 0 auto;
    padding: 0 var(--gap);
}

.skip-link {
    position: absolute;
    top: -100px;
    left: var(--gap);
    background: var(--c-shadow);
    color: var(--c-limestone);
    padding: 0.65rem 1.25rem;
    z-index: 10000;
    font-family: var(--f-mono);
    font-size: 0.8rem;
}

.skip-link:focus {
    top: 0;
}

/* --- Buttons & CTAs (unified with Location maps link: radius, no left border, gradient + inset + hover lift) */
.btn,
.location-maps-link {
    border-radius: var(--btn-radius);
    border: var(--btn-border);
    border-left: none;
    transition: var(--btn-transition);
    font-family: var(--btn-font-family);
    font-weight: 600;
    font-size: var(--btn-font-size);
    letter-spacing: var(--btn-letter-spacing);
    line-height: var(--btn-line-height);
    text-transform: uppercase;
    text-decoration: none;
}

.btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.9rem 1.2rem;
    cursor: pointer;
    color: inherit;
}

.btn:focus-visible {
    outline: 2px solid var(--c-terracotta-bright);
    outline-offset: 3px;
}

.btn:active {
    transform: translateY(1px);
}

.btn-primary {
    color: var(--c-limestone);
    background: linear-gradient(145deg, #4c525a 0%, var(--c-shadow) 50%, var(--c-ink) 145%);
    box-shadow: var(--btn-shadow-neutral);
}

.btn-primary:hover {
    filter: brightness(1.08);
    box-shadow: var(--btn-shadow-neutral-hover);
}

.btn-outline {
    color: var(--c-shadow);
    background: linear-gradient(165deg, rgba(255, 255, 255, 0.75) 0%, rgba(255, 255, 255, 0.4) 100%);
    border: 1px solid rgba(42, 45, 51, 0.16);
    border-left: none;
    box-shadow: 0 2px 8px rgba(42, 45, 51, 0.1), 0 1px 0 rgba(255, 255, 255, 0.85) inset;
}

.btn-outline:hover {
    filter: brightness(1.03);
    box-shadow: 0 6px 20px rgba(42, 45, 51, 0.14), 0 1px 0 rgba(255, 255, 255, 1) inset;
}

.hero .hero-btn-outline {
    /* Hero: slightly stronger glass on limestone */
    color: var(--c-shadow);
    background: linear-gradient(165deg, rgba(255, 255, 255, 0.82) 0%, rgba(255, 255, 255, 0.48) 100%);
    border: 1px solid rgba(42, 45, 51, 0.18);
    border-left: none;
    box-shadow: 0 2px 8px rgba(42, 45, 51, 0.12), 0 1px 0 rgba(255, 255, 255, 0.9) inset;
}

.hero .hero-btn-outline:hover {
    filter: brightness(1.02);
    box-shadow: 0 6px 22px rgba(42, 45, 51, 0.16), 0 1px 0 rgba(255, 255, 255, 1) inset;
}

.btn-lg {
    padding: 1.05rem 1.85rem;
}

.btn-on-dark {
    color: var(--c-limestone);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.02) 100%);
    border: 1px solid rgba(232, 228, 220, 0.38);
    border-left: none;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.38), 0 1px 0 rgba(255, 255, 255, 0.1) inset;
}

.btn-on-dark:hover {
    filter: brightness(1.08);
    border-color: rgba(232, 228, 220, 0.52);
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.42), 0 1px 0 rgba(255, 255, 255, 0.14) inset;
}

.contact-section .btn-primary {
    color: var(--c-limestone);
    background: linear-gradient(145deg, var(--c-terracotta) 0%, #6b442e 52%, var(--c-shadow) 160%);
    box-shadow:
        0 2px 14px rgba(0, 0, 0, 0.55),
        0 1px 0 rgba(255, 255, 255, 0.05) inset;
}

.contact-section .btn-primary:hover {
    filter: brightness(1.06);
    box-shadow:
        0 6px 28px rgba(0, 0, 0, 0.58),
        0 1px 0 rgba(255, 255, 255, 0.08) inset;
}

/* Email (outline on dark): dark edge; default limestone border reads as a harsh white ring here */
.contact-section .btn-on-dark {
    border: 1px solid rgba(0, 0, 0, 0.5);
    border-left: none;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.06) 0%, rgba(0, 0, 0, 0.2) 100%);
    box-shadow:
        0 2px 14px rgba(0, 0, 0, 0.55),
        0 1px 0 rgba(255, 255, 255, 0.05) inset;
}

.contact-section .btn-on-dark:hover {
    filter: brightness(1.07);
    border-color: rgba(0, 0, 0, 0.38);
    box-shadow:
        0 6px 28px rgba(0, 0, 0, 0.58),
        0 1px 0 rgba(255, 255, 255, 0.08) inset;
}

@media (prefers-reduced-motion: reduce) {
    .btn:active {
        transform: none;
    }

    .btn-primary:hover,
    .btn-outline:hover,
    .hero .hero-btn-outline:hover,
    .btn-on-dark:hover,
    .contact-section .btn-on-dark:hover,
    .contact-section .btn-primary:hover,
    .location-maps-link:hover {
        filter: none;
    }

    .nav-cta:hover {
        filter: none !important;
    }
}

/* --- Header --- */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    isolation: isolate;
    min-height: var(--header-h);
    background: rgba(232, 228, 220, 0.9);
    backdrop-filter: blur(18px) saturate(1.25);
    -webkit-backdrop-filter: blur(18px) saturate(1.25);
    border-bottom: 1px solid rgba(42, 45, 51, 0.08);
    box-shadow:
        0 1px 0 rgba(255, 255, 255, 0.48) inset,
        0 10px 36px rgba(18, 20, 24, 0.05);
    transition: background 0.35s var(--ease), border-color 0.35s, box-shadow 0.35s;
}

.site-header::before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    height: 2px;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(196, 122, 82, 0.2) 22%,
        rgba(196, 122, 82, 0.45) 50%,
        rgba(196, 122, 82, 0.2) 78%,
        transparent 100%
    );
    pointer-events: none;
    opacity: 0.9;
}

/* Bright hero: keep header readable on light scrim (same palette as scrolled bar) */
.site-header.at-hero {
    background: rgba(232, 228, 220, 0.94);
    backdrop-filter: blur(16px) saturate(1.2);
    -webkit-backdrop-filter: blur(16px) saturate(1.2);
    border-bottom-color: rgba(42, 45, 51, 0.09);
    box-shadow:
        0 1px 0 rgba(255, 255, 255, 0.55) inset,
        0 10px 36px rgba(18, 20, 24, 0.06);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0.55rem var(--gap);
    min-height: var(--header-h);
}

.brand-lockup {
    display: flex;
    align-items: center;
    line-height: 0;
    border-radius: 4px;
    transition: opacity 0.25s var(--ease), transform 0.25s var(--ease);
}

.brand-lockup:hover {
    opacity: 0.88;
}

.brand-lockup:active {
    transform: scale(0.98);
}

.brand-logo {
    display: block;
    height: clamp(26px, 4.2vw, 34px);
    width: auto;
    max-width: min(220px, 54vw);
    object-fit: contain;
    object-position: left center;
}

.nav-desktop {
    display: flex;
    align-items: center;
}

/* Single shell: About · Location · Contact */
.nav-desktop-cluster {
    display: flex;
    align-items: center;
    gap: 0;
    padding: 0.28rem;
    background: rgba(255, 255, 255, 0.52);
    border: 1px solid rgba(42, 45, 51, 0.08);
    border-radius: 100px;
    box-shadow:
        0 1px 0 rgba(255, 255, 255, 0.78) inset,
        0 1px 5px rgba(42, 45, 51, 0.06);
}

.nav-desktop-cluster > ul {
    display: flex;
    align-items: center;
    gap: 0.15rem;
    list-style: none;
    margin: 0;
    padding: 0 0.15rem 0 0.35rem;
}

.nav-desktop-cluster > ul::after {
    content: '';
    flex-shrink: 0;
    width: 1px;
    height: 1.45rem;
    margin: 0 0.45rem 0 0.35rem;
    background: linear-gradient(
        180deg,
        transparent 0%,
        rgba(42, 45, 51, 0.13) 50%,
        transparent 100%
    );
    pointer-events: none;
}

.nav-desktop-cluster > ul a {
    display: block;
    padding: 0.48rem 0.95rem;
    border-radius: 100px;
    font-family: var(--btn-font-family);
    font-size: var(--btn-font-size);
    font-weight: 600;
    letter-spacing: var(--btn-letter-spacing);
    line-height: var(--btn-line-height);
    text-transform: uppercase;
    color: rgba(42, 45, 51, 0.82);
    transition:
        color 0.22s var(--ease),
        background 0.25s var(--ease),
        box-shadow 0.25s var(--ease);
}

.nav-desktop-cluster > ul a:hover {
    color: var(--c-terracotta);
    background: rgba(196, 122, 82, 0.1);
    box-shadow: 0 1px 2px rgba(139, 90, 60, 0.12);
}

.nav-desktop-cluster > ul a:focus-visible {
    outline: none;
    color: var(--c-terracotta);
    background: rgba(196, 122, 82, 0.12);
    box-shadow: 0 0 0 2px rgba(196, 122, 82, 0.38);
}

.nav-cta {
    flex-shrink: 0;
    padding: 0.52rem 1.2rem !important;
    font-family: var(--btn-font-family) !important;
    font-size: var(--btn-font-size) !important;
    font-weight: 600 !important;
    letter-spacing: var(--btn-letter-spacing) !important;
    line-height: var(--btn-line-height) !important;
    text-transform: uppercase !important;
    text-decoration: none !important;
    border-radius: 100px !important;
    border: 1px solid rgba(0, 0, 0, 0.2) !important;
    color: var(--c-limestone) !important;
    background: linear-gradient(145deg, #4d535c 0%, var(--c-shadow) 52%, #1e2329 145%) !important;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2), 0 1px 0 rgba(255, 255, 255, 0.1) inset !important;
    transition: var(--btn-transition) !important;
}

.nav-cta:hover {
    color: var(--c-limestone) !important;
    background: linear-gradient(145deg, #5a616c 0%, #40454e 48%, #2c3138 145%) !important;
    border-color: rgba(0, 0, 0, 0.28) !important;
    box-shadow:
        0 6px 20px rgba(0, 0, 0, 0.3),
        0 1px 0 rgba(255, 255, 255, 0.16) inset !important;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 2.75rem;
    height: 2.75rem;
    padding: 0;
    gap: 5px;
    margin: 0;
    background: transparent;
    border: none;
    border-radius: 4px;
    box-shadow: none;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    transition: opacity 0.2s var(--ease);
}

.nav-toggle:hover .nav-toggle-bar {
    background: rgba(42, 45, 51, 0.92);
}

.nav-toggle[aria-expanded="true"] {
    background: transparent;
    border: none;
    box-shadow: none;
}

.nav-toggle[aria-expanded="true"]:hover .nav-toggle-bar {
    background: var(--c-terracotta-bright);
}

.nav-toggle:focus-visible {
    outline: 2px solid var(--c-terracotta-bright);
    outline-offset: 3px;
}

.nav-toggle:active:not(:focus-visible) {
    opacity: 0.85;
}

.nav-toggle-bar {
    width: 20px;
    height: 2px;
    border-radius: 1px;
    background: rgba(42, 45, 51, 0.82);
    transition: transform 0.35s var(--ease), opacity 0.3s var(--ease), background 0.2s var(--ease);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar {
    background: var(--c-terracotta);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(2) {
    opacity: 0;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.mobile-nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    top: var(--header-h);
    z-index: 998;
    background: rgba(12, 14, 18, 0.5);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s var(--ease);
}

.mobile-nav-overlay.is-visible {
    opacity: 1;
    pointer-events: auto;
}

@media (max-width: 1024px) {
    .mobile-nav-overlay:not([hidden]) {
        display: block;
    }
}

.mobile-panel {
    display: none;
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 999;
    padding: 0;
    background: linear-gradient(165deg, var(--c-limestone-deep) 0%, var(--c-limestone) 38%, var(--c-limestone) 100%);
    border-left: 1px solid rgba(42, 45, 51, 0.07);
    box-shadow: -18px 0 56px rgba(18, 20, 24, 0.12);
    transform: translateX(100%);
    transition: transform 0.42s var(--ease);
    overflow: auto;
}

.mobile-panel.open {
    transform: translateX(0);
}

.mobile-panel ul {
    list-style: none;
    margin: 0;
    max-width: 28rem;
    margin-left: auto;
    padding: 1.35rem var(--gap) 2.25rem;
}

.mobile-panel li:first-child a {
    border-top: 1px solid rgba(42, 45, 51, 0.07);
}

.mobile-panel a {
    display: block;
    position: relative;
    padding: 1.05rem 0 1.05rem 0.95rem;
    font-family: var(--f-display);
    font-size: clamp(1.28rem, 4.2vw, 1.62rem);
    font-weight: 700;
    letter-spacing: -0.03em;
    color: var(--c-shadow);
    border-bottom: 1px solid rgba(42, 45, 51, 0.07);
    transition: color 0.22s var(--ease), padding-left 0.28s var(--ease);
}

.mobile-panel a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 0;
    border-radius: 2px;
    background: var(--c-terracotta);
    transition: height 0.3s var(--ease);
}

.mobile-panel a:hover,
.mobile-panel a:focus-visible {
    color: var(--c-terracotta);
    padding-left: 1.2rem;
}

.mobile-panel a:hover::before,
.mobile-panel a:focus-visible::before {
    height: 1.45rem;
}

.mobile-panel li:not(:last-child) a:focus-visible {
    outline: none;
    background: rgba(196, 122, 82, 0.06);
}

/* Contact: same CTA language as desktop */
.mobile-panel li:last-child a {
    margin-top: 1.75rem;
    padding: 1.05rem 1.5rem;
    font-family: var(--btn-font-family);
    font-size: var(--btn-font-size);
    font-weight: 600;
    letter-spacing: var(--btn-letter-spacing);
    line-height: var(--btn-line-height);
    text-transform: uppercase;
    text-align: center;
    color: var(--c-limestone) !important;
    border: 1px solid rgba(0, 0, 0, 0.18);
    border-left: none;
    border-radius: var(--btn-radius);
    background: linear-gradient(145deg, #4d535c 0%, var(--c-shadow) 52%, #1e2329 145%);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.22), 0 1px 0 rgba(255, 255, 255, 0.1) inset;
    transition: var(--btn-transition);
}

.mobile-panel li:last-child a::before {
    display: none;
}

.mobile-panel li:last-child a:hover,
.mobile-panel li:last-child a:focus-visible {
    padding-left: 1.5rem;
    filter: brightness(1.06);
    background: linear-gradient(145deg, var(--c-terracotta-bright) 0%, var(--c-terracotta) 48%, #5c3d28 130%);
    box-shadow: 0 5px 18px rgba(139, 90, 60, 0.38), 0 1px 0 rgba(255, 255, 255, 0.12) inset;
}

.mobile-panel li:last-child a:focus-visible {
    outline: 2px solid var(--c-terracotta-bright);
    outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
    .mobile-panel a,
    .mobile-panel a::before,
    .mobile-panel li:last-child a {
        transition: none;
    }

    .mobile-panel li:not(:last-child) a:hover,
    .mobile-panel li:not(:last-child) a:focus-visible {
        padding-left: 0.95rem;
    }

    .mobile-panel li:last-child a:hover,
    .mobile-panel li:last-child a:focus-visible {
        filter: none;
    }
}

@media (max-width: 1024px) {
    .nav-desktop {
        display: none;
    }

    .nav-toggle {
        display: flex;
    }

    .mobile-panel {
        display: block;
    }
}

/* --- Hero (bright readable column + photo visible on the right) --- */
.hero {
    position: relative;
    min-height: min(100vh, 920px);
    min-height: min(100dvh, 920px);
    display: flex;
    align-items: center;
    padding: calc(var(--header-h) + 2.5rem) var(--gap) clamp(5rem, 12vw, 7.5rem);
    background: var(--c-limestone);
    overflow: hidden;
}

.hero-visual {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.hero-photo {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: saturate(1.05) brightness(1.1);
}

.hero-gradient {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            104deg,
            rgba(252, 250, 246, 0.99) 0%,
            rgba(248, 244, 236, 0.96) 18%,
            rgba(240, 235, 226, 0.92) 34%,
            rgba(232, 228, 220, 0.78) 48%,
            rgba(232, 228, 220, 0.52) 62%,
            rgba(232, 228, 220, 0.32) 78%,
            rgba(237, 232, 222, 0.38) 100%
        ),
        linear-gradient(90deg, rgba(255, 255, 255, 0.44) 0%, rgba(255, 255, 255, 0.22) 38%, rgba(240, 236, 228, 0.28) 68%, rgba(232, 228, 220, 0.22) 100%),
        linear-gradient(to left, rgba(250, 247, 242, 0.62) 0%, rgba(237, 232, 222, 0.42) 28%, rgba(232, 228, 220, 0.22) 58%, rgba(232, 228, 220, 0.1) 85%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.55) 0%, transparent 36%, transparent 58%, rgba(237, 232, 222, 0.45) 100%),
        radial-gradient(ellipse 70% 55% at 100% 40%, transparent 0%, rgba(196, 122, 82, 0.045) 100%);
}

.hero-noise {
    position: absolute;
    inset: 0;
    opacity: 0.028;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    mix-blend-mode: multiply;
}

.hero-vignette {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: radial-gradient(ellipse 95% 80% at 100% 50%, transparent 40%, rgba(42, 45, 51, 0.025) 100%);
    opacity: 0.65;
}

.hero-horizon {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: clamp(72px, 12vw, 120px);
    z-index: 2;
    pointer-events: none;
    line-height: 0;
}

.hero-horizon-svg {
    display: block;
    width: 100%;
    height: 100%;
    color: var(--c-limestone);
}

.hero-inner {
    position: relative;
    z-index: 3;
    width: 100%;
    max-width: var(--max-text);
    margin-inline: auto;
}

.hero-badge-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.15rem;
    opacity: 0;
    transform: translateY(8px);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.4rem 0.8rem;
    font-family: var(--f-mono);
    font-size: 0.62rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(42, 45, 51, 0.82);
    background: rgba(255, 255, 255, 0.65);
    border: 1px solid rgba(42, 45, 51, 0.1);
    border-radius: 100px;
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.9) inset;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}

.hero-badge--accent {
    color: var(--c-terracotta);
    border-color: rgba(196, 122, 82, 0.35);
    background: rgba(255, 255, 255, 0.8);
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.95) inset, 0 4px 20px rgba(196, 122, 82, 0.1);
}

.hero-eyebrow {
    font-family: var(--f-mono);
    font-size: clamp(0.78rem, 1.75vw, 0.88rem);
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(42, 45, 51, 0.88);
    margin-bottom: 0.9rem;
    opacity: 0;
    transform: translateY(10px);
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.4);
}

.hero-title {
    margin: 0 0 1rem;
    line-height: 0;
    width: 100%;
}

.hero-logo {
    display: block;
    width: 100%;
    max-width: 100%;
    height: auto;
    object-fit: contain;
    object-position: left center;
    opacity: 0;
    transform: translateY(20px);
    filter: drop-shadow(0 1px 1px rgba(255, 255, 255, 0.45));
}

.hero-copy {
    max-width: 36rem;
    margin-bottom: 1.15rem;
    opacity: 0;
    transform: translateY(12px);
}

.hero-copy .hero-lead {
    margin-bottom: 0;
    max-width: none;
}

.hero-copy .hero-lead + .hero-lead {
    margin-top: 0.75rem;
}

.hero-lead {
    font-size: clamp(1.05rem, 2vw, 1.18rem);
    font-weight: 400;
    line-height: 1.62;
    letter-spacing: 0.01em;
    color: rgba(42, 45, 51, 0.82);
    max-width: 32rem;
    margin-bottom: 1.15rem;
}

.hero-fact {
    font-family: var(--f-mono);
    font-size: 0.82rem;
    letter-spacing: 0.05em;
    color: rgba(42, 45, 51, 0.65);
    margin-bottom: 1.6rem;
    opacity: 0;
    transform: translateY(12px);
}

.hero-fact-label {
    display: inline-block;
    margin-right: 0.5rem;
    text-transform: uppercase;
    font-size: clamp(0.78rem, 1.75vw, 0.88rem);
    font-weight: 600;
    letter-spacing: 0.14em;
    color: rgba(42, 45, 51, 0.88);
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.4);
}

.hero-fact strong {
    font-family: var(--f-display);
    font-size: clamp(1.22rem, 3vw, 1.55rem);
    font-weight: 700;
    letter-spacing: 0.03em;
    color: var(--c-shadow);
    white-space: nowrap;
}

.hero-actions {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: stretch;
    gap: 0.35rem;
    min-width: 0;
    opacity: 0;
    transform: translateY(14px);
}

/* Tighter type + padding so three CTAs stay one row inside var(--max-text); flex ratios favor the email */
.hero-actions .btn {
    flex: 1 1 0;
    min-width: 0;
    justify-content: center;
    text-align: center;
    overflow-wrap: anywhere;
    font-size: clamp(0.62rem, 0.5rem + 0.55vw, 0.8rem);
    letter-spacing: 0.05em;
    line-height: 1.22;
    padding-block: 0.88rem;
    padding-inline: 0.32rem;
}

.hero-actions .btn:first-child {
    flex: 1.45 1 0;
}

.hero-actions .btn:nth-child(2) {
    flex: 1 1 0;
}

.hero-actions .btn:nth-child(3) {
    flex: 0.72 1 0;
}

@media (min-width: 480px) {
    .hero-actions {
        gap: 0.45rem;
    }

    .hero-actions .btn {
        padding-block: 0.95rem;
        padding-inline: 0.45rem;
    }
}

@media (max-width: 767px) {
    .hero-actions {
        flex-direction: column;
        align-items: stretch;
        gap: 0.5rem;
    }

    .hero-actions .btn,
    .hero-actions .btn:first-child,
    .hero-actions .btn:nth-child(2),
    .hero-actions .btn:nth-child(3) {
        flex: none;
        width: 100%;
        font-size: clamp(0.78rem, 2.6vw, 0.86rem);
        letter-spacing: 0.06em;
        padding-block: 0.9rem;
        padding-inline: 1rem;
    }
}

body.loaded .hero-logo {
    opacity: 1;
    transform: translateY(0);
    transition:
        opacity 0.85s 0.12s var(--ease-out-soft),
        transform 0.95s 0.12s var(--ease);
}

@media (prefers-reduced-motion: reduce) {
    .hero-logo {
        opacity: 1;
        transform: none;
        transition: none;
    }

    .hero-copy {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

body.loaded .hero-badge-row {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.75s 0.18s var(--ease-out-soft), transform 0.75s 0.18s var(--ease-out-soft);
}

body.loaded .hero-eyebrow,
body.loaded .hero-copy,
body.loaded .hero-fact,
body.loaded .hero-actions {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.85s 0.35s var(--ease), transform 0.85s 0.35s var(--ease);
}

body.loaded .hero-copy {
    transition-delay: 0.42s;
}

body.loaded .hero-fact {
    transition-delay: 0.5s;
}

body.loaded .hero-actions {
    transition-delay: 0.58s;
}

/* --- Section divider (hero → content) --- */
.section-divider--texture {
    height: 1px;
    margin: 0;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(139, 90, 60, 0.25) 20%,
        rgba(42, 45, 51, 0.12) 50%,
        rgba(139, 90, 60, 0.25) 80%,
        transparent 100%
    );
    position: relative;
    z-index: 1;
}

.section-divider--texture::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 6px;
    height: 6px;
    background: var(--c-terracotta);
    border-radius: 1px;
    opacity: 0.5;
    box-shadow: 0 0 20px var(--c-terracotta-glow);
}

/* --- Scroll reveal --- */
.reveal-on-scroll {
    opacity: 0;
    transform: translateY(18px);
    transition:
        opacity 0.85s var(--ease-out-soft),
        transform 0.85s var(--ease-out-soft);
}

.reveal-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
    .reveal-on-scroll {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

/* --- About (immersive full-bleed photo) --- */
.about-section {
    position: relative;
    min-height: min(88vh, 920px);
    padding: clamp(4rem, 12vw, 7rem) 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
    overflow: hidden;
    display: flex;
    align-items: center;
}

.about-media {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.about-media-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.about-scrim {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(102deg, rgba(6, 7, 9, 0.94) 0%, rgba(6, 7, 9, 0.82) 36%, rgba(6, 7, 9, 0.42) 56%, rgba(6, 7, 9, 0.12) 78%, transparent 100%),
        linear-gradient(180deg, rgba(6, 7, 9, 0.55) 0%, transparent 22%, transparent 72%, rgba(6, 7, 9, 0.65) 100%);
}

.about-grain {
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: 0.09;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    mix-blend-mode: overlay;
}

.about-inner {
    position: relative;
    z-index: 2;
    width: 100%;
}

.about-head {
    margin-bottom: clamp(1.5rem, 3.5vw, 2rem);
}

/* Index aligns with main title; eyebrow above (same pattern as Location) */
.about-head.section-head {
    grid-template-rows: auto auto;
    row-gap: 0.35rem;
    align-items: start;
}

.about-head .about-head-titles {
    display: contents;
}

.about-head .section-index {
    grid-column: 1;
    grid-row: 2;
    align-self: baseline;
}

.about-head .about-eyebrow {
    grid-column: 2;
    grid-row: 1;
}

.about-head .section-title {
    grid-column: 2;
    grid-row: 2;
    align-self: baseline;
    line-height: 1;
    min-width: 0;
    color: var(--c-limestone);
}

.about-head-titles {
    min-width: 0;
}

/* About: one body size, two meta sizes (eyebrow + facts), clear heading scale */
.about-section .about-eyebrow {
    font-family: var(--f-mono);
    font-size: 0.6875rem;
    font-weight: 500;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(212, 196, 168, 0.88);
    margin: 0;
}

.about-section .section-head .section-index {
    font-size: clamp(2.35rem, 5.5vw, 3.15rem);
    color: rgba(255, 255, 255, 0.1);
    line-height: 1;
}

.about-copy {
    max-width: 38rem;
    font-family: var(--f-body);
    font-size: 1.0625rem;
    line-height: 1.65;
    letter-spacing: 0.01em;
}

.about-copy .about-lead {
    margin: 0;
    color: rgba(232, 228, 220, 0.94);
    font-weight: 500;
}

.about-copy .about-lead strong {
    color: var(--c-limestone);
    font-weight: 600;
}

.about-copy > p:not(.about-lead) {
    margin-top: clamp(1.25rem, 2.5vw, 1.65rem);
    margin-bottom: 0;
    margin-left: 0;
    margin-right: 0;
    color: rgba(232, 228, 220, 0.78);
    font-weight: 400;
}

.about-facts {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem 0;
    margin: 1.5rem 0 0;
    padding: 1.25rem 0 0;
    max-width: 36rem;
    list-style: none;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    font-family: var(--f-mono);
    font-size: 0.6875rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(212, 196, 168, 0.75);
}

.about-facts li {
    display: inline-flex;
    align-items: center;
}

.about-facts li + li::before {
    content: '·';
    margin: 0 0.75rem;
    font-weight: 400;
    opacity: 0.45;
    color: rgba(232, 228, 220, 0.45);
}

/* Shared section heading: index + title share one left-aligned grid (all sections). */
.section-head {
    display: grid;
    grid-template-columns: minmax(3.5rem, 5.25rem) minmax(0, 1fr);
    column-gap: clamp(0.65rem, 2vw, 1.15rem);
    align-items: end;
    margin-bottom: 1.5rem;
}

.section-head .section-title {
    margin-bottom: 0;
    min-width: 0;
}

.section-index {
    font-family: var(--f-display);
    font-size: clamp(2.75rem, 7vw, 4rem);
    font-weight: 800;
    line-height: 0.92;
    letter-spacing: -0.04em;
    color: rgba(42, 45, 51, 0.06);
    user-select: none;
    justify-self: start;
}

.section-index--dark {
    color: rgba(42, 45, 51, 0.07);
}

.section-index--on-dark {
    color: rgba(232, 228, 220, 0.1);
}

.section-title {
    font-family: var(--f-display);
    font-size: clamp(1.65rem, 3.5vw, 2.35rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    text-transform: uppercase;
    color: var(--c-shadow);
    margin-bottom: 1.25rem;
}

/* Opacity + transform (not clip-path): clip-path inset reveal failed on some Android GPUs
   (e.g. Samsung), leaving section titles permanently hidden. */
.reveal-clip {
    opacity: 0;
    transform: translate3d(0, 0.5rem, 0);
    transition:
        opacity 0.9s var(--ease-out-soft),
        transform 0.95s var(--ease-out-soft);
}

.reveal-clip.is-visible {
    opacity: 1;
    transform: translate3d(0, 0, 0);
}

@media (prefers-reduced-motion: reduce) {
    .reveal-clip {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

/* --- Location: bright text column ~50% | map ~50% + edge fade --- */
.location-section {
    position: relative;
    border-bottom: 1px solid rgba(42, 45, 51, 0.1);
}

.location-immersive {
    position: relative;
    overflow: hidden;
    background: var(--c-limestone);
}

.location-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
    min-height: min(88vh, 960px);
}

.location-panel--bright {
    box-sizing: border-box;
    position: relative;
    z-index: 2;
    max-width: 100%;
    padding:
        clamp(2.75rem, 7vw, 5rem)
        clamp(1.25rem, 3vw, 2.5rem)
        clamp(2.75rem, 7vw, 5rem)
        max(var(--gap), calc((100vw - 1200px) / 2 + var(--gap)));
    background:
        linear-gradient(180deg, var(--c-limestone-deep) 0%, var(--c-limestone) 22%, var(--c-limestone) 100%);
    border-right: 1px solid rgba(42, 45, 51, 0.06);
}

.location-head {
    margin-bottom: clamp(1.25rem, 3vw, 1.65rem);
}

/* Index aligns with the main title only; eyebrow sits above in column 2 */
.location-head.section-head {
    grid-template-rows: auto auto;
    row-gap: 0.35rem;
    align-items: start;
}

.location-head .location-head-titles {
    display: contents;
}

.location-head .section-index {
    grid-column: 1;
    grid-row: 2;
    align-self: baseline;
}

.location-head .location-eyebrow {
    grid-column: 2;
    grid-row: 1;
}

.location-head .section-title {
    grid-column: 2;
    grid-row: 2;
    align-self: baseline;
    line-height: 1;
    min-width: 0;
}

.location-head-titles {
    min-width: 0;
}

.location-panel--bright .location-eyebrow {
    font-family: var(--f-mono);
    font-size: 0.6875rem;
    font-weight: 500;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--c-terracotta);
    margin: 0;
}

.location-panel--bright .location-head .section-index {
    font-size: clamp(2.35rem, 5.5vw, 3.15rem);
    /* Match title line box metrics so baseline alignment reads with h2 (index uses 0.92 globally). */
    line-height: 1;
}

.location-panel--bright .section-title {
    color: var(--c-shadow);
}

/* Location panel: stacked body (intro, cards, coordinate tiles, maps CTA) */
.location-body {
    display: flex;
    flex-direction: column;
    gap: clamp(1.25rem, 3vw, 1.75rem);
    max-width: min(26.5rem, 100%);
}

.location-panel--bright .location-intro {
    margin: 0;
    font-size: 1.0625rem;
    line-height: 1.68;
    letter-spacing: 0.01em;
    color: rgba(42, 45, 51, 0.88);
}

.location-panel--bright .location-intro strong {
    font-weight: 600;
    color: var(--c-shadow);
}

.location-address-card,
.location-reference-card {
    padding: clamp(1rem, 2.4vw, 1.35rem) clamp(1.05rem, 2.6vw, 1.45rem);
    background:
        linear-gradient(165deg, rgba(255, 255, 255, 0.55) 0%, rgba(255, 255, 255, 0.2) 100%),
        var(--c-limestone);
    border: 1px solid rgba(42, 45, 51, 0.07);
    border-radius: var(--radius-lg);
    box-shadow:
        var(--shadow-sm),
        0 1px 0 rgba(255, 255, 255, 0.75) inset,
        0 -1px 0 rgba(42, 45, 51, 0.04) inset;
}

.location-card-label {
    font-family: var(--f-mono);
    font-size: 0.625rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--c-terracotta);
    margin: 0 0 0.7rem;
}

.location-panel--bright .location-address-card .site-address {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.6rem;
    margin: 0;
    padding: 0;
    font-style: normal;
}

.location-panel--bright .site-address-line--primary {
    font-family: var(--f-display);
    font-size: clamp(1.02rem, 2.1vw, 1.14rem);
    font-weight: 700;
    font-style: normal;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    line-height: 1.4;
    color: var(--c-shadow);
}

.location-panel--bright .site-address-line--meta {
    display: block;
    width: 100%;
    padding-top: 0.55rem;
    margin: 0;
    border-top: 1px solid rgba(139, 90, 60, 0.22);
    font-family: var(--f-mono);
    font-size: 0.65rem;
    font-weight: 500;
    font-style: normal;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    line-height: 1.45;
    color: rgba(42, 45, 51, 0.58);
}

.location-reference-card .coords.coords--tiles {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.65rem 0.75rem;
    max-width: none;
    margin: 0 0 1rem;
    padding: 0;
    border: none;
}

.location-reference-card .coords--bright {
    padding-top: 0;
    border-top: none;
}

.coord-tile {
    margin: 0;
    padding: 0.72rem 0.8rem;
    min-width: 0;
    background: rgba(232, 228, 220, 0.85);
    border: 1px solid rgba(42, 45, 51, 0.06);
    border-radius: var(--radius);
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.65) inset;
}

.location-panel--bright .coords.coords--tiles dt {
    font-family: var(--f-mono);
    font-size: 0.58rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 0.4rem;
    color: rgba(42, 45, 51, 0.5);
    line-height: 1.3;
}

.location-panel--bright .coords.coords--tiles dd {
    margin: 0;
    font-family: var(--f-mono);
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    color: var(--c-shadow);
    line-height: 1.25;
}

.coord-value {
    display: inline-block;
    font-variant-numeric: tabular-nums;
    letter-spacing: 0.04em;
}

.location-maps-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    width: 100%;
    padding: 0.9rem 1.1rem 0.9rem 1.15rem;
    color: var(--c-limestone);
    background: linear-gradient(145deg, var(--c-terracotta) 0%, #6b442e 52%, var(--c-shadow) 160%);
    box-shadow: var(--btn-shadow-warm);
}

.location-maps-link:hover {
    color: var(--c-limestone);
    filter: brightness(1.06);
    box-shadow: var(--btn-shadow-warm-hover);
}

.location-maps-link:focus-visible {
    outline: 2px solid var(--c-terracotta-bright);
    outline-offset: 3px;
}

.location-maps-link-arrow {
    flex-shrink: 0;
    font-size: 1.05rem;
    font-weight: 400;
    opacity: 0.85;
    transition: transform 0.28s var(--ease);
}

.location-maps-link:hover .location-maps-link-arrow {
    transform: translateX(4px);
}

@media (prefers-reduced-motion: reduce) {
    .location-maps-link:hover .location-maps-link-arrow {
        transform: none;
    }
}

@media (max-width: 380px) {
    .location-reference-card .coords.coords--tiles {
        grid-template-columns: 1fr;
    }
}

.location-map-column {
    position: relative;
    min-height: min(88vh, 960px);
    background: #1e2124;
}

.location-map-layer {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}

.location-map--immersive {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 100%;
    border: 0;
    filter: grayscale(18%) contrast(1.03) saturate(0.94);
    transition: filter 0.5s var(--ease);
}

.location-map-column:hover .location-map--immersive {
    filter: grayscale(4%) contrast(1.02) saturate(1.02);
}

/* Limestone → transparent, overlaps map from the split toward center-right */
.location-map-fade {
    position: absolute;
    inset: 0 auto 0 0;
    width: min(52%, 280px);
    z-index: 2;
    pointer-events: none;
    background: linear-gradient(
        90deg,
        var(--c-limestone) 0%,
        rgba(232, 228, 220, 0.92) 18%,
        rgba(232, 228, 220, 0.45) 52%,
        rgba(232, 228, 220, 0.08) 82%,
        transparent 100%
    );
}

.location-map-grain {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    opacity: 0.06;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    mix-blend-mode: overlay;
}

@media (max-width: 767px) {
    .location-split {
        grid-template-columns: 1fr;
        min-height: 0;
    }

    .location-panel--bright {
        order: 2;
        padding: clamp(2.25rem, 6vw, 3rem) var(--gap) clamp(2.75rem, 8vw, 4rem);
        border-right: none;
        border-top: 1px solid rgba(42, 45, 51, 0.08);
    }

    .location-map-column {
        order: 1;
        min-height: 0;
        height: min(48vh, 440px);
    }

    .location-map-grain {
        display: none;
    }

    /* Bottom edge: blend to panel top; same token as .location-panel--bright 0% stop */
    .location-map-fade {
        inset: auto 0 0 0;
        width: 100%;
        height: min(46%, 200px);
        background: linear-gradient(
            180deg,
            transparent 0%,
            rgba(220, 214, 204, 0.14) 24%,
            rgba(220, 214, 204, 0.4) 48%,
            rgba(220, 214, 204, 0.7) 72%,
            rgba(220, 214, 204, 0.93) 90%,
            var(--c-limestone-deep) 100%
        );
    }

    .location-map--immersive {
        min-height: 0;
        height: 100%;
    }
}

/* --- Contact --- */
.contact-section {
    position: relative;
    padding: clamp(4rem, 10vw, 5.5rem) var(--gap);
    overflow: hidden;
}

.contact-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 85% 70% at 50% 120%, rgba(196, 122, 82, 0.42) 0%, transparent 55%),
        radial-gradient(ellipse 50% 45% at 10% 20%, rgba(139, 90, 60, 0.15) 0%, transparent 50%),
        linear-gradient(185deg, #050607 0%, var(--c-ink) 42%, #1a1d22 100%);
    pointer-events: none;
}

.contact-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    opacity: 0.4;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.028) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.028) 1px, transparent 1px);
    background-size: 48px 48px;
    mask-image: radial-gradient(ellipse 100% 85% at 50% 35%, black 12%, transparent 78%);
}

.contact-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
    opacity: 0.5;
}

.contact-glow--a {
    width: min(55vw, 400px);
    height: min(55vw, 400px);
    top: -10%;
    left: -5%;
    background: rgba(196, 122, 82, 0.25);
    animation: contactPulse 14s ease-in-out infinite;
}

.contact-glow--b {
    width: min(45vw, 320px);
    height: min(45vw, 320px);
    bottom: -15%;
    right: -5%;
    background: rgba(212, 196, 168, 0.12);
    animation: contactPulse 18s ease-in-out infinite reverse;
}

@keyframes contactPulse {
    0%, 100% { opacity: 0.45; transform: scale(1); }
    50% { opacity: 0.65; transform: scale(1.08); }
}

@media (prefers-reduced-motion: reduce) {
    .contact-glow--a,
    .contact-glow--b {
        animation: none;
        opacity: 0.5;
    }
}

.contact-inner {
    position: relative;
    z-index: 1;
    text-align: left;
}

.section-title--light {
    color: var(--c-limestone);
    text-shadow: 0 2px 24px rgba(0, 0, 0, 0.35);
}

.contact-inner .contact-head.section-head {
    margin-bottom: 1.35rem;
}

/* Same index + eyebrow + title grid as About / Location */
.contact-head.section-head {
    grid-template-rows: auto auto;
    row-gap: 0.35rem;
    align-items: start;
}

.contact-head .contact-head-titles {
    display: contents;
}

.contact-head .section-index {
    grid-column: 1;
    grid-row: 2;
    align-self: baseline;
}

.contact-head .contact-eyebrow {
    grid-column: 2;
    grid-row: 1;
}

.contact-head .section-title {
    grid-column: 2;
    grid-row: 2;
    align-self: baseline;
    line-height: 1;
    min-width: 0;
}

.contact-head-titles {
    min-width: 0;
}

.contact-section .contact-eyebrow {
    font-family: var(--f-mono);
    font-size: 0.6875rem;
    font-weight: 500;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--c-terracotta-bright);
    margin: 0;
}

.contact-section .contact-head .section-index {
    font-size: clamp(2.35rem, 5.5vw, 3.15rem);
    line-height: 1;
}

/* Center note + CTAs under the left-aligned heading */
.contact-body {
    text-align: center;
    max-width: 36rem;
    margin: 0 auto;
}

.contact-note {
    font-size: 1.05rem;
    color: rgba(232, 228, 220, 0.82);
    max-width: 28rem;
    margin: 0 auto 2rem;
    line-height: 1.6;
}

.contact-actions {
    --btn-font-size: clamp(0.96rem, 2.15vw, 1.1rem);
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
    justify-content: center;
    width: 100%;
    max-width: 36rem;
    margin-inline: auto;
}

.contact-actions .contact-actions-email {
    grid-column: 1 / -1;
}

.contact-phone-btn {
    flex-direction: column;
    gap: 0.3rem;
    text-align: center;
    text-transform: none;
}

.contact-phone-role {
    font-family: var(--f-mono);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(232, 228, 220, 0.85);
}

.contact-phone-num {
    font-family: var(--btn-font-family);
    font-size: var(--btn-font-size);
    font-weight: 600;
    letter-spacing: var(--btn-letter-spacing);
    line-height: var(--btn-line-height);
    text-transform: uppercase;
}

/* Second line on email CTA: same metrics as phone number line */
.contact-email-val {
    font-family: var(--btn-font-family);
    font-size: var(--btn-font-size);
    font-weight: 600;
    letter-spacing: var(--btn-letter-spacing);
    line-height: var(--btn-line-height);
    text-transform: uppercase;
    overflow-wrap: anywhere;
}

.contact-actions .btn-lg {
    min-width: 0;
    width: 100%;
    justify-content: center;
}

/* --- Mobile: section rhythm, About overlay, Contact CTAs --- */
@media (max-width: 767px) {
    .section-head {
        grid-template-columns: minmax(3.75rem, 4.5rem) minmax(0, 1fr);
        column-gap: 0.65rem;
        align-items: start;
        margin-bottom: 1.35rem;
    }

    .section-index {
        font-size: clamp(3rem, 11vw, 3.65rem);
        line-height: 0.9;
    }

    .section-title {
        font-size: clamp(1.9rem, 6.5vw, 2.35rem);
        letter-spacing: -0.03em;
    }

    .about-section .section-head .section-index,
    .location-panel--bright .location-head .section-index {
        font-size: clamp(2.85rem, 10.5vw, 3.4rem);
    }

    .about-head.section-head,
    .location-head.section-head,
    .contact-head.section-head {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 0.45rem;
        margin-bottom: 1.35rem;
    }

    .about-head .about-head-titles,
    .location-head .location-head-titles,
    .contact-head .contact-head-titles {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 0.35rem;
        width: 100%;
    }

    .about-section .about-eyebrow,
    .location-panel--bright .location-eyebrow,
    .contact-section .contact-eyebrow {
        font-size: 0.72rem;
        letter-spacing: 0.14em;
    }

    .about-section {
        min-height: 0;
        align-items: flex-start;
        padding: clamp(2.5rem, 9vw, 3.75rem) 0 clamp(3rem, 10vw, 4rem);
    }

    .about-scrim {
        background: linear-gradient(
            180deg,
            rgba(6, 7, 9, 0.82) 0%,
            rgba(6, 7, 9, 0.78) 38%,
            rgba(6, 7, 9, 0.85) 100%
        );
    }

    .about-grain {
        opacity: 0.055;
    }

    .about-inner {
        padding-bottom: 0.25rem;
    }

    .about-head {
        margin-bottom: clamp(1.15rem, 4vw, 1.5rem);
    }

    .about-copy {
        max-width: none;
        font-size: 1.0625rem;
        line-height: 1.62;
        text-align: justify;
        hyphens: auto;
        -webkit-hyphens: auto;
    }

    .location-panel--bright .location-intro {
        text-align: justify;
        hyphens: auto;
        -webkit-hyphens: auto;
    }

    .about-facts {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.65rem;
        margin-top: 1.35rem;
        padding-top: 1.15rem;
    }

    .about-facts li {
        display: block;
        max-width: 100%;
    }

    .about-facts li + li::before {
        content: none;
        margin: 0;
    }

    .contact-inner .section-index {
        font-size: clamp(3rem, 11vw, 3.65rem);
    }

    .contact-inner .section-title {
        font-size: clamp(1.95rem, 6.8vw, 2.4rem);
    }

    .contact-body {
        max-width: none;
        width: 100%;
    }

    .contact-note {
        max-width: none;
        margin-bottom: 1.65rem;
        font-size: 1.0625rem;
        padding-inline: 0.15rem;
        text-align: justify;
        hyphens: auto;
        -webkit-hyphens: auto;
    }

    .contact-actions {
        grid-template-columns: 1fr;
        max-width: 22rem;
        gap: 0.75rem;
    }
}

/* --- Footer --- */
.site-footer {
    position: relative;
    padding: 0 0 clamp(2rem, 5vw, 2.75rem);
    color: var(--c-limestone);
    border-top: 1px solid rgba(212, 196, 168, 0.1);
    background:
        radial-gradient(ellipse 100% 80% at 50% -30%, rgba(196, 122, 82, 0.14) 0%, transparent 45%),
        radial-gradient(ellipse 55% 45% at 100% 80%, rgba(139, 90, 60, 0.12) 0%, transparent 50%),
        radial-gradient(ellipse 40% 35% at 0% 60%, rgba(212, 196, 168, 0.06) 0%, transparent 45%),
        linear-gradient(175deg, #3a4048 0%, var(--c-shadow) 38%, #171a1e 100%);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.04),
        0 -12px 48px rgba(0, 0, 0, 0.25);
}

.footer-accent {
    height: 4px;
    width: 100%;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(196, 122, 82, 0.35) 12%,
        var(--c-terracotta-bright) 45%,
        rgba(196, 122, 82, 0.55) 78%,
        transparent 100%
    );
    opacity: 0.95;
}

.footer-scrim {
    position: absolute;
    inset: 4px 0 0;
    pointer-events: none;
    opacity: 0.35;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 56px 56px;
    mask-image: radial-gradient(ellipse 90% 70% at 50% 0%, black 0%, transparent 75%);
}

.footer-inner {
    position: relative;
    z-index: 1;
    padding-top: clamp(2.25rem, 5vw, 3.25rem);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(2rem, 5vw, 2.75rem);
    padding-bottom: clamp(1.75rem, 4vw, 2.5rem);
    border-bottom: 1px solid rgba(232, 228, 220, 0.1);
}

@media (min-width: 640px) {
    .footer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        align-items: start;
    }
}

@media (min-width: 960px) {
    .footer-grid {
        grid-template-columns: minmax(0, 1.35fr) repeat(3, minmax(0, 1fr));
        gap: clamp(1.5rem, 3vw, 2.5rem) clamp(1.25rem, 2.5vw, 2rem);
    }
}

.footer-brand {
    min-width: 0;
}

@media (min-width: 640px) and (max-width: 959px) {
    .footer-brand {
        grid-column: 1 / -1;
        max-width: 40rem;
    }
}

.footer-brand-link {
    display: inline-block;
    line-height: 0;
    margin-bottom: 1rem;
    transition: opacity 0.25s var(--ease), transform 0.25s var(--ease);
}

.footer-brand-link:hover {
    opacity: 0.92;
    transform: translateY(-1px);
}

.footer-brand-link:focus-visible {
    outline: 2px solid var(--c-terracotta-bright);
    outline-offset: 4px;
}

.footer-logo {
    display: block;
    height: clamp(34px, 4.8vw, 48px);
    width: auto;
    max-width: min(320px, 90vw);
    object-fit: contain;
    object-position: left center;
}

.footer-tagline {
    font-size: 0.98rem;
    line-height: 1.55;
    color: rgba(232, 228, 220, 0.82);
    margin: 0 0 0.85rem;
    max-width: 26rem;
}

.footer-meta {
    font-family: var(--f-mono);
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    line-height: 1.55;
    color: rgba(212, 196, 168, 0.72);
    margin: 0 0 1rem;
    max-width: 26rem;
}

.footer-meta strong {
    font-weight: 600;
    color: rgba(232, 228, 220, 0.88);
}

.footer-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin: 0;
    padding: 0.45rem 0.85rem;
    width: fit-content;
    font-family: var(--f-mono);
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(232, 228, 220, 0.88);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(212, 196, 168, 0.18);
    border-radius: 100px;
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.06) inset;
}

.footer-pill-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--c-terracotta-bright);
    box-shadow: 0 0 12px var(--c-terracotta-glow);
    flex-shrink: 0;
}

.footer-col-label {
    font-family: var(--f-mono);
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(196, 122, 82, 0.95);
    margin: 0 0 1rem;
    padding-bottom: 0.65rem;
    border-bottom: 1px solid rgba(232, 228, 220, 0.1);
}

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

.footer-link-list a {
    font-family: var(--f-mono);
    font-size: 0.74rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(232, 228, 220, 0.72);
    transition: color 0.2s, transform 0.2s var(--ease);
    display: inline-block;
    width: fit-content;
}

.footer-link-list a:hover {
    color: var(--c-sand);
    transform: translateX(3px);
}

@media (prefers-reduced-motion: reduce) {
    .footer-link-list a:hover {
        transform: none;
    }
}

.footer-contact-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-contact-link {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.2rem;
    padding: 0.65rem 0.85rem;
    margin: 0;
    border-radius: var(--radius);
    background: rgba(0, 0, 0, 0.22);
    border: 1px solid rgba(232, 228, 220, 0.08);
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.04) inset;
    transition:
        border-color 0.25s var(--ease),
        background 0.25s var(--ease),
        box-shadow 0.25s var(--ease);
}

.footer-contact-link:hover {
    background: rgba(196, 122, 82, 0.12);
    border-color: rgba(196, 122, 82, 0.35);
    box-shadow: 0 0 24px rgba(196, 122, 82, 0.08);
}

.footer-contact-key {
    font-family: var(--f-mono);
    font-size: 0.6rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(212, 196, 168, 0.55);
}

.footer-contact-val {
    font-family: var(--f-body);
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    color: var(--c-limestone);
}

.footer-address {
    font-family: var(--f-body);
    font-size: 0.9rem;
    font-style: normal;
    line-height: 1.55;
    color: rgba(232, 228, 220, 0.78);
    margin: 0 0 1rem;
}

.footer-col--site {
    display: flex;
    flex-direction: column;
    min-height: 0;
}

.footer-site-actions {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-maps-link {
    display: inline;
    font-family: var(--f-body);
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    text-transform: none;
    line-height: 1.5;
    color: #fff;
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.35);
    padding-bottom: 0.1rem;
    transition: color 0.2s ease, border-color 0.2s ease, opacity 0.2s ease;
}

.footer-maps-link:hover {
    color: #fff;
    border-bottom-color: rgba(255, 255, 255, 0.65);
}

.footer-maps-link:focus-visible {
    outline: 2px solid rgba(255, 255, 255, 0.65);
    outline-offset: 3px;
    border-radius: 2px;
}

.footer-back-to-top {
    display: flex;
    justify-content: flex-start;
    margin-top: auto;
    padding-top: clamp(0.85rem, 2vw, 1.25rem);
}

.footer-top-link {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    font-family: var(--f-mono);
    font-size: 0.68rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(232, 228, 220, 0.5);
    width: fit-content;
    transition: color 0.2s;
}

.footer-top-icon {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 600;
    line-height: 1;
    opacity: 0.75;
    transform: translateY(-0.06em);
}

.footer-top-link:hover {
    color: rgba(232, 228, 220, 0.85);
}

.footer-top-link:hover .footer-top-icon {
    opacity: 1;
}

.footer-bar {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.65rem;
    padding-top: clamp(1.25rem, 3vw, 1.65rem);
}

@media (min-width: 720px) {
    .footer-bar {
        flex-direction: row;
        flex-wrap: wrap;
        align-items: center;
        justify-content: space-between;
        gap: 1rem 2rem;
    }
}

.footer-copy {
    font-family: var(--f-mono);
    font-size: 0.68rem;
    letter-spacing: 0.04em;
    color: rgba(232, 228, 220, 0.42);
    margin: 0;
    max-width: 36rem;
}

.footer-legal {
    font-family: var(--f-mono);
    font-size: 0.62rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(232, 228, 220, 0.38);
    margin: 0;
}
