﻿/* =============================
     ROOT
     ============================= */
  *, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

  :root {
    --white: #ffffff;
    --cream: #f5f1ea;
    --off: #e8e4dd;
    --black: #050608;
    --ink: #0a0c12;
    --void: #07090f;
    --char: #14171f;
    --gray-900: #1a1e29;
    --gray-800: #232838;
    --gray-700: #2e3445;
    --gray-500: #6b7385;
    --gray-400: #8a92a3;
    --gray-300: #b8bdc9;
    --gray-200: #d4d8e0;
    --red: #d11233;
    --red-hot: #ff1f3d;
    --red-deep: #99001f;
    --blue: #2a4dad;
    --blue-bright: #3d6ee0;
    --blue-deep: #0d1d4f;
    --gold: #c9a961;

    --font-display: 'Libre Franklin', serif;
    --font-body: 'Poppins', sans-serif;

    --gutter: clamp(1.5rem, 4vw, 4rem);
    --max: 1500px;

    --ease-expo: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-quart: cubic-bezier(0.76, 0, 0.24, 1);
    --ease-power: cubic-bezier(0.65, 0, 0.35, 1);
  }

  html {
    background: var(--void);
    color: var(--white);
  }
  body {
    font-family: var(--font-body);
    background: var(--void);
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    cursor: none;
    font-weight: 300;
  }
  @media (max-width: 900px) { body { cursor: auto; } }

  img { max-width: 100%; display: block; }
  a, button { color: inherit; text-decoration: none; cursor: none; background: none; border: none; font-family: inherit; }
  @media (max-width: 900px) { a, button { cursor: pointer; } }
  ::selection { background: var(--red); color: var(--white); }

  /* =============================
     CUSTOM CURSOR
     ============================= */
  .cursor-dot, .cursor-ring {
    position: fixed; top: 0; left: 0;
    pointer-events: none; z-index: 9999;
    border-radius: 50%;
    will-change: transform;
  }
  .cursor-dot {
    width: 5px; height: 5px;
    background: var(--white);
    transform: translate(-50%, -50%);
    transition: opacity 0.3s, transform 0.3s;
    mix-blend-mode: difference;
  }
  .cursor-ring {
    width: 36px; height: 36px;
    border: 1px solid rgba(255,255,255,0.4);
    transform: translate(-50%, -50%);
    transition: width 0.4s var(--ease-expo), height 0.4s var(--ease-expo), background 0.4s, border-color 0.3s;
  }
  .cursor-ring.hover {
    width: 70px; height: 70px;
    background: transparent;
    border: 1.5px solid var(--white);
    mix-blend-mode: difference;
  }
  .cursor-ring.hover-light {
    background: transparent;
    border-color: var(--white);
  }
  .cursor-dot.hover { opacity: 0; }
  .cursor-text {
    position: fixed; top: 0; left: 0;
    pointer-events: none; z-index: 10000;
    color: var(--white);
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: opacity 0.3s;
  }
  .cursor-text.visible { opacity: 1; }
  @media (max-width: 900px) { .cursor-dot, .cursor-ring, .cursor-text { display: none; } }

  /* =============================
     LOADER
     ============================= */
  .loader {
    position: fixed; inset: 0; z-index: 10000;
    background: var(--void);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    overflow: hidden;
  }
  .loader-num {
    font-family: var(--font-display);
    font-size: clamp(8rem, 22vw, 18rem);
    font-weight: 200;
    color: var(--white);
    line-height: 1;
    letter-spacing: -0.05em;
    display: flex;
    align-items: baseline;
  }
  .loader-num sup {
    font-size: 0.25em;
    color: var(--red-hot);
    margin-left: 0.2em;
    font-weight: 400;
    letter-spacing: 0;
  }
  .loader-line-wrap {
    margin-top: 2rem;
    width: clamp(220px, 25vw, 400px);
    height: 1px;
    background: rgba(255,255,255,0.1);
    overflow: hidden;
    position: relative;
  }
  .loader-line {
    position: absolute;
    inset: 0;
    background: var(--red-hot);
    transform: scaleX(0);
    transform-origin: left;
  }
  .loader-label {
    margin-top: 1.5rem;
    font-size: 0.7rem;
    letter-spacing: 0.5em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.4);
    font-weight: 500;
  }
  .loader-corner {
    position: absolute;
    font-size: 0.65rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.3);
    font-weight: 500;
  }
  .loader-corner.tl { top: 2rem; left: 2rem; }
  .loader-corner.tr { top: 2rem; right: 2rem; }
  .loader-corner.bl { bottom: 2rem; left: 2rem; }
  .loader-corner.br { bottom: 2rem; right: 2rem; }
  .loader-wipe {
    position: fixed; inset: 0;
    background: var(--white);
    z-index: 9998;
    transform: translateY(100%);
  }

  /* =============================
     NAV
     ============================= */
  .nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 200;
    padding: 1.75rem var(--gutter);
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 2rem;
    transition: all 0.5s var(--ease-expo);
  }
  .nav::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(5, 6, 8, 0.65);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    opacity: 0;
    transition: opacity 0.5s;
    z-index: -1;
  }
  .nav.scrolled::after { opacity: 1; }
  .nav.scrolled { padding: 1rem var(--gutter); border-bottom: 1px solid rgba(255,255,255,0.06); }

  .nav-logo img {
    height: 50px;
    filter: brightness(0) invert(1);
    transition: height 0.4s;
  }
  .nav.scrolled .nav-logo img { height: 42px; }

  .nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
    justify-content: center;
  }
  .nav-links a {
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.8);
    position: relative;
    padding: 0.4rem 0;
    transition: color 0.3s;
  }
  .nav-links a::after {
    content: '';
    position: absolute;
    left: 0; bottom: 0;
    width: 100%; height: 1px;
    background: var(--red-hot);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s var(--ease-expo);
  }
  .nav-links a:hover { color: var(--white); }
  .nav-links a:hover::after { transform: scaleX(1); transform-origin: left; }

  .nav-right { display: flex; justify-content: flex-end; align-items: center; gap: 1.25rem; }
  .nav-tel {
    font-family: var(--font-display);
    font-size: 0.9rem;
    color: rgba(255,255,255,0.9);
    font-weight: 500;
    letter-spacing: 0.02em;
  }
  .nav-cta {
    padding: 0.8rem 1.4rem;
    background: var(--red);
    color: var(--white);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    transition: all 0.4s var(--ease-expo);
    position: relative;
    overflow: hidden;
    border-radius: 1px;
  }
  .nav-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--red-deep);
    transform: translateY(101%);
    transition: transform 0.4s var(--ease-expo);
  }
  .nav-cta:hover::before { transform: translateY(0); }
  .nav-cta span { position: relative; z-index: 1; }
  .nav-cta svg { position: relative; z-index: 1; width: 12px; height: 12px; }
  @media (max-width: 1000px) {
    .nav-links, .nav-tel { display: none; }
    .nav { grid-template-columns: 1fr auto; }
    .nav-right { display: flex; }
  }

  /* =============================
     HERO
     ============================= */
  .hero {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding: 8rem var(--gutter) 4rem;
  }

  /* Animated canvas gradient mesh */
  #meshCanvas {
    position: absolute;
    inset: 0;
    z-index: 1;
    opacity: 0.55;
  }

  /* Background image with heavy treatment */
  .hero-img-wrap {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
  }
  .hero-img-wrap img {
    width: 100%; height: 100%;
    object-fit: cover;
    opacity: 0.35;
    transform: scale(1.1);
    filter: grayscale(40%) contrast(1.1);
  }
  .hero-img-wrap::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
      radial-gradient(ellipse at 30% 60%, rgba(209, 18, 51, 0.18) 0%, transparent 50%),
      linear-gradient(180deg, rgba(7,9,15,0.7) 0%, rgba(7,9,15,0.5) 50%, rgba(7,9,15,0.95) 100%);
  }

  /* Noise overlay */
  .noise {
    position: absolute;
    inset: 0;
    z-index: 4;
    pointer-events: none;
    opacity: 0.07;
    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.9' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    mix-blend-mode: overlay;
  }

  /* Side rails */
  .rail {
    position: absolute;
    top: 0; bottom: 0;
    width: 1px;
    background: linear-gradient(180deg, transparent 0%, rgba(255,255,255,0.1) 30%, rgba(255,255,255,0.1) 70%, transparent 100%);
    z-index: 3;
  }
  .rail.left { left: 6rem; }
  .rail.right { right: 6rem; }
  @media (max-width: 1100px) { .rail { display: none; } }

  /* Vertical text */
  .vtext {
    position: absolute;
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    font-size: 0.7rem;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.45);
    font-weight: 500;
    z-index: 5;
  }
  .vtext.left { left: 2.2rem; top: 50%; transform: rotate(180deg) translateY(50%); }
  .vtext.right { right: 2.2rem; top: 50%; transform: rotate(180deg) translateY(50%); display: flex; align-items: center; gap: 1rem; }
  .vtext.right::before {
    content: '';
    width: 1px; height: 30px;
    background: var(--red-hot);
    display: inline-block;
  }
  @media (max-width: 1100px) { .vtext { display: none; } }

  /* Hero content */
  .hero-content {
    position: relative;
    z-index: 5;
    max-width: var(--max);
    width: 100%;
    margin: 0 auto;
  }
  .hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
  }

  .hero-meta-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 4rem;
    flex-wrap: wrap;
    gap: 1rem;
  }
  .hero-meta-top-item {
    font-size: 0.7rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.5);
    display: flex;
    align-items: center;
    gap: 0.75rem;
  }
  .hero-meta-top-item::before {
    content: '';
    width: 28px; height: 1px;
    background: var(--red-hot);
  }
  .hero-meta-top-item.right::before { display: none; }
  .hero-meta-top-item.right::after {
    content: '';
    width: 28px; height: 1px;
    background: var(--red-hot);
  }

  .hero-title {
    font-family: var(--font-display);
    font-size: clamp(3.5rem, 11vw, 11rem);
    line-height: 0.88;
    letter-spacing: -0.045em;
    font-weight: 700;
    margin-bottom: 3rem;
  }
  .hero-title .line {
    display: block;
    overflow: hidden;
  }
  .hero-title .line span {
    display: inline-block;
    transform: translateY(110%);
    will-change: transform;
  }
  .hero-title em {
    font-family: var(--font-display);
    font-style: italic;
    font-weight: 200;
    color: var(--red-hot);
  }
  .hero-title .num {
    font-size: 0.5em;
    font-weight: 300;
    color: var(--red-hot);
    vertical-align: super;
    margin-right: 0.5em;
    letter-spacing: 0;
  }

  .hero-bottom {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 3rem;
    align-items: end;
  }
  @media (max-width: 900px) { .hero-bottom { grid-template-columns: 1fr; } }

  .hero-sub {
    font-size: clamp(0.95rem, 1.2vw, 1.1rem);
    color: rgba(255,255,255,0.7);
    line-height: 1.7;
    max-width: 50ch;
    font-weight: 300;
    opacity: 0;
    transform: translateY(20px);
  }
  .hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-end;
    opacity: 0;
    transform: translateY(20px);
  }
  @media (max-width: 900px) { .hero-actions { justify-content: flex-start; } }

  /* Buttons */
  .btn {
    padding: 1.25rem 2rem;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    position: relative;
    overflow: hidden;
    transition: transform 0.4s var(--ease-expo);
    border-radius: 1px;
    will-change: transform;
    isolation: isolate;
  }
  .btn > * {
    position: relative;
    z-index: 2;
  }
  .btn svg { width: 14px; height: 14px; transition: transform 0.4s var(--ease-expo); }
  .btn:hover svg { transform: translateX(8px); }

  .btn-primary {
    background: var(--red);
    color: var(--white);
    background-image: linear-gradient(135deg, var(--red-hot), var(--red-deep));
    background-size: 100% 0%;
    background-position: 0% 100%;
    background-repeat: no-repeat;
    transition: background-size 0.5s var(--ease-expo), transform 0.4s var(--ease-expo), box-shadow 0.4s var(--ease-expo);
  }
  .btn-primary:hover {
    background-size: 100% 100%;
    transform: translateY(-4px);
    box-shadow: 0 25px 50px -10px rgba(209, 18, 51, 0.5);
  }

  .btn-ghost {
    background: transparent;
    color: var(--white);
    border: 1px solid rgba(255,255,255,0.25);
  }
  .btn-ghost:hover {
    border-color: var(--white);
    background: rgba(255,255,255,0.05);
    transform: translateY(-4px);
  }

  .btn-arrow {
    width: 32px; height: 32px;
    border: 1px solid currentColor;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
  }
  .btn-arrow svg { width: 12px; height: 12px; transition: transform 0.3s var(--ease-expo); }

  /* Hero scroll indicator */
  .hero-scroll {
    position: absolute;
    left: 50%; bottom: 2rem;
    transform: translateX(-50%);
    z-index: 5;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    color: rgba(255,255,255,0.6);
    font-size: 0.65rem;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    opacity: 0;
  }
  .hero-scroll-bar {
    width: 1px; height: 50px;
    background: rgba(255,255,255,0.2);
    position: relative;
    overflow: hidden;
  }
  .hero-scroll-bar::after {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--white);
    transform: translateY(-100%);
    animation: scrollBar 2.5s var(--ease-power) infinite;
  }
  @keyframes scrollBar {
    0%, 100% { transform: translateY(-100%); }
    50% { transform: translateY(100%); }
  }

  /* =============================
     TRUST BAR
     ============================= */
  .trust {
    background: var(--black);
    border-top: 1px solid rgba(255,255,255,0.06);
    border-bottom: 1px solid rgba(255,255,255,0.06);
    padding: 2rem var(--gutter);
    position: relative;
    z-index: 5;
  }
  .trust-inner {
    max-width: var(--max);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    align-items: center;
  }
  .trust-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: rgba(255,255,255,0.7);
    font-size: 0.8rem;
    letter-spacing: 0.05em;
    border-right: 1px solid rgba(255,255,255,0.08);
    padding-right: 1rem;
  }
  .trust-item:last-child { border-right: none; }
  .trust-item svg { width: 22px; height: 22px; color: var(--red-hot); flex-shrink: 0; }
  .trust-item strong {
    display: block;
    color: var(--white);
    font-family: var(--font-display);
    font-weight: 500;
    margin-bottom: 0.15rem;
    font-size: 0.95rem;
    letter-spacing: -0.01em;
  }
  @media (max-width: 900px) {
    .trust-inner { grid-template-columns: repeat(2, 1fr); gap: 2rem; }
    .trust-item { border-right: none; }
  }

  /* =============================
     SECTIONS
     ============================= */
  .section {
    padding: clamp(6rem, 14vh, 10rem) var(--gutter);
    position: relative;
  }
  .container { max-width: var(--max); margin: 0 auto; }
  .container-wide { max-width: 100%; margin: 0; }

  .eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.85rem;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: var(--red-hot);
    margin-bottom: 2rem;
  }
  .eyebrow::before {
    content: '';
    width: 32px; height: 1px;
    background: var(--red-hot);
  }
  .eyebrow .num {
    font-family: var(--font-display);
    color: rgba(255,255,255,0.4);
    font-weight: 400;
    margin-right: 0.5rem;
  }

  .h-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 6vw, 5.5rem);
    line-height: 0.95;
    letter-spacing: -0.035em;
    font-weight: 700;
    color: var(--white);
  }
  .h-title em {
    font-style: italic;
    font-weight: 200;
    color: var(--red-hot);
  }
  .h-sub {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.65);
    max-width: 56ch;
    line-height: 1.75;
    font-weight: 300;
  }

  /* =============================
     MANIFESTO (Pinned scroll)
     ============================= */
  .manifesto {
    background: var(--void);
    position: relative;
    overflow: hidden;
  }
  .manifesto::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
      radial-gradient(circle at 80% 20%, rgba(209, 18, 51, 0.08) 0%, transparent 50%),
      radial-gradient(circle at 20% 80%, rgba(61, 110, 224, 0.08) 0%, transparent 50%);
    pointer-events: none;
  }
  .manifesto-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: flex-start;
    position: relative;
  }
  @media (max-width: 1000px) { .manifesto-grid { grid-template-columns: 1fr; gap: 3rem; } }

  .manifesto-left { position: sticky; top: 15vh; }
  .manifesto-stamp {
    margin-bottom: 3rem;
    display: inline-flex;
    align-items: center;
    gap: 1rem;
  }
  .manifesto-stamp-num {
    font-family: var(--font-display);
    font-size: 0.7rem;
    color: rgba(255,255,255,0.4);
    font-weight: 500;
    letter-spacing: 0.3em;
  }
  .manifesto-stamp-rule {
    width: 60px; height: 1px;
    background: var(--red-hot);
  }
  .manifesto-stamp-label {
    font-size: 0.7rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.6);
    font-weight: 500;
  }
  .manifesto-headline {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5.5vw, 5rem);
    line-height: 1;
    letter-spacing: -0.035em;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 2rem;
  }
  .manifesto-headline em {
    font-style: italic;
    font-weight: 200;
    color: var(--red-hot);
  }

  .manifesto-right p {
    font-size: clamp(1.15rem, 1.7vw, 1.5rem);
    line-height: 1.55;
    color: rgba(255,255,255,0.65);
    font-weight: 300;
    font-family: var(--font-display);
    margin-bottom: 2rem;
  }
  .manifesto-right p .accent {
    color: var(--white);
    font-weight: 400;
  }
  .manifesto-right p em {
    color: var(--red-hot);
    font-style: italic;
    font-weight: 300;
  }
  .manifesto-sig {
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.08);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.5);
    font-weight: 500;
  }
  .manifesto-sig strong {
    color: var(--white);
    font-family: var(--font-display);
    font-weight: 500;
    letter-spacing: -0.01em;
    text-transform: none;
    font-size: 0.95rem;
  }

  /* Word reveal animation */
  .word-wrap {
    overflow: hidden;
    display: inline-block;
    vertical-align: bottom;
  }
  .word-wrap > span {
    display: inline-block;
    transform: translateY(110%);
    will-change: transform;
  }

  /* =============================
     FLEET (Horizontal Scroll)
     ============================= */
  .fleet {
    background: var(--black);
    overflow: hidden;
    position: relative;
    padding: clamp(5rem, 10vh, 8rem) 0 0;
  }
  .fleet-head {
    padding: 0 var(--gutter) 5rem;
    max-width: var(--max);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: end;
  }
  @media (max-width: 900px) { .fleet-head { grid-template-columns: 1fr; } }

  .fleet-scroll-wrap {
    position: relative;
    overflow: hidden;
    width: 100%;
  }
  .fleet-scroll-track {
    display: flex;
    gap: 2rem;
    padding: 2rem var(--gutter) 6rem;
    will-change: transform;
  }
  .fleet-card {
    flex: 0 0 clamp(300px, 32vw, 460px);
    background: linear-gradient(180deg, rgba(255,255,255,0.04) 0%, rgba(255,255,255,0.01) 100%);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 2px;
    overflow: hidden;
    position: relative;
    transition: border-color 0.4s, transform 0.5s var(--ease-expo);
    will-change: transform;
  }
  .fleet-card:hover {
    border-color: rgba(255,255,255,0.18);
    transform: translateY(-8px);
  }
  .fleet-card-num {
    position: absolute;
    top: 1.5rem; right: 1.5rem;
    font-family: var(--font-display);
    font-size: 0.7rem;
    color: rgba(255,255,255,0.4);
    font-weight: 500;
    letter-spacing: 0.2em;
    z-index: 2;
  }
  .fleet-card-img {
    aspect-ratio: 4 / 3;
    overflow: hidden;
    position: relative;
    background: var(--gray-900);
  }
  .fleet-card-img img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 1s var(--ease-expo), filter 0.5s;
    filter: brightness(0.85);
  }
  .fleet-card:hover .fleet-card-img img {
    transform: scale(1.08);
    filter: brightness(1);
  }
  .fleet-card-img::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 60%, rgba(0,0,0,0.6) 100%);
    pointer-events: none;
  }
  .fleet-card-tag {
    position: absolute;
    top: 1.5rem; left: 1.5rem;
    padding: 0.4rem 0.85rem;
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    background: rgba(255,255,255,0.95);
    color: var(--ink);
    z-index: 2;
    border-radius: 1px;
  }
  .fleet-card-tag.hot {
    background: var(--red-hot);
    color: var(--white);
  }
  .fleet-card-body {
    padding: 2rem;
  }
  .fleet-card-meta {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.65rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.5);
    margin-bottom: 1rem;
    font-weight: 500;
  }
  .fleet-card-meta span { width: 3px; height: 3px; background: var(--red-hot); border-radius: 50%; }
  .fleet-card-title {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 2.2vw, 2rem);
    font-weight: 600;
    letter-spacing: -0.025em;
    color: var(--white);
    line-height: 1.05;
    margin-bottom: 1.5rem;
  }
  .fleet-card-specs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    padding: 1.5rem 0;
    border-top: 1px solid rgba(255,255,255,0.08);
    border-bottom: 1px solid rgba(255,255,255,0.08);
    margin-bottom: 1.5rem;
  }
  .fleet-spec-label {
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.4);
    margin-bottom: 0.3rem;
  }
  .fleet-spec-value {
    font-family: var(--font-display);
    color: var(--white);
    font-weight: 500;
    font-size: 1rem;
    letter-spacing: -0.01em;
  }
  .fleet-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .fleet-card-price {
    font-family: var(--font-display);
    color: var(--white);
  }
  .fleet-card-price strong {
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: -0.02em;
  }
  .fleet-card-price span {
    font-family: var(--font-body);
    font-size: 0.75rem;
    color: rgba(255,255,255,0.5);
    margin-left: 0.25rem;
  }
  .fleet-card-link {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--red-hot);
    transition: gap 0.3s var(--ease-expo);
  }
  .fleet-card-link:hover { gap: 1rem; }
  .fleet-card-link svg { width: 14px; height: 14px; }

  .fleet-progress {
    max-width: var(--max);
    margin: 0 auto;
    padding: 0 var(--gutter) 4rem;
    display: flex;
    align-items: center;
    gap: 2rem;
    font-size: 0.7rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.5);
    font-weight: 500;
  }
  .fleet-progress-bar {
    flex: 1;
    height: 1px;
    background: rgba(255,255,255,0.08);
    position: relative;
    overflow: hidden;
  }
  .fleet-progress-fill {
    position: absolute;
    inset: 0;
    background: var(--red-hot);
    transform: scaleX(0);
    transform-origin: left;
  }

  .fleet-footer-cta {
    padding: 4rem var(--gutter) 6rem;
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.06);
  }
  .fleet-footer-cta-text {
    color: rgba(255,255,255,0.6);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
  }

  /* =============================
     BIG NUMBERS / STATS
     ============================= */
  .numbers {
    background: var(--void);
    padding: clamp(6rem, 12vh, 9rem) var(--gutter);
    border-top: 1px solid rgba(255,255,255,0.06);
    border-bottom: 1px solid rgba(255,255,255,0.06);
  }
  .numbers-grid {
    max-width: var(--max);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
  }
  .num-cell {
    padding: 0 2rem;
    border-right: 1px solid rgba(255,255,255,0.06);
    position: relative;
  }
  .num-cell:last-child { border-right: none; }
  .num-cell:first-child { padding-left: 0; }
  .num-cell-label {
    font-size: 0.65rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.4);
    margin-bottom: 1.5rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.6rem;
  }
  .num-cell-label::before {
    content: '';
    width: 20px; height: 1px;
    background: var(--red-hot);
  }
  .num-cell-value {
    font-family: var(--font-display);
    font-size: clamp(3rem, 6.5vw, 6rem);
    font-weight: 200;
    color: var(--white);
    line-height: 1;
    letter-spacing: -0.04em;
    display: flex;
    align-items: baseline;
    margin-bottom: 1rem;
  }
  .num-cell-value sup {
    font-size: 0.35em;
    color: var(--red-hot);
    margin-left: 0.1em;
    font-weight: 400;
  }
  .num-cell-desc {
    color: rgba(255,255,255,0.55);
    font-size: 0.85rem;
    line-height: 1.6;
    font-weight: 300;
    max-width: 28ch;
  }
  @media (max-width: 900px) {
    .numbers-grid { grid-template-columns: repeat(2, 1fr); gap: 3rem 0; }
    .num-cell { border-right: none; padding: 0 1rem; }
  }

  /* =============================
     EXPERIENCE (2x2 Chapter Grid)
     ============================= */
  .experience {
    background: var(--black);
    position: relative;
  }
  .experience::before {
    content: '';
    position: absolute;
    top: 10%; right: 5%;
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(209, 18, 51, 0.08) 0%, transparent 60%);
    pointer-events: none;
    z-index: 0;
  }
  .experience::after {
    content: '';
    position: absolute;
    bottom: 10%; left: 5%;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(40, 110, 224, 0.08) 0%, transparent 60%);
    pointer-events: none;
    z-index: 0;
  }
  .experience .container { position: relative; z-index: 1; }
  .experience-head {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 5rem;
  }
  .experience-head .eyebrow { justify-content: center; }
  .experience-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
  .exp-card {
    padding: 3rem 2.5rem;
    background: linear-gradient(180deg, rgba(255,255,255,0.04) 0%, rgba(255,255,255,0.01) 100%);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 2px;
    position: relative;
    overflow: hidden;
    transition: all 0.5s var(--ease-expo);
  }
  .exp-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 2px;
    background: linear-gradient(90deg, var(--red), var(--red-hot));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.6s var(--ease-expo);
  }
  .exp-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255,255,255,0.18);
    background: linear-gradient(180deg, rgba(255,255,255,0.06) 0%, rgba(255,255,255,0.02) 100%);
  }
  .exp-card:hover::before { transform: scaleX(1); }
  .exp-card-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 2.5rem;
  }
  .exp-card-num {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 200;
    color: rgba(255,255,255,0.25);
    line-height: 1;
    letter-spacing: -0.04em;
  }
  .exp-card-eyebrow {
    font-size: 0.65rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--red-hot);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    margin-top: 0.85rem;
  }
  .exp-card-eyebrow::before {
    content: '';
    width: 20px; height: 1px;
    background: var(--red-hot);
  }
  .exp-card-title {
    font-family: var(--font-display);
    font-size: clamp(1.6rem, 2.4vw, 2.2rem);
    font-weight: 700;
    color: var(--white);
    letter-spacing: -0.025em;
    line-height: 1.05;
    margin-bottom: 1.25rem;
  }
  .exp-card-title em {
    font-style: italic;
    font-weight: 200;
    color: var(--red-hot);
  }
  .exp-card-text {
    color: rgba(255,255,255,0.6);
    font-size: 0.95rem;
    line-height: 1.7;
    font-weight: 300;
    margin-bottom: 2rem;
  }
  .exp-card-list {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem 1.5rem;
    padding-top: 1.75rem;
    border-top: 1px solid rgba(255,255,255,0.08);
  }
  .exp-card-list li {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    color: rgba(255,255,255,0.75);
    font-size: 0.85rem;
    font-weight: 300;
  }
  .exp-card-list li svg {
    width: 14px; height: 14px;
    color: var(--red-hot);
    flex-shrink: 0;
  }
  @media (max-width: 900px) {
    .experience-grid { grid-template-columns: 1fr; }
    .exp-card { padding: 2.25rem 1.75rem; }
    .exp-card-num { font-size: 2.25rem; }
    .exp-card-list { grid-template-columns: 1fr; }
  }

  /* =============================
     SHOWCASE FULL-BLEED
     ============================= */
  .showcase {
    position: relative;
    height: 100vh;
    min-height: 700px;
    overflow: hidden;
    display: flex;
    align-items: center;
  }
  .showcase-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
  }
  .showcase-bg img {
    width: 100%; height: 100%;
    object-fit: cover;
    will-change: transform;
  }
  .showcase-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
      linear-gradient(180deg, rgba(7,9,15,0.4) 0%, rgba(7,9,15,0.85) 100%),
      radial-gradient(circle at 50% 50%, rgba(0,0,0,0) 0%, rgba(7,9,15,0.5) 100%);
  }
  .showcase-content {
    position: relative;
    z-index: 2;
    max-width: var(--max);
    margin: 0 auto;
    padding: 0 var(--gutter);
    width: 100%;
    text-align: center;
  }
  .showcase-quote {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4.5vw, 4rem);
    line-height: 1.15;
    color: var(--white);
    font-weight: 300;
    font-style: italic;
    max-width: 24ch;
    margin: 0 auto 3rem;
    letter-spacing: -0.02em;
  }
  .showcase-quote .accent {
    color: var(--red-hot);
    font-style: italic;
    font-weight: 400;
  }
  .showcase-author {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    color: rgba(255,255,255,0.7);
    font-size: 0.75rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    font-weight: 500;
  }
  .showcase-author::before, .showcase-author::after {
    content: '';
    width: 30px; height: 1px;
    background: rgba(255,255,255,0.4);
  }

  /* =============================
     PRICING TIERS
     ============================= */
  .pricing {
    background: var(--void);
    position: relative;
  }
  .pricing-head {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 5rem;
  }
  .pricing-head .eyebrow { justify-content: center; }
  .pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: var(--max);
    margin: 0 auto;
  }
  .price-card {
    background: linear-gradient(180deg, rgba(255,255,255,0.04) 0%, rgba(255,255,255,0.01) 100%);
    border: 1px solid rgba(255,255,255,0.08);
    padding: 2.5rem 2rem;
    border-radius: 2px;
    position: relative;
    transition: all 0.5s var(--ease-expo);
    overflow: hidden;
  }
  .price-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255,255,255,0.2);
  }
  .price-card.featured {
    background: linear-gradient(180deg, rgba(209, 18, 51, 0.12) 0%, rgba(209, 18, 51, 0.02) 100%);
    border-color: var(--red-hot);
  }
  .price-card-tag {
    position: absolute;
    top: 0; right: 1.5rem;
    background: var(--red-hot);
    color: var(--white);
    padding: 0.4rem 0.85rem;
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.25em;
    text-transform: uppercase;
  }
  .price-card-name {
    font-family: var(--font-display);
    font-size: 0.7rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.6);
    font-weight: 500;
    margin-bottom: 1.5rem;
  }
  .price-card-amount {
    font-family: var(--font-display);
    color: var(--white);
    font-size: 4rem;
    font-weight: 200;
    letter-spacing: -0.04em;
    line-height: 1;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: baseline;
  }
  .price-card-amount sup {
    font-size: 0.4em;
    color: var(--red-hot);
    margin-right: 0.1em;
    align-self: flex-start;
    margin-top: 0.5em;
  }
  .price-card-period {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.5);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 2rem;
    font-weight: 500;
  }
  .price-card-list {
    list-style: none;
    margin: 2rem 0;
    padding: 2rem 0;
    border-top: 1px solid rgba(255,255,255,0.08);
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }
  .price-card-list li {
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 300;
  }
  .price-card-list li svg {
    width: 14px; height: 14px;
    color: var(--red-hot);
    flex-shrink: 0;
  }
  .price-card-cta {
    display: block;
    width: 100%;
    padding: 1rem;
    text-align: center;
    border: 1px solid rgba(255,255,255,0.2);
    color: var(--white);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    transition: all 0.3s;
  }
  .price-card-cta:hover {
    background: var(--white);
    color: var(--ink);
    border-color: var(--white);
  }
  .price-card.featured .price-card-cta {
    background: var(--red);
    border-color: var(--red);
  }
  .price-card.featured .price-card-cta:hover {
    background: var(--red-hot);
    border-color: var(--red-hot);
  }
  @media (max-width: 900px) { .pricing-grid { grid-template-columns: 1fr; } }

  /* =============================
     TESTIMONIALS
     ============================= */
  .testimonials {
    background: var(--black);
    position: relative;
    overflow: hidden;
  }
  .testimonials-marquee {
    display: flex;
    gap: 2rem;
    width: max-content;
    animation: marquee 50s linear infinite;
    padding: 2rem 0;
  }
  @keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
  }
  .testimonial-card {
    flex: 0 0 clamp(380px, 30vw, 480px);
    padding: 2.5rem 2rem;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 2px;
  }
  .testimonial-stars {
    display: flex;
    gap: 0.2rem;
    color: var(--red-hot);
    margin-bottom: 1.5rem;
  }
  .testimonial-stars svg { width: 14px; height: 14px; }
  .testimonial-quote {
    font-family: var(--font-display);
    font-size: 1rem;
    line-height: 1.7;
    color: var(--white);
    font-style: italic;
    font-weight: 300;
    margin-bottom: 2rem;
  }
  .testimonial-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255,255,255,0.08);
  }
  .testimonial-avatar {
    width: 40px; height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--red), var(--blue));
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 0.85rem;
  }
  .testimonial-name {
    font-family: var(--font-display);
    color: var(--white);
    font-weight: 500;
    font-size: 0.95rem;
  }
  .testimonial-where {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.5);
    margin-top: 0.1rem;
  }

  /* =============================
     LOCATION
     ============================= */
  .location {
    background: var(--void);
    position: relative;
    overflow: hidden;
  }
  .location-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: var(--max);
    margin: 0 auto;
  }
  @media (max-width: 900px) { .location-grid { grid-template-columns: 1fr; } }

  .location-info p {
    color: rgba(255,255,255,0.7);
    line-height: 1.8;
    font-weight: 300;
    margin-bottom: 1.5rem;
    font-size: 1rem;
  }
  .location-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 3rem;
    padding-top: 3rem;
    border-top: 1px solid rgba(255,255,255,0.08);
  }
  .location-detail-label {
    font-size: 0.65rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.5);
    margin-bottom: 0.75rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }
  .location-detail-label::before {
    content: '';
    width: 16px; height: 1px;
    background: var(--red-hot);
  }
  .location-detail-value {
    font-family: var(--font-display);
    color: var(--white);
    font-weight: 500;
    font-size: 1.05rem;
    letter-spacing: -0.01em;
    line-height: 1.5;
  }
  .location-detail-value a:hover { color: var(--red-hot); }
  .location-map {
    position: relative;
    aspect-ratio: 1 / 1;
    background: var(--gray-900);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 2px;
    overflow: hidden;
  }
  .location-map img {
    width: 100%; height: 100%;
    object-fit: cover;
    opacity: 0.5;
    filter: grayscale(80%);
  }
  .location-map::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(7,9,15,0.4), rgba(209, 18, 51, 0.15));
  }
  .location-pin {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    text-align: center;
  }
  .location-pin-dot {
    width: 18px; height: 18px;
    background: var(--red-hot);
    border-radius: 50%;
    margin: 0 auto 0.75rem;
    position: relative;
    box-shadow: 0 0 0 0 rgba(209, 18, 51, 0.6);
    animation: pinPulse 2s infinite;
  }
  @keyframes pinPulse {
    0% { box-shadow: 0 0 0 0 rgba(209, 18, 51, 0.6); }
    70% { box-shadow: 0 0 0 30px rgba(209, 18, 51, 0); }
    100% { box-shadow: 0 0 0 0 rgba(209, 18, 51, 0); }
  }
  .location-pin-label {
    font-size: 0.7rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--white);
    font-weight: 600;
    background: rgba(7,9,15,0.9);
    padding: 0.5rem 1rem;
    border: 1px solid rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
  }

  /* =============================
     FAQ
     ============================= */
  .faq {
    background: var(--black);
    border-top: 1px solid rgba(255,255,255,0.06);
    border-bottom: 1px solid rgba(255,255,255,0.06);
  }
  .faq-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 5rem;
    max-width: var(--max);
    margin: 0 auto;
    align-items: flex-start;
  }
  @media (max-width: 900px) { .faq-grid { grid-template-columns: 1fr; gap: 3rem; } }

  .faq-list {
    display: flex;
    flex-direction: column;
  }
  .faq-item {
    border-bottom: 1px solid rgba(255,255,255,0.08);
    padding: 1.75rem 0;
  }
  .faq-item:first-child { padding-top: 0; }
  .faq-q {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    font-family: var(--font-display);
    color: var(--white);
    font-weight: 500;
    font-size: 1.1rem;
    letter-spacing: -0.01em;
    transition: color 0.3s;
  }
  .faq-item:hover .faq-q { color: var(--red-hot); }
  .faq-toggle {
    width: 32px; height: 32px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.2);
    flex-shrink: 0;
    position: relative;
    transition: all 0.4s var(--ease-expo);
  }
  .faq-toggle::before, .faq-toggle::after {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    background: var(--white);
    transition: all 0.3s var(--ease-expo);
  }
  .faq-toggle::before { width: 11px; height: 1px; transform: translate(-50%, -50%); }
  .faq-toggle::after { width: 1px; height: 11px; transform: translate(-50%, -50%); }
  .faq-item.open .faq-toggle {
    background: var(--red-hot);
    border-color: var(--red-hot);
    transform: rotate(135deg);
  }
  .faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s var(--ease-expo), padding 0.5s var(--ease-expo);
    color: rgba(255,255,255,0.6);
    line-height: 1.7;
    font-weight: 300;
    font-size: 0.95rem;
  }
  .faq-item.open .faq-a {
    max-height: 240px;
    padding-top: 1.25rem;
  }

  /* =============================
     RESERVATION FORM (Dark)
     ============================= */
  .reserve {
    background: var(--void);
    border-top: 1px solid rgba(255,255,255,0.06);
    position: relative;
    overflow: hidden;
  }
  .reserve::before {
    content: '';
    position: absolute;
    top: 10%; right: -200px;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(209, 18, 51, 0.1) 0%, transparent 60%);
    pointer-events: none;
  }
  .reserve::after {
    content: '';
    position: absolute;
    bottom: 5%; left: -200px;
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(40, 110, 224, 0.08) 0%, transparent 60%);
    pointer-events: none;
  }
  .reserve .container { position: relative; z-index: 1; }
  .reserve-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: clamp(2.5rem, 5vw, 5rem);
    align-items: flex-start;
  }
  .reserve-info p {
    color: rgba(255,255,255,0.65);
    line-height: 1.8;
    font-size: 1.05rem;
    margin-top: 1.5rem;
    margin-bottom: 2rem;
    font-weight: 300;
  }
  .reserve-info p a {
    color: var(--red-hot);
    font-weight: 500;
    border-bottom: 1px solid currentColor;
  }
  .reserve-features {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.08);
  }
  .reserve-feature {
    display: flex;
    gap: 1rem;
    padding: 1.1rem 0;
    align-items: flex-start;
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }
  .reserve-feature:last-child { border-bottom: none; }
  .reserve-feature-icon {
    flex-shrink: 0;
    width: 40px; height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.04);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--red-hot);
    border: 1px solid rgba(255,255,255,0.08);
  }
  .reserve-feature-icon svg { width: 16px; height: 16px; }
  .reserve-feature-text strong {
    display: block;
    font-family: var(--font-display);
    color: var(--white);
    font-weight: 500;
    margin-bottom: 0.2rem;
    font-size: 0.95rem;
    letter-spacing: -0.01em;
  }
  .reserve-feature-text span {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.55);
    font-weight: 300;
  }

  .reserve-form {
    background: linear-gradient(180deg, rgba(255,255,255,0.04) 0%, rgba(255,255,255,0.01) 100%);
    padding: clamp(2rem, 3vw, 3rem);
    border-radius: 2px;
    border: 1px solid rgba(255,255,255,0.08);
    position: relative;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
  }
  .reserve-form::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 2px;
    background: linear-gradient(90deg, var(--red), var(--red-hot));
  }
  .form-head {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }
  .form-head h3 {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: -0.025em;
    line-height: 1.1;
  }
  .form-head span {
    font-size: 0.65rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.5);
    font-weight: 500;
  }
  .form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
    margin-bottom: 1.75rem;
  }
  .form-field { display: flex; flex-direction: column; }
  .form-field-full { grid-column: 1 / -1; }
  .form-field label {
    font-size: 0.65rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.6);
    margin-bottom: 0.6rem;
    font-weight: 600;
  }
  .form-field label .req { color: var(--red-hot); }
  .form-field input,
  .form-field select,
  .form-field textarea {
    width: 100%;
    padding: 0.95rem 1.1rem;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 2px;
    font-family: inherit;
    font-size: 0.95rem;
    color: var(--white);
    transition: border-color 0.3s, background 0.3s, box-shadow 0.3s;
    font-weight: 400;
  }
  .form-field input::placeholder,
  .form-field textarea::placeholder { color: rgba(255,255,255,0.35); }
  .form-field input:focus,
  .form-field select:focus,
  .form-field textarea:focus {
    outline: none;
    border-color: var(--red-hot);
    background: rgba(255,255,255,0.06);
    box-shadow: 0 0 0 3px rgba(209, 18, 51, 0.12);
  }
  .form-field textarea { resize: vertical; min-height: 110px; font-family: inherit; }
  .form-field select {
    cursor: pointer; appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='2' opacity='0.6'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
    background-repeat: no-repeat; background-position: right 1rem center; background-size: 16px; padding-right: 2.5rem;
  }
  .form-field input[type="date"] { color-scheme: dark; }

  .form-submit {
    width: 100%;
    padding: 1.25rem;
    background: var(--red);
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    border-radius: 2px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.85rem;
    position: relative;
    overflow: hidden;
    border: none;
    background-image: linear-gradient(135deg, var(--red-hot), var(--red-deep));
    background-size: 100% 0%;
    background-position: 0% 100%;
    background-repeat: no-repeat;
    transition: background-size 0.4s var(--ease-expo), transform 0.4s var(--ease-expo), box-shadow 0.4s var(--ease-expo);
  }
  .form-submit span { display: inline-flex; align-items: center; gap: 0.85rem; }
  .form-submit:hover {
    background-size: 100% 100%;
    transform: translateY(-2px);
    box-shadow: 0 20px 40px -10px rgba(209, 18, 51, 0.4);
  }
  .form-submit svg { width: 14px; height: 14px; transition: transform 0.4s var(--ease-expo); }
  .form-submit:hover svg { transform: translateX(6px); }

  .form-foot {
    margin-top: 1.25rem;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.5);
    text-align: center;
    line-height: 1.6;
    font-weight: 300;
  }
  .form-foot a { color: var(--red-hot); font-weight: 500; }

  @media (max-width: 900px) {
    .reserve-grid { grid-template-columns: 1fr; gap: 3rem; }
    .form-grid { grid-template-columns: 1fr; }
    .form-field-full { grid-column: 1; }
  }
  .final {
    background: var(--void);
    padding: clamp(7rem, 14vh, 11rem) var(--gutter);
    text-align: center;
    position: relative;
    overflow: hidden;
  }
  .final::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
      radial-gradient(circle at 20% 30%, rgba(209, 18, 51, 0.18) 0%, transparent 50%),
      radial-gradient(circle at 80% 70%, rgba(40, 110, 224, 0.18) 0%, transparent 50%);
    pointer-events: none;
  }
  .final-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.85rem;
    font-size: 0.7rem;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: var(--red-hot);
    margin-bottom: 2.5rem;
    font-weight: 600;
    position: relative;
    z-index: 2;
  }
  .final-eyebrow::before, .final-eyebrow::after {
    content: '';
    width: 32px; height: 1px;
    background: var(--red-hot);
  }
  .final-title {
    font-family: var(--font-display);
    font-size: clamp(3rem, 8vw, 7.5rem);
    line-height: 0.9;
    letter-spacing: -0.045em;
    font-weight: 700;
    color: var(--white);
    max-width: 14ch;
    margin: 0 auto 2rem;
    position: relative;
    z-index: 2;
  }
  .final-title em {
    font-style: italic;
    font-weight: 200;
    color: var(--red-hot);
  }
  .final-sub {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.6);
    max-width: 52ch;
    margin: 0 auto 3rem;
    font-weight: 300;
    position: relative;
    z-index: 2;
  }
  .final-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
  }

  /* =============================
     FOOTER
     ============================= */
  .footer {
    background: var(--black);
    padding: 6rem var(--gutter) 2rem;
    border-top: 1px solid rgba(255,255,255,0.06);
  }
  .footer-top {
    max-width: var(--max);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 4rem;
    padding-bottom: 5rem;
    border-bottom: 1px solid rgba(255,255,255,0.06);
  }
  .footer-brand img {
    height: 56px;
    filter: brightness(0) invert(1);
    margin-bottom: 1.5rem;
  }
  .footer-brand p {
    color: rgba(255,255,255,0.5);
    line-height: 1.7;
    font-weight: 300;
    font-size: 0.9rem;
    max-width: 38ch;
  }
  .footer-col h5 {
    font-family: var(--font-display);
    font-size: 0.7rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.5);
    margin-bottom: 1.5rem;
    font-weight: 600;
  }
  .footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
  }
  .footer-col li a {
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
    font-weight: 300;
    transition: color 0.3s, padding-left 0.3s;
    display: inline-block;
  }
  .footer-col li a:hover { color: var(--red-hot); padding-left: 0.4rem; }
  .footer-info p {
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1.25rem;
    font-weight: 300;
  }
  .footer-info strong {
    display: block;
    color: var(--white);
    font-family: var(--font-display);
    font-weight: 500;
    margin-bottom: 0.25rem;
    font-size: 0.95rem;
    letter-spacing: -0.01em;
  }
  .footer-bottom {
    max-width: var(--max);
    margin: 2rem auto 0;
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    color: rgba(255,255,255,0.4);
    font-size: 0.75rem;
    font-weight: 300;
    letter-spacing: 0.05em;
  }
  @media (max-width: 900px) {
    .footer-top { grid-template-columns: 1fr 1fr; gap: 3rem 2rem; }
  }
  @media (max-width: 550px) {
    .footer-top { grid-template-columns: 1fr; }
  }

  /* =============================
     GLOBAL REVEAL
     ============================= */
  .r-fade { opacity: 0; transform: translateY(40px); }