:root {
      --night: #07110e;
      --forest: #0c1f18;
      --panel: #132820;
      --mist: #dce8e1;
      --fog: #a8bdb2;
      --champagne: #c9b896;
      --ember: #e8f7ee;
      --electric: #2fd48a;
      --electric-deep: #1aa866;
      --line: rgba(201, 184, 150, 0.28);
      --ff-display: "Fraunces", Georgia, serif;
      --ff-body: "Figtree", system-ui, sans-serif;
      --ease: cubic-bezier(0.22, 1, 0.36, 1);
    }

    * { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }
    body {
      font-family: var(--ff-body);
      background: var(--night);
      color: var(--mist);
      line-height: 1.55;
      -webkit-font-smoothing: antialiased;
    }
    img { display: block; max-width: 100%; height: auto; }
    a { color: inherit; text-decoration: none; }
    button, .btn {
      font: inherit;
      border: 0;
      cursor: pointer;
    }

    /* Preview banner */
    .preview-banner {
      position: sticky;
      top: 0;
      z-index: 100;
      background: #1a1408;
      color: #f0e2c0;
      font-size: 0.78rem;
      letter-spacing: 0.04em;
      padding: 0.55rem 1rem;
      text-align: center;
      border-bottom: 1px solid rgba(201, 184, 150, 0.35);
    }
    .preview-banner strong { color: #fff; font-weight: 600; }

    /* Nav */
    .top {
      position: absolute;
      inset: 0 0 auto 0;
      z-index: 20;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 1.25rem clamp(1.25rem, 4vw, 3rem);
      mix-blend-mode: normal;
    }
    .brand {
      font-family: var(--ff-display);
      font-size: clamp(1.35rem, 2.4vw, 1.75rem);
      font-weight: 600;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: #fff;
    }
    .brand span {
      display: block;
      font-family: var(--ff-body);
      font-size: 0.62rem;
      letter-spacing: 0.28em;
      font-weight: 500;
      color: var(--champagne);
      margin-top: 0.2rem;
    }
    .nav-links {
      display: none;
      gap: 1.75rem;
      font-size: 0.9rem;
      font-weight: 500;
      color: rgba(255,255,255,0.82);
    }
    .nav-links a:hover { color: #fff; }
    .nav-cta {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      padding: 0.7rem 1.15rem;
      background: var(--electric);
      color: var(--night);
      font-weight: 700;
      font-size: 0.85rem;
      letter-spacing: 0.02em;
      transition: transform 0.35s var(--ease), background 0.25s;
    }
    .nav-cta:hover {
      background: #5aefb0;
      transform: translateY(-1px);
    }
    @media (min-width: 860px) {
      .nav-links { display: flex; }
    }

    /* Hero — one composition */
    .hero {
      position: relative;
      min-height: 100svh;
      display: grid;
      align-items: end;
      overflow: hidden;
      color: #fff;
    }
    .hero-media {
      position: absolute;
      inset: 0;
      z-index: 0;
    }
    .hero-media img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transform: scale(1.04);
      animation: drift 18s var(--ease) infinite alternate;
    }
    @keyframes drift {
      from { transform: scale(1.04) translate3d(0, 0, 0); }
      to { transform: scale(1.08) translate3d(-1.5%, -1%, 0); }
    }
    .hero-scrim {
      position: absolute;
      inset: 0;
      z-index: 1;
      background:
        linear-gradient(180deg, rgba(7,17,14,0.35) 0%, rgba(7,17,14,0.15) 35%, rgba(7,17,14,0.82) 78%, rgba(7,17,14,0.96) 100%),
        linear-gradient(90deg, rgba(7,17,14,0.7) 0%, rgba(7,17,14,0.15) 55%, transparent 100%);
    }
    .hero-copy {
      position: relative;
      z-index: 2;
      padding: clamp(5.5rem, 14vh, 8rem) clamp(1.25rem, 4vw, 3rem) clamp(2.5rem, 6vh, 4rem);
      max-width: 42rem;
    }
    .hero h1 {
      font-family: var(--ff-display);
      font-weight: 600;
      font-size: clamp(2.6rem, 7.2vw, 4.6rem);
      line-height: 1.05;
      letter-spacing: -0.02em;
      margin: 0.35rem 0 1rem;
      opacity: 0;
      animation: rise 0.9s var(--ease) 0.15s forwards;
    }
    .hero p {
      font-size: clamp(1rem, 2vw, 1.15rem);
      color: rgba(236, 244, 239, 0.88);
      max-width: 28rem;
      margin-bottom: 1.75rem;
      opacity: 0;
      animation: rise 0.9s var(--ease) 0.3s forwards;
    }
    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 0.75rem;
      opacity: 0;
      animation: rise 0.9s var(--ease) 0.45s forwards;
    }
    @keyframes rise {
      from { opacity: 0; transform: translateY(18px); }
      to { opacity: 1; transform: none; }
    }
    .btn-primary {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 0.95rem 1.45rem;
      background: var(--electric);
      color: var(--night);
      font-weight: 700;
      transition: background 0.25s, transform 0.35s var(--ease);
    }
    .btn-primary:hover {
      background: #5aefb0;
      transform: translateY(-2px);
    }
    .btn-ghost {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 0.95rem 1.45rem;
      border: 1px solid rgba(255,255,255,0.45);
      color: #fff;
      font-weight: 600;
      backdrop-filter: blur(6px);
      transition: border-color 0.25s, background 0.25s;
    }
    .btn-ghost:hover {
      border-color: #fff;
      background: rgba(255,255,255,0.08);
    }

    /* Sections */
    section {
      padding: clamp(3.5rem, 8vw, 6rem) clamp(1.25rem, 4vw, 3rem);
    }
    .wrap { max-width: 1120px; margin: 0 auto; }
    .eyebrow {
      font-size: 0.72rem;
      font-weight: 700;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: var(--champagne);
      margin-bottom: 0.85rem;
    }
    .section-title {
      font-family: var(--ff-display);
      font-size: clamp(2rem, 4.5vw, 3rem);
      font-weight: 600;
      line-height: 1.12;
      color: #fff;
      margin-bottom: 0.85rem;
      max-width: 18ch;
    }
    .section-lead {
      color: var(--fog);
      max-width: 36rem;
      font-size: 1.05rem;
    }

    /* Promise — one job, no cards */
    .promise {
      background: var(--forest);
      border-top: 1px solid var(--line);
      border-bottom: 1px solid var(--line);
    }
    .promise-grid {
      display: grid;
      gap: 2rem;
    }
    @media (min-width: 800px) {
      .promise-grid {
        grid-template-columns: 1.1fr 1fr;
        align-items: end;
        gap: 4rem;
      }
    }
    .promise-list {
      list-style: none;
      display: grid;
      gap: 1.15rem;
    }
    .promise-list li {
      display: grid;
      grid-template-columns: auto 1fr;
      gap: 0.9rem;
      align-items: start;
      padding-top: 1.15rem;
      border-top: 1px solid var(--line);
    }
    .promise-list strong {
      display: block;
      color: #fff;
      font-weight: 650;
      margin-bottom: 0.2rem;
    }
    .promise-list span { color: var(--fog); font-size: 0.95rem; }
    .num {
      font-family: var(--ff-display);
      color: var(--electric);
      font-size: 1.15rem;
      line-height: 1.2;
      min-width: 1.6rem;
    }

    /* Routes */
    .routes { background: var(--night); }
    .route-table-wrap {
      margin-top: 2.5rem;
      overflow-x: auto;
      border: 1px solid var(--line);
    }
    table.routes {
      width: 100%;
      border-collapse: collapse;
      min-width: 640px;
      font-size: 0.95rem;
    }
    table.routes th,
    table.routes td {
      padding: 1rem 1.1rem;
      text-align: left;
      border-bottom: 1px solid rgba(220, 232, 225, 0.08);
    }
    table.routes thead th {
      background: var(--panel);
      color: var(--champagne);
      font-size: 0.72rem;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      font-weight: 700;
    }
    table.routes tbody td { color: var(--mist); }
    table.routes tbody tr:hover td { background: rgba(47, 212, 138, 0.06); }
    table.routes td:first-child { color: #fff; font-weight: 600; }
    table.routes .price {
      font-variant-numeric: tabular-nums;
      color: var(--electric);
      font-weight: 700;
    }
    .route-note {
      margin-top: 1rem;
      font-size: 0.88rem;
      color: var(--fog);
    }

    /* Fleet — full bleed band */
    .fleet {
      padding: 0;
      position: relative;
      min-height: min(70vh, 640px);
      display: grid;
      align-items: end;
      overflow: hidden;
    }
    .fleet-media {
      position: absolute;
      inset: 0;
    }
    .fleet-media img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
    .fleet-scrim {
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, rgba(7,17,14,0.2), rgba(7,17,14,0.88) 70%);
    }
    .fleet-copy {
      position: relative;
      z-index: 2;
      padding: clamp(3rem, 8vw, 5rem) clamp(1.25rem, 4vw, 3rem);
      max-width: 1120px;
      margin: 0 auto;
      width: 100%;
    }
    .fleet-copy .section-title { max-width: 16ch; }
    .fleet-meta {
      display: flex;
      flex-wrap: wrap;
      gap: 1.5rem 2.5rem;
      margin-top: 1.75rem;
      color: rgba(255,255,255,0.85);
      font-size: 0.95rem;
    }
    .fleet-meta b {
      display: block;
      font-family: var(--ff-display);
      font-size: 1.35rem;
      color: #fff;
      font-weight: 600;
      margin-bottom: 0.15rem;
    }

    /* Book */
    .book {
      background:
        radial-gradient(ellipse 80% 60% at 10% 0%, rgba(47,212,138,0.12), transparent 55%),
        var(--forest);
      border-top: 1px solid var(--line);
    }
    .book-inner {
      display: grid;
      gap: 2.5rem;
    }
    @media (min-width: 860px) {
      .book-inner {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
        align-items: center;
      }
    }
    .book-actions {
      display: flex;
      flex-direction: column;
      gap: 0.75rem;
    }
    .book-actions .btn-primary,
    .book-actions .btn-ghost {
      width: 100%;
      text-align: center;
    }
    .book-actions .btn-ghost {
      border-color: rgba(201,184,150,0.45);
      color: var(--mist);
    }
    .wa {
      background: transparent;
      border: 1px solid var(--electric);
      color: var(--electric) !important;
    }
    .wa:hover {
      background: rgba(47,212,138,0.1);
      border-color: #5aefb0;
      color: #5aefb0 !important;
    }

    /* Footer */
    footer {
      padding: 2rem clamp(1.25rem, 4vw, 3rem) 5.5rem;
      border-top: 1px solid var(--line);
      color: var(--fog);
      font-size: 0.88rem;
    }
    .footer-inner {
      max-width: 1120px;
      margin: 0 auto;
      display: flex;
      flex-wrap: wrap;
      gap: 1rem;
      justify-content: space-between;
      align-items: center;
    }
    footer .brand {
      font-size: 1rem;
      letter-spacing: 0.16em;
    }
    footer .brand span { font-size: 0.55rem; }

    /* Mobile sticky bar */
    .sticky-bar {
      position: fixed;
      left: 0; right: 0; bottom: 0;
      z-index: 50;
      display: grid;
      grid-template-columns: 1fr 1fr 1.2fr;
      background: rgba(7, 17, 14, 0.94);
      backdrop-filter: blur(12px);
      border-top: 1px solid var(--line);
    }
    .sticky-bar a {
      padding: 0.95rem 0.5rem;
      text-align: center;
      font-size: 0.78rem;
      font-weight: 700;
      letter-spacing: 0.04em;
      text-transform: uppercase;
      border-right: 1px solid var(--line);
    }
    .sticky-bar a:last-child {
      border-right: 0;
      background: var(--electric);
      color: var(--night);
    }
    @media (min-width: 860px) {
      .sticky-bar { display: none; }
      footer { padding-bottom: 2.5rem; }
    }
