/* Westlane commits to a single dark, "grand hôtel la nuit" world —
     like the transport-de-luxe brands it takes cues from, the page doesn't lighten
     with the visitor's OS setting; the whole site stays as dark as the hero. */
  :root {
    --bg: #0b0c0e;
    --bg-panel: #161719;
    --bg-panel-deep: #0a0a0c;
    --ink: #f2f1ec;
    --ink-muted: #9a9ca1;
    --silver: #b9bcc2;
    --silver-bright: #e4e6ea;
    --gold: #d3b876;
    --line: rgba(185, 188, 194, 0.16);
    --card-bg: #131418;
    --focus: #b9bcc2;
    --shadow: 0 1px 0 rgba(0,0,0,0.4);
    --horizon-deep: #000000;
    --horizon-mid: #1b1c1f;
  }

  * { box-sizing: border-box; }
  html { scroll-behavior: smooth; }
  @media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
  }

  body {
    margin: 0;
    background: var(--bg);
    color: var(--ink);
    font-family: 'Jost', -apple-system, 'Century Gothic', sans-serif;
    font-size: 17px;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
  }

  h1, h2, h3 { font-family: 'Fraunces', Georgia, 'Times New Roman', serif; font-weight: 600; text-wrap: balance; margin: 0; }

  a { color: inherit; }
  a:focus-visible, button:focus-visible { outline: 2px solid var(--focus); outline-offset: 3px; }

  .wrap { max-width: 1120px; margin: 0 auto; padding: 0 32px; }
  @media (max-width: 640px) { .wrap { padding: 0 22px; } }

  .eyebrow {
    font-family: 'Jost', sans-serif;
    font-size: 12.5px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--silver);
    font-weight: 600;
  }

  [data-route][hidden] { display: none; }

  /* ---------- Header ---------- */
  header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 50;
    background: color-mix(in srgb, var(--bg) 88%, transparent);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid transparent;
    transition: border-color .3s ease, background .3s ease;
  }
  header.scrolled { border-bottom-color: var(--line); }
  .nav-row {
    display: flex; align-items: center; justify-content: space-between;
    padding: 20px 0;
  }
  .wordmark {
    font-family: 'Fraunces', serif;
    font-weight: 600;
    font-size: 19px;
    letter-spacing: 0.01em;
    text-decoration: none;
    white-space: nowrap;
  }
  .wordmark em { font-style: italic; color: var(--gold); }
  nav.primary { display: flex; align-items: center; gap: 24px; }
  nav.primary a.navlink {
    text-decoration: none; font-size: 14px; color: var(--ink-muted);
    letter-spacing: 0.02em; transition: color .2s ease; position: relative;
    padding-bottom: 4px;
  }
  nav.primary a.navlink:hover { color: var(--ink); }
  nav.primary a.navlink.active { color: var(--ink); }
  nav.primary a.navlink.active::after {
    content: ''; position: absolute; left: 0; right: 0; bottom: -2px; height: 1px; background: var(--gold);
  }
  .cta-btn {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--ink); color: var(--bg);
    padding: 11px 20px; text-decoration: none;
    font-size: 14px; letter-spacing: 0.03em; font-weight: 500;
    border: 1px solid var(--ink); white-space: nowrap; cursor: pointer;
    transition: background .2s ease, color .2s ease, opacity .2s ease;
    font-family: 'Jost', sans-serif;
  }
  .cta-btn:hover { background: transparent; color: var(--ink); }
  .cta-btn.ghost { background: transparent; color: var(--ink); border-color: var(--line); }
  .cta-btn.ghost:hover { border-color: var(--ink); }
  .burger { display: none; background: none; border: 0; cursor: pointer; padding: 6px; }
  .burger span { display: block; width: 22px; height: 1.5px; background: var(--ink); margin: 5px 0; transition: transform .25s ease, opacity .25s ease; }

  @media (max-width: 1040px) {
    nav.primary { position: fixed; top: 68px; left: 0; right: 0; bottom: 0;
      background: var(--bg); flex-direction: column; align-items: flex-start;
      padding: 28px 22px; gap: 22px; transform: translateX(100%);
      transition: transform .3s ease; overflow-y: auto; }
    nav.primary.open { transform: translateX(0); }
    nav.primary a.navlink { font-size: 20px; color: var(--ink); }
    nav.primary a.navlink.active::after { display: none; }
    .burger { display: block; }
    .cta-btn.header-only { display: none; }
  }

  /* ---------- Horizon device (hero, subhero, closing CTA band) ---------- */
  .horizon {
    position: relative;
    background: linear-gradient(180deg, var(--horizon-deep) 0%, var(--horizon-mid) 62%, var(--horizon-deep) 100%);
    overflow: hidden;
    color: #eeeeea;
  }
  .horizon::before {
    content: "";
    position: absolute; left: 50%; top: 38%;
    width: 620px; height: 620px;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, color-mix(in srgb, var(--silver-bright) 55%, transparent) 0%, transparent 68%);
    filter: blur(2px);
    pointer-events: none;
  }
  .horizon::after {
    content: "";
    position: absolute; left: 0; right: 0; top: 38%;
    height: 1px;
    background: linear-gradient(90deg, transparent, color-mix(in srgb, var(--silver-bright) 70%, transparent) 20%, color-mix(in srgb, var(--silver-bright) 70%, transparent) 80%, transparent);
  }
  .horizon .wrap { position: relative; z-index: 2; }
  .horizon .eyebrow { color: var(--silver-bright); margin-bottom: 18px; display: block; }
  .horizon h1 em { font-style: italic; color: var(--gold); }
  .horizon p.lede { color: #aeb1b5; }
  .horizon .actions { display: flex; gap: 16px; flex-wrap: wrap; }
  .horizon .cta-btn { background: #f5f4f0; border-color: #f5f4f0; color: #0a0a0b; }
  .horizon .cta-btn:hover { background: transparent; color: #f5f4f0; }
  .horizon .cta-btn.ghost { color: #eeeeea; border-color: rgba(238,238,234,0.35); }
  .horizon .cta-btn.ghost:hover { border-color: #eeeeea; }

  /* ---------- Hero ---------- */
  .hero { padding: 180px 0 130px; min-height: 92vh; display: flex; align-items: center; }
  .hero h1 { font-size: clamp(40px, 6.4vw, 78px); line-height: 1.04; max-width: 15ch; color: #f5f4f0; }
  .hero p.lede { margin-top: 26px; max-width: 46ch; font-size: 19px; }
  .hero .actions { margin-top: 42px; }

  /* ---------- Subhero (service & city pages) ---------- */
  .subhero { padding: 150px 0 88px; }
  .subhero h1 { font-size: clamp(32px, 4.8vw, 52px); line-height: 1.1; max-width: 20ch; color: #f5f4f0; }
  .subhero p.lede { margin-top: 20px; max-width: 54ch; font-size: 17.5px; }
  .subhero .actions { margin-top: 32px; }

  /* ---------- Sections generic ---------- */
  section.block { padding: 108px 0; }
  @media (max-width: 640px) { section.block { padding: 74px 0; } }
  section.block.tight { padding: 88px 0; }
  .block.alt { background: var(--bg-panel); }

  .section-head { max-width: 68ch; margin-bottom: 48px; }
  .section-head h2 { font-size: clamp(28px, 3.6vw, 42px); margin-top: 14px; }
  .section-head p { color: var(--ink-muted); margin-top: 16px; font-size: 17px; max-width: 62ch; }
  .section-head p.lead { color: var(--ink); font-size: 18px; max-width: 68ch; }

  .reveal { opacity: 0; transform: translateY(18px); transition: opacity .7s ease, transform .7s ease; }
  .reveal.is-visible { opacity: 1; transform: translateY(0); }

  /* ---------- Manifesto ---------- */
  .manifesto blockquote {
    margin: 0; font-family: 'Fraunces', serif; font-style: italic; font-weight: 500;
    font-size: clamp(24px, 3vw, 34px); line-height: 1.45; max-width: 30ch;
    border-left: 2px solid var(--gold); padding-left: 32px;
  }
  .manifesto .colophon { margin-top: 28px; color: var(--ink-muted); font-size: 15px; max-width: 44ch; padding-left: 34px; }

  /* ---------- Card grid (services, features, city cards) ---------- */
  .services-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); }
  @media (max-width: 720px) { .services-grid { grid-template-columns: 1fr; } }
  .service-card {
    background: var(--card-bg); padding: 40px 36px; display: flex; flex-direction: column; gap: 16px;
    text-decoration: none; color: inherit; transition: background .2s ease;
  }
  a.service-card:hover { background: var(--bg-panel); }
  .service-card .icon { width: 40px; height: 40px; color: var(--silver); }
  .service-card h3 { font-size: 22px; }
  .service-card p { color: var(--ink-muted); font-size: 15.5px; margin: 0; }
  .service-card .more { margin-top: 4px; font-size: 13px; letter-spacing: 0.03em; color: var(--gold); }

  /* ---------- Fleet ---------- */
  .fleet-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
  @media (max-width: 880px) { .fleet-grid { grid-template-columns: 1fr; } }
  .fleet-card { border: 1px solid var(--line); background: var(--card-bg); }
  .fleet-photo {
    aspect-ratio: 4/3; position: relative;
    background: repeating-linear-gradient(135deg, var(--bg-panel-deep), var(--bg-panel-deep) 10px, var(--bg-panel) 10px, var(--bg-panel) 20px);
    display: flex; align-items: center; justify-content: center; flex-direction: column; gap: 10px;
    border-bottom: 1px solid var(--line);
  }
  .corner-tl, .corner-br { position: absolute; width: 18px; height: 18px; border-color: var(--silver); }
  .corner-tl { top: 12px; left: 12px; border-top: 1.5px solid var(--silver); border-left: 1.5px solid var(--silver); }
  .corner-br { bottom: 12px; right: 12px; border-bottom: 1.5px solid var(--silver); border-right: 1.5px solid var(--silver); }
  .fleet-photo svg { width: 74px; height: 74px; color: var(--ink-muted); opacity: .55; }
  .fleet-photo .caption { font-size: 12px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--ink-muted); text-align: center; padding: 0 20px; }
  .fleet-body { padding: 26px 26px 30px; }
  .fleet-body .eyebrow { display: block; margin-bottom: 8px; }
  .fleet-body h3 { font-size: 21px; }
  .fleet-body p { color: var(--ink-muted); font-size: 15px; margin: 10px 0 0; }
  .fleet-specs { list-style: none; margin: 16px 0 0; padding: 14px 0 0; border-top: 1px solid var(--line); display: flex; flex-direction: column; gap: 6px; }
  .fleet-specs li { font-size: 13.5px; color: var(--ink-muted); display: flex; justify-content: space-between; gap: 10px; }
  .fleet-specs li b { color: var(--ink); font-weight: 500; }

  /* ---------- Zones / villes ---------- */
  .zones-list { display: flex; flex-direction: column; }
  a.zone-row {
    display: flex; align-items: baseline; gap: 14px;
    padding: 15px 0; border-bottom: 1px solid var(--line);
    font-family: 'Fraunces', serif; font-size: 19px;
    text-decoration: none; color: inherit;
  }
  .zone-row .dots { flex: 1; height: 10px; background-image: radial-gradient(circle, var(--ink-muted) 1px, transparent 1.3px); background-size: 7px 100%; background-repeat: repeat-x; background-position: bottom 3px left; opacity: .5; }
  .zone-row .tag { font-family: 'Jost', sans-serif; font-size: 13px; color: var(--silver); letter-spacing: 0.03em; white-space: nowrap; transition: color .2s ease; }
  a.zone-row:hover .tag { color: var(--gold); }
  .zones-note { margin-top: 26px; color: var(--ink-muted); font-size: 15px; }

  /* ---------- Why / feature list ---------- */
  .why-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 60px; align-items: start; }
  @media (max-width: 880px) { .why-grid { grid-template-columns: 1fr; gap: 40px; } }
  .why-list { display: flex; flex-direction: column; }
  .why-item { padding: 22px 0; border-top: 1px solid var(--line); }
  .why-item:last-child { border-bottom: 1px solid var(--line); }
  .why-item h4 { font-family: 'Fraunces', serif; font-weight: 600; font-size: 18.5px; margin: 0 0 6px; }
  .why-item p { margin: 0; color: var(--ink-muted); font-size: 15px; }

  /* ---------- FAQ ---------- */
  .faq-list { display: flex; flex-direction: column; border-top: 1px solid var(--line); max-width: 78ch; }
  .faq-item { border-bottom: 1px solid var(--line); padding: 22px 0; }
  .faq-item summary {
    cursor: pointer; font-family: 'Fraunces', serif; font-size: 18.5px; font-weight: 600;
    list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 20px;
  }
  .faq-item summary::-webkit-details-marker { display: none; }
  .faq-item summary::after {
    content: '+'; font-family: 'Jost', sans-serif; font-size: 24px; font-weight: 400; color: var(--silver);
    flex-shrink: 0; transition: transform .2s ease; line-height: 1;
  }
  .faq-item[open] summary::after { transform: rotate(45deg); }
  .faq-item p { margin: 14px 0 0; color: var(--ink-muted); max-width: 70ch; }

  /* ---------- Forms ---------- */
  .form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 4px; }
  .form-grid .full { grid-column: 1 / -1; }
  @media (max-width: 720px) { .form-grid { grid-template-columns: 1fr; } }
  .field { display: flex; flex-direction: column; gap: 8px; }
  .field label { font-size: 12.5px; letter-spacing: 0.04em; color: var(--ink-muted); text-transform: uppercase; }
  .field input, .field select, .field textarea {
    background: var(--card-bg); border: 1px solid var(--line); color: var(--ink);
    font-family: 'Jost', sans-serif; font-size: 15.5px; padding: 12px 14px; border-radius: 0;
  }
  .field select { appearance: none; background-image: linear-gradient(45deg, transparent 50%, var(--ink-muted) 50%), linear-gradient(135deg, var(--ink-muted) 50%, transparent 50%); background-position: calc(100% - 18px) center, calc(100% - 13px) center; background-size: 5px 5px, 5px 5px; background-repeat: no-repeat; }
  .field textarea { resize: vertical; min-height: 110px; font-family: 'Jost', sans-serif; }
  .field input:focus, .field select:focus, .field textarea:focus { outline: 2px solid var(--focus); outline-offset: 2px; border-color: transparent; }
  form .submit-row { margin-top: 26px; display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }
  .form-note { font-size: 13.5px; color: var(--ink-muted); }

  /* ---------- Contact ---------- */
  .contact-inner { display: grid; grid-template-columns: 1fr 1.3fr; gap: 60px; align-items: start; }
  @media (max-width: 880px) { .contact-inner { grid-template-columns: 1fr; } }
  .contact-card { border: 1px solid var(--line); padding: 32px; display: flex; flex-direction: column; gap: 18px; background: var(--card-bg); }
  .contact-line { display: flex; flex-direction: column; gap: 4px; }
  .contact-line .eyebrow { color: var(--silver); }
  .contact-line a, .contact-line span.val { font-family: 'Fraunces', serif; font-size: 21px; text-decoration: none; color: var(--ink); }
  .contact-line a:hover { color: var(--gold); }

  /* ---------- Footer ---------- */
  footer { padding: 46px 0; border-top: 1px solid var(--line); }
  .footer-row { display: flex; justify-content: space-between; align-items: flex-start; gap: 20px; flex-wrap: wrap; }
  .footer-row .wordmark { font-size: 16px; }
  .footer-cols { display: flex; gap: 48px; flex-wrap: wrap; }
  .footer-col { display: flex; flex-direction: column; gap: 10px; }
  .footer-col .footer-head { font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-muted); margin-bottom: 2px; }
  .footer-col a { font-size: 13.5px; color: var(--ink-muted); text-decoration: none; }
  .footer-col a:hover { color: var(--ink); }
  .footer-note { margin-top: 30px; font-size: 12.5px; color: var(--ink-muted); }
