/* ============================================================
   DRIFTER'S ESCAPE: design system
   Stage-lit, concert-poster, premium pro-audio rental.
   v1: Chen, 2026-06-14
   ============================================================ */

:root {
  /* ---- palette ---- */
  --ink:        #0a0a0a;   /* black stage */
  --ink-2:      #101010;
  --surface:    #161616;
  --surface-2:  #1d1d1d;
  --line:       #2a2a2a;
  --line-2:     #3a3a3a;

  --amber:      #ffffff;   /* accent = pure white (monochrome theme) */
  --amber-deep: #c8c8c8;
  --amber-soft: rgba(255, 255, 255, 0.10);
  --ember:      #ffffff;

  --paper:      #f4f4f3;   /* near-white ink */
  --muted:      #9a9a98;
  --muted-2:    #6a6a68;

  --good:       #e8e8e6;
  --warn:       #b8b8b6;
  --bad:        #f4f4f4;

  /* ---- type ---- */
  --display: 'Anton', 'Oswald', Impact, sans-serif;
  --script: 'Caveat', 'Segoe Script', cursive;
  --body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  /* ---- shape ---- */
  --r-sm: 8px;
  --r:    14px;
  --r-lg: 22px;
  --shadow: 0 18px 50px -18px rgba(0,0,0,0.7);
  --shadow-amber: 0 16px 48px -24px rgba(255, 255, 255,0.18);
  --container: 1180px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---- reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--body);
  background: var(--ink);
  color: var(--paper);
  line-height: 1.6;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
input, select, textarea { font-family: inherit; font-size: inherit; color: inherit; }
::selection { background: var(--amber); color: var(--ink); }

/* film-grain + vignette atmosphere */
body::before {
  content: "";
  position: fixed; inset: 0;
  pointer-events: none; z-index: 1;
  background:
    radial-gradient(120% 80% at 50% -10%, rgba(255, 255, 255,0.06), transparent 60%),
    radial-gradient(100% 100% at 50% 120%, rgba(0,0,0,0.5), transparent 50%);
  mix-blend-mode: screen;
}
body::after {
  content: "";
  position: fixed; inset: 0;
  pointer-events: none; z-index: 1; opacity: 0.035;
  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.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ---- layout ---- */
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 24px; position: relative; z-index: 2; }
.section { padding: 76px 0; position: relative; }
.section--tight { padding: 64px 0; }
.eyebrow {
  font-family: var(--display);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 13px;
  color: var(--amber);
  display: inline-flex; align-items: center; gap: 10px;
}
.eyebrow::before { content: ""; width: 26px; height: 2px; background: var(--amber); display: inline-block; }
.section-head { max-width: 640px; margin-bottom: 38px; }
.section-head h1, .section-head h2 {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(27px, 3.6vw, 44px);
  line-height: 1.1;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  margin: 12px 0 14px;
}
.section-head p { color: var(--muted); font-size: 16.5px; }
.center { text-align: center; }
.center .section-head { margin-left: auto; margin-right: auto; }
.center .eyebrow { justify-content: center; }

/* ---- nav ---- */
.nav {
  position: sticky; top: 0; z-index: 50;
  backdrop-filter: blur(14px);
  background: rgba(11,11,13,0.6);
  border-bottom: 1px solid transparent;
  transition: background .3s var(--ease), border-color .3s var(--ease);
}
.nav.scrolled { background: rgba(11,11,13,0.92); border-bottom-color: var(--line); }
.nav__inner { display: flex; align-items: center; justify-content: space-between; height: 76px; }
.brand { display: flex; align-items: center; gap: 11px; color: var(--paper); }
.brand__mark { width: 34px; height: 38px; flex: none; }
.brand__name { font-family: var(--script); font-size: 30px; font-weight: 700; letter-spacing: 0.005em; text-transform: none; line-height: 0.8; white-space: nowrap; }
.brand__name small { display: block; font-family: var(--body); font-size: 9px; letter-spacing: 0.34em; color: var(--muted); margin-top: 3px; font-weight: 600; text-transform: uppercase; }
.nav__links { display: flex; align-items: center; gap: 32px; }
.nav__links a { font-size: 14.5px; font-weight: 500; color: var(--muted); transition: color .2s; }
.nav__links a:hover { color: var(--paper); }
.nav__toggle { display: none; }

/* ---- buttons ---- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  padding: 14px 26px; border-radius: 100px;
  font-weight: 600; font-size: 15px; letter-spacing: 0.01em;
  transition: transform .2s var(--ease), box-shadow .25s var(--ease), background .2s;
  white-space: nowrap;
}
.btn svg { width: 17px; height: 17px; }
.btn--primary { background: var(--amber); color: var(--ink); box-shadow: var(--shadow-amber); }
.btn--primary:hover { transform: translateY(-2px); background: #e9e9e9; }
.btn--ghost { background: rgba(255,255,255,0.05); color: var(--paper); border: 1px solid var(--line-2); }
.btn--ghost:hover { transform: translateY(-2px); border-color: var(--amber); color: var(--amber); }
.btn--block { width: 100%; }
.btn--lg { padding: 17px 34px; font-size: 16px; }

/* ---- hero ---- */
.hero { position: relative; padding: 58px 0 64px; overflow: hidden; }
.hero__spot {
  position: absolute; top: -14%; left: 50%; transform: translateX(-50%);
  width: 760px; height: 480px; pointer-events: none;
  background: radial-gradient(50% 50% at 50% 50%, rgba(255, 255, 255,0.30), rgba(255,255,255,0.10) 45%, transparent 72%);
  filter: blur(8px);
}
.hero__grid {
  position: absolute; inset: 0; pointer-events: none; opacity: 0.5;
  background-image: linear-gradient(var(--line) 1px, transparent 1px), linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(70% 60% at 50% 30%, #000, transparent 75%);
}
.hero__inner { position: relative; z-index: 2; text-align: center; max-width: 940px; margin: 0 auto; }
.hero__stamp { display: flex; justify-content: center; margin-bottom: 22px; color: var(--paper); }
.hero__stamp svg { width: 56px; height: 62px; filter: drop-shadow(0 0 26px rgba(255,255,255,0.3)); }
.hero__tag {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 8px 16px; border-radius: 100px;
  border: 1px solid var(--line-2); background: rgba(255,255,255,0.03);
  font-size: 13px; color: var(--muted); margin-bottom: 30px;
}
.hero__tag b { color: var(--paper); font-weight: 600; }
.hero__tag .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--good); box-shadow: 0 0 0 3px rgba(255,255,255,0.2); }
.hero h1 {
  font-family: var(--display); font-weight: 400;
  font-size: clamp(40px, 6vw, 76px); line-height: 1.05;
  letter-spacing: 0.005em; text-transform: uppercase;
  margin-bottom: 20px;
}
.hero h1 .glow { color: var(--amber); text-shadow: 0 0 26px rgba(255, 255, 255,0.4); }
.hero__sub { font-size: clamp(16px, 1.5vw, 19px); color: var(--muted); max-width: 580px; margin: 0 auto 28px; }
.hero__sub b { color: var(--paper); font-weight: 600; }
.hero__cta { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.hero__proof {
  margin-top: 38px; display: flex; gap: 0; justify-content: center; flex-wrap: wrap;
  border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden;
  background: rgba(23,23,28,0.6);
}
.hero__proof .stat { padding: 16px 26px; border-right: 1px solid var(--line); }
.hero__proof .stat:last-child { border-right: none; }
.hero__proof .stat b { font-family: var(--display); font-size: 20px; display: block; line-height: 1; color: var(--amber); letter-spacing: 0.02em; }
.hero__proof .stat span { font-size: 13px; color: var(--muted); }

/* ---- marquee logos / trust ---- */
.trust { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 28px 0; background: var(--ink-2); }
.trust__row { display: flex; align-items: center; justify-content: center; gap: 14px 48px; flex-wrap: wrap; }
.trust__label { font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted-2); }
.trust__name { font-family: var(--display); font-size: 21px; letter-spacing: 0.05em; text-transform: uppercase; color: var(--muted); transition: color .2s; }
.trust__name:hover { color: var(--paper); }

/* ---- package cards ---- */
.grid { display: grid; gap: 22px; }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }

.pkg {
  position: relative; display: flex; flex-direction: column;
  background: linear-gradient(180deg, var(--surface), var(--ink-2));
  border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 30px; transition: transform .3s var(--ease), border-color .3s, box-shadow .3s;
  overflow: hidden;
}
.pkg::before {
  content: ""; position: absolute; inset: 0 0 auto 0; height: 3px;
  background: linear-gradient(90deg, transparent, var(--amber), transparent);
  opacity: 0; transition: opacity .3s;
}
.pkg:hover { transform: translateY(-6px); border-color: var(--line-2); box-shadow: var(--shadow); }
.pkg:hover::before { opacity: 1; }
.pkg--featured { border-color: rgba(255, 255, 255,0.4); box-shadow: var(--shadow-amber); }
.pkg--featured::before { opacity: 1; }
.pkg__flag {
  position: absolute; top: 18px; right: 18px;
  font-size: 11px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--amber); background: var(--amber-soft); padding: 5px 11px; border-radius: 100px;
}
.pkg__name { font-family: var(--display); font-size: 26px; text-transform: uppercase; letter-spacing: 0.02em; line-height: 1.1; margin-bottom: 10px; }
.pkg__tag { color: var(--muted); font-size: 14.5px; min-height: 46px; margin-bottom: 18px; }
.pkg__price { display: flex; align-items: baseline; gap: 8px; margin-bottom: 22px; padding-bottom: 22px; border-bottom: 1px dashed var(--line); }
.pkg__price b { font-family: var(--display); font-size: 44px; color: var(--paper); line-height: 1; letter-spacing: 0.01em; }
.pkg__price span { color: var(--muted); font-size: 14px; }
.pkg__list { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: 26px; flex: 1; }
.pkg__list li { display: flex; gap: 11px; font-size: 14.5px; color: var(--paper); }
.pkg__list li svg { width: 16px; height: 16px; flex: none; color: var(--amber); margin-top: 4px; }
.pkg__ideal { font-size: 13px; color: var(--muted-2); margin-bottom: 20px; font-style: italic; }

/* add-ons strip */
.addons { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; margin-top: 26px; }
.addon { border: 1px solid var(--line); border-radius: var(--r); padding: 20px; background: var(--ink-2); }
.addon b { display: block; font-size: 15px; margin-bottom: 4px; }
.addon .rate { font-family: var(--display); color: var(--amber); font-size: 22px; }
.addon p { font-size: 13px; color: var(--muted); margin-top: 6px; }

/* ---- gear catalog ---- */
.cat-nav { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 36px; }
.cat-nav button {
  padding: 9px 16px; border-radius: 100px; font-size: 13.5px; font-weight: 600;
  border: 1px solid var(--line-2); color: var(--muted); transition: all .2s;
}
.cat-nav button:hover { color: var(--paper); }
.cat-nav button.active { background: var(--amber); color: var(--ink); border-color: var(--amber); }

.gear-cat { margin-bottom: 52px; }
.gear-cat__head { display: flex; align-items: baseline; justify-content: space-between; border-bottom: 1px solid var(--line); padding-bottom: 14px; margin-bottom: 22px; }
.gear-cat__head h3 { font-family: var(--display); font-size: 26px; text-transform: uppercase; letter-spacing: 0.02em; }
.gear-cat__head span { font-size: 13px; color: var(--muted); }
.gear-list { display: grid; grid-template-columns: repeat(2,1fr); gap: 14px; }
.gear-item { display: flex; gap: 16px; align-items: flex-start; padding: 18px; border: 1px solid var(--line); border-radius: var(--r); background: var(--surface); transition: border-color .2s; }
.gear-item:hover { border-color: var(--line-2); }
.gear-item__icon { width: 42px; height: 42px; flex: none; border-radius: 10px; background: var(--amber-soft); display: grid; place-items: center; color: var(--amber); }
.gear-item__icon svg { width: 22px; height: 22px; }
.gear-item__body { flex: 1; min-width: 0; }
.gear-item__name { font-weight: 600; font-size: 15.5px; display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.gear-item__qty { font-size: 12px; color: var(--amber); font-weight: 700; background: var(--amber-soft); padding: 2px 8px; border-radius: 100px; }
.gear-item__notes { font-size: 13px; color: var(--muted); margin-top: 4px; }
.tag-verify { font-size: 10.5px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--warn); border: 1px solid rgba(255,255,255,0.4); padding: 1px 7px; border-radius: 100px; }

/* ---- generic cards / features ---- */
.feature { padding: 28px; border: 1px solid var(--line); border-radius: var(--r-lg); background: var(--surface); }
.feature__icon { width: 50px; height: 50px; border-radius: 12px; background: var(--amber-soft); color: var(--amber); display: grid; place-items: center; margin-bottom: 18px; }
.feature__icon svg { width: 26px; height: 26px; }
.feature h3 { font-size: 19px; margin-bottom: 8px; }
.feature p { color: var(--muted); font-size: 15px; }

/* ---- booking configurator ---- */
.booker { display: grid; grid-template-columns: 1fr 380px; gap: 32px; align-items: start; }
.booker__main { display: flex; flex-direction: column; gap: 30px; }
.field-group { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 26px; }
.field-group__head { display: flex; align-items: center; gap: 12px; margin-bottom: 20px; }
.field-group__num { width: 30px; height: 30px; flex: none; border-radius: 50%; background: var(--amber); color: var(--ink); font-family: var(--display); display: grid; place-items: center; font-size: 15px; }
.field-group__head h3 { font-size: 18px; }
.choice-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 12px; }
.choice {
  text-align: left; padding: 18px; border: 1px solid var(--line-2); border-radius: var(--r);
  background: var(--ink-2); transition: all .2s var(--ease); position: relative;
}
.choice:hover { border-color: var(--muted-2); }
.choice.selected { border-color: var(--amber); background: var(--amber-soft); }
.choice.selected::after { content: "✓"; position: absolute; top: 12px; right: 14px; color: var(--amber); font-weight: 700; }
.choice b { display: block; font-size: 16px; margin-bottom: 3px; }
.choice .c-rate { font-family: var(--display); color: var(--amber); font-size: 20px; }
.choice .c-tag { font-size: 12.5px; color: var(--muted); margin-top: 6px; display: block; }

.field { margin-bottom: 16px; }
.field:last-child { margin-bottom: 0; }
.field label { display: block; font-size: 13px; font-weight: 600; color: var(--muted); margin-bottom: 7px; letter-spacing: 0.01em; }
.field input, .field select, .field textarea {
  width: 100%; padding: 13px 15px; background: var(--ink-2);
  border: 1px solid var(--line-2); border-radius: var(--r-sm);
  transition: border-color .2s;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--amber); }
.field textarea { resize: vertical; min-height: 88px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.toggle-row { display: flex; align-items: center; justify-content: space-between; padding: 14px 0; border-bottom: 1px solid var(--line); }
.toggle-row:last-child { border-bottom: none; }
.toggle-row__info b { font-size: 15px; display: block; }
.toggle-row__info span { font-size: 13px; color: var(--muted); }
.toggle-row__right { display: flex; align-items: center; gap: 14px; }
.toggle-row__right .rate { font-family: var(--display); color: var(--amber); font-size: 18px; }
.switch { width: 48px; height: 27px; border-radius: 100px; background: var(--line-2); position: relative; transition: background .2s; flex: none; }
.switch::after { content: ""; position: absolute; top: 3px; left: 3px; width: 21px; height: 21px; border-radius: 50%; background: var(--paper); transition: transform .2s var(--ease); }
.switch.on { background: var(--amber); }
.switch.on::after { transform: translateX(21px); }
.stepper { display: flex; align-items: center; gap: 12px; }
.stepper button { width: 30px; height: 30px; border-radius: 8px; background: var(--ink-2); border: 1px solid var(--line-2); font-size: 18px; line-height: 1; color: var(--paper); }
.stepper button:hover { border-color: var(--amber); }
.stepper span { font-family: var(--display); font-size: 20px; min-width: 26px; text-align: center; }

/* quote rail */
.quote { position: sticky; top: 96px; background: linear-gradient(180deg, var(--surface-2), var(--ink-2)); border: 1px solid var(--line-2); border-radius: var(--r-lg); padding: 28px; box-shadow: var(--shadow); }
.quote h3 { font-family: var(--display); font-size: 22px; text-transform: uppercase; letter-spacing: 0.03em; margin-bottom: 4px; }
.quote__sub { font-size: 13px; color: var(--muted); margin-bottom: 22px; }
.quote__line { display: flex; justify-content: space-between; align-items: baseline; padding: 11px 0; font-size: 15px; border-bottom: 1px solid var(--line); }
.quote__line span:first-child { color: var(--muted); }
.quote__line.muted span { color: var(--muted-2); font-size: 13.5px; }
.quote__total { display: flex; justify-content: space-between; align-items: baseline; margin-top: 18px; padding-top: 18px; border-top: 2px solid var(--amber); }
.quote__total span { font-size: 14px; color: var(--muted); }
.quote__total b { font-family: var(--display); font-size: 40px; color: var(--amber); letter-spacing: 0.01em; }
.quote__avail { margin: 18px 0; padding: 13px 15px; border-radius: var(--r-sm); font-size: 13.5px; display: flex; gap: 10px; align-items: flex-start; }
.quote__avail svg { width: 17px; height: 17px; flex: none; margin-top: 2px; }
.avail-ok { background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.3); color: var(--good); }
.avail-warn { background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.3); color: var(--warn); }
.avail-empty { background: var(--ink-2); border: 1px solid var(--line); color: var(--muted); }
.quote__note { font-size: 12px; color: var(--muted-2); margin-top: 14px; text-align: center; }

/* confirmation */
.confirm { text-align: center; padding: 60px 30px; }
.confirm__icon { width: 72px; height: 72px; border-radius: 50%; background: rgba(255,255,255,0.14); color: var(--good); display: grid; place-items: center; margin: 0 auto 24px; }
.confirm__icon svg { width: 38px; height: 38px; }
.confirm h2 { font-family: var(--display); font-size: 40px; text-transform: uppercase; margin-bottom: 12px; }
.confirm p { color: var(--muted); max-width: 480px; margin: 0 auto 8px; }
.confirm__summary { max-width: 420px; margin: 28px auto 0; text-align: left; background: var(--surface); border: 1px solid var(--line); border-radius: var(--r); padding: 22px; }

/* ---- footer ---- */
.footer { border-top: 1px solid var(--line); padding: 64px 0 36px; background: var(--ink-2); }
.footer__top { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; margin-bottom: 48px; }
.footer__brand p { color: var(--muted); font-size: 14.5px; margin-top: 16px; max-width: 320px; }
.footer h4 { font-size: 13px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted-2); margin-bottom: 16px; }
.footer ul { list-style: none; display: flex; flex-direction: column; gap: 11px; }
.footer ul a { color: var(--muted); font-size: 14.5px; transition: color .2s; }
.footer ul a:hover { color: var(--amber); }
.footer__bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 28px; border-top: 1px solid var(--line); flex-wrap: wrap; gap: 12px; }
.footer__bottom p { font-size: 13px; color: var(--muted-2); }

/* ---- badges / pills ---- */
.pill { display: inline-flex; align-items: center; gap: 6px; font-size: 12px; font-weight: 600; padding: 3px 10px; border-radius: 100px; }
.pill--good { background: rgba(255,255,255,0.14); color: var(--good); }
.pill--warn { background: rgba(255,255,255,0.14); color: var(--warn); }
.pill--bad  { background: var(--paper); color: var(--ink); font-weight: 700; }
.pill--amber{ background: var(--amber-soft); color: var(--amber); }
.pill--muted{ background: rgba(255,255,255,0.05); color: var(--muted); }

/* ---- reveal animation ---- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

/* ---- faq ---- */
.faq { max-width: 820px; }
.faq details { border: 1px solid var(--line); border-radius: var(--r); margin-bottom: 12px; background: var(--surface); overflow: hidden; }
.faq summary { cursor: pointer; list-style: none; padding: 18px 22px; font-weight: 600; font-size: 16px; display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; color: var(--amber); font-size: 24px; font-weight: 400; line-height: 1; flex: none; }
.faq details[open] summary::after { content: "\2212"; }
.faq details[open] summary { border-bottom: 1px solid var(--line); }
.faq p { padding: 16px 22px; color: var(--muted); font-size: 15px; margin: 0; }

/* ---- responsive ---- */
@media (max-width: 980px) {
  .booker { grid-template-columns: 1fr; }
  .quote { position: static; }
  .footer__top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 860px) {
  .grid--3, .grid--4 { grid-template-columns: 1fr 1fr; }
  .gear-list { grid-template-columns: 1fr; }
  .addons { grid-template-columns: 1fr; }
  .nav__links { display: none; }
  .nav__links.open {
    display: flex; flex-direction: column; gap: 0;
    position: absolute; top: 76px; left: 0; right: 0;
    background: var(--ink-2); border-bottom: 1px solid var(--line); padding: 8px 24px 20px;
  }
  .nav__links.open a { padding: 14px 0; border-bottom: 1px solid var(--line); width: 100%; }
  .nav__links.open .btn { margin-top: 12px; }
  .nav__toggle { display: grid; place-items: center; width: 44px; height: 44px; }
}
@media (max-width: 620px) {
  .section { padding: 64px 0; }
  .grid--3, .grid--4, .grid--2, .choice-grid, .field-row { grid-template-columns: 1fr; }
  .hero__proof .stat { padding: 20px 26px; }
  .hero__proof .stat:nth-child(2) { border-right: none; }
  .footer__top { grid-template-columns: 1fr; }
}
