/* ═══════════════════════════════════════
   MyCarEnthusiast — Steel & Copper Automobiles
   Soft steel mist · Copper accent · Scroll cinema
   ═══════════════════════════════════════ */

:root {
    --steel: #2c333a;
    --steel-deep: #1a1f24;
    --steel-mid: #4a5360;
    --mist: #eef1f3;
    --mist-deep: #dce2e7;
    --paper: #f7f5f2;
    --copper: #b56a45;
    --copper-deep: #8f4f32;
    --copper-soft: #f3e4db;
    --muted: #6b7380;
    --line: rgba(44, 51, 58, 0.1);
    --white: #ffffff;
    --header-h: 72px;
    --font-display: 'Syne', 'Zen Kaku Gothic New', sans-serif;
    --font-body: 'Zen Kaku Gothic New', sans-serif;
    --ease: cubic-bezier(0.22, 1, 0.36, 1);
    --radius: 2px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
}
html::-webkit-scrollbar { display: none; width: 0; height: 0; }
body::-webkit-scrollbar { display: none; width: 0; height: 0; }

body {
    font-family: var(--font-body);
    font-weight: 400;
    color: var(--steel);
    background:
        radial-gradient(1200px 600px at 10% -10%, rgba(181, 106, 69, 0.08), transparent 55%),
        radial-gradient(900px 500px at 100% 0%, rgba(44, 51, 58, 0.06), transparent 50%),
        linear-gradient(180deg, var(--paper), var(--mist));
    line-height: 1.85;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color 0.25s var(--ease); }
button, input, textarea, select { font: inherit; font-weight: 400; }
address { font-style: normal; }
ul { list-style: none; }
strong, b { font-weight: 500; }

.container {
    width: min(100%, 1180px);
    margin: 0 auto;
    padding: 0 1.5rem;
}

.skip-link {
    position: absolute;
    top: -100px;
    left: 1rem;
    background: var(--copper);
    color: var(--white);
    padding: 0.75rem 1.5rem;
    z-index: 9999;
    font-weight: 500;
}
.skip-link:focus { top: 0; }

h1, h2, h3, h4 {
    font-family: var(--font-display);
    font-weight: 500;
    line-height: 1.25;
    letter-spacing: 0.01em;
}

.eyebrow {
    display: inline-block;
    font-size: 0.72rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--copper);
    margin-bottom: 0.85rem;
    font-weight: 400;
}

.text-link {
    display: inline-block;
    font-weight: 400;
    color: var(--copper-deep);
    border-bottom: 1px solid currentColor;
    padding-bottom: 2px;
    letter-spacing: 0.04em;
}
.text-link:hover { color: var(--copper); }

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.95rem 1.9rem;
    border: 1px solid transparent;
    border-radius: 0;
    font-weight: 400;
    font-size: 0.88rem;
    line-height: 1.25;
    letter-spacing: 0.08em;
    cursor: pointer;
    transition: transform 0.4s var(--ease), background 0.25s, color 0.25s, border-color 0.25s, box-shadow 0.25s;
}
.btn:hover { transform: translateY(-2px); }
.btn--copper { background: var(--copper); color: var(--white); }
.btn--copper:hover { background: var(--copper-deep); }
.btn--ghost {
    background: transparent;
    border-color: rgba(255,255,255,0.45);
    color: var(--white);
}
.btn--ghost:hover { background: rgba(255,255,255,0.1); }
.btn--lg { padding: 1.1rem 2.2rem; }

/* Dedicated CTA — avoids flex/line-height clipping with JP fonts */
.btn-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.65rem;
    width: min(100%, 340px);
    margin: 0 auto;
    min-height: 3.25rem;
    padding: 0 1.5rem;
    border: 0;
    background: var(--copper);
    color: #fff;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    line-height: 1;
    text-decoration: none;
    box-shadow: 0 12px 32px rgba(181, 106, 69, 0.28);
    transition: background 0.25s, transform 0.35s var(--ease), box-shadow 0.25s;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
}
.btn-cta::after {
    content: '→';
    font-size: 1.05em;
    line-height: 1;
    transition: transform 0.35s var(--ease);
}
.btn-cta:hover {
    background: var(--copper-deep);
    transform: translateY(-2px);
    box-shadow: 0 16px 36px rgba(181, 106, 69, 0.35);
}
.btn-cta:hover::after { transform: translateX(4px); }
.btn-cta:active {
    transform: translateY(0) scale(0.98);
}
@media (max-width: 768px) {
    .btn-cta {
        width: 100%;
        min-height: 3.5rem;
        font-size: 1rem;
        animation: mobileBtnGlow 3.2s ease-in-out infinite;
    }
}
@media (prefers-reduced-motion: reduce) {
    .btn-cta { animation: none !important; }
}

.text-center { text-align: center; }
.mt-3 { margin-top: 2.5rem; }

.notice {
    padding: 1rem 1.25rem;
    margin-bottom: 1.25rem;
    border-left: 3px solid;
    font-size: 0.95rem;
}
.notice--success { background: #eef6ef; border-color: #3d7a4a; }
.notice--error { background: #f8ecec; border-color: #a04545; }
.notice ul { padding-left: 1.1rem; list-style: disc; }

/* ── Reveal system ── */
.reveal-up, .reveal-clip, .reveal-mask, .reveal-scale,
[data-stagger] > * {
    opacity: 0;
    transform: translateY(36px);
    transition: opacity 0.9s var(--ease), transform 1s var(--ease), clip-path 1.1s var(--ease), filter 0.9s var(--ease);
}
.reveal-clip { clip-path: inset(0 100% 0 0); transform: none; }
.reveal-mask { clip-path: inset(12% 12% 12% 12%); transform: scale(1.05); }
.reveal-scale { transform: scale(0.92); filter: blur(4px); }
.is-inview { opacity: 1; transform: none; clip-path: inset(0 0 0 0); filter: none; }
[data-stagger] > *.is-inview { transition-delay: calc(var(--d, 0) * 80ms); }

@media (prefers-reduced-motion: reduce) {
    .reveal-up, .reveal-clip, .reveal-mask, .reveal-scale, [data-stagger] > * {
        opacity: 1; transform: none; clip-path: none; filter: none; transition: none;
    }
}

/* ── Header ── */
.site-header {
    position: fixed;
    inset: 0 0 auto;
    z-index: 1000;
    transition: background 0.35s, backdrop-filter 0.35s, box-shadow 0.35s;
}
.site-header.is-over-hero { background: transparent; }
.site-header.is-solid,
.site-header.is-scrolled {
    background: rgba(247, 245, 242, 0.92);
    backdrop-filter: blur(14px);
    box-shadow: 0 1px 0 var(--line);
}
.site-header__bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--header-h);
    gap: 1rem;
}
.site-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}
.site-logo__mark {
    width: 28px;
    height: 28px;
    border: 1.5px solid var(--copper);
    border-radius: 50%;
    position: relative;
}
.site-logo__mark::after {
    content: '';
    position: absolute;
    inset: 7px;
    background: var(--copper);
    border-radius: 50%;
    transform: scale(0.7);
}
.site-header.is-over-hero:not(.is-scrolled) .site-logo__mark { border-color: rgba(255,255,255,0.7); }
.site-header.is-over-hero:not(.is-scrolled) .site-logo__mark::after { background: var(--copper-soft); }
.site-logo__text { display: flex; flex-direction: column; line-height: 1.15; }
.site-logo__name {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    color: var(--steel);
}
.site-logo__sub {
    font-size: 0.65rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--muted);
}
.site-header.is-over-hero:not(.is-scrolled) .site-logo__name,
.site-header.is-over-hero:not(.is-scrolled) .site-nav__link { color: var(--white); }
.site-header.is-over-hero:not(.is-scrolled) .site-logo__sub { color: rgba(255,255,255,0.65); }

.site-nav--desktop { display: flex; align-items: center; gap: 1.75rem; }
.site-nav__link {
    font-size: 0.84rem;
    letter-spacing: 0.06em;
    color: var(--steel-mid);
    position: relative;
    font-weight: 400;
}
.site-nav__link::after {
    content: '';
    position: absolute;
    left: 0; right: 100%;
    bottom: -4px;
    height: 1px;
    background: var(--copper);
    transition: right 0.35s var(--ease);
}
.site-nav__link:hover::after,
.site-nav__link.is-active::after { right: 0; }
.site-nav__link--cta {
    padding: 0.55rem 1.1rem;
    border: 1px solid var(--copper);
    color: var(--copper-deep);
}
.site-header.is-over-hero:not(.is-scrolled) .site-nav__link--cta {
    border-color: rgba(255,255,255,0.5);
    color: var(--white);
}

.menu-toggle {
    display: none;
    width: 40px; height: 40px;
    background: none; border: 0;
    cursor: pointer;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
}
.menu-toggle span {
    display: block;
    height: 1.5px;
    background: var(--steel);
    transition: transform 0.3s;
}
.site-header.is-over-hero:not(.is-scrolled) .menu-toggle span { background: var(--white); }

.mobile-nav {
    position: fixed;
    inset: var(--header-h) 0 0;
    background: rgba(247, 245, 242, 0.98);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s;
}
.mobile-nav.is-open { opacity: 1; pointer-events: auto; }
.mobile-nav__inner {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    padding: 2.5rem 1.5rem;
}
.mobile-nav__link, .mobile-nav__cta {
    font-size: 1.2rem;
    font-family: var(--font-display);
    font-weight: 400;
}
.mobile-nav__cta { color: var(--copper); }

.scroll-progress {
    height: 2px;
    background: transparent;
}
.scroll-progress span {
    display: block;
    height: 100%;
    width: 0;
    background: linear-gradient(90deg, var(--copper), var(--steel));
    transition: width 0.1s linear;
}

body.is-nav-open { overflow: hidden; }

@media (max-width: 900px) {
    .site-nav--desktop { display: none; }
    .menu-toggle { display: flex; }
}

/* ── Footer ── */
.site-footer {
    position: relative;
    background: var(--steel-deep);
    color: rgba(255,255,255,0.78);
    padding: 4.5rem 0 2rem;
    overflow: hidden;
}
.site-footer__grain {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 20% 0%, rgba(181,106,69,0.18), transparent 50%);
    pointer-events: none;
}
.site-footer__top {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
    gap: 2.5rem;
    position: relative;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.site-footer__name {
    display: block;
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 500;
    color: var(--white);
}
.site-footer__tag {
    display: block;
    font-size: 0.7rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--copper-soft);
    margin: 0.35rem 0 1rem;
}
.site-footer__desc { font-size: 0.92rem; max-width: 34ch; }
.site-footer__col h3 {
    font-size: 0.75rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.45);
    margin-bottom: 1rem;
    font-weight: 400;
}
.site-footer__col a { font-size: 0.92rem; }
.site-footer__col a:hover { color: var(--copper-soft); }
.site-footer__col li + li { margin-top: 0.55rem; }
.site-footer__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding-top: 1.75rem;
    position: relative;
    font-size: 0.82rem;
}
.footer-social { display: flex; gap: 0.85rem; }
.footer-social a {
    width: 36px; height: 36px;
    display: grid; place-items: center;
    border: 1px solid rgba(255,255,255,0.15);
    color: var(--white);
}
.back-to-top {
    width: 40px; height: 40px;
    border: 1px solid rgba(255,255,255,0.2);
    background: transparent;
    color: var(--white);
    cursor: pointer;
    display: grid; place-items: center;
}
@media (max-width: 900px) {
    .site-footer__top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
    .site-footer__top { grid-template-columns: 1fr; }
    .site-footer__bottom { flex-wrap: wrap; }
}

/* ══════════════════════════════════
   HOME — hx-*
   ══════════════════════════════════ */
.hx-hero {
    position: relative;
    min-height: 100vh;
    min-height: 100dvh;
    display: grid;
    place-items: center;
    overflow: hidden;
    color: var(--white);
}
.hx-hero__stage { position: absolute; inset: 0; }
.hx-hero__layer {
    position: absolute;
    inset: -8%;
    will-change: transform;
}
.hx-hero__layer img {
    width: 100%; height: 100%;
    object-fit: cover;
}
.hx-hero__layer--mid {
    clip-path: polygon(18% 0, 100% 0, 100% 100%, 42% 100%);
    opacity: 0.92;
}
.hx-hero__veil {
    position: absolute; inset: 0;
    background:
        linear-gradient(120deg, rgba(26,31,36,0.82) 0%, rgba(26,31,36,0.35) 48%, rgba(181,106,69,0.25) 100%);
}
.hx-hero__grain {
    position: absolute; inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.35'/%3E%3C/svg%3E");
    opacity: 0.18;
    mix-blend-mode: overlay;
    pointer-events: none;
}
.hx-hero__copy {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 2rem 1.5rem;
    max-width: 820px;
}
.hx-hero__brand {
    font-family: var(--font-display);
    font-size: clamp(2.8rem, 8vw, 5.5rem);
    font-weight: 500;
    letter-spacing: 0.04em;
    margin-bottom: 1rem;
}
.hx-hero__line {
    font-size: clamp(1.15rem, 2.4vw, 1.55rem);
    font-weight: 400;
    margin-bottom: 0.75rem;
    letter-spacing: 0.08em;
}
.hx-hero__sub {
    color: rgba(255,255,255,0.75);
    margin-bottom: 2rem;
    font-size: 0.98rem;
}
.hx-hero__cta { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.hx-hero__hint {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.65rem;
    letter-spacing: 0.28em;
    z-index: 2;
    opacity: 0.7;
}
.hx-hero__hint span {
    width: 1px;
    height: 48px;
    background: linear-gradient(to bottom, transparent, #fff);
    animation: scrollPulse 1.8s ease-in-out infinite;
}
@keyframes scrollPulse {
    0%, 100% { transform: scaleY(0.5); opacity: 0.3; }
    50% { transform: scaleY(1); opacity: 1; }
}

.hx-pulse { padding: clamp(3rem, 7vw, 5rem) 0; background: var(--steel-deep); color: var(--white); }
.hx-pulse__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}
.hx-meter {
    padding: 1.5rem 0;
    border-top: 1px solid rgba(255,255,255,0.12);
}
.hx-meter__label {
    display: block;
    font-size: 0.72rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.45);
    margin-bottom: 0.6rem;
}
.hx-meter__value {
    display: block;
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    font-weight: 500;
    color: var(--copper-soft);
}
.hx-meter__note { font-size: 0.85rem; color: rgba(255,255,255,0.55); }
@media (max-width: 800px) {
    .hx-pulse__grid { grid-template-columns: 1fr 1fr; }
}

.hx-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 80vh;
}
.hx-split__media { overflow: hidden; }
.hx-split__media img {
    width: 100%; height: 100%;
    object-fit: cover;
    min-height: 520px;
}
.hx-split__text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: clamp(3rem, 7vw, 6rem);
    background: var(--paper);
}
.hx-split__text h2 {
    font-size: clamp(1.9rem, 4vw, 3rem);
    margin-bottom: 1.25rem;
    font-weight: 500;
}
.hx-split__text p { color: var(--muted); margin-bottom: 1.5rem; max-width: 42ch; }
@media (max-width: 900px) {
    .hx-split { grid-template-columns: 1fr; }
}

.hx-lanes { padding: clamp(4rem, 8vw, 6.5rem) 0; overflow: hidden; }
.hx-lanes__head { margin-bottom: 2.5rem; }
.hx-lanes__head h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 500; }
.hx-lanes__track {
    display: flex;
    gap: 1.25rem;
    padding: 0 1.5rem 1rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
}
.hx-lanes__track::-webkit-scrollbar { display: none; }
.hx-lane {
    flex: 0 0 min(72vw, 380px);
    scroll-snap-align: start;
}
.hx-lane__img {
    overflow: hidden;
    margin-bottom: 1rem;
    aspect-ratio: 4/5;
}
.hx-lane__img img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 1.2s var(--ease);
}
.hx-lane:hover .hx-lane__img img { transform: scale(1.06); }
.hx-lane h3 { font-size: 1.25rem; font-weight: 500; margin-bottom: 0.4rem; }
.hx-lane p { color: var(--muted); font-size: 0.95rem; }
.hx-lane--cta {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    background: var(--steel-deep);
    color: var(--white);
    padding: 2rem;
    min-height: 420px;
}
.hx-lane--cta p { color: rgba(255,255,255,0.65); margin: 0.75rem 0 1.5rem; }

.hx-promise {
    padding: clamp(4rem, 8vw, 6.5rem) 0;
    background:
        radial-gradient(900px 420px at 100% 0%, rgba(181,106,69,0.1), transparent 55%),
        var(--mist);
}
.hx-promise__intro {
    margin-bottom: clamp(2.5rem, 5vw, 3.5rem);
    max-width: 40rem;
}
.hx-promise__intro h2 {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 500;
    margin: 0.35rem 0 0.85rem;
}
.hx-promise__lead {
    color: var(--muted);
    font-size: 1.02rem;
    max-width: 38ch;
}
.hx-promise__track {
    display: flex;
    flex-direction: column;
    gap: clamp(1.5rem, 4vw, 2.75rem);
    width: min(100%, 1180px);
    margin: 0 auto;
    padding: 0 1.5rem;
}
.hx-promise__card {
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    gap: 0;
    background: var(--paper);
    overflow: hidden;
    box-shadow: 0 18px 50px rgba(26, 31, 36, 0.08);
    min-height: 280px;
}
.hx-promise__card--flip .hx-promise__media { order: 2; }
.hx-promise__card--flip .hx-promise__copy { order: 1; }
.hx-promise__media {
    position: relative;
    overflow: hidden;
    min-height: 240px;
}
.hx-promise__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.08);
    transition: transform 1.2s var(--ease);
}
.hx-promise__card.is-inview .hx-promise__media img {
    transform: scale(1);
}
.hx-promise__num {
    position: absolute;
    right: 0.75rem;
    bottom: -0.15em;
    font-family: var(--font-display);
    font-size: clamp(4.5rem, 10vw, 7rem);
    font-weight: 500;
    line-height: 0.85;
    color: rgba(255, 255, 255, 0.22);
    letter-spacing: -0.02em;
    pointer-events: none;
}
.hx-promise__copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: clamp(1.75rem, 4vw, 3rem);
}
.hx-promise__index {
    font-family: var(--font-display);
    color: var(--copper);
    letter-spacing: 0.18em;
    font-size: 0.8rem;
    margin-bottom: 0.85rem;
}
.hx-promise__copy h3 {
    font-size: clamp(1.45rem, 3vw, 1.9rem);
    font-weight: 500;
    margin-bottom: 0.75rem;
}
.hx-promise__copy p {
    color: var(--muted);
    max-width: 34ch;
    line-height: 1.75;
}
.hx-promise__cta {
    margin-top: clamp(2.5rem, 5vw, 3.5rem);
    text-align: center;
}
@media (max-width: 800px) {
    .hx-promise__track { padding: 0 1.15rem; gap: 1.15rem; }
    .hx-promise__card,
    .hx-promise__card--flip {
        grid-template-columns: 1fr;
    }
    .hx-promise__card--flip .hx-promise__media,
    .hx-promise__card--flip .hx-promise__copy { order: unset; }
    .hx-promise__media {
        min-height: 0;
        aspect-ratio: 16 / 10;
    }
    .hx-promise__media img {
        animation: none;
    }
    .hx-promise__card.is-inview .hx-promise__media img {
        animation: mobileImgDrift 14s ease-in-out infinite alternate;
    }
    .hx-promise__copy {
        padding: 1.35rem 1.2rem 1.6rem;
    }
    .hx-promise__copy h3 { font-size: 1.35rem; }
}

.hx-film { padding: 3rem 0 5rem; }
.hx-film__marquee {
    overflow: hidden;
    margin-bottom: 2.5rem;
    border-block: 1px solid var(--line);
    padding: 1rem 0;
}
.hx-film__run {
    display: flex;
    width: max-content;
    animation: marquee 28s linear infinite;
    font-family: var(--font-display);
    font-size: clamp(1.4rem, 3vw, 2.2rem);
    letter-spacing: 0.12em;
    color: var(--steel-mid);
    font-weight: 400;
    white-space: nowrap;
}
.hx-film__run span { padding-right: 2rem; }
@keyframes marquee {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}
.hx-film__frames {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    padding: 0 1.5rem;
    max-width: 1320px;
    margin: 0 auto;
}
.hx-film__frames figure { overflow: hidden; aspect-ratio: 3/2; }
.hx-film__frames img { width: 100%; height: 100%; object-fit: cover; }
@media (max-width: 700px) {
    .hx-film__frames { grid-template-columns: 1fr; }
}

.hx-voices { padding: clamp(4rem, 8vw, 6.5rem) 0; background: var(--paper); }
.hx-voices h2 { font-size: clamp(1.8rem, 4vw, 2.7rem); margin-bottom: 2.5rem; font-weight: 500; }
.hx-voices__rail {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}
.hx-quote {
    padding: 2rem 0;
    border-top: 2px solid var(--copper);
}
.hx-quote p {
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
    color: var(--steel);
}
.hx-quote cite {
    display: block;
    font-style: normal;
    font-family: var(--font-display);
    font-weight: 500;
}
.hx-quote footer span {
    font-size: 0.82rem;
    color: var(--muted);
}
@media (max-width: 800px) {
    .hx-voices__rail { grid-template-columns: 1fr; }
}

.hx-mosaic { padding: clamp(4rem, 8vw, 6.5rem) 0; }
.hx-mosaic__head { margin-bottom: 2.5rem; }
.hx-mosaic__head h2 { font-size: clamp(1.8rem, 4vw, 2.7rem); font-weight: 500; }
.hx-mosaic__grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    grid-template-rows: auto auto;
    gap: 1.25rem;
}
.hx-tile {
    position: relative;
    overflow: hidden;
    background: var(--steel-deep);
    color: var(--white);
    min-height: 280px;
}
.hx-tile img {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    opacity: 0.55;
    transition: transform 1.2s var(--ease), opacity 0.4s;
}
.hx-tile:hover img { transform: scale(1.05); opacity: 0.4; }
.hx-tile > div {
    position: relative;
    z-index: 1;
    padding: 1.75rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}
.hx-tile span {
    font-size: 0.72rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--copper-soft);
    margin-bottom: 0.5rem;
}
.hx-tile h3 { font-size: 1.2rem; font-weight: 500; margin-bottom: 0.5rem; }
.hx-tile p { font-size: 0.9rem; opacity: 0.8; }
.hx-tile--1 { grid-row: span 2; min-height: 520px; }
@media (max-width: 800px) {
    .hx-mosaic__grid { grid-template-columns: 1fr; }
    .hx-tile--1 { grid-row: auto; min-height: 320px; }
}

.hx-signal {
    position: relative;
    min-height: 70vh;
    display: grid;
    place-items: center;
    overflow: hidden;
    color: var(--white);
}
.hx-signal__bg { position: absolute; inset: -10%; }
.hx-signal__bg img { width: 100%; height: 100%; object-fit: cover; }
.hx-signal::after {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(160deg, rgba(26,31,36,0.85), rgba(143,79,50,0.55));
}
.hx-signal__panel {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 3rem 1.5rem;
    max-width: 640px;
}
.hx-signal__brand {
    font-family: var(--font-display);
    letter-spacing: 0.2em;
    margin-bottom: 1rem;
    color: var(--copper-soft);
}
.hx-signal__panel h2 {
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 500;
    margin-bottom: 1rem;
}
.hx-signal__panel p { margin-bottom: 2rem; opacity: 0.85; }

/* ══════════════════════════════════
   ABOUT — ab-*
   ══════════════════════════════════ */
.ab-hero {
    position: relative;
    min-height: 88vh;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    color: var(--white);
}
.ab-hero__bg { position: absolute; inset: 0; overflow: hidden; }
.ab-hero__bg img {
    width: 100%;
    height: 120%;
    object-fit: cover;
    will-change: transform;
}
.ab-hero__veil {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(26,31,36,0.92) 0%, rgba(26,31,36,0.25) 55%, rgba(26,31,36,0.4) 100%);
}
.ab-hero__content {
    position: relative;
    z-index: 1;
    padding: 0 1.5rem 5rem;
    width: min(100%, 1180px);
    margin: 0 auto;
}
.ab-hero__brand {
    font-family: var(--font-display);
    letter-spacing: 0.2em;
    margin-bottom: 1rem;
    color: var(--copper-soft);
}
.ab-hero h1 {
    font-size: clamp(2.2rem, 6vw, 4rem);
    font-weight: 500;
    margin-bottom: 1rem;
}

.ab-letter { padding: clamp(4rem, 8vw, 6.5rem) 0; }
.ab-letter__grid {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 3rem;
}
.ab-letter__aside h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); font-weight: 500; }
.ab-letter__body p { color: var(--muted); margin-bottom: 1.25rem; font-size: 1.05rem; }
@media (max-width: 800px) {
    .ab-letter__grid { grid-template-columns: 1fr; gap: 1.5rem; }
}

.ab-path {
    padding: clamp(4rem, 8vw, 6rem) 0;
    background: var(--steel-deep);
    color: var(--white);
}
.ab-path h2 { font-size: clamp(1.8rem, 4vw, 2.6rem); margin-bottom: 3rem; font-weight: 500; }
.ab-path__list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}
.ab-node {
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255,255,255,0.15);
    transform: translateY(calc(var(--i) * 18px));
}
.ab-node time {
    display: block;
    font-family: var(--font-display);
    color: var(--copper-soft);
    letter-spacing: 0.1em;
    margin-bottom: 0.75rem;
}
.ab-node h3 { font-size: 1.15rem; font-weight: 500; margin-bottom: 0.6rem; }
.ab-node p { font-size: 0.92rem; color: rgba(255,255,255,0.65); }
@media (max-width: 900px) {
    .ab-path__list { grid-template-columns: 1fr 1fr; }
    .ab-node { transform: none; }
}

.ab-pillars {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 80vh;
}
.ab-pillars__media { overflow: hidden; }
.ab-pillars__media img { width: 100%; height: 100%; object-fit: cover; min-height: 560px; }
.ab-pillars__list {
    padding: clamp(3rem, 6vw, 5rem);
    background: var(--mist);
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.ab-pillars__list h2 { font-size: clamp(1.7rem, 3.5vw, 2.5rem); margin-bottom: 2rem; font-weight: 500; }
.ab-pillar {
    display: grid;
    grid-template-columns: 48px 1fr;
    gap: 1rem;
    padding: 1.35rem 0;
    border-bottom: 1px solid var(--line);
}
.ab-pillar span {
    font-family: var(--font-display);
    color: var(--copper);
    font-size: 1.1rem;
}
.ab-pillar h3 { font-size: 1.2rem; font-weight: 500; margin-bottom: 0.35rem; }
.ab-pillar p { color: var(--muted); }
@media (max-width: 900px) {
    .ab-pillars { grid-template-columns: 1fr; }
}

.ab-quote {
    position: relative;
    min-height: 55vh;
    display: grid;
    place-items: center;
    overflow: hidden;
    color: var(--white);
}
.ab-quote__bg { position: absolute; inset: -8%; }
.ab-quote__bg img { width: 100%; height: 100%; object-fit: cover; }
.ab-quote::after {
    content: '';
    position: absolute; inset: 0;
    background: rgba(26,31,36,0.72);
}
.ab-quote blockquote {
    position: relative;
    z-index: 1;
    max-width: 720px;
    padding: 2rem 1.5rem;
    text-align: center;
}
.ab-quote p {
    font-family: var(--font-display);
    font-size: clamp(1.35rem, 3vw, 2rem);
    font-weight: 400;
    line-height: 1.55;
}

.ab-crew { padding: clamp(4rem, 8vw, 6.5rem) 0; }
.ab-crew h2 { font-size: clamp(1.8rem, 4vw, 2.6rem); margin-bottom: 2.5rem; font-weight: 500; }
.ab-crew__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
}
.ab-person__img {
    overflow: hidden;
    aspect-ratio: 3/4;
    margin-bottom: 1rem;
}
.ab-person__img img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 1s var(--ease);
    filter: grayscale(0.15);
}
.ab-person:hover .ab-person__img img { transform: scale(1.05); filter: none; }
.ab-person h3 { font-size: 1.1rem; font-weight: 500; }
.ab-person p { color: var(--muted); font-size: 0.9rem; }
.ab-person span {
    display: inline-block;
    margin-top: 0.35rem;
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    color: var(--copper);
}
@media (max-width: 900px) {
    .ab-crew__grid { grid-template-columns: 1fr 1fr; }
}

.ab-horizon {
    padding: clamp(4rem, 8vw, 6rem) 0;
    background: var(--mist-deep);
}
.ab-horizon__head { max-width: 640px; margin-bottom: 2.5rem; }
.ab-horizon__head h2 { font-size: clamp(1.8rem, 4vw, 2.6rem); font-weight: 500; margin-bottom: 0.85rem; }
.ab-horizon__head p { color: var(--muted); }
.ab-horizon__cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}
.ab-vcard {
    background: var(--paper);
    overflow: hidden;
}
.ab-vcard__img { aspect-ratio: 16/10; overflow: hidden; }
.ab-vcard__img img { width: 100%; height: 100%; object-fit: cover; }
.ab-vcard h3, .ab-vcard p { padding: 0 1.25rem; }
.ab-vcard h3 { font-size: 1.1rem; font-weight: 500; margin: 1.1rem 0 0.4rem; }
.ab-vcard p { color: var(--muted); font-size: 0.92rem; padding-bottom: 1.4rem; }
@media (max-width: 800px) {
    .ab-horizon__cards { grid-template-columns: 1fr; }
}

.ab-runway {
    padding: clamp(4rem, 8vw, 6rem) 0;
    background: var(--steel-deep);
    color: var(--white);
}
.ab-runway h2 { font-size: clamp(1.8rem, 4vw, 2.6rem); margin-bottom: 2.5rem; font-weight: 500; }
.ab-runway__strip {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}
.ab-fact {
    padding: 1.5rem 0;
    border-top: 1px solid rgba(255,255,255,0.12);
}
.ab-fact__n {
    display: block;
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 500;
    color: var(--copper-soft);
}
.ab-fact__l { font-size: 0.88rem; color: rgba(255,255,255,0.55); }
@media (max-width: 700px) {
    .ab-runway__strip { grid-template-columns: 1fr 1fr; }
}

.ab-invite {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 60vh;
}
.ab-invite__media { overflow: hidden; }
.ab-invite__media img { width: 100%; height: 100%; object-fit: cover; min-height: 420px; }
.ab-invite__copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: clamp(3rem, 6vw, 5rem);
    background: var(--paper);
}
.ab-invite__copy h2 {
    font-size: clamp(1.9rem, 4vw, 2.8rem);
    font-weight: 500;
    margin-bottom: 1rem;
}
.ab-invite__copy p { color: var(--muted); margin-bottom: 1.75rem; }
@media (max-width: 800px) {
    .ab-invite { grid-template-columns: 1fr; }
}

/* ══════════════════════════════════
   SERVICES — sv-*
   ══════════════════════════════════ */
.sv-hero {
    position: relative;
    min-height: 100vh;
    min-height: 100dvh;
    display: grid;
    place-items: center;
    overflow: hidden;
    color: var(--white);
}
.sv-hero__canvas { position: absolute; inset: 0; }
.sv-hero__canvas img { width: 100%; height: 100%; object-fit: cover; }
.sv-hero__scan {
    position: absolute; inset: 0;
    background:
        linear-gradient(rgba(26,31,36,0.55), rgba(26,31,36,0.7)),
        repeating-linear-gradient(0deg, transparent, transparent 3px, rgba(181,106,69,0.04) 3px, rgba(181,106,69,0.04) 4px);
    animation: scanDrift 8s linear infinite;
}
@keyframes scanDrift {
    from { background-position: 0 0, 0 0; }
    to { background-position: 0 0, 0 80px; }
}
.sv-hero__copy {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 2rem 1.5rem;
}
.sv-hero__brand {
    font-family: var(--font-display);
    letter-spacing: 0.22em;
    margin-bottom: 1rem;
    color: var(--copper-soft);
}
.sv-hero h1 {
    font-size: clamp(2.8rem, 9vw, 5.5rem);
    font-weight: 500;
    letter-spacing: 0.06em;
    line-height: 1.05;
    margin-bottom: 1rem;
}
.sv-hero__actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.sv-orbit { padding: clamp(3.5rem, 7vw, 5.5rem) 0 2rem; }
.sv-orbit h2 { font-size: clamp(1.8rem, 4vw, 2.6rem); margin-bottom: 2rem; font-weight: 500; }
.sv-orbit__ring {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    padding: 0 1.5rem 1.5rem;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
}
.sv-orbit__ring::-webkit-scrollbar { display: none; }
.sv-chip {
    flex: 0 0 200px;
    scroll-snap-align: start;
    background: var(--paper);
    border: 1px solid var(--line);
    overflow: hidden;
    transition: border-color 0.3s, transform 0.4s var(--ease);
}
.sv-chip:hover { border-color: var(--copper); transform: translateY(-4px); }
.sv-chip img { width: 100%; height: 120px; object-fit: cover; }
.sv-chip span {
    display: block;
    padding: 0.85rem 0.9rem 0.2rem;
    font-family: var(--font-display);
    font-weight: 500;
    font-size: 0.95rem;
}
.sv-chip em {
    display: block;
    padding: 0 0.9rem 1rem;
    font-style: normal;
    font-size: 0.8rem;
    color: var(--copper);
}

.sv-index { padding: clamp(3rem, 6vw, 5rem) 0; }
.sv-index h2 { font-size: clamp(1.8rem, 4vw, 2.6rem); margin-bottom: 2.5rem; font-weight: 500; }
.sv-list { list-style: none; }
.sv-row {
    display: grid;
    grid-template-columns: 64px 160px 1fr auto;
    gap: 1.5rem;
    align-items: center;
    padding: 1.5rem 0;
    border-bottom: 1px solid var(--line);
}
.sv-row__code {
    font-family: var(--font-display);
    font-size: 1.4rem;
    color: var(--copper);
    font-weight: 500;
}
.sv-row__thumb { overflow: hidden; aspect-ratio: 16/10; }
.sv-row__thumb img { width: 100%; height: 100%; object-fit: cover; }
.sv-row__tag {
    display: inline-block;
    font-size: 0.68rem;
    letter-spacing: 0.14em;
    color: var(--copper);
    margin-bottom: 0.35rem;
}
.sv-row__copy h3 { font-size: 1.2rem; font-weight: 500; margin-bottom: 0.35rem; }
.sv-row__copy p { color: var(--muted); font-size: 0.92rem; }
.sv-row__meta {
    text-align: right;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    align-items: flex-end;
}
.sv-row__meta span {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 500;
}
.sv-row__meta a { color: var(--copper-deep); font-size: 0.88rem; }
@media (max-width: 800px) {
    .sv-row {
        grid-template-columns: 1fr;
        grid-template-areas:
            "thumb"
            "code"
            "copy"
            "meta";
        gap: 0.85rem;
        padding: 2rem 0;
    }
    .sv-row__code {
        grid-area: code;
        font-size: 1.15rem;
    }
    .sv-row__thumb {
        grid-area: thumb;
        grid-column: auto;
        aspect-ratio: 16/10;
    }
    .sv-row__copy { grid-area: copy; }
    .sv-row__meta {
        grid-area: meta;
        grid-column: auto;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        text-align: left;
        width: 100%;
    }
}

.sv-zones {
    padding: clamp(4rem, 7vw, 6rem) 0;
    background: var(--mist);
}
.sv-zones h2 { font-size: clamp(1.8rem, 4vw, 2.6rem); margin-bottom: 2.5rem; font-weight: 500; }
.sv-zones__row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--line);
    border: 1px solid var(--line);
}
.sv-zone {
    background: var(--paper);
    padding: 2.5rem 1.75rem;
}
.sv-zone__code {
    font-family: var(--font-display);
    color: var(--copper);
    letter-spacing: 0.12em;
}
.sv-zone h3 { font-size: 1.4rem; font-weight: 500; margin: 0.75rem 0; }
.sv-zone__price {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 500;
    margin-bottom: 0.75rem;
}
.sv-zone p:last-child { color: var(--muted); font-size: 0.92rem; }
@media (max-width: 700px) {
    .sv-zones__row { grid-template-columns: 1fr; }
}

.sv-route {
    padding: clamp(4rem, 7vw, 6rem) 0;
    background: var(--steel-deep);
    color: var(--white);
}
.sv-route h2 { font-size: clamp(1.8rem, 4vw, 2.6rem); margin-bottom: 3rem; font-weight: 500; }
.sv-route__map {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    position: relative;
}
.sv-route__line {
    position: absolute;
    top: 1.1rem;
    left: 8%;
    right: 8%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(181,106,69,0.7), transparent);
}
.sv-stop span {
    display: inline-block;
    font-family: var(--font-display);
    color: var(--copper-soft);
    letter-spacing: 0.1em;
    font-size: 0.82rem;
    margin-bottom: 1rem;
    background: var(--steel-deep);
    position: relative;
    padding-right: 0.5rem;
}
.sv-stop h3 { font-size: 1.15rem; font-weight: 500; margin-bottom: 0.5rem; }
.sv-stop p { font-size: 0.9rem; color: rgba(255,255,255,0.6); }
@media (max-width: 800px) {
    .sv-route__map { grid-template-columns: 1fr 1fr; }
    .sv-route__line { display: none; }
}

.sv-included { padding: clamp(3.5rem, 6vw, 5rem) 0; overflow: hidden; }
.sv-included h2 { font-size: clamp(1.8rem, 4vw, 2.6rem); margin-bottom: 2rem; font-weight: 500; }
.sv-ticker { overflow: hidden; border-block: 1px solid var(--line); padding: 1.5rem 0; }
.sv-ticker__track {
    display: flex;
    width: max-content;
    gap: 3rem;
    animation: marquee 32s linear infinite;
}
.sv-ticker__item { display: flex; flex-direction: column; min-width: 160px; }
.sv-ticker__item span {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 500;
}
.sv-ticker__item em {
    font-style: normal;
    font-size: 0.85rem;
    color: var(--muted);
}

.sv-garage { padding: clamp(3rem, 6vw, 5rem) 0 4rem; }
.sv-garage h2 { font-size: clamp(1.8rem, 4vw, 2.6rem); margin-bottom: 2rem; font-weight: 500; }
.sv-garage__wall {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-auto-flow: dense;
    gap: 0.85rem;
    padding: 0 1.5rem;
    max-width: 1320px;
    margin: 0 auto;
}
.sv-shot {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/3;
    background: var(--steel-deep);
}
.sv-shot--tall { grid-row: span 2; aspect-ratio: auto; min-height: 100%; }
.sv-shot--wide { grid-column: span 2; }
.sv-shot img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.1s var(--ease);
}
.sv-shot.is-inview img { transform: scale(1.04); }
.sv-shot:hover img { transform: scale(1.08); }
.sv-shot figcaption {
    position: absolute;
    left: 0; right: 0; bottom: 0;
    padding: 2.25rem 1rem 0.9rem;
    color: var(--white);
    font-size: 0.72rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    background: linear-gradient(to top, rgba(26,31,36,0.75), transparent);
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 0.5s var(--ease) 0.15s, transform 0.55s var(--ease) 0.15s;
}
.sv-shot.is-inview figcaption {
    opacity: 1;
    transform: none;
}
@media (max-width: 800px) {
    .sv-garage__wall {
        grid-template-columns: 1fr 1fr;
        gap: 0.65rem;
        padding: 0 1.15rem;
    }
    /* Keep masonry: tall left, two stacked right, wide full-bleed bottom */
    .sv-shot--tall {
        grid-row: span 2;
        aspect-ratio: auto;
        min-height: 0;
    }
    .sv-shot--wide { grid-column: 1 / -1; aspect-ratio: 16/10; }
    .sv-shot figcaption {
        opacity: 1;
        transform: none;
        font-size: 0.68rem;
        padding: 1.75rem 0.75rem 0.7rem;
    }
}
@media (max-width: 480px) {
    .sv-garage__wall { gap: 0.5rem; }
    .sv-shot:not(.sv-shot--tall):not(.sv-shot--wide) { aspect-ratio: 1; }
}

.sv-cta {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 65vh;
    background: var(--steel-deep);
    color: var(--white);
}
.sv-cta__panel {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: clamp(3rem, 6vw, 5rem);
}
.sv-cta__brand {
    font-family: var(--font-display);
    letter-spacing: 0.2em;
    color: var(--copper-soft);
    margin-bottom: 1rem;
}
.sv-cta__panel h2 {
    font-size: clamp(1.9rem, 4vw, 2.9rem);
    font-weight: 500;
    margin-bottom: 1rem;
}
.sv-cta__panel p { opacity: 0.75; margin-bottom: 2rem; }
.sv-cta__media { overflow: hidden; }
.sv-cta__media img { width: 100%; height: 100%; object-fit: cover; min-height: 420px; }
@media (max-width: 800px) {
    .sv-cta { grid-template-columns: 1fr; }
}

/* ══════════════════════════════════
   BLOG — bg-*
   ══════════════════════════════════ */
.bg-mast {
    padding: calc(var(--header-h) + 3.5rem) 0 2rem;
}
.bg-mast__brand {
    font-family: var(--font-display);
    letter-spacing: 0.2em;
    color: var(--copper);
    margin-bottom: 0.75rem;
}
.bg-mast h1 {
    font-size: clamp(2.4rem, 7vw, 4.2rem);
    font-weight: 500;
    margin-bottom: 0.75rem;
}
.bg-mast p { color: var(--muted); max-width: 42ch; }
.bg-mast__line {
    height: 1px;
    background: linear-gradient(90deg, var(--copper), transparent);
    margin-top: 2.5rem;
}

.bg-cover { padding: 0 1.5rem 3rem; }
.bg-cover__main {
    position: relative;
    max-width: 1320px;
    margin: 0 auto;
    overflow: hidden;
    min-height: 62vh;
}
.bg-cover__main img {
    width: 100%; height: 100%;
    object-fit: cover;
    min-height: 62vh;
}
.bg-cover__meta {
    position: absolute;
    inset: auto 0 0;
    padding: clamp(1.5rem, 4vw, 3rem);
    background: linear-gradient(to top, rgba(26,31,36,0.9), transparent);
    color: var(--white);
    max-width: 720px;
}
.bg-cover__meta span {
    font-size: 0.72rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--copper-soft);
}
.bg-cover__meta time {
    display: block;
    font-size: 0.82rem;
    opacity: 0.7;
    margin: 0.4rem 0 0.75rem;
}
.bg-cover__meta h2 {
    font-size: clamp(1.4rem, 3vw, 2.1rem);
    font-weight: 500;
    margin-bottom: 0.6rem;
}

.bg-filter { padding: 0 0 1.5rem; }
.bg-filter__bar {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}
.bg-filter__bar button {
    background: transparent;
    border: 1px solid var(--line);
    padding: 0.55rem 1.1rem;
    cursor: pointer;
    font-size: 0.82rem;
    letter-spacing: 0.06em;
    color: var(--steel-mid);
    transition: border-color 0.25s, color 0.25s, background 0.25s;
}
.bg-filter__bar button.is-active,
.bg-filter__bar button:hover {
    border-color: var(--copper);
    color: var(--copper-deep);
    background: var(--copper-soft);
}

.bg-stack { padding: 1rem 0 4rem; }
.bg-article {
    display: grid;
    grid-template-columns: 220px 1fr auto;
    gap: 1.75rem;
    align-items: center;
    padding: 1.75rem 0;
    border-bottom: 1px solid var(--line);
    transition: opacity 0.35s;
}
.bg-article.is-hidden { display: none; }
.bg-article__img { overflow: hidden; aspect-ratio: 4/3; }
.bg-article__img img { width: 100%; height: 100%; object-fit: cover; }
.bg-article__body time {
    font-size: 0.78rem;
    color: var(--muted);
    letter-spacing: 0.06em;
}
.bg-article__body h3 {
    font-size: 1.25rem;
    font-weight: 500;
    margin: 0.4rem 0 0.5rem;
}
.bg-article__body p { color: var(--muted); font-size: 0.95rem; }
.bg-article__cat {
    font-size: 0.72rem;
    letter-spacing: 0.12em;
    color: var(--copper);
    writing-mode: vertical-rl;
}
@media (max-width: 800px) {
    .bg-article {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    .bg-article__cat { writing-mode: horizontal-tb; }
}

.bg-tips {
    padding: clamp(4rem, 7vw, 6rem) 0;
    background: var(--steel-deep);
    color: var(--white);
}
.bg-tips h2 { font-size: clamp(1.8rem, 4vw, 2.6rem); margin-bottom: 2.5rem; font-weight: 500; }
.bg-tips__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}
.bg-tip {
    padding-top: 1.25rem;
    border-top: 1px solid rgba(255,255,255,0.15);
}
.bg-tip span {
    font-family: var(--font-display);
    color: var(--copper-soft);
    letter-spacing: 0.1em;
}
.bg-tip h3 { font-size: 1.15rem; font-weight: 500; margin: 0.75rem 0 0.5rem; }
.bg-tip p { font-size: 0.9rem; color: rgba(255,255,255,0.6); }
@media (max-width: 800px) {
    .bg-tips__grid { grid-template-columns: 1fr 1fr; }
}

.bg-seasons { padding: clamp(4rem, 7vw, 6rem) 0; }
.bg-seasons h2 { font-size: clamp(1.8rem, 4vw, 2.6rem); margin-bottom: 2.5rem; font-weight: 500; }
.bg-seasons__dial {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}
.bg-season {
    position: relative;
    overflow: hidden;
    min-height: 420px;
    color: var(--white);
}
.bg-season img {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
}
.bg-season::after {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(26,31,36,0.88), rgba(26,31,36,0.2));
}
.bg-season > div {
    position: relative;
    z-index: 1;
    height: 100%;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}
.bg-season span {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--copper-soft);
    font-weight: 500;
}
.bg-season h3 { font-size: 1.1rem; font-weight: 500; margin: 0.5rem 0; }
.bg-season p { font-size: 0.88rem; opacity: 0.8; }
@media (max-width: 900px) {
    .bg-seasons__dial { grid-template-columns: 1fr 1fr; }
}

.bg-notes {
    padding: clamp(4rem, 7vw, 6rem) 0;
    background: var(--mist);
}
.bg-notes h2 { font-size: clamp(1.8rem, 4vw, 2.6rem); margin-bottom: 2.5rem; font-weight: 500; }
.bg-notes__row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}
.bg-note img {
    width: 100%;
    aspect-ratio: 5/3.4;
    object-fit: cover;
    margin-bottom: 1rem;
}
.bg-note h3 { font-size: 1.15rem; font-weight: 500; margin-bottom: 0.4rem; }
.bg-note p { color: var(--muted); font-size: 0.92rem; }
@media (max-width: 800px) {
    .bg-notes__row { grid-template-columns: 1fr; }
}

.bg-subscribe {
    position: relative;
    min-height: 65vh;
    display: grid;
    place-items: center;
    overflow: hidden;
    color: var(--white);
}
.bg-subscribe__bg { position: absolute; inset: -10%; }
.bg-subscribe__bg img { width: 100%; height: 100%; object-fit: cover; }
.bg-subscribe::after {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(26,31,36,0.88), rgba(143,79,50,0.55));
}
.bg-subscribe__inner {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 3rem 1.5rem;
    max-width: 560px;
}
.bg-subscribe__brand {
    font-family: var(--font-display);
    letter-spacing: 0.2em;
    color: var(--copper-soft);
    margin-bottom: 1rem;
}
.bg-subscribe__inner h2 {
    font-size: clamp(1.9rem, 4vw, 2.8rem);
    font-weight: 500;
    margin-bottom: 1rem;
}
.bg-subscribe__inner p { margin-bottom: 2rem; opacity: 0.85; }

/* ══════════════════════════════════
   CONTACT — ct-*
   ══════════════════════════════════ */
.ct-dock {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 100vh;
    min-height: 100dvh;
}
.ct-dock__visual {
    position: relative;
    overflow: hidden;
}
.ct-dock__visual img {
    width: 100%; height: 100%;
    object-fit: cover;
    min-height: 100%;
}
.ct-dock__caption {
    position: absolute;
    left: 1.5rem; bottom: 2rem;
    color: var(--white);
    z-index: 1;
}
.ct-dock__caption::before {
    content: '';
    position: absolute;
    inset: -40% -20% -60%;
    background: linear-gradient(to top, rgba(26,31,36,0.75), transparent);
    z-index: -1;
}
.ct-dock__caption p {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 500;
}
.ct-dock__caption span { font-size: 0.9rem; opacity: 0.8; }
.ct-dock__form {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: calc(var(--header-h) + 2rem) clamp(1.5rem, 5vw, 4rem) 3rem;
    background: var(--paper);
}
.ct-dock__brand {
    font-family: var(--font-display);
    letter-spacing: 0.2em;
    color: var(--copper);
    margin-bottom: 0.75rem;
}
.ct-dock__form h1 {
    font-size: clamp(1.9rem, 4vw, 2.8rem);
    font-weight: 500;
    margin-bottom: 0.75rem;
}
.ct-dock__form > p { color: var(--muted); margin-bottom: 1.75rem; }
.ct-form label {
    display: block;
    margin-bottom: 1.15rem;
}
.ct-form label span {
    display: block;
    font-size: 0.78rem;
    letter-spacing: 0.1em;
    margin-bottom: 0.4rem;
    color: var(--muted);
}
.ct-form input,
.ct-form textarea {
    width: 100%;
    border: 0;
    border-bottom: 1px solid var(--line);
    background: transparent;
    padding: 0.75rem 0;
    color: var(--steel);
    outline: none;
    transition: border-color 0.25s;
    resize: vertical;
}
.ct-form input:focus,
.ct-form textarea:focus { border-color: var(--copper); }
@media (max-width: 900px) {
    .ct-dock { grid-template-columns: 1fr; }
    .ct-dock__visual { min-height: 42vh; }
}

.ct-channels { padding: clamp(4rem, 7vw, 6rem) 0; }
.ct-channels h2 { font-size: clamp(1.8rem, 4vw, 2.6rem); margin-bottom: 2.5rem; font-weight: 500; }
.ct-channels__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}
.ct-channel {
    padding: 2rem 1.5rem;
    border-top: 2px solid var(--copper);
    background: var(--mist);
    transition: transform 0.4s var(--ease), background 0.3s;
}
.ct-channel:hover { transform: translateY(-4px); background: var(--copper-soft); }
.ct-channel span {
    display: block;
    font-size: 0.72rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--copper);
    margin-bottom: 0.75rem;
}
.ct-channel strong {
    display: block;
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
}
.ct-channel em {
    font-style: normal;
    font-size: 0.88rem;
    color: var(--muted);
}
@media (max-width: 700px) {
    .ct-channels__grid { grid-template-columns: 1fr; }
}

.ct-hours {
    padding: clamp(3.5rem, 6vw, 5rem) 0;
    background: var(--steel-deep);
    color: var(--white);
}
.ct-hours h2 { font-size: clamp(1.8rem, 4vw, 2.6rem); margin-bottom: 0.75rem; font-weight: 500; }
.ct-hours__note { color: rgba(255,255,255,0.6); margin-bottom: 2rem; }
.ct-hours__row {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 0.5rem;
}
.ct-day {
    text-align: center;
    padding: 1.25rem 0.5rem;
    border: 1px solid rgba(255,255,255,0.12);
}
.ct-day span {
    display: block;
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--copper-soft);
    margin-bottom: 0.4rem;
}
.ct-day em { font-style: normal; font-size: 0.82rem; opacity: 0.7; }
@media (max-width: 700px) {
    .ct-hours__row { grid-template-columns: repeat(4, 1fr); }
}

.ct-map { height: 48vh; min-height: 320px; }
.ct-map iframe { width: 100%; height: 100%; border: 0; filter: grayscale(0.35) contrast(1.05); }

.ct-flow { padding: clamp(4rem, 7vw, 6rem) 0; }
.ct-flow h2 { font-size: clamp(1.8rem, 4vw, 2.6rem); margin-bottom: 2.5rem; font-weight: 500; }
.ct-flow__track {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}
.ct-step {
    padding: 1.5rem 0;
    border-top: 1px solid var(--line);
}
.ct-step span {
    font-family: var(--font-display);
    color: var(--copper);
    letter-spacing: 0.1em;
}
.ct-step h3 { font-size: 1.2rem; font-weight: 500; margin: 0.6rem 0 0.45rem; }
.ct-step p { color: var(--muted); font-size: 0.92rem; }
@media (max-width: 800px) {
    .ct-flow__track { grid-template-columns: 1fr 1fr; }
}

.ct-glimpse { padding: 0 0 clamp(4rem, 7vw, 6rem); }
.ct-glimpse__grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 1rem;
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 1.5rem;
}
.ct-glimpse figure { overflow: hidden; aspect-ratio: 4/5; }
.ct-glimpse img { width: 100%; height: 100%; object-fit: cover; }
.ct-glimpse__copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 1.5rem;
    background: var(--mist);
}
.ct-glimpse__copy h2 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 500;
    margin-bottom: 0.85rem;
}
.ct-glimpse__copy p { color: var(--muted); }
@media (max-width: 800px) {
    .ct-glimpse__grid { grid-template-columns: 1fr; }
    .ct-glimpse figure { aspect-ratio: 16/10; }
}

.ct-faq {
    padding: clamp(4rem, 7vw, 6rem) 0;
    background: var(--mist);
}
.ct-faq__wrap { max-width: 760px; }
.ct-faq h2 { font-size: clamp(1.8rem, 4vw, 2.6rem); margin-bottom: 2rem; font-weight: 500; }
.ct-faq details {
    border-bottom: 1px solid var(--line);
    padding: 1.15rem 0;
}
.ct-faq summary {
    cursor: pointer;
    list-style: none;
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 500;
    display: flex;
    justify-content: space-between;
    gap: 1rem;
}
.ct-faq summary::-webkit-details-marker { display: none; }
.ct-faq summary::after {
    content: '+';
    color: var(--copper);
    font-weight: 400;
}
.ct-faq details[open] summary::after { content: '−'; }
.ct-faq details p {
    padding-top: 0.85rem;
    color: var(--muted);
    font-size: 0.95rem;
}

.ct-final {
    display: grid;
    grid-template-columns: 1fr 1fr;
}
.ct-final__social,
.ct-final__cta {
    padding: clamp(3.5rem, 7vw, 5.5rem) clamp(1.5rem, 5vw, 4rem);
}
.ct-final__social { background: var(--paper); }
.ct-final__cta {
    background: var(--steel-deep);
    color: var(--white);
}
.ct-final h2 {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 500;
    margin-bottom: 1rem;
}
.ct-final__icons {
    display: flex;
    gap: 0.85rem;
    margin-top: 1.5rem;
}
.ct-final__icons a {
    width: 44px; height: 44px;
    display: grid; place-items: center;
    border: 1px solid var(--line);
}
.ct-final__cta p { opacity: 0.75; margin-bottom: 1.75rem; }
@media (max-width: 700px) {
    .ct-final { grid-template-columns: 1fr; }
}

/* ══════════════════════════════════
   MOBILE POLISH — motion · touch · layout
   ══════════════════════════════════ */
.menu-toggle span {
    transform-origin: center;
    transition: transform 0.35s var(--ease), opacity 0.25s, background 0.25s;
}
.site-header.is-menu-open .menu-toggle span:nth-child(1) {
    transform: translateY(7.5px) rotate(45deg);
}
.site-header.is-menu-open .menu-toggle span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}
.site-header.is-menu-open .menu-toggle span:nth-child(3) {
    transform: translateY(-7.5px) rotate(-45deg);
}
.site-header.is-menu-open .menu-toggle span { background: var(--steel) !important; }
.site-header.is-menu-open {
    background: transparent !important;
    box-shadow: none !important;
    backdrop-filter: none !important;
}
.site-header.is-menu-open .site-logo__name {
    color: var(--steel) !important;
}
.site-header.is-menu-open .site-logo__mark {
    border-color: var(--copper) !important;
}
.site-header.is-menu-open .site-logo__mark::after {
    background: var(--copper) !important;
}

.mobile-nav {
    inset: 0;
    z-index: 999;
    background:
        radial-gradient(ellipse at 80% 0%, rgba(181,106,69,0.14), transparent 45%),
        rgba(247, 245, 242, 0.98);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    opacity: 0;
    transform: translateY(-8px);
    transition: opacity 0.4s var(--ease), transform 0.45s var(--ease);
}
.mobile-nav.is-open {
    opacity: 1;
    transform: translateY(0);
}
.mobile-nav__inner {
    min-height: 100dvh;
    padding: calc(var(--header-h) + 2rem) 1.75rem 3rem;
    gap: 0;
}
.mobile-nav__link,
.mobile-nav__cta {
    display: block;
    padding: 1.05rem 0;
    border-bottom: 1px solid var(--line);
    font-size: clamp(1.35rem, 5.5vw, 1.75rem);
    letter-spacing: 0.04em;
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.45s var(--ease), transform 0.5s var(--ease), color 0.25s;
}
.mobile-nav.is-open .mobile-nav__link,
.mobile-nav.is-open .mobile-nav__cta {
    opacity: 1;
    transform: none;
}
.mobile-nav.is-open .mobile-nav__link:nth-child(1) { transition-delay: 0.05s; }
.mobile-nav.is-open .mobile-nav__link:nth-child(2) { transition-delay: 0.1s; }
.mobile-nav.is-open .mobile-nav__link:nth-child(3) { transition-delay: 0.15s; }
.mobile-nav.is-open .mobile-nav__link:nth-child(4) { transition-delay: 0.2s; }
.mobile-nav.is-open .mobile-nav__cta { transition-delay: 0.28s; border-bottom: 0; margin-top: 0.75rem; }
.mobile-nav__link.is-active,
.mobile-nav__cta.is-active { color: var(--copper); }
.mobile-nav__cta {
    display: inline-flex;
    width: fit-content;
    padding: 0.9rem 1.4rem;
    border: 1px solid var(--copper);
    color: var(--copper-deep);
}

.btn {
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
}
.btn.is-pressing { transform: scale(0.96) translateY(1px); }
.footer-social a,
.ct-final__icons a {
    transition: transform 0.35s var(--ease), background 0.25s, border-color 0.25s, color 0.25s;
}
.footer-social a:hover,
.ct-final__icons a:hover {
    color: var(--copper-soft);
    border-color: var(--copper);
    transform: translateY(-3px);
}
.ct-final__icons a:hover { color: var(--copper); }

@media (max-width: 768px) {
    :root { --header-h: 64px; }

    html, body { overflow-x: hidden; }
    .container { padding: 0 1.15rem; }

    /* ── Buttons ── */
    .btn {
        width: 100%;
        max-width: 100%;
        min-height: 52px;
        padding: 1.05rem 1.4rem;
        position: relative;
        line-height: 1.3;
        overflow: visible;
    }
    .btn::after {
        content: '';
        position: absolute;
        inset: 0;
        background: radial-gradient(circle at var(--rx, 50%) var(--ry, 50%), rgba(255,255,255,0.35), transparent 45%);
        opacity: 0;
        transition: opacity 0.35s;
        pointer-events: none;
        border-radius: inherit;
    }
    .btn.is-pressing::after { opacity: 1; }
    .hx-hero__cta .btn,
    .hx-signal__panel .btn,
    .sv-hero__actions .btn,
    .sv-cta__panel .btn,
    .ct-dock__form .btn,
    .ct-final__cta .btn,
    .bg-subscribe__inner .btn,
    .ab-invite .btn {
        animation: mobileBtnGlow 3.2s ease-in-out infinite;
    }
    .hx-hero__cta,
    .sv-hero__actions {
        flex-direction: column;
        align-items: stretch;
        gap: 0.75rem;
        width: min(100%, 340px);
        margin-inline: auto;
    }

    /* ── Home hero ── */
    .hx-hero__brand {
        font-size: clamp(2.1rem, 11vw, 3rem);
        line-height: 1.1;
        word-break: break-word;
    }
    .hx-hero__line { font-size: 1.05rem; letter-spacing: 0.04em; }
    .hx-hero__sub { font-size: 0.92rem; padding: 0 0.25rem; }
    .hx-hero__layer--mid {
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
        opacity: 0.55;
        animation: mobileKenBurns 18s ease-in-out infinite alternate;
    }
    .hx-hero__layer--back {
        animation: mobileKenBurnsSlow 22s ease-in-out infinite alternate;
    }
    .hx-hero__copy > * {
        animation: mobileFadeRise 0.9s var(--ease) both;
    }
    .hx-hero__copy .hx-hero__brand { animation-delay: 0.08s; }
    .hx-hero__copy .hx-hero__line { animation-delay: 0.2s; }
    .hx-hero__copy .hx-hero__sub { animation-delay: 0.32s; }
    .hx-hero__copy .hx-hero__cta { animation-delay: 0.44s; }

    /* ── Page heroes (about / services / blog / contact) ── */
    .ab-hero__content > *,
    .sv-hero__copy > *,
    .bg-mast .container > *,
    .ct-dock__form > h1,
    .ct-dock__form > p:first-of-type {
        animation: mobileFadeRise 0.85s var(--ease) both;
    }
    .ab-hero__content > *:nth-child(1),
    .sv-hero__copy > *:nth-child(1),
    .bg-mast .container > *:nth-child(1) { animation-delay: 0.06s; }
    .ab-hero__content > *:nth-child(2),
    .sv-hero__copy > *:nth-child(2),
    .bg-mast .container > *:nth-child(2) { animation-delay: 0.18s; }
    .ab-hero__content > *:nth-child(3),
    .sv-hero__copy > *:nth-child(3),
    .bg-mast .container > *:nth-child(3) { animation-delay: 0.3s; }
    .sv-hero__copy > *:nth-child(4) { animation-delay: 0.42s; }

    .ab-hero__bg img {
        animation: mobileKenBurnsSlow 24s ease-in-out infinite alternate;
    }
    .sv-hero__canvas img,
    .ct-dock__visual img {
        animation: mobileKenBurns 20s ease-in-out infinite alternate;
    }

    /* ── Reveal system (snappier on phones) ── */
    .reveal-up, .reveal-clip, .reveal-mask, .reveal-scale,
    [data-stagger] > * {
        transform: translateY(28px);
        transition-duration: 0.75s, 0.85s, 0.9s, 0.75s;
    }
    .reveal-mask { clip-path: inset(8% 8% 8% 8%); transform: scale(1.04); }
    .reveal-scale { transform: scale(0.94); filter: blur(2px); }
    [data-stagger] > *.is-inview { transition-delay: calc(var(--d, 0) * 70ms); }

    /* Staggered text inside revealed cards */
    .is-inview .hx-promise__copy > *,
    .is-inview .hx-tile > div > *,
    .is-inview .hx-quote > *,
    .is-inview .sv-chip > *,
    .is-inview .ct-channel > *,
    .is-inview .ab-crew article > *:not(img) {
        animation: mobileFadeRise 0.7s var(--ease) both;
    }
    .is-inview .hx-promise__copy > *:nth-child(1),
    .is-inview .hx-tile > div > *:nth-child(1) { animation-delay: 0.08s; }
    .is-inview .hx-promise__copy > *:nth-child(2),
    .is-inview .hx-tile > div > *:nth-child(2) { animation-delay: 0.16s; }
    .is-inview .hx-promise__copy > *:nth-child(3),
    .is-inview .hx-tile > div > *:nth-child(3) { animation-delay: 0.24s; }

    /* ── Living images ── */
    .hx-lane__img,
    .sv-shot,
    .hx-film__frames figure,
    .hx-promise__media,
    .hx-tile,
    .ab-pillars__media,
    .sv-cta__media,
    .bg-cover__main,
    .reveal-mask {
        overflow: hidden;
    }
    .is-inview .hx-lane__img img,
    .sv-shot.is-inview img,
    .hx-film__frames figure.is-inview img,
    .hx-promise__card.is-inview .hx-promise__media img,
    .hx-tile.is-inview > img,
    .reveal-mask.is-inview img,
    .ab-pillars__media.is-inview img,
    .sv-cta__media.is-inview img,
    .bg-cover__main.is-inview img {
        animation: mobileImgDrift 12s ease-in-out infinite alternate;
    }

    .site-logo__sub { display: none; }
    .site-logo__name { font-size: 0.95rem; }

    .hx-pulse__grid { grid-template-columns: 1fr 1fr; gap: 1.25rem; }
    .hx-meter {
        padding: 1.1rem 0.85rem;
        transition: transform 0.4s var(--ease);
    }
    .hx-meter.is-inview { animation: mobileFadeRise 0.7s var(--ease) both; }

    .hx-lanes__track,
    .sv-orbit__ring {
        padding-inline: 1.15rem;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        gap: 0.85rem;
    }
    .hx-lane,
    .sv-chip {
        scroll-snap-align: start;
        flex: 0 0 min(78vw, 300px);
    }
    .hx-lane__img { aspect-ratio: 3/4; }

    .hx-film__frames {
        display: flex;
        gap: 0.65rem;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        padding: 0 1.15rem;
    }
    .hx-film__frames figure {
        flex: 0 0 78vw;
        scroll-snap-align: center;
        margin: 0;
    }

    .hx-voices__rail {
        display: flex;
        gap: 0.85rem;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 0.5rem;
    }
    .hx-quote {
        flex: 0 0 min(86vw, 340px);
        scroll-snap-align: start;
    }

    .ct-dock__form { padding: 2.25rem 1.15rem 3rem; }
    .ct-form label { margin-bottom: 1rem; }
    .ct-form input,
    .ct-form textarea {
        min-height: 48px;
        font-size: 16px;
        transition: border-color 0.3s, box-shadow 0.3s;
    }
    .ct-form input:focus,
    .ct-form textarea:focus {
        outline: none;
        border-color: var(--copper);
        box-shadow: 0 0 0 3px rgba(181, 106, 69, 0.18);
    }
    .ct-form textarea { min-height: 140px; }

    .ct-faq details {
        transition: background 0.3s;
    }
    .ct-faq details[open] {
        background: rgba(181, 106, 69, 0.06);
        padding-inline: 0.75rem;
        margin-inline: -0.75rem;
    }
    .ct-faq details[open] p {
        animation: mobileFadeRise 0.45s var(--ease) both;
    }

    .site-footer__bottom {
        gap: 1.25rem;
        justify-content: center;
        text-align: center;
    }
    .footer-social {
        order: -1;
        width: 100%;
        justify-content: center;
        gap: 1rem;
    }
    .footer-social a {
        width: 44px;
        height: 44px;
        display: grid;
        place-items: center;
        border: 1px solid rgba(255,255,255,0.18);
    }

    .back-to-top {
        position: fixed;
        right: 1rem;
        bottom: 1.25rem;
        z-index: 50;
        width: 48px;
        height: 48px;
        background: rgba(26, 31, 36, 0.92);
        border-color: rgba(181, 106, 69, 0.55);
        box-shadow: 0 10px 28px rgba(26, 31, 36, 0.28);
        opacity: 0;
        pointer-events: none;
        transform: translateY(12px) scale(0.9);
        transition: opacity 0.35s, transform 0.35s var(--ease);
    }
    .back-to-top.is-visible {
        opacity: 1;
        pointer-events: auto;
        transform: none;
        animation: mobileBtnGlow 3.5s ease-in-out infinite;
    }
    .text-link {
        display: inline-flex;
        min-height: 44px;
        align-items: center;
    }
}

@keyframes mobileFadeRise {
    from { opacity: 0; transform: translateY(22px); }
    to { opacity: 1; transform: none; }
}
@keyframes mobileKenBurns {
    from { transform: scale(1) translate3d(0, 0, 0); }
    to { transform: scale(1.12) translate3d(-2%, 1.5%, 0); }
}
@keyframes mobileKenBurnsSlow {
    from { transform: scale(1.05) translate3d(0, 0, 0); }
    to { transform: scale(1.14) translate3d(2%, -1%, 0); }
}
@keyframes mobileImgDrift {
    from { transform: scale(1.06) translate3d(0, 0, 0); }
    to { transform: scale(1.12) translate3d(0, -2.5%, 0); }
}
@keyframes mobileBtnGlow {
    0%, 100% { box-shadow: 0 0 0 0 rgba(181, 106, 69, 0); }
    50% { box-shadow: 0 10px 28px rgba(181, 106, 69, 0.28); }
}

@media (prefers-reduced-motion: reduce) {
    .btn-cta,
    .back-to-top.is-visible {
        animation: none !important;
    }
}
@media (max-width: 768px) and (prefers-reduced-motion: reduce) {
    .hx-hero__layer--mid,
    .hx-hero__layer--back,
    .hx-hero__copy > *,
    .ab-hero__content > *,
    .sv-hero__copy > *,
    .bg-mast .container > *,
    .ab-hero__bg img,
    .sv-hero__canvas img,
    .ct-dock__visual img,
    .is-inview .hx-lane__img img,
    .sv-shot.is-inview img,
    .hx-film__frames figure.is-inview img,
    .hx-promise__card.is-inview .hx-promise__media img,
    .hx-tile.is-inview > img,
    .reveal-mask.is-inview img,
    .is-inview .hx-promise__copy > *,
    .is-inview .hx-tile > div > *,
    .hx-hero__cta .btn,
    .hx-signal__panel .btn,
    .sv-hero__actions .btn,
    .sv-cta__panel .btn,
    .ct-dock__form .btn,
    .ct-final__cta .btn,
    .bg-subscribe__inner .btn,
    .ab-invite .btn,
    .back-to-top.is-visible {
        animation: none !important;
    }
}

