/* ============================================================
   PACIFIC DRIVE CO. — premium car rental, San Diego
   Aesthetic: dark editorial automotive + PCH sunset accents
   Type: Bricolage Grotesque (display) / Hanken Grotesk (body)
         / Space Mono (eyebrows, prices, spec sheet)
   ============================================================ */

:root {
  /* surfaces — onyx */
  --ink:      #14110D;
  --ink-2:    #1A1610;
  --ink-3:    #221D15;
  --ink-card: #1B1710;
  --line:     rgba(236,229,214,0.10);
  --line-2:   rgba(236,229,214,0.17);

  /* text — bone */
  --sand:     #ECE5D6;
  --sand-2:   #DBD3C2;
  --muted:    #9B907C;
  --muted-2:  #6E6557;

  /* accent — champagne, the only one */
  --sun:      #C6A86B;
  --sun-soft: #D7BB82;
  --amber:    #D9BB7B;
  --ocean:    #C6A86B;
  --ocean-dk: #8A6E3F;

  /* light section — bone */
  --paper:    #ECE5D6;
  --paper-2:  #E1D8C5;
  --ink-on-paper: #14110D;

  --r-sm: 10px;
  --r-md: 16px;
  --r-lg: 24px;
  --r-xl: 32px;

  --maxw: 1200px;
  --pad: clamp(20px, 5vw, 64px);

  --ease: cubic-bezier(.22,.61,.36,1);
  --shadow: 0 30px 60px -25px rgba(0,0,0,.7);
  --shadow-accent: 0 18px 40px -16px rgba(198,168,107,.38);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  background: var(--ink);
  color: var(--sand);
  font-family: "Hanken Grotesk", system-ui, sans-serif;
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { margin: 0; padding: 0; list-style: none; }

::selection { background: var(--sun); color: #1a0d05; }

/* grain overlay ------------------------------------------------ */
.grain {
  position: fixed; inset: 0; z-index: 9999; pointer-events: none;
  opacity: .04; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ============ TYPOGRAPHY HELPERS ============ */
.eyebrow {
  font-family: "Space Mono", monospace;
  font-size: 12px; letter-spacing: .28em; text-transform: uppercase;
  color: var(--sun); display: inline-block; margin-bottom: 18px;
}
.eyebrow::before { content: ""; display: inline-block; width: 20px; height: 1px; background: currentColor; opacity: .55; vertical-align: middle; margin: 0 11px 3px 0; }
.eyebrow--dark { color: var(--ocean-dk); }

/* ============ BUTTONS ============ */
.btn {
  --bg: transparent;
  display: inline-flex; align-items: center; justify-content: center; gap: .5em;
  font-family: "Hanken Grotesk", sans-serif;
  font-weight: 600; font-size: 16px; line-height: 1;
  padding: 16px 26px; border-radius: 100px;
  border: 1px solid transparent; cursor: pointer;
  transition: transform .35s var(--ease), background .3s var(--ease), box-shadow .35s var(--ease), color .3s var(--ease);
  white-space: nowrap;
}
.btn:active { transform: scale(.97); }
.btn--accent {
  background: var(--sun); color: #1a0d05;
  box-shadow: var(--shadow-accent);
}
.btn--accent:hover { background: var(--sun-soft); transform: translateY(-2px); box-shadow: 0 22px 46px -14px rgba(198,168,107,.5); }
.btn--ghost {
  background: rgba(255,255,255,.04); color: var(--sand);
  border-color: var(--line-2); backdrop-filter: blur(8px);
}
.btn--ghost:hover { background: rgba(255,255,255,.09); transform: translateY(-2px); border-color: var(--sand); }
.btn--lg { padding: 18px 32px; font-size: 17px; }
.btn--sm { padding: 11px 20px; font-size: 14px; }
.btn--block { width: 100%; }

/* ============ NAV ============ */
.nav {
  position: sticky; top: 0; z-index: 100;
  backdrop-filter: blur(14px);
  background: linear-gradient(to bottom, rgba(11,13,18,.82), rgba(11,13,18,.55));
  border-bottom: 1px solid transparent;
  transition: border-color .4s, background .4s;
}
.nav.is-stuck { border-bottom-color: var(--line); }
.nav__inner {
  max-width: var(--maxw); margin: 0 auto; padding: 16px var(--pad);
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.brand { display: inline-flex; align-items: center; gap: 11px; font-family: "Bricolage Grotesque"; font-weight: 700; }
.brand__mark {
  flex: none; width: 88px; height: 36px;
  background-image: url("../img/logo-mark.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
.footer .brand__mark { width: 78px; height: 32px; }
.brand__name { font-size: 19px; letter-spacing: -.01em; color: var(--sand); }
.brand__co { color: var(--muted); font-weight: 600; }

.nav__links { display: flex; gap: 30px; }
.nav__links a {
  font-size: 15px; color: var(--muted); font-weight: 500;
  position: relative; transition: color .25s;
}
.nav__links a::after {
  content: ""; position: absolute; left: 0; bottom: -6px; height: 2px; width: 0;
  background: var(--sun); transition: width .3s var(--ease);
}
.nav__links a:hover { color: var(--sand); }
.nav__links a:hover::after { width: 100%; }

.nav__actions { display: flex; align-items: center; gap: 14px; }
.nav__burger { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav__burger span { width: 24px; height: 2px; background: var(--sand); border-radius: 2px; transition: .3s var(--ease); }
.nav__burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.drawer {
  display: none; flex-direction: column; gap: 4px; padding: 8px var(--pad) 24px;
  border-top: 1px solid var(--line); background: rgba(11,13,18,.96);
}
.drawer a { padding: 14px 4px; color: var(--sand); font-size: 18px; font-weight: 500; border-bottom: 1px solid var(--line); }
.drawer .btn { margin-top: 12px; }
.drawer.open { display: flex; }

/* ============ HERO ============ */
.hero {
  position: relative; min-height: 92vh; display: flex; flex-direction: column;
  justify-content: center; padding: 80px var(--pad) 120px; overflow: hidden;
}
.hero__sky { position: absolute; inset: 0; z-index: 0; }
.hero__sun {
  position: absolute; left: 50%; bottom: -8%; transform: translateX(-50%);
  width: min(900px, 120vw); aspect-ratio: 1;
  background: radial-gradient(circle at 50% 60%,
    rgba(217,187,123,.30) 0%, rgba(198,168,107,.18) 26%,
    rgba(198,168,107,.05) 50%, transparent 66%);
  filter: blur(8px);
}
.hero__horizon {
  position: absolute; left: 0; right: 0; bottom: 0; height: 40%;
  background: linear-gradient(to top, rgba(138,110,63,.22), rgba(198,168,107,.05) 55%, transparent);
}
.hero__road {
  position: absolute; left: 0; right: 0; bottom: 0; height: 46%; z-index: 1;
  background:
    linear-gradient(to top, var(--ink) 4%, transparent 60%),
    repeating-linear-gradient(to right, transparent 0 38px, rgba(236,229,214,.045) 38px 39px);
  -webkit-mask-image: linear-gradient(to top, #000 0%, transparent 75%);
  mask-image: linear-gradient(to top, #000 0%, transparent 75%);
  transform: perspective(420px) rotateX(62deg); transform-origin: bottom;
}
.hero::after { /* top vignette so nav stays legible */
  content: ""; position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: radial-gradient(120% 80% at 50% -10%, rgba(11,13,18,.7), transparent 55%);
}
.hero__inner { position: relative; z-index: 2; max-width: var(--maxw); margin: 0 auto; width: 100%;
  display: flex; flex-direction: column; align-items: center; text-align: center; }

.hero__title {
  font-family: "Bricolage Grotesque"; font-weight: 800;
  font-size: clamp(2.9rem, 8.5vw, 6.3rem); line-height: .98; letter-spacing: -.035em;
  margin: 0 0 26px; max-width: 14ch;
}
.hero__title span { display: block; }
.hero__title em { font-style: italic; font-weight: 600; color: var(--sun); }
.hero__sub { max-width: 52ch; font-size: clamp(1.05rem, 2.2vw, 1.3rem); color: var(--muted); margin: 0 auto 38px; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 46px; justify-content: center; }

.hero__trust { display: flex; flex-wrap: wrap; gap: 12px 28px; justify-content: center; }
.hero__trust li { display: inline-flex; align-items: center; gap: 9px; font-size: 14.5px; color: var(--sand-2); }
.ic { width: 19px; height: 19px; flex: none; }
.ic path, .ic circle, .ic rect { fill: none; }
.hero__trust .ic { fill: none; }
.hero__trust .ic > path:first-child { fill: rgba(198,168,107,.16); stroke: var(--sun); stroke-width: 1.4; }
.ic--cut { stroke: var(--sun); stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.ic--stroke { stroke: var(--sun); stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }

.hero__scroll {
  position: absolute; left: 50%; bottom: 30px; transform: translateX(-50%); z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  font-family: "Space Mono", monospace; font-size: 11px; letter-spacing: .25em;
  text-transform: uppercase; color: var(--muted-2);
}
.hero__scroll-line { width: 1px; height: 46px; background: linear-gradient(var(--sun), transparent); position: relative; overflow: hidden; }
.hero__scroll-line::after { content:""; position:absolute; top:-50%; left:0; width:100%; height:50%; background: var(--sand); animation: scrolldot 2s var(--ease) infinite; }
@keyframes scrolldot { to { top: 120%; } }

/* ============ MARQUEE ============ */
.marquee { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--ink-2); overflow: hidden; padding: 16px 0; }
.marquee__track { display: flex; width: max-content; animation: marquee 26s linear infinite; }
.marquee__group { display: flex; align-items: center; flex-shrink: 0; }
.marquee__item { font-family: "Bricolage Grotesque"; font-weight: 600; font-size: 18px; color: var(--sand-2); white-space: nowrap; }
.marquee__dot { color: var(--sun); margin: 0 26px; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ============ SECTION SHELL ============ */
.section { max-width: var(--maxw); margin: 0 auto; padding: clamp(72px, 11vw, 140px) var(--pad); }
.section--light { max-width: none; background: var(--paper); color: var(--ink-on-paper); }
.section--light .section { padding-top: 0; padding-bottom: 0; }
.section__head { max-width: 720px; margin: 0 auto clamp(44px, 6vw, 72px); text-align: center; }
.section__title {
  font-family: "Bricolage Grotesque"; font-weight: 700;
  font-size: clamp(2rem, 5vw, 3.4rem); line-height: 1.04; letter-spacing: -.03em; margin: 0;
}
.section__title--dark { color: var(--ink-on-paper); }
.section__lead { color: var(--muted); font-size: 1.1rem; margin: 20px auto 0; max-width: 56ch; }

/* ============ FLEET ============ */
.fleet__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.car {
  position: relative; border-radius: var(--r-lg); overflow: hidden;
  background: var(--ink-card); border: 1px solid var(--line);
  display: flex; flex-direction: column;
  transition: transform .5s var(--ease), border-color .4s, box-shadow .5s var(--ease);
}
.car:hover { transform: translateY(-8px); border-color: var(--line-2); box-shadow: var(--shadow); }
.car__media {
  position: relative; aspect-ratio: 16/11; overflow: hidden;
  background:
    radial-gradient(120% 120% at 70% 10%, rgba(217,187,123,.16), transparent 55%),
    linear-gradient(160deg, var(--ink-3), var(--ink-2));
  display: grid; place-items: center;
}
.car__media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease); }
.car__art { width: 80%; height: auto; filter: drop-shadow(0 24px 24px rgba(0,0,0,.5)); transition: transform .6s var(--ease); }
.car:hover .car__photo { transform: scale(1.05); }
.car:hover .car__art { transform: scale(1.03); }
.car__tag {
  position: absolute; top: 16px; left: 16px; z-index: 2;
  font-family: "Space Mono", monospace; font-size: 11px; letter-spacing: .14em; text-transform: uppercase;
  padding: 7px 12px; border-radius: 100px; color: var(--sand);
  background: rgba(11,13,18,.6); border: 1px solid var(--line-2); backdrop-filter: blur(6px);
}
.car__tag--halo { color: #221809; background: var(--amber); border-color: transparent; }
.car__tag--ev { color: var(--sun); background: rgba(198,168,107,.12); border-color: rgba(198,168,107,.5); }

.car__body { padding: 24px; display: flex; flex-direction: column; flex: 1; }
.car__top { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; }
.car__name { font-family: "Bricolage Grotesque"; font-weight: 700; font-size: 1.4rem; letter-spacing: -.02em; margin: 0; }
.car__year { color: var(--muted-2); font-size: .85rem; font-family: "Space Mono", monospace; }
.car__price { text-align: right; flex: none; }
.car__price b { font-family: "Bricolage Grotesque"; font-size: 1.5rem; color: var(--sun); font-weight: 700; }
.car__price span { display: block; font-family: "Space Mono", monospace; font-size: 10.5px; color: var(--muted); letter-spacing: .08em; }
.car__blurb { color: var(--muted); font-size: .96rem; margin: 14px 0 18px; }

.car__specs { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 22px; }
.spec {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 12.5px; color: var(--sand-2); padding: 6px 11px; border-radius: 100px;
  background: rgba(255,255,255,.04); border: 1px solid var(--line);
}
.spec svg { width: 14px; height: 14px; stroke: var(--ocean); fill: none; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.car__cta { margin-top: auto; }

/* ============ BOOKING WIZARD ============ */
.wiz { max-width: 800px; margin: 0 auto; background: linear-gradient(180deg, var(--ink-2), var(--ink)); border: 1px solid var(--line-2); border-radius: var(--r-xl); box-shadow: 0 40px 90px -50px rgba(198,168,107,.4), var(--shadow); overflow: hidden; }
.wiz__bar { display: flex; padding: 20px clamp(18px,3vw,32px); border-bottom: 1px solid var(--line); background: var(--ink-2); }
.wiz__dot { display: flex; align-items: center; gap: 9px; flex: 1; font-family: "Space Mono", monospace; font-size: 12px; letter-spacing: .06em; text-transform: uppercase; color: var(--muted-2); }
.wiz__dot span { display: grid; place-items: center; width: 28px; height: 28px; flex: none; border-radius: 50%; border: 1.5px solid var(--line-2); font-size: 12px; color: var(--muted); background: var(--ink); transition: .3s var(--ease); }
.wiz__dot.is-active { color: var(--sand); }
.wiz__dot.is-active span { border-color: var(--sun); color: #221809; background: var(--sun); }
.wiz__dot.is-done span { border-color: var(--sun); color: var(--sun); background: rgba(198,168,107,.14); }

.wiz__panel { padding: clamp(22px,4vw,36px); }
.wiz__panel[hidden] { display: none; }
.wiz__title { font-family: "Bricolage Grotesque"; font-weight: 700; font-size: clamp(1.3rem,3vw,1.6rem); margin: 0 0 22px; letter-spacing: -.02em; }
.wiz__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.wiz__note { font-family: "Space Mono", monospace; font-size: 12.5px; color: var(--muted); margin: 14px 0 0; }
.wiz__block { margin-bottom: 26px; }
.wiz__block h4 { font-family: "Space Mono", monospace; font-size: 12px; letter-spacing: .12em; text-transform: uppercase; color: var(--sun); margin: 0 0 12px; }
.wiz__nav { display: flex; justify-content: space-between; align-items: center; gap: 12px; margin-top: 28px; }

.field { display: flex; flex-direction: column; gap: 7px; }
.field--full { grid-column: 1 / -1; }
.field label { font-family: "Space Mono", monospace; font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); }
.wiz input[type="text"], .wiz input[type="email"], .wiz input[type="tel"], .wiz input[type="date"], .sel select {
  font-family: "Hanken Grotesk", sans-serif; font-size: 16px; color: var(--sand); color-scheme: dark;
  background: rgba(255,255,255,.04); border: 1px solid var(--line-2); border-radius: var(--r-sm);
  padding: 13px 14px; width: 100%; transition: border-color .2s, box-shadow .2s;
}
.wiz input[type="date"] { cursor: pointer; }
.wiz input:focus, .sel select:focus { outline: none; border-color: var(--sun); box-shadow: 0 0 0 3px rgba(198,168,107,.15); }
.sel { position: relative; }
.sel::after { content: "▾"; position: absolute; right: 14px; top: 50%; transform: translateY(-50%); color: var(--muted); pointer-events: none; }
.sel select { appearance: none; -webkit-appearance: none; cursor: pointer; }

.carpick { display: grid; gap: 12px; }
.carpick__opt { position: relative; display: flex; align-items: center; gap: 14px; padding: 14px 16px; border: 1.5px solid var(--line-2); border-radius: var(--r-md); cursor: pointer; transition: border-color .2s, background .2s; }
.carpick__opt:hover { border-color: rgba(198,168,107,.5); }
.carpick__opt.is-sel { border-color: var(--sun); background: rgba(198,168,107,.08); }
.carpick__opt input { position: absolute; opacity: 0; pointer-events: none; }
.carpick__thumb { width: 76px; height: 50px; border-radius: 8px; object-fit: cover; flex: none; background: var(--ink-3); }
.carpick__name { font-family: "Bricolage Grotesque"; font-weight: 700; font-size: 1.05rem; }
.carpick__meta { font-family: "Space Mono", monospace; font-size: 11px; color: var(--muted); letter-spacing: .04em; }
.carpick__price { margin-left: auto; text-align: right; }
.carpick__price b { font-family: "Bricolage Grotesque"; font-weight: 700; font-size: 1.2rem; color: var(--sun); display: block; }
.carpick__price span { font-family: "Space Mono", monospace; font-size: 10.5px; color: var(--muted); }

.addon { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 12px 2px; border-bottom: 1px solid var(--line); }
.addon__info b { font-weight: 600; }
.addon__info span { display: block; font-family: "Space Mono", monospace; font-size: 12px; color: var(--muted); }
.stepper { display: flex; align-items: center; gap: 6px; }
.stepper button { width: 34px; height: 34px; border-radius: 8px; border: 1px solid var(--line-2); background: rgba(255,255,255,.04); color: var(--sand); font-size: 18px; line-height: 1; cursor: pointer; transition: border-color .2s; }
.stepper button:hover { border-color: var(--sun); }
.stepper output { min-width: 24px; text-align: center; font-variant-numeric: tabular-nums; }

.ins { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.ins__opt { cursor: pointer; }
.ins__opt input { position: absolute; opacity: 0; pointer-events: none; }
.ins__card { display: flex; flex-direction: column; gap: 3px; height: 100%; padding: 16px 14px; border: 1.5px solid var(--line-2); border-radius: var(--r-md); transition: border-color .2s, background .2s; }
.ins__opt:hover .ins__card { border-color: rgba(198,168,107,.5); }
.ins__opt input:checked + .ins__card { border-color: var(--sun); background: rgba(198,168,107,.1); }
.ins__card b { font-family: "Bricolage Grotesque"; font-weight: 700; font-size: 1.05rem; }
.ins__card em { font-family: "Bricolage Grotesque"; font-style: normal; font-weight: 700; font-size: 1.3rem; color: var(--sun); }
.ins__card small { font-family: "Space Mono", monospace; font-size: 10.5px; color: var(--muted); letter-spacing: .02em; }

.upload { display: flex; align-items: center; gap: 14px; padding: 18px 20px; border: 1.5px dashed var(--line-2); border-radius: var(--r-md); cursor: pointer; transition: border-color .2s, background .2s; }
.upload:hover { border-color: var(--sun); background: rgba(198,168,107,.05); }
.upload input { position: absolute; width: 1px; height: 1px; opacity: 0; }
.upload__ic { display: grid; place-items: center; width: 42px; height: 42px; border-radius: 50%; background: rgba(198,168,107,.14); flex: none; }
.upload__ic svg { width: 20px; height: 20px; fill: none; stroke: var(--sun); stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.upload__text { font-size: 14.5px; color: var(--muted); }
.upload.has-file { border-style: solid; border-color: var(--sun); background: rgba(198,168,107,.06); }
.upload.has-file .upload__text { color: var(--sand); }

.summary { background: rgba(255,255,255,.03); border: 1px solid var(--line); border-radius: var(--r-md); padding: 18px 20px; margin: 4px 0 20px; }
.summary__row { display: flex; justify-content: space-between; gap: 12px; padding: 7px 0; font-size: 14.5px; color: var(--muted); }
.summary__row b { color: var(--sand); font-weight: 500; }
.summary__row--total { border-top: 1px solid var(--line); margin-top: 8px; padding-top: 14px; align-items: baseline; }
.summary__row--total span { font-size: 15px; color: var(--sand); font-weight: 600; }
.summary__row--total b { font-family: "Bricolage Grotesque"; font-weight: 800; font-size: 1.7rem; color: var(--sun); }
.summary__dep { font-family: "Space Mono", monospace; font-size: 11.5px; color: var(--muted-2); margin: 8px 0 0; }

.agree { display: flex; align-items: flex-start; gap: 11px; cursor: pointer; font-size: 14.5px; color: var(--muted); line-height: 1.5; }
.agree input { width: 19px; height: 19px; flex: none; margin-top: 1px; accent-color: var(--sun); }
.wiz__err { color: #ff7a5e; font-size: 14px; margin: 14px 0 0; }
.wiz__secure { display: flex; align-items: center; justify-content: center; gap: 7px; margin: 16px 0 0; font-size: 12px; color: var(--muted-2); text-align: center; }
.wiz__secure .ic--stroke { stroke: var(--muted-2); }

.terms { margin: 4px 0 16px; border: 1px solid var(--line); border-radius: var(--r-sm); background: rgba(255,255,255,.02); }
.terms summary { list-style: none; cursor: pointer; padding: 13px 16px; display: flex; align-items: center; justify-content: space-between; font-family: "Space Mono", monospace; font-size: 12px; letter-spacing: .08em; text-transform: uppercase; color: var(--sun); }
.terms summary::-webkit-details-marker { display: none; }
.terms summary::after { content: "+"; font-size: 1.3rem; line-height: 1; color: var(--sun); font-weight: 400; }
.terms[open] summary::after { content: "–"; }
.terms__body { padding: 2px 16px 14px; }
.terms__body ul { margin: 0; padding-left: 18px; display: flex; flex-direction: column; gap: 8px; }
.terms__body li { font-size: 13.5px; color: var(--muted); line-height: 1.5; }
.terms[open] .terms__body { animation: faqIn .3s var(--ease); }

@media (max-width: 620px) {
  .wiz__dot { font-size: 0; gap: 0; justify-content: center; }
  .wiz__dot span { font-size: 12px; }
  .wiz__grid { grid-template-columns: 1fr; }
  .ins { grid-template-columns: 1fr; }
}

/* ============ WHY ============ */
.why__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.why__card {
  padding: 30px 26px; border-radius: var(--r-md);
  background: linear-gradient(180deg, var(--ink-2), var(--ink));
  border: 1px solid var(--line); transition: border-color .4s, transform .4s var(--ease);
}
.why__card:hover { border-color: var(--line-2); transform: translateY(-5px); }
.why__ic { font-family: "Space Mono", monospace; font-size: 13px; color: var(--sun); letter-spacing: .1em; margin-bottom: 22px; }
.why__card h3 { font-family: "Bricolage Grotesque"; font-weight: 700; font-size: 1.2rem; margin: 0 0 10px; letter-spacing: -.01em; }
.why__card p { color: var(--muted); font-size: .95rem; margin: 0; }

/* ============ HOW (light band) ============ */
.how.section--light { padding: clamp(72px, 11vw, 130px) var(--pad); }
.how .section__head { margin-bottom: clamp(40px, 6vw, 64px); }
.how__steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; max-width: var(--maxw); margin: 0 auto; counter-reset: step; }
.how__step { position: relative; padding-top: 28px; border-top: 2px solid rgba(20,17,13,.14); }
.how__step::before { content:""; position:absolute; top:-2px; left:0; width:46px; height:2px; background: var(--ocean-dk); }
.how__num {
  display: grid; place-items: center; width: 44px; height: 44px; margin-bottom: 18px;
  font-family: "Bricolage Grotesque"; font-weight: 700; font-size: 1.15rem;
  border-radius: 50%; color: var(--ocean-dk); border: 1.5px solid rgba(138,110,63,.45); background: rgba(198,168,107,.1);
}
.how__step h3 { font-family: "Bricolage Grotesque"; font-weight: 700; font-size: 1.18rem; margin: 0 0 8px; color: var(--ink-on-paper); letter-spacing: -.01em; }
.how__step p { color: #6B6353; font-size: .95rem; margin: 0; }

/* ============ FAQ ============ */
.faq__list { max-width: 800px; margin: 0 auto; }
.faq__item { border-bottom: 1px solid var(--line); }
.faq__item summary {
  list-style: none; cursor: pointer; padding: 26px 44px 26px 0; position: relative;
  font-family: "Bricolage Grotesque"; font-weight: 600; font-size: clamp(1.05rem, 2.4vw, 1.3rem); color: var(--sand);
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: "+"; position: absolute; right: 4px; top: 50%; transform: translateY(-50%);
  font-size: 1.6rem; color: var(--sun); font-weight: 400; transition: transform .35s var(--ease);
}
.faq__item[open] summary::after { transform: translateY(-50%) rotate(135deg); }
.faq__body { overflow: hidden; }
.faq__body p { color: var(--muted); margin: 0 0 26px; max-width: 64ch; }
.faq__item[open] .faq__body { animation: faqIn .4s var(--ease); }
@keyframes faqIn { from { opacity: 0; transform: translateY(-8px); } to { opacity: 1; transform: none; } }

/* ============ CTA BAND ============ */
.cta-band { position: relative; overflow: hidden; background: var(--ink-2); border-top: 1px solid var(--line); }
.cta-band::before {
  content:""; position:absolute; left:50%; top:-40%; transform:translateX(-50%);
  width: min(900px, 110vw); aspect-ratio:1;
  background: radial-gradient(circle, rgba(198,168,107,.18), transparent 60%); filter: blur(10px);
}
.cta-band__inner { position: relative; max-width: 820px; margin: 0 auto; padding: clamp(64px, 9vw, 120px) var(--pad); text-align: center; }
.cta-band h2 { font-family: "Bricolage Grotesque"; font-weight: 800; font-size: clamp(2rem, 5.5vw, 3.6rem); line-height: 1.02; letter-spacing: -.03em; margin: 0 0 16px; }
.cta-band p { color: var(--muted); font-size: 1.15rem; margin: 0 0 32px; }
.cta-band__btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ============ FOOTER ============ */
.footer { background: var(--ink); border-top: 1px solid var(--line); }
.footer__inner { max-width: var(--maxw); margin: 0 auto; padding: clamp(54px, 8vw, 84px) var(--pad) 40px;
  display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; }
.footer__brand .brand { margin-bottom: 18px; }
.footer__tag { color: var(--muted); font-size: .95rem; max-width: 38ch; margin: 0; }
.footer__col h4 { font-family: "Space Mono", monospace; font-size: 12px; letter-spacing: .14em; text-transform: uppercase; color: var(--muted-2); margin: 0 0 18px; }
.footer__col a { display: block; color: var(--sand-2); font-size: 15px; padding: 6px 0; transition: color .2s; }
.footer__col a:hover { color: var(--sun); }
.footer__muted { display: block; color: var(--muted-2); font-size: 14px; padding: 6px 0; }
.footer__cards { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 12px; }
.paycard { display: inline-flex; align-items: center; justify-content: center; height: 28px; padding: 0 8px; background: #fff; border: 1px solid rgba(0,0,0,.06); border-radius: 6px; }
.paylogo { height: 16px; width: auto; display: block; }
.footer__bar {
  max-width: var(--maxw); margin: 0 auto; padding: 22px var(--pad);
  border-top: 1px solid var(--line); display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap;
  color: var(--muted-2); font-size: 13.5px; font-family: "Space Mono", monospace;
}
.footer__legal { display: flex; gap: 22px; }
.footer__legal a { color: var(--muted); transition: color .2s; }
.footer__legal a:hover { color: var(--sand); }

/* ============ FAB ============ */
.fab {
  position: fixed; right: 22px; bottom: 22px; z-index: 90;
  width: 56px; height: 56px; border-radius: 50%; display: grid; place-items: center;
  background: var(--sun); color: #221809; box-shadow: 0 14px 30px -8px rgba(198,168,107,.55);
  transition: transform .35s var(--ease), background .3s; opacity: 0; transform: translateY(20px) scale(.8); pointer-events: none;
}
.fab.show { opacity: 1; transform: none; pointer-events: auto; }
.fab:hover { transform: translateY(-3px) scale(1.06); background: var(--sun-soft); }

/* ============ REVEAL ANIMATIONS ============ */
.reveal { opacity: 0; transform: translateY(26px); animation: rise .9s var(--ease) forwards; animation-delay: calc(var(--d, 0) * 110ms); }
.hero__title .reveal { animation-delay: calc(var(--d, 0) * 90ms); }
[data-d="0"]{--d:0}[data-d="1"]{--d:1}[data-d="2"]{--d:2}[data-d="3"]{--d:3}
[data-d="4"]{--d:4}[data-d="5"]{--d:6}[data-d="6"]{--d:7}
@keyframes rise { to { opacity: 1; transform: none; } }

.reveal-up { opacity: 0; transform: translateY(34px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal-up.in { opacity: 1; transform: none; }
.reveal-up.stagger-1 { transition-delay: .08s; }
.reveal-up.stagger-2 { transition-delay: .16s; }
.reveal-up.stagger-3 { transition-delay: .24s; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; animation-delay: 0 !important; transition-duration: .001ms !important; }
  html { scroll-behavior: auto; }
  .reveal, .reveal-up { opacity: 1 !important; transform: none !important; }
}

/* ============ RESPONSIVE ============ */
@media (max-width: 960px) {
  .nav__links { display: none; }
  .nav__burger { display: flex; }
  .fleet__grid { grid-template-columns: 1fr 1fr; }
  .why__grid { grid-template-columns: 1fr 1fr; }
  .how__steps { grid-template-columns: 1fr 1fr; gap: 32px 22px; }
  .footer__inner { grid-template-columns: 1fr 1fr; gap: 36px; }
}
@media (max-width: 620px) {
  body { font-size: 16px; }
  .nav__inner { padding: 14px var(--pad); }
  .nav__actions .btn--sm { display: none; }
  .hero { min-height: 88vh; padding-top: 48px; }
  .hero__trust { gap: 10px 18px; }
  .fleet__grid { grid-template-columns: 1fr; }
  .why__grid { grid-template-columns: 1fr; }
  .how__steps { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: 1 / -1; }
  .hero__scroll { display: none; }
}
