/* ═══════════════════════════════════════════
   Luxenihon — Motor Atelier Theme
   Japanese-only · Luxury automobiles
═══════════════════════════════════════════ */
:root {
    color-scheme: light;
    --ink: #12151c;
    --ink-soft: #1e2430;
    --bg: #f4f2ee;
    --sand: #f4f2ee;
    --sand-deep: #e4e0d8;
    --surface: #ffffff;
    --sunset: #b33a2b;
    --amber: #c9a227;
    --gold: #d4b45a;
    --ocean: #2a3a4a;
    --foam: #8fa3b5;
    --glass: rgba(244, 242, 238, 0.14);
    --glass-strong: rgba(244, 242, 238, 0.92);
    --text: #12151c;
    --muted: #5c6570;
    --border: rgba(18, 21, 28, 0.1);
    --shadow: 0 24px 50px rgba(18, 21, 28, 0.14);
    --radius: 20px;
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --font-display: "Zen Old Mincho", "Noto Serif JP", serif;
    --font-body: "Zen Kaku Gothic New", "Noto Sans JP", sans-serif;
    --font-accent: "Outfit", "Zen Kaku Gothic New", sans-serif;
}
body.dark-theme {
    color-scheme: dark;
    --bg: #12151c;
    --sand-deep: #1a1f2a;
    --surface: #1e2430;
    --text: #f4f2ee;
    --muted: #a8b0bc;
    --border: rgba(244, 242, 238, 0.14);
    --glass-strong: rgba(30, 36, 48, 0.96);
    --shadow: 0 24px 50px rgba(0, 0, 0, 0.45);
    --ocean: #8fa3b5;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--font-body);
    background: var(--bg);
    color: var(--text);
    line-height: 1.75;
    min-height: 100vh;
    overflow-x: hidden;
}
img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; color: inherit; }
.container { width: min(100%, 1180px); margin: 0 auto; padding: 0 1.5rem; }
.skip-link {
    position: absolute; top: -100px; left: 1rem; z-index: 999;
    background: var(--sunset); color: #fff; padding: 0.75rem 1.5rem;
    border-radius: 0 0 12px 12px; transition: top 0.3s;
}
.skip-link:focus { top: 0; }

/* ── Buttons ── */
.tv-btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
    padding: 0.95rem 1.85rem; border-radius: 999px; font-weight: 700;
    font-size: 0.88rem; letter-spacing: 0.04em; border: 1.5px solid transparent;
    cursor: pointer; transition: transform 0.35s var(--ease-out), box-shadow 0.35s, background 0.3s, color 0.3s;
}
.tv-btn:hover { transform: translateY(-3px); }
.tv-btn--sun {
    background: linear-gradient(135deg, var(--sunset), var(--amber));
    color: #fff; box-shadow: 0 12px 32px rgba(179, 58, 43, 0.35);
}
.tv-btn--sun:hover { box-shadow: 0 18px 40px rgba(179, 58, 43, 0.45); }
.tv-btn--ghost {
    background: transparent; border-color: rgba(244, 242, 238, 0.45); color: #fff;
}
.tv-btn--ghost:hover { background: rgba(244, 242, 238, 0.12); }
.tv-btn--ink {
    background: var(--ink); color: var(--sand); border-color: var(--ink);
}
.tv-btn--outline {
    background: transparent; border-color: var(--ink); color: var(--ink);
}
body.dark-theme .tv-btn--outline { border-color: var(--sand); color: var(--sand); }
body.dark-theme .tv-btn--ink { background: var(--amber); color: var(--ink); border-color: var(--amber); }

/* ── Navbar — always readable frosted bar ── */
.tv-nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 200;
    padding-top: env(safe-area-inset-top, 0);
    background: rgba(244, 242, 238, 0.94);
    backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px);
    box-shadow: 0 8px 30px rgba(18, 21, 28, 0.08);
    transition: background 0.4s, box-shadow 0.4s;
}
body.dark-theme .tv-nav {
    background: rgba(30, 36, 48, 0.94);
}
.tv-nav.is-scrolled {
    box-shadow: 0 10px 36px rgba(18, 21, 28, 0.12);
}
.tv-nav__inner {
    display: flex; align-items: center; justify-content: space-between;
    gap: 1rem; padding: 1rem 0; max-width: 1180px; margin: 0 auto; padding-left: 1.5rem; padding-right: 1.5rem;
}
.tv-nav__brand {
    display: flex; align-items: center; gap: 0.65rem; font-family: var(--font-accent);
    font-size: 1.15rem; font-weight: 700; color: var(--text); letter-spacing: 0.04em;
    transition: color 0.3s;
}
.tv-nav__mark {
    width: 40px; height: 36px; border-radius: 10px;
    background: linear-gradient(135deg, var(--sunset), var(--gold));
    display: grid; place-items: center; color: #fff; font-size: 0.62rem; font-weight: 700;
    font-family: var(--font-accent); letter-spacing: 0.02em;
    animation: tv-pulse-ring 3s ease-in-out infinite;
    flex-shrink: 0;
}
@keyframes tv-pulse-ring {
    0%, 100% { box-shadow: 0 0 0 0 rgba(179, 58, 43, 0.45); }
    50% { box-shadow: 0 0 0 10px rgba(179, 58, 43, 0); }
}
.tv-nav__links { display: flex; gap: 1.75rem; align-items: center; }
.tv-nav__link {
    font-size: 0.82rem; font-weight: 500; letter-spacing: 0.04em;
    color: var(--muted); transition: color 0.25s;
}
.tv-nav__link:hover, .tv-nav__link.is-here { color: var(--sunset); }
.tv-nav__tools { display: flex; align-items: center; gap: 0.55rem; }
.tv-tool {
    width: 38px; height: 38px; border-radius: 50%; border: 1px solid var(--border);
    background: transparent; color: var(--text); cursor: pointer; display: grid; place-items: center;
    transition: transform 0.25s, background 0.25s;
}
.tv-tool:hover { transform: scale(1.08); background: rgba(18, 21, 28, 0.06); }
body.dark-theme .tv-tool:hover { background: rgba(244, 242, 238, 0.1); }
.light-theme .tv-icon-sun { display: block; } .light-theme .tv-icon-moon { display: none; }
.dark-theme .tv-icon-sun { display: none; } .dark-theme .tv-icon-moon { display: block; }
.lang-switcher { display: flex; gap: 0.45rem; }
.lang-switcher a { font-size: 0.72rem; font-weight: 600; color: var(--muted); }
.lang-switcher a:hover { color: var(--sunset); }
.tv-nav__progress { height: 2px; background: transparent; }
.tv-nav__progress span {
    display: block; height: 100%; width: 0%;
    background: linear-gradient(90deg, var(--sunset), var(--gold), var(--foam));
    transition: width 0.1s linear;
}
.tv-burger {
    display: none; flex-direction: column; justify-content: center; align-items: center;
    gap: 5px; width: 38px; height: 38px; border-radius: 50%;
    border: 1px solid var(--border); background: transparent; cursor: pointer; color: var(--text);
}
.tv-burger i { display: block; width: 16px; height: 1.5px; background: currentColor; color: inherit; transition: transform 0.3s; }
.tv-burger[aria-expanded="true"] i:first-child { transform: translateY(3.25px) rotate(45deg); }
.tv-burger[aria-expanded="true"] i:last-child { transform: translateY(-3.25px) rotate(-45deg); }

/* Search + Flyout */
.tv-search {
    position: fixed; inset: 0; z-index: 300; background: rgba(18, 21, 28, 0.72);
    backdrop-filter: blur(10px); display: flex; align-items: flex-start; justify-content: center;
    padding-top: 18vh; opacity: 0; pointer-events: none; transition: opacity 0.35s;
}
.tv-search[aria-hidden="false"] { opacity: 1; pointer-events: auto; }
.tv-search__panel {
    width: min(90%, 560px); background: var(--glass-strong); border-radius: 18px;
    padding: 1.5rem 1.75rem; display: flex; gap: 1rem; align-items: center;
    box-shadow: var(--shadow); border: 1px solid var(--border);
}
.tv-search__panel input { flex: 1; border: none; outline: none; background: transparent; font-size: 1.1rem; }
.tv-search__close { border: none; background: none; font-size: 1.5rem; cursor: pointer; color: var(--muted); }
.tv-flyout {
    position: fixed; top: 0; right: 0; bottom: 0; width: min(86%, 360px); z-index: 250;
    background: var(--ink); color: var(--sand); transform: translateX(100%);
    transition: transform 0.45s var(--ease-out); padding: 3rem 2rem;
    display: flex; flex-direction: column;
}
.tv-flyout[aria-hidden="false"] { transform: translateX(0); }
.tv-flyout__brand { font-family: var(--font-display); font-size: 1.8rem; margin: 0.5rem 0 2rem; }
.tv-flyout__nav { list-style: none; display: flex; flex-direction: column; gap: 1.1rem; }
.tv-flyout__nav a { font-size: 1.15rem; opacity: 0.85; transition: opacity 0.2s, color 0.2s; }
.tv-flyout__nav a:hover { opacity: 1; color: var(--amber); }
.tv-flyout__addr { margin-top: auto; font-style: normal; font-size: 0.88rem; opacity: 0.65; padding-top: 3rem; }
.tv-veil { position: fixed; inset: 0; z-index: 240; background: rgba(0, 0, 0, 0.45); }
.tv-veil[hidden] { display: none; }

/* ── Scroll reveal utilities ── */
[data-reveal] {
    opacity: 0; transform: translateY(40px); transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
}
[data-reveal="left"] { transform: translateX(-50px); }
[data-reveal="right"] { transform: translateX(50px); }
[data-reveal="scale"] { transform: scale(0.88); }
[data-reveal="tilt"] { transform: perspective(800px) rotateY(-12deg) translateX(30px); }
[data-reveal="up"] { transform: translateY(60px); }
[data-reveal].is-in {
    opacity: 1; transform: none;
}
[data-reveal-stagger] > * {
    opacity: 0; transform: translateY(28px);
    transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
[data-reveal-stagger].is-in > *:nth-child(1) { transition-delay: 0.05s; }
[data-reveal-stagger].is-in > *:nth-child(2) { transition-delay: 0.15s; }
[data-reveal-stagger].is-in > *:nth-child(3) { transition-delay: 0.25s; }
[data-reveal-stagger].is-in > *:nth-child(4) { transition-delay: 0.35s; }
[data-reveal-stagger].is-in > *:nth-child(5) { transition-delay: 0.45s; }
[data-reveal-stagger].is-in > *:nth-child(6) { transition-delay: 0.55s; }
[data-reveal-stagger].is-in > * { opacity: 1; transform: none; }

/* Legacy reveal */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.85s var(--ease-out), transform 0.85s var(--ease-out); }
.reveal-visible { opacity: 1; transform: none; }

/* ═══════════════════════════════════════════
   HOME — World Atlas Hero
═══════════════════════════════════════════ */
.home-hero {
    position: relative; z-index: 1;
    min-height: 100vh; min-height: 100dvh;
    display: flex; flex-direction: column; justify-content: flex-end;
    overflow: hidden; color: #fff;
    padding-bottom: 1.5rem;
}
.home-hero__sky {
    position: absolute; inset: 0; z-index: 0;
    border-radius: 0;
    background:
        linear-gradient(180deg,
            rgba(18, 21, 28, 0.45) 0%,
            rgba(18, 21, 28, 0.28) 45%,
            rgba(18, 21, 28, 0.55) 100%),
        url("https://images.unsplash.com/photo-1492144534655-ae79c964c9d7?auto=format&fit=crop&w=1600&q=80") center 40% / cover no-repeat;
    transform-origin: center center;
    will-change: transform;
}
.home-hero__text-mask,
.home-hero__base-mask { display: none; }
.home-hero__clouds {
    position: absolute; inset: 0; z-index: 1; pointer-events: none; overflow: hidden;
}
.home-hero__cloud {
    position: absolute; width: 28vw; max-width: 420px; height: 80px;
    background: radial-gradient(ellipse, rgba(255, 255, 255, 0.35), transparent 70%);
    border-radius: 50%; filter: blur(8px); opacity: 0.55;
    animation: tv-drift-cloud linear infinite;
}
.home-hero__cloud--1 { top: 12%; left: -20%; animation-duration: 48s; }
.home-hero__cloud--2 { top: 28%; left: 40%; width: 18vw; animation-duration: 62s; animation-delay: -20s; }
.home-hero__cloud--3 { top: 8%; right: -10%; width: 22vw; animation-duration: 55s; animation-delay: -10s; }
@keyframes tv-drift-cloud {
    from { transform: translateX(0); }
    to { transform: translateX(120vw); }
}
.home-hero__plane {
    position: absolute; z-index: 2; width: 72px; height: 28px; opacity: 0.9;
    animation: tv-fly linear infinite;
}
.home-hero__plane svg { width: 100%; height: 100%; fill: #fff; filter: drop-shadow(0 4px 8px rgba(0,0,0,0.25)); }
.home-hero__plane--a { top: 14%; left: -10%; animation-duration: 28s; }
.home-hero__plane--b { top: 22%; right: -12%; animation-duration: 36s; animation-delay: -12s; animation-direction: reverse; }
@keyframes tv-fly {
    0% { transform: translateX(0) translateY(0); }
    50% { transform: translateX(55vw) translateY(-18px); }
    100% { transform: translateX(110vw) translateY(0); }
}
.home-hero__content {
    position: relative; z-index: 3;
    width: min(92%, 860px); text-align: center;
    margin: auto;
    padding: 5.5rem 1rem 1.5rem;
}
.home-hero__banner {
    display: block; width: 100%;
    background: linear-gradient(135deg, #ff6b4a, #e8a04a);
    padding: clamp(1.25rem, 2.8vh, 1.85rem) clamp(1.25rem, 3vw, 2.4rem);
    border-radius: 14px;
    clip-path: none;
    box-shadow: 0 22px 55px rgba(179, 58, 43, 0.4);
    animation: tv-banner-in 1.1s var(--ease-out) both;
}
@keyframes tv-banner-in {
    from { opacity: 0; transform: translateY(28px) scale(0.97); }
    to { opacity: 1; transform: none; }
}
.home-hero__title {
    font-family: var(--font-accent); font-size: clamp(1.4rem, 3.6vw, 2.55rem);
    font-weight: 700; letter-spacing: 0.05em; line-height: 1.3; text-transform: none;
    color: #fff;
}
.home-hero__title span {
    display: block; font-family: var(--font-display); font-size: 0.52em;
    letter-spacing: 0.32em; opacity: 0.95; margin-bottom: 0.4rem; font-weight: 500;
}
.home-hero__lead {
    position: static; transform: none; left: auto; top: auto; bottom: auto;
    width: min(100%, 540px); text-align: center; margin: 1.15rem auto 0;
    font-size: 0.95rem; color: #fff;
    text-shadow: 0 2px 16px rgba(0, 0, 0, 0.65);
    animation: tv-banner-in 1.1s 0.2s var(--ease-out) both;
}
.home-hero__dots,
.home-hero__dot { display: none; }

/* Booking glass widget */
.book-dock {
    position: relative; z-index: 5;
    width: min(96%, 1080px);
    max-width: calc(100vw - 1.5rem);
    margin: 0 auto 0.5rem;
    transform: none;
    background: var(--surface);
    border-radius: 18px; box-shadow: 0 30px 70px rgba(18, 21, 28, 0.22);
    border: 1px solid var(--border); color: var(--text);
    animation: tv-dock-up 1s 0.35s var(--ease-out) both;
    overflow: visible;
}
@keyframes tv-dock-up {
    from { opacity: 0; transform: translateY(28px); }
    to { opacity: 1; transform: none; }
}
body.dark-theme .book-dock {
    background: var(--surface);
    color: var(--text);
    border-color: var(--border);
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.45);
}
body.dark-theme .book-field select,
body.dark-theme .book-field input {
    background: var(--bg);
    color: var(--text);
    border-color: var(--border);
}
body.dark-theme .book-field label { color: var(--muted); }
.book-dock__tabs {
    display: flex; gap: 0; border-bottom: 1px solid var(--border); padding: 0 0.5rem;
    overflow-x: auto; scrollbar-width: none;
    border-radius: 18px 18px 0 0;
}
.book-dock__tabs::-webkit-scrollbar { display: none; }
.book-dock__tab {
    flex: 1; min-width: 88px; display: flex; flex-direction: column; align-items: center; gap: 0.35rem;
    padding: 1rem 0.6rem 0.85rem; border: none; background: transparent; cursor: pointer;
    color: var(--muted); font-size: 0.78rem; font-weight: 600; letter-spacing: 0.04em;
    border-bottom: 3px solid transparent; transition: color 0.25s, border-color 0.25s, background 0.25s;
}
.book-dock__tab svg { width: 22px; height: 22px; stroke: currentColor; fill: none; stroke-width: 1.6; }
.book-dock__tab.is-active {
    color: var(--sunset); border-bottom-color: var(--sunset); background: rgba(179, 58, 43, 0.06);
}
.book-dock__body { padding: 1.35rem 1.4rem 1.5rem; }
.book-dock__panel { display: none; }
.book-dock__panel.is-active { display: block; }
.book-dock__row {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr)) 148px;
    gap: 0.85rem;
    align-items: end;
}
.book-field { min-width: 0; display: flex; flex-direction: column; }
.book-field label {
    display: block; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.06em;
    color: var(--muted); margin-bottom: 0.45rem; min-height: 1.1em;
}
.book-field select, .book-field input {
    width: 100%; max-width: 100%; min-width: 0;
    height: 54px;
    padding: 0 0.95rem; border-radius: 12px;
    border: 1.5px solid var(--border); background: var(--bg); color: var(--text);
    outline: none; transition: border-color 0.25s; box-sizing: border-box;
    font-size: 0.92rem;
}
.book-field input[type="date"] {
    height: 54px;
    -webkit-appearance: none;
    appearance: none;
    color-scheme: inherit;
}
.book-field select:focus, .book-field input:focus { border-color: var(--sunset); }
.book-field--action label { visibility: hidden; }
.book-dock__search {
    display: inline-flex; align-items: center; justify-content: center;
    width: 100%; height: 54px; min-height: 54px;
    padding: 0 1rem; border: none; border-radius: 12px;
    background: linear-gradient(135deg, #1b6b8a, #2a8fad); color: #fff !important;
    font-weight: 800; letter-spacing: 0.14em; cursor: pointer;
    white-space: nowrap; box-sizing: border-box;
    font-size: 1rem; line-height: 1;
    box-shadow: 0 8px 20px rgba(42, 58, 74, 0.3);
    transition: transform 0.3s, box-shadow 0.3s;
}
.book-dock__search:hover { transform: translateY(-2px); box-shadow: 0 12px 28px rgba(42, 58, 74, 0.4); }
.book-pax { display: flex; gap: 0.5rem; min-width: 0; height: 54px; }
.book-pax select { flex: 1; min-width: 0; height: 54px; }

/* Home sections — each unique */
.home-wrap {
    position: relative;
    z-index: 2;
    padding-top: 2.5rem;
    background: var(--bg);
    isolation: isolate;
}

/* Fixed header: sections clear the top when scrolled into view */
#main section,
#routes,
#story,
.tv-route,
.tv-parallax-band,
.ab-hero,
.sv-hero,
.bl-hero,
.ct-split {
    scroll-margin-top: 5.5rem;
}

.tv-route {
    padding: 3.5rem 0 5rem;
    position: relative;
    overflow: visible;
    background: var(--bg);
}
.tv-route__head { text-align: center; max-width: 640px; margin: 0 auto 3.5rem; }
.tv-route__eyebrow {
    font-family: var(--font-accent); font-size: 0.75rem; letter-spacing: 0.22em;
    color: var(--sunset); font-weight: 700; text-transform: uppercase;
}
.tv-route__head h2 {
    font-family: var(--font-display); font-size: clamp(1.9rem, 3.5vw, 2.8rem);
    margin: 0.75rem 0 1rem; line-height: 1.3; color: var(--text);
}
.tv-route__head p { color: var(--muted); }
.tv-route__hint {
    display: none; text-align: center; font-size: 0.78rem; color: var(--muted);
    margin: -1.5rem 0 1rem; letter-spacing: 0.08em;
}
.tv-route__track {
    display: flex; gap: 1.5rem; overflow-x: auto; overflow-y: visible;
    padding: 1.75rem 1.5rem 3rem;
    scroll-snap-type: x mandatory; scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
}
.tv-route__track::-webkit-scrollbar { display: none; }
.tv-route__card {
    flex: 0 0 min(78vw, 360px); scroll-snap-align: center; position: relative;
    border-radius: 22px; overflow: hidden; min-height: 480px;
    transform: rotate(var(--tilt, 0deg));
    transition: transform 0.5s var(--ease-out), box-shadow 0.4s;
    text-decoration: none; color: #fff; display: block;
    box-shadow: 0 18px 40px rgba(18, 21, 28, 0.16);
    flex-shrink: 0;
}
.tv-route__card:hover { transform: rotate(0deg) translateY(-10px) scale(1.02); box-shadow: 0 28px 55px rgba(18, 21, 28, 0.22); }
.tv-route__card img, .tv-route__card .tv-route__bg {
    position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
}
.tv-route__bg { background-size: cover; background-position: center; transition: transform 0.7s var(--ease-out); }
.tv-route__card:hover .tv-route__bg { transform: scale(1.06); }
.tv-route__card::after {
    content: ""; position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(18, 21, 28,0.15) 0%, transparent 30%, rgba(18, 21, 28, 0.92) 100%);
}
.tv-route__meta {
    position: absolute; bottom: 0; left: 0; right: 0; z-index: 2;
    padding: 1.75rem 1.5rem 1.6rem; color: #fff;
    display: flex; flex-direction: column; gap: 0.35rem;
}
.tv-route__meta > span:first-child {
    font-size: 0.72rem; letter-spacing: 0.16em; opacity: 0.8; color: #fff;
}
.tv-route__meta h3 {
    font-family: var(--font-display); font-size: 1.45rem; margin: 0; color: #fff;
}
.tv-route__meta p { font-size: 0.88rem; opacity: 0.85; color: #fff; margin: 0; line-height: 1.55; }
.tv-route__foot {
    display: flex; align-items: center; justify-content: space-between; gap: 0.75rem;
    margin-top: 0.9rem; flex-wrap: wrap;
}
.tv-route__price {
    display: inline-block; margin: 0; color: var(--gold) !important;
    font-weight: 700; font-size: 1.05rem; opacity: 1 !important;
}
.tv-route__cta {
    display: inline-flex; align-items: center; gap: 0.35rem;
    padding: 0.55rem 1rem; border-radius: 999px;
    background: rgba(255, 255, 255, 0.16); border: 1px solid rgba(255, 255, 255, 0.35);
    color: #fff !important; font-size: 0.78rem; font-weight: 700; letter-spacing: 0.04em;
    backdrop-filter: blur(8px); transition: background 0.3s, transform 0.3s;
}
.tv-route__card:hover .tv-route__cta {
    background: linear-gradient(135deg, var(--sunset), var(--amber));
    border-color: transparent;
}

/* Marquee destinations */
.tv-marquee {
    padding: 2.5rem 0; background: var(--ink); color: var(--sand); overflow: hidden;
    border-block: 1px solid rgba(244, 242, 238, 0.08);
}
.tv-marquee__rail {
    display: flex; gap: 3rem; width: max-content;
    animation: tv-marquee 40s linear infinite;
}
.tv-marquee__item {
    font-family: var(--font-display); font-size: clamp(1.4rem, 3vw, 2rem);
    white-space: nowrap; opacity: 0.85; display: flex; align-items: center; gap: 3rem;
}
.tv-marquee__item::after {
    content: "✦"; color: var(--amber); font-size: 0.7em;
}
@keyframes tv-marquee {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

/* Parallax story band */
.tv-parallax-band {
    position: relative; min-height: 70vh; display: grid; place-items: center;
    overflow: hidden; color: #fff;
}
.tv-parallax-band__img {
    position: absolute; inset: -15% 0; background-size: cover; background-position: center;
    will-change: transform;
}
.tv-parallax-band__veil {
    position: absolute; inset: 0;
    background: linear-gradient(90deg, rgba(18, 21, 28, 0.82), rgba(18, 21, 28, 0.35));
}
.tv-parallax-band__copy {
    position: relative; z-index: 2; max-width: 560px; padding: 4rem 1.5rem;
    margin-right: auto; margin-left: 8%;
}
.tv-parallax-band__copy h2 {
    font-family: var(--font-display); font-size: clamp(2rem, 4vw, 3.2rem); line-height: 1.25; margin: 0.75rem 0 1.25rem;
}
.tv-parallax-band__copy p { opacity: 0.88; margin-bottom: 1.75rem; }

/* Stats with counter — diagonal strip */
.tv-stats-slash {
    position: relative; padding: 5rem 0; background: linear-gradient(135deg, #1a2744, #0c1526);
    color: #fff; clip-path: polygon(0 8%, 100% 0, 100% 92%, 0 100%);
    margin: 2rem 0;
}
.tv-stats-slash__grid {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem;
    max-width: 1000px; margin: 0 auto; text-align: center; padding: 2rem 1.5rem;
}
.tv-stats-slash__num {
    font-family: var(--font-accent); font-size: clamp(2.4rem, 4vw, 3.4rem);
    font-weight: 700; color: var(--amber); line-height: 1; display: block;
}
.tv-stats-slash__label { margin-top: 0.65rem; font-size: 0.88rem; opacity: 0.7; }

/* Voices — floating glass */
.tv-voices { padding: 6rem 0; }
.tv-voices__grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 3rem;
}
.tv-voices__card {
    background: var(--glass-strong); border: 1px solid var(--border); border-radius: 18px;
    padding: 2rem; box-shadow: var(--shadow);
    transition: transform 0.4s var(--ease-out);
}
.tv-voices__card:nth-child(2) { transform: translateY(28px); }
.tv-voices__card:hover { transform: translateY(-6px) !important; }
.tv-voices__card p { font-size: 0.95rem; color: var(--muted); font-style: italic; line-height: 1.85; }
.tv-voices__card cite { display: block; margin-top: 1.25rem; font-style: normal; font-weight: 700; font-size: 0.88rem; color: var(--sunset); }

/* Home — buying steps */
.home-steps {
    padding: 5.5rem 0;
    background: linear-gradient(180deg, var(--sand-deep), var(--bg));
}
.home-steps__grid {
    list-style: none; display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.75rem;
    margin-top: 3rem;
}
.home-steps__item {
    padding: 2rem 1.75rem; background: var(--surface);
    border: 1px solid var(--border); border-radius: 4px;
    transition: transform 0.35s var(--ease-out), box-shadow 0.35s;
}
.home-steps__item:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.home-steps__num {
    display: block; font-family: var(--font-accent); font-size: 0.78rem; font-weight: 700;
    letter-spacing: 0.18em; color: var(--sunset); margin-bottom: 1rem;
}
.home-steps__item h3 {
    font-family: var(--font-display); font-size: 1.35rem; margin-bottom: 0.75rem;
}
.home-steps__item p { color: var(--muted); font-size: 0.92rem; line-height: 1.75; }

/* Home — why Luxenihon */
.home-why { padding: 5.5rem 0; }
.home-why__inner {
    display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 3rem; align-items: center;
}
.home-why__copy h2 {
    font-family: var(--font-display); font-size: clamp(1.85rem, 3.5vw, 2.75rem);
    line-height: 1.3; margin: 0.75rem 0 1.25rem;
}
.home-why__copy > p { color: var(--muted); margin-bottom: 1.5rem; max-width: 36rem; }
.home-why__list {
    list-style: none; margin: 0 0 2rem; display: flex; flex-direction: column; gap: 0.75rem;
}
.home-why__list li {
    position: relative; padding-left: 1.5rem; font-weight: 500; font-size: 0.95rem;
}
.home-why__list li::before {
    content: ""; position: absolute; left: 0; top: 0.55em;
    width: 8px; height: 8px; border-radius: 50%; background: var(--sunset);
}
.home-why__visual {
    min-height: 420px; border-radius: 4px; background-size: cover; background-position: center;
    box-shadow: var(--shadow);
}

/* Home — brands / showroom */
.home-brands { padding: 5rem 0 6rem; }
.home-brands__row {
    display: flex; flex-wrap: wrap; gap: 0.85rem; justify-content: center;
    margin: 2.5rem 0 3rem;
}
.home-brands__chip {
    padding: 0.85rem 1.5rem; border: 1px solid var(--border); background: var(--surface);
    font-family: var(--font-accent); font-weight: 600; font-size: 0.88rem;
    letter-spacing: 0.04em; color: var(--text);
    transition: border-color 0.25s, color 0.25s, transform 0.25s;
}
.home-brands__chip:hover { border-color: var(--sunset); color: var(--sunset); transform: translateY(-2px); }
.home-brands__visit {
    display: flex; align-items: center; justify-content: space-between; gap: 1.5rem;
    padding: 2rem 2.25rem; background: var(--ink); color: #f4f2ee; border-radius: 4px;
}
.home-brands__visit h3 {
    font-family: var(--font-display); font-size: 1.35rem; margin-bottom: 0.4rem;
}
.home-brands__visit p { opacity: 0.7; font-size: 0.9rem; }
.home-brands__visit .tv-btn--ink {
    background: var(--amber); color: var(--ink); border-color: var(--amber); flex-shrink: 0;
}

/* Shared page sections (about / services / blog / contact) */
.pg-page-hero {
    padding: 8.5rem 1.5rem 3.5rem;
    background: linear-gradient(160deg, var(--ink) 0%, #2a3344 100%);
    color: #f4f2ee;
}
.pg-page-hero h1 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.25; margin: 0.75rem 0 1rem;
}
.pg-page-hero p { max-width: 36rem; opacity: 0.8; }
.pg-intro { padding: 4.5rem 0 2rem; }
.pg-intro__grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem; align-items: end;
}
.pg-intro__grid h2 {
    font-family: var(--font-display);
    font-size: clamp(1.6rem, 3vw, 2.4rem); line-height: 1.3; margin-top: 0.5rem;
}
.pg-intro__grid > p { color: var(--muted); font-size: 1.02rem; line-height: 1.85; }
.pg-stats { padding: 3rem 0 5rem; }
.pg-stats__grid {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; margin-top: 2.5rem;
}
.pg-stats__grid > div {
    text-align: center; padding: 1.75rem 1rem;
    background: var(--surface); border: 1px solid var(--border);
}
.pg-stats__grid strong {
    display: block; font-family: var(--font-accent);
    font-size: clamp(1.8rem, 3vw, 2.4rem); color: var(--sunset); line-height: 1.1;
}
.pg-stats__grid span {
    display: block; margin-top: 0.55rem; font-size: 0.85rem; color: var(--muted);
}
.pg-team { padding: 2rem 0 5.5rem; }
.pg-team__grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.75rem; margin-top: 2.5rem;
}
.pg-team__card {
    position: relative;
    background: var(--surface);
    border: 1px solid var(--border);
    overflow: hidden;
    transition: transform 0.45s var(--ease-out), box-shadow 0.45s, border-color 0.3s;
}
.pg-team__card:hover {
    transform: translateY(-10px);
    box-shadow: 0 28px 50px rgba(18, 21, 28, 0.14);
    border-color: rgba(179, 58, 43, 0.35);
}
.pg-team__photo {
    position: relative;
    aspect-ratio: 4/5;
    background-size: cover;
    background-position: center top;
    transform: scale(1.02);
    transition: transform 0.6s var(--ease-out);
}
.pg-team__card:hover .pg-team__photo { transform: scale(1.08); }
.pg-team__photo::after {
    content: "";
    position: absolute; inset: 0;
    background: linear-gradient(180deg, transparent 45%, rgba(18, 21, 28, 0.55) 100%);
    pointer-events: none;
}
.pg-team__badge {
    position: absolute; top: 1rem; left: 1rem; z-index: 2;
    font-family: var(--font-accent); font-size: 0.72rem; font-weight: 700;
    letter-spacing: 0.14em;
    color: #fff;
    background: rgba(18, 21, 28, 0.55);
    border: 1px solid rgba(255, 255, 255, 0.25);
    padding: 0.35rem 0.65rem;
    backdrop-filter: blur(8px);
}
.pg-team__meta {
    position: relative;
    padding: 1.35rem 1.35rem 1.5rem;
    border-top: 3px solid var(--sunset);
}
.pg-team__meta h3 {
    font-family: var(--font-display);
    font-size: 1.28rem;
    margin-bottom: 0.4rem;
    letter-spacing: 0.04em;
}
.pg-team__meta p {
    display: inline-block;
    margin: 0;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    color: var(--sunset);
    background: rgba(179, 58, 43, 0.08);
    padding: 0.35rem 0.7rem;
}
.pg-includes { padding: 2rem 0 5rem; }
.pg-includes__grid {
    list-style: none; display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 1rem; margin-top: 2rem;
}
.pg-includes__grid li {
    padding: 1.25rem 1.35rem; background: var(--surface); border: 1px solid var(--border);
    font-weight: 600; font-size: 0.95rem;
}
.pg-topics { padding: 2rem 0 1rem; }
.pg-topics__row {
    display: flex; flex-wrap: wrap; gap: 0.75rem; margin-top: 1.5rem; justify-content: center;
}
.pg-topics__chip {
    padding: 0.65rem 1.2rem; border: 1px solid var(--border); background: var(--surface);
    font-size: 0.85rem; font-weight: 600; letter-spacing: 0.03em;
}
.pg-highlight { padding: 2rem 0 4rem; }
.pg-highlight__card {
    padding: 3rem 2.5rem; background: var(--sand-deep); border: 1px solid var(--border);
}
.pg-highlight__card h2 {
    font-family: var(--font-display); font-size: clamp(1.4rem, 2.5vw, 2rem);
    line-height: 1.35; margin: 0.75rem 0 1rem; max-width: 40rem;
}
.pg-highlight__card > p { color: var(--muted); max-width: 38rem; margin-bottom: 1.75rem; }
.pg-contact-cards { padding: 1rem 0 3rem; }
.pg-contact-cards__grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem;
}
.pg-contact-card {
    padding: 1.75rem 1.5rem; background: var(--surface); border: 1px solid var(--border);
}
.pg-contact-card h3 {
    font-family: var(--font-accent); font-size: 0.78rem; letter-spacing: 0.14em;
    text-transform: uppercase; color: var(--sunset); margin-bottom: 0.75rem;
}
.pg-contact-card p { font-weight: 700; font-size: 1.05rem; margin-bottom: 0.4rem; }
.pg-contact-card span { font-size: 0.85rem; color: var(--muted); }

@media (max-width: 900px) {
    .pg-intro__grid,
    .pg-stats__grid,
    .pg-team__grid,
    .pg-includes__grid,
    .pg-contact-cards__grid { grid-template-columns: 1fr; }
    .pg-stats__grid { grid-template-columns: 1fr 1fr; }
    .pg-page-hero { padding: 7rem 1.25rem 2.5rem; }
    .pg-highlight__card { padding: 2rem 1.35rem; }
}

/* CTA runway */
.tv-runway {
    position: relative; margin: 4rem 1.5rem 6rem; border-radius: 28px; overflow: hidden;
    min-height: 380px; display: grid; place-items: center; text-align: center; color: #fff;
}
.tv-runway__bg {
    position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(179, 58, 43, 0.9), rgba(42, 58, 74, 0.85)),
        url("https://images.unsplash.com/photo-1436491865332-7a61a109cc05?auto=format&fit=crop&w=1600&q=80") center/cover;
    animation: tv-kenburns 18s ease-in-out infinite alternate;
}
@keyframes tv-kenburns {
    from { transform: scale(1); }
    to { transform: scale(1.08); }
}
.tv-runway__inner { position: relative; z-index: 2; padding: 3rem 1.5rem; max-width: 580px; }
.tv-runway__inner h2 {
    font-family: var(--font-display); font-size: clamp(1.8rem, 3.5vw, 2.6rem); margin: 0.5rem 0 1rem;
}
.tv-runway__actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin-top: 1.75rem; }

/* Chat bubble */
.tv-chat {
    position: fixed;
    bottom: calc(1.5rem + env(safe-area-inset-bottom, 0px));
    right: calc(1.5rem + env(safe-area-inset-right, 0px));
    z-index: 180;
    width: 56px; height: 56px; border-radius: 50%; border: none; cursor: pointer;
    background: linear-gradient(135deg, #7c5cbf, #5a3d9a); color: #fff;
    box-shadow: 0 12px 30px rgba(90, 61, 154, 0.4);
    display: grid; place-items: center; transition: transform 0.3s;
}
.tv-chat:hover { transform: scale(1.08); }

/* ═══════════════════════════════════════════
   ABOUT — Story Path (vertical timeline)
═══════════════════════════════════════════ */
.ab-hero {
    min-height: 85vh; display: grid; place-items: end start;
    padding: 8rem 1.5rem 4rem; position: relative; overflow: hidden; color: #fff;
}
.ab-hero__bg {
    position: absolute; inset: 0;
    background: linear-gradient(160deg, rgba(18, 21, 28,0.75), rgba(179, 58, 43,0.35)),
        url("https://images.unsplash.com/photo-1492144534655-ae79c964c9d7?auto=format&fit=crop&w=1600&q=80") center/cover;
    animation: tv-kenburns 20s ease-in-out infinite alternate;
}
.ab-hero__copy { position: relative; z-index: 2; max-width: 640px; }
.ab-hero__copy h1 {
    font-family: var(--font-display); font-size: clamp(2.4rem, 5vw, 4rem); line-height: 1.2; margin: 0.75rem 0;
}
.ab-path { padding: 5rem 0; position: relative; }
.ab-path::before {
    content: ""; position: absolute; left: 50%; top: 0; bottom: 0; width: 2px;
    background: linear-gradient(180deg, var(--sunset), var(--amber), var(--ocean));
    transform: translateX(-50%);
}
.ab-path__step {
    display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center;
    margin-bottom: 5rem; position: relative;
}
.ab-path__step:nth-child(even) .ab-path__text { order: 2; }
.ab-path__step:nth-child(even) .ab-path__visual { order: 1; }
.ab-path__node {
    position: absolute; left: 50%; top: 50%; width: 18px; height: 18px;
    border-radius: 50%; background: var(--sunset); border: 3px solid var(--sand);
    transform: translate(-50%, -50%); box-shadow: 0 0 0 6px rgba(179, 58, 43, 0.2); z-index: 2;
}
.ab-path__text h2 { font-family: var(--font-display); font-size: 1.8rem; margin: 0.5rem 0 1rem; }
.ab-path__text p { color: var(--muted); }
.ab-path__year {
    font-family: var(--font-accent); font-size: 0.8rem; letter-spacing: 0.2em;
    color: var(--sunset); font-weight: 700;
}
.ab-path__visual {
    border-radius: 24px; min-height: 280px; background-size: cover; background-position: center;
    box-shadow: var(--shadow); overflow: hidden;
}
.ab-quote-wall {
    margin: 3rem 1.5rem; padding: 4rem 2rem; border-radius: 28px;
    background: var(--ink); color: var(--sand); text-align: center;
}
.ab-quote-wall blockquote {
    font-family: var(--font-display); font-size: clamp(1.4rem, 3vw, 2.2rem);
    line-height: 1.5; max-width: 720px; margin: 0 auto;
}
.ab-pillars {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem;
    padding: 5rem 1.5rem; max-width: 1100px; margin: 0 auto;
}
.ab-pillar {
    padding: 2.25rem; border-radius: 20px; border: 1px solid var(--border);
    background: var(--glass-strong); transition: transform 0.4s var(--ease-out), border-color 0.3s;
}
.ab-pillar:hover { transform: translateY(-8px); border-color: var(--sunset); }
.ab-pillar h3 { font-family: var(--font-display); font-size: 1.25rem; margin-bottom: 0.75rem; }
.ab-pillar p { color: var(--muted); font-size: 0.92rem; }

/* ═══════════════════════════════════════════
   SERVICES — Boarding Pass Stack
═══════════════════════════════════════════ */
.sv-hero {
    padding: 9rem 1.5rem 4rem; text-align: center;
    background: radial-gradient(ellipse at top, rgba(179, 58, 43, 0.15), transparent 60%), var(--bg);
}
.sv-hero h1 {
    font-family: var(--font-display); font-size: clamp(2.2rem, 4.5vw, 3.6rem); margin: 0.75rem 0;
    color: var(--text);
}
.sv-hero p { color: var(--muted); max-width: 560px; margin: 0 auto; }
.sv-passes { padding: 2rem 0 5rem; max-width: 900px; margin: 0 auto; }
.sv-pass {
    display: grid; grid-template-columns: 1.4fr 0.6fr; margin: 0 1.5rem 1.75rem;
    border-radius: 16px; overflow: hidden; background: var(--surface);
    box-shadow: var(--shadow); border: 1px solid var(--border);
    color: var(--text);
    transition: transform 0.4s var(--ease-out), box-shadow 0.4s;
}
body.dark-theme .sv-pass { background: var(--surface); }
.sv-pass:hover { transform: translateX(12px) rotate(-0.5deg); box-shadow: 0 30px 60px rgba(18, 21, 28,0.18); }
.sv-pass__main { padding: 1.75rem 2rem; display: grid; gap: 0.75rem; }
.sv-pass__code {
    font-family: var(--font-accent); font-size: 0.72rem; letter-spacing: 0.2em;
    color: var(--ocean); font-weight: 700;
}
.sv-pass__main h3 { font-family: var(--font-display); font-size: 1.45rem; }
.sv-pass__main p { color: var(--muted); font-size: 0.92rem; }
.sv-pass__stub {
    background: linear-gradient(180deg, var(--sunset), var(--amber));
    color: #fff; display: flex; flex-direction: column; align-items: center; justify-content: center;
    gap: 0.5rem; padding: 1.5rem; text-align: center;
    border-left: 2px dashed rgba(255,255,255,0.45);
}
.sv-pass__price { font-family: var(--font-accent); font-size: 1.35rem; font-weight: 700; }
.sv-pass__stub small { font-size: 0.72rem; opacity: 0.85; letter-spacing: 0.1em; }
.sv-season-ribbon {
    padding: 4rem 0; overflow: hidden;
}
.sv-season-ribbon__head { text-align: center; margin-bottom: 2.5rem; padding: 0 1.5rem; }
.sv-season-ribbon__head h2 { font-family: var(--font-display); font-size: 2rem; margin: 0.5rem 0; }
.sv-season-ribbon__row {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; padding: 0 1.5rem;
    max-width: 1100px; margin: 0 auto;
}
.sv-season {
    aspect-ratio: 3/4; border-radius: 18px; overflow: hidden; position: relative;
    background-size: cover; background-position: center; color: #fff;
    transition: transform 0.5s var(--ease-out);
}
.sv-season:hover { transform: scale(1.04); }
.sv-season::after {
    content: ""; position: absolute; inset: 0;
    background: linear-gradient(180deg, transparent, rgba(18, 21, 28,0.85));
}
.sv-season__label {
    position: absolute; bottom: 0; left: 0; right: 0; z-index: 2; padding: 1.5rem;
}
.sv-season__label strong {
    display: block; font-family: var(--font-display); font-size: 1.5rem; margin-bottom: 0.35rem;
}
.sv-cta-band {
    margin: 3rem 1.5rem 5rem; padding: 3.5rem 2rem; border-radius: 24px; text-align: center;
    background: var(--ink); color: var(--sand);
}
.sv-cta-band h2 { font-family: var(--font-display); font-size: 2rem; margin-bottom: 0.75rem; }
.sv-cta-band p { opacity: 0.75; margin-bottom: 1.75rem; }

/* ═══════════════════════════════════════════
   BLOG — Magazine Journal
═══════════════════════════════════════════ */
.bl-hero {
    min-height: 70vh; display: grid; grid-template-columns: 1.2fr 0.8fr;
    gap: 0; align-items: stretch;
}
.bl-hero__feature {
    position: relative; min-height: 70vh; color: #fff; display: flex; align-items: flex-end;
    padding: 3rem; overflow: hidden;
}
.bl-hero__feature-bg {
    position: absolute; inset: 0; background-size: cover; background-position: center;
    transform: scale(1.05); transition: transform 8s ease;
}
.bl-hero__feature:hover .bl-hero__feature-bg { transform: scale(1.12); }
.bl-hero__feature::after {
    content: ""; position: absolute; inset: 0;
    background: linear-gradient(180deg, transparent 20%, rgba(18, 21, 28,0.9));
}
.bl-hero__feature-copy { position: relative; z-index: 2; max-width: 520px; }
.bl-hero__feature-copy h1 {
    font-family: var(--font-display); font-size: clamp(1.8rem, 3.5vw, 2.8rem); margin: 0.75rem 0;
}
.bl-hero__side {
    background: var(--ink); color: var(--sand); padding: 8rem 2.5rem 3rem;
    display: flex; flex-direction: column; justify-content: center; gap: 1rem;
}
.bl-hero__side h2 { font-family: var(--font-display); font-size: 1.8rem; }
.bl-hero__side p { opacity: 0.7; }
.bl-stack { padding: 4rem 1.5rem 5rem; max-width: 1100px; margin: 0 auto; }
.bl-stack__item {
    display: grid; grid-template-columns: 280px 1fr; gap: 2rem; align-items: center;
    padding: 2rem 0; border-bottom: 1px solid var(--border);
    transition: padding-left 0.4s var(--ease-out);
}
.bl-stack__item:hover { padding-left: 1rem; }
.bl-stack__thumb {
    aspect-ratio: 4/3; border-radius: 14px; background-size: cover; background-position: center;
    overflow: hidden;
}
.bl-stack__meta { font-size: 0.78rem; color: var(--muted); display: flex; gap: 1rem; margin-bottom: 0.5rem; }
.bl-stack__item h3 { font-family: var(--font-display); font-size: 1.35rem; margin-bottom: 0.5rem; }
.bl-stack__item p { color: var(--muted); font-size: 0.92rem; }
.bl-newsletter {
    margin: 2rem 1.5rem 5rem; padding: 3.5rem; border-radius: 24px; text-align: center;
    background: linear-gradient(135deg, rgba(179, 58, 43,0.12), rgba(42, 58, 74,0.12));
    border: 1px dashed rgba(179, 58, 43, 0.35);
}
.bl-newsletter h2 { font-family: var(--font-display); font-size: 1.8rem; margin-bottom: 0.5rem; }
.bl-newsletter p { color: var(--muted); }

/* ═══════════════════════════════════════════
   CONTACT — Split Horizon
═══════════════════════════════════════════ */
.ct-split {
    display: grid; grid-template-columns: 1fr 1fr; min-height: 100vh;
}
.ct-split__visual {
    position: relative; color: #fff; padding: 9rem 3rem 3rem;
    display: flex; flex-direction: column; justify-content: flex-end; overflow: hidden;
}
.ct-split__visual-bg {
    position: absolute; inset: 0;
    background: linear-gradient(200deg, rgba(18, 21, 28,0.4), rgba(18, 21, 28,0.85)),
        url("https://images.unsplash.com/photo-1503376780353-7e6692767b70?auto=format&fit=crop&w=1400&q=80") center/cover;
}
.ct-split__visual-copy { position: relative; z-index: 2; max-width: 420px; }
.ct-split__visual-copy h1 {
    font-family: var(--font-display); font-size: clamp(2rem, 3.5vw, 3rem); margin: 0.75rem 0 1rem;
}
.ct-split__form {
    padding: 8rem 3rem 4rem; background: var(--bg); color: var(--text);
    display: flex; flex-direction: column; justify-content: center;
}
body.dark-theme .ct-split__form { background: var(--bg); color: var(--text); }
.ct-split__form h2 { font-family: var(--font-display); font-size: 1.8rem; margin-bottom: 0.5rem; }
.ct-split__form > p { color: var(--muted); margin-bottom: 1.5rem; }
.ct-form { display: grid; gap: 1.15rem; }
.ct-form label { display: grid; gap: 0.4rem; }
.ct-form label span { font-size: 0.82rem; font-weight: 700; letter-spacing: 0.04em; }
.ct-form input, .ct-form textarea {
    padding: 0.9rem 1rem; border-radius: 12px; border: 1px solid var(--border);
    background: var(--glass-strong); outline: none; resize: vertical;
    transition: border-color 0.25s, box-shadow 0.25s;
}
.ct-form input:focus, .ct-form textarea:focus {
    border-color: var(--sunset); box-shadow: 0 0 0 3px rgba(179, 58, 43, 0.15);
}
.ct-faq {
    padding: 4rem 1.5rem 5rem; max-width: 900px; margin: 0 auto;
}
.ct-faq h2 { font-family: var(--font-display); font-size: 1.8rem; text-align: center; margin-bottom: 2rem; }
.ct-faq__item {
    border-bottom: 1px solid var(--border); padding: 1.25rem 0;
}
.ct-faq__item h3 { font-size: 1.05rem; margin-bottom: 0.5rem; color: var(--sunset); }
.ct-faq__item p { color: var(--muted); font-size: 0.92rem; }
.notice { padding: 1rem 1.25rem; border-radius: 12px; margin: 0.5rem 0 1rem; }
.notice-success { background: rgba(42, 58, 74, 0.12); color: var(--ocean); border: 1px solid rgba(42, 58, 74,0.25); }
.notice-error { background: rgba(220, 38, 38, 0.08); color: #b91c1c; border: 1px solid rgba(220,38,38,0.2); }
.notice-error ul { margin: 0; padding-left: 1.25rem; }
.map-frame { margin-top: 1.5rem; border-radius: 16px; overflow: hidden; border: 1px solid var(--border); min-height: 220px; }
.map-frame iframe { width: 100%; height: 220px; border: 0; }

/* ── Footer ── */
.tv-foot {
    background: var(--ink); color: var(--sand); padding: 5rem 0 2rem; position: relative; overflow: hidden;
}
.tv-foot__glow {
    position: absolute; top: -40%; right: -20%; width: 60%; height: 80%;
    background: radial-gradient(circle, rgba(179, 58, 43,0.18), transparent 70%);
    pointer-events: none;
}
.tv-foot__grid {
    display: grid; grid-template-columns: 2fr 1fr 1fr 1.4fr; gap: 2.5rem;
    max-width: 1180px; margin: 0 auto; padding: 0 1.5rem; position: relative; z-index: 1;
}
.tv-foot__brand { font-family: var(--font-display); font-size: 1.8rem; margin-bottom: 0.75rem; }
.tv-foot__tag { color: var(--amber); font-weight: 700; margin-bottom: 0.75rem; }
.tv-foot__blurb { font-size: 0.9rem; opacity: 0.65; line-height: 1.7; max-width: 340px; }
.tv-foot h3 { font-size: 0.85rem; letter-spacing: 0.12em; margin-bottom: 1rem; opacity: 0.9; }
.tv-foot ul { list-style: none; display: flex; flex-direction: column; gap: 0.55rem; }
.tv-foot ul a { font-size: 0.9rem; opacity: 0.6; transition: opacity 0.2s, color 0.2s; }
.tv-foot ul a:hover { opacity: 1; color: var(--amber); }
.tv-foot__reach p { font-size: 0.88rem; opacity: 0.65; line-height: 1.65; margin-bottom: 0.5rem; }
.tv-foot__reach a { color: var(--foam); opacity: 1; }
.tv-foot__base {
    display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem;
    max-width: 1180px; margin: 3rem auto 0; padding: 1.75rem 1.5rem 0;
    border-top: 1px solid rgba(244,242,238,0.1); position: relative; z-index: 1;
}
.tv-foot__base p { font-size: 0.82rem; opacity: 0.5; }
.tv-top {
    display: inline-flex; align-items: center; gap: 0.45rem; padding: 0.65rem 1.1rem;
    border-radius: 999px; border: 1px solid rgba(244,242,238,0.2); background: transparent;
    color: var(--sand); cursor: pointer; font-size: 0.8rem; font-weight: 700;
    transition: transform 0.3s, background 0.3s;
}
.tv-top:hover { transform: translateY(-3px); background: rgba(244,242,238,0.08); }

/* Nav contrast is handled globally — always dark text on frosted bar */

/* Dark theme readability sweep */
body.dark-theme h1,
body.dark-theme h2,
body.dark-theme h3,
body.dark-theme p,
body.dark-theme li,
body.dark-theme label,
body.dark-theme cite {
    color: inherit;
}
body.dark-theme .tv-voices__card,
body.dark-theme .ab-pillar,
body.dark-theme .ct-faq__item,
body.dark-theme .bl-newsletter,
body.dark-theme .tv-search__panel {
    background: var(--surface);
    color: var(--text);
    border-color: var(--border);
}
body.dark-theme .tv-voices__card p,
body.dark-theme .ab-pillar p,
body.dark-theme .ct-faq__item p,
body.dark-theme .bl-stack__item p,
body.dark-theme .sv-pass__main p {
    color: var(--muted);
}
body.dark-theme .tv-voices__card cite,
body.dark-theme .ab-pillar h3,
body.dark-theme .sv-pass__main h3,
body.dark-theme .bl-stack__item h3,
body.dark-theme .ct-faq__item h3,
body.dark-theme .ct-split__form h2,
body.dark-theme .sv-hero h1,
body.dark-theme .sv-season-ribbon__head h2,
body.dark-theme .tv-route__head h2 {
    color: var(--text);
}
body.dark-theme .ct-form input,
body.dark-theme .ct-form textarea {
    background: var(--surface);
    color: var(--text);
    border-color: var(--border);
}
body.dark-theme .ct-form input::placeholder,
body.dark-theme .ct-form textarea::placeholder {
    color: var(--muted);
}
body.dark-theme .notice-error {
    background: rgba(220, 38, 38, 0.15);
    color: #fecaca;
    border-color: rgba(248, 113, 113, 0.35);
}
body.dark-theme .notice-success {
    background: rgba(94, 184, 214, 0.15);
    color: var(--foam);
    border-color: rgba(94, 184, 214, 0.35);
}
body.dark-theme .ab-path__text h2,
body.dark-theme .ab-path__text p {
    color: var(--text);
}
body.dark-theme .ab-path__text p { color: var(--muted); }
body.dark-theme .home-hero__sky {
    background:
        linear-gradient(180deg,
            rgba(18, 21, 28, 0.55) 0%,
            rgba(18, 21, 28, 0.35) 45%,
            rgba(18, 21, 28, 0.65) 100%),
        url("https://images.unsplash.com/photo-1492144534655-ae79c964c9d7?auto=format&fit=crop&w=1600&q=80") center 40% / cover no-repeat;
}

/* ── Responsive ── */
@media (max-width: 1024px) {
    .tv-burger { display: flex; }
    .tv-nav__links { display: none; }
    .lang-switcher { display: none; }
    .tv-nav__inner { padding-left: 1rem; padding-right: 1rem; }

    .book-dock__row { grid-template-columns: 1fr 1fr; }
    .book-dock__search,
    .book-field--action { grid-column: 1 / -1; width: 100%; min-width: 0; }
    .book-dock__body { padding: 1rem; }

    .tv-stats-slash__grid { grid-template-columns: 1fr 1fr; gap: 1.25rem; }
    .tv-voices__grid { grid-template-columns: 1fr; }
    .tv-voices__card:nth-child(2) { transform: none; }
    .home-steps__grid { grid-template-columns: 1fr; }
    .home-why__inner { grid-template-columns: 1fr; gap: 2rem; }
    .home-why__visual { min-height: 280px; order: -1; }
    .home-brands__visit { flex-direction: column; align-items: flex-start; text-align: left; }
    .tv-parallax-band { min-height: 60vh; }
    .tv-parallax-band__copy { margin-left: 0; max-width: 100%; padding: 3rem 1.25rem; text-align: center; }
    .tv-runway { margin: 2rem 1rem 4rem; min-height: 320px; }
    .tv-route { padding: 4rem 0 3rem; overflow: visible; }
    .tv-route__card { flex: 0 0 min(85vw, 320px); min-height: 440px; }
    .tv-route__hint { display: block; }

    .ab-path::before { left: 1.25rem; }
    .ab-path__step { grid-template-columns: 1fr; padding-left: 2.75rem; margin-bottom: 3rem; gap: 1.25rem; }
    .ab-path__step:nth-child(even) .ab-path__text,
    .ab-path__step:nth-child(even) .ab-path__visual { order: unset; }
    .ab-path__node { left: 1.25rem; }
    .ab-path__visual { min-height: 200px; }
    .ab-pillars { grid-template-columns: 1fr; padding: 3rem 1rem; }
    .ab-hero { min-height: 70vh; padding: 7rem 1.25rem 3rem; }
    .ab-quote-wall { margin: 2rem 1rem; padding: 2.5rem 1.25rem; }

    .sv-pass { grid-template-columns: 1fr; margin: 0 1rem 1.25rem; }
    .sv-pass__stub {
        border-left: none; border-top: 2px dashed rgba(255,255,255,0.45);
        flex-direction: row; justify-content: space-between; padding: 1.25rem 1.5rem;
    }
    .sv-season-ribbon__row { grid-template-columns: 1fr 1fr; }
    .sv-hero { padding: 7.5rem 1.25rem 2.5rem; }
    .sv-cta-band { margin: 2rem 1rem 3.5rem; padding: 2.5rem 1.25rem; }

    .bl-hero { grid-template-columns: 1fr; }
    .bl-hero__feature { min-height: 55vh; padding: 2rem 1.25rem; }
    .bl-hero__side { padding: 2.5rem 1.25rem; }
    .bl-stack { padding: 2.5rem 1.25rem 3.5rem; }
    .bl-stack__item { grid-template-columns: 1fr; gap: 1rem; }
    .bl-newsletter { margin: 1.5rem 1rem 3.5rem; padding: 2.25rem 1.25rem; }

    .ct-split { grid-template-columns: 1fr; }
    .ct-split__visual { min-height: 48vh; padding: 7rem 1.25rem 2rem; }
    .ct-split__form { padding: 2.5rem 1.25rem 3rem; }
    .ct-faq { padding: 2.5rem 1.25rem 3.5rem; }

    .tv-foot__grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
    .tv-foot { padding: 3.5rem 0 1.5rem; }
}

@media (max-width: 720px) {
    html, body { overflow-x: hidden; }
    .container { padding: 0 1rem; }

    /* Nav */
    .tv-nav__inner { padding: 0.75rem 1rem; gap: 0.5rem; }
    .tv-nav__brand { font-size: 1.05rem; }
    .tv-nav__mark { width: 32px; height: 32px; font-size: 0.68rem; }
    .tv-tool, .tv-burger { width: 36px; height: 36px; }
    .tv-flyout { width: min(92%, 340px); padding: 2.5rem 1.5rem; }
    .tv-flyout__nav a { font-size: 1.05rem; padding: 0.35rem 0; }

    /* Hero */
    .home-hero {
        min-height: min(100dvh, 900px);
        padding-top: 0;
        padding-bottom: 0.5rem;
        justify-content: flex-end;
    }
    .home-hero__sky {
        position: absolute;
        inset: 0;
    }
    .home-hero__content {
        width: calc(100% - 1.5rem);
        margin: auto auto 0;
        padding: 5.5rem 0.75rem 1rem;
    }
    .home-hero__banner {
        border-radius: 12px;
        padding: 1.1rem 1rem;
        box-shadow: 0 14px 36px rgba(179, 58, 43, 0.35);
    }
    .home-hero__title {
        font-size: clamp(1.2rem, 5.5vw, 1.55rem);
        letter-spacing: 0.03em;
    }
    .home-hero__title span {
        font-size: 0.58em;
        letter-spacing: 0.2em;
        margin-bottom: 0.3rem;
    }
    .home-hero__lead {
        font-size: 0.86rem;
        line-height: 1.7;
        width: 100%;
        margin-top: 0.9rem;
    }
    .home-hero__plane { display: none; }
    .home-hero__cloud { opacity: 0.35; }

    /* Booking — no clip, full fields */
    .book-dock {
        width: calc(100% - 1.25rem);
        max-width: none;
        margin: 0 auto 1rem;
        transform: none;
        border-radius: 16px;
        animation: none;
        box-shadow: 0 18px 40px rgba(18, 21, 28, 0.18);
    }
    @keyframes tv-dock-up {
        from { opacity: 0; transform: translateY(1rem); }
        to { opacity: 1; transform: none; }
    }
    .book-dock__tabs {
        padding: 0;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    .book-dock__tab {
        flex: 1 0 auto;
        min-width: 72px;
        padding: 0.85rem 0.4rem 0.7rem;
        font-size: 0.68rem;
        gap: 0.25rem;
    }
    .book-dock__tab svg { width: 18px; height: 18px; }
    .book-dock__body { padding: 1rem 0.9rem 1.15rem; }
    .book-dock__row {
        grid-template-columns: 1fr;
        gap: 0.85rem;
    }
    .book-field--action,
    .book-dock__search {
        grid-column: 1 / -1;
        width: 100%;
    }
    .book-field select,
    .book-field input,
    .book-pax,
    .book-pax select {
        height: 50px;
        font-size: 16px; /* prevents iOS zoom */
    }
    .book-dock__search {
        height: 52px;
        min-height: 52px;
        font-size: 1rem;
        letter-spacing: 0.16em;
        border-radius: 12px;
    }
    .book-pax { gap: 0.4rem; }

    .home-wrap {
        padding-top: 1.5rem;
        z-index: 2;
    }

    /* Sections */
    .tv-route {
        padding: 2rem 0 2.5rem;
        background: var(--bg);
        position: relative;
        z-index: 2;
    }
    .tv-route__head { margin-bottom: 1rem; padding: 0 1rem; }
    .tv-route__head h2 { font-size: 1.55rem; }
    .tv-route__hint { display: block; margin: 0 0 0.75rem; }
    .tv-route__track {
        padding: 1.25rem 1rem 2.25rem;
        gap: 1rem;
        overflow-x: auto;
        overflow-y: visible;
    }
    .tv-route__card {
        flex: 0 0 82vw;
        min-height: 420px;
        transform: none !important;
        border-radius: 18px;
    }
    .tv-route__meta { padding: 1.35rem 1.2rem 1.3rem; }
    .tv-route__meta h3 { font-size: 1.2rem; color: #fff !important; }
    .tv-route__meta p { color: #fff !important; }
    .tv-route__cta {
        padding: 0.5rem 0.85rem;
        font-size: 0.74rem;
        background: linear-gradient(135deg, var(--sunset), var(--amber));
        border-color: transparent;
    }

    .tv-marquee { padding: 1.5rem 0; }
    .tv-marquee__item { font-size: 1.15rem; gap: 1.5rem; }
    .tv-marquee__rail { gap: 1.5rem; }

    .tv-parallax-band { min-height: 52vh; }
    .tv-parallax-band__copy h2 { font-size: 1.55rem; }
    .tv-parallax-band__copy p { font-size: 0.9rem; }

    .tv-stats-slash {
        clip-path: none;
        margin: 1rem 0;
        padding: 3rem 0;
        border-radius: 0;
    }
    .tv-stats-slash__grid {
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem 1rem;
        padding: 1rem;
    }
    .tv-stats-slash__num { font-size: 2rem; }
    .tv-stats-slash__label { font-size: 0.78rem; }

    .tv-voices { padding: 3rem 0; }
    .tv-voices__card { padding: 1.5rem; }

    .home-steps { padding: 3.5rem 0; }
    .home-steps__item { padding: 1.5rem; }
    .home-why { padding: 3.5rem 0; }
    .home-why__visual { min-height: 220px; }
    .home-brands { padding: 3rem 0 4rem; }
    .home-brands__visit { padding: 1.5rem; }
    .home-brands__visit .tv-btn { width: 100%; }

    .tv-runway {
        margin: 1.5rem 0.85rem 3.5rem;
        min-height: 280px;
        border-radius: 20px;
    }
    .tv-runway__inner { padding: 2.25rem 1.15rem; }
    .tv-runway__inner h2 { font-size: 1.45rem; }
    .tv-runway__actions {
        flex-direction: column;
        align-items: stretch;
    }
    .tv-runway__actions .tv-btn { width: 100%; }

    .tv-btn { padding: 0.9rem 1.4rem; font-size: 0.85rem; }

    /* About */
    .ab-hero { min-height: 62vh; padding: 6.5rem 1rem 2.5rem; }
    .ab-hero__copy h1 { font-size: 1.85rem; }
    .ab-path { padding: 3rem 0; }
    .ab-path__step { padding-left: 2.5rem; margin-bottom: 2.5rem; }
    .ab-path__text h2 { font-size: 1.35rem; }
    .ab-path__visual { min-height: 180px; border-radius: 16px; }
    .ab-quote-wall blockquote { font-size: 1.2rem; }
    .ab-pillars { gap: 1rem; padding: 2rem 1rem 3rem; }

    /* Services */
    .sv-hero h1 { font-size: 1.75rem; }
    .sv-pass__main { padding: 1.35rem 1.25rem; }
    .sv-pass__main h3 { font-size: 1.2rem; }
    .sv-season-ribbon__row {
        grid-template-columns: 1fr;
        gap: 0.85rem;
        padding: 0 1rem;
    }
    .sv-season { aspect-ratio: 16/9; }
    .sv-cta-band h2 { font-size: 1.45rem; }

    /* Blog */
    .bl-hero__feature { min-height: 48vh; padding: 5.5rem 1rem 1.75rem; align-items: flex-end; }
    .bl-hero__feature-copy h1 { font-size: 1.45rem; }
    .bl-hero__side h2 { font-size: 1.45rem; }
    .bl-stack__item:hover { padding-left: 0; }
    .bl-stack__thumb { aspect-ratio: 16/10; }

    /* Contact */
    .ct-split__visual { min-height: 42vh; padding: 6rem 1rem 1.75rem; }
    .ct-split__visual-copy h1 { font-size: 1.65rem; }
    .ct-split__form { padding: 2rem 1rem 2.5rem; }
    .ct-split__form h2 { font-size: 1.45rem; }
    .ct-form input,
    .ct-form textarea { font-size: 16px; }
    .map-frame { min-height: 180px; }
    .map-frame iframe { height: 180px; }

    /* Footer */
    .tv-foot__grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 1rem;
    }
    .tv-foot__brand { font-size: 1.5rem; }
    .tv-foot__base {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem 1rem 0;
        gap: 0.85rem;
    }

    /* Chat FAB */
    .tv-chat {
        bottom: calc(1rem + env(safe-area-inset-bottom, 0px));
        right: calc(1rem + env(safe-area-inset-right, 0px));
        width: 50px;
        height: 50px;
    }

    /* Reduce motion / transform overflow */
    [data-reveal="left"],
    [data-reveal="right"],
    [data-reveal="tilt"] {
        transform: translateY(28px);
    }
}

@media (max-width: 420px) {
    .home-hero__title { font-size: 1.15rem; }
    .book-dock__tab { min-width: 64px; font-size: 0.62rem; padding: 0.75rem 0.25rem 0.65rem; }
    .tv-stats-slash__grid { gap: 1.1rem 0.75rem; }
    .tv-stats-slash__num { font-size: 1.75rem; }
    .sv-pass { margin-left: 0.75rem; margin-right: 0.75rem; }
}

/* Ensure burger is visible on light service hero when scrolled or not */
body[data-page="services"] .tv-burger i { color: inherit; }

/* Touch-friendly tap targets */
@media (hover: none) and (pointer: coarse) {
    .tv-nav__link, .tv-flyout__nav a, .book-dock__tab, .tv-btn {
        -webkit-tap-highlight-color: rgba(179, 58, 43, 0.2);
    }
    .tv-route__card:hover { transform: none; }
    .sv-pass:hover { transform: none; }
}

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

