/* ==========================================================================
   SHTEGU — travel in Albania, coast to summit
   Palette: warm limestone, red ochre, juniper olive, saffron, Ionian teal
   Type: Fraunces (display serif) + Karla (interface grotesque)
   Sibling of the ADRIADENT system: same bones, warmer skin.
   ========================================================================== */

:root {
  --paper: #fffdf9;
  --stone: #f0e5d3;
  --stone-2: #f9f2e6;
  --ink: #33200f;
  --ink-soft: #6b5341;
  --ink-faint: #9a8571;

  --ember: #b0492a;        /* red ochre — primary brand */
  --ember-deep: #6b2c19;   /* deep madder — dark bands, footer */
  --saffron: #e2a44a;      /* warm light accent */
  --olive: #5c6b39;        /* juniper — mountains */
  --olive-soft: #e8ebd9;
  --sea: #2e7c85;          /* Ionian — coast */
  --sea-soft: #dcecec;

  --line: #e4d7c0;
  --line-soft: #f0e8da;

  --w-page: 1180px;
  --w-text: 62ch;
  --pad-x: 24px;
  --gap: 20px;

  --r-sm: 3px;
  --r-md: 6px;

  --shadow-lift: 0 18px 44px -28px rgba(107, 44, 25, 0.5);
}

/* --------------------------------------------------------------- reset -- */

*, *::before, *::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Karla", "Segoe UI", system-ui, sans-serif;
  font-size: 17px;
  line-height: 1.62;
  -webkit-font-smoothing: antialiased;
}

img, svg { display: block; max-width: 100%; }
button, input, select, textarea { font: inherit; color: inherit; }
a { color: var(--ember); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--ember-deep); }

:focus-visible { outline: 2px solid var(--ember); outline-offset: 3px; border-radius: 2px; }

.skip { position: absolute; left: -9999px; top: 0; background: var(--ember-deep); color: #fff; padding: 12px 18px; z-index: 200; }
.skip:focus { left: 8px; top: 8px; }

.sr { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }

/* ---------------------------------------------------------- typography -- */

h1, h2, h3, h4 {
  font-family: "Fraunces", Georgia, "Times New Roman", serif;
  font-variation-settings: "SOFT" 30, "WONK" 1;
  font-weight: 500;
  line-height: 1.12;
  letter-spacing: -0.012em;
  margin: 0 0 0.5em;
  text-wrap: balance;
}
h1 { font-size: clamp(2.15rem, 5.2vw, 3.5rem); }
h2 { font-size: clamp(1.65rem, 3.4vw, 2.35rem); }
h3 { font-size: 1.16rem; }
h4 { font-size: 1rem; }

p { margin: 0 0 1em; max-width: var(--w-text); }
.lede { font-size: clamp(1.06rem, 1.9vw, 1.24rem); color: var(--ink-soft); line-height: 1.55; }

.eyebrow {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--ember);
  margin: 0 0 12px;
  display: flex;
  align-items: center;
  gap: 9px;
}
.eyebrow::before { content: ""; width: 26px; height: 2px; background: var(--saffron); flex: none; }

.small { font-size: 0.88rem; color: var(--ink-faint); }

/* -------------------------------------------------------------- layout -- */

.wrap { width: 100%; max-width: var(--w-page); margin-inline: auto; padding-inline: var(--pad-x); }

.section { padding: 72px 0; }
.section + .section { padding-top: 0; }
.section--rule { border-top: 1px solid var(--line-soft); padding-top: 72px; }
.section--stone { background: var(--stone-2); border-block: 1px solid var(--line); }
.section--stone + .section { padding-top: 72px; }
.section--dark { background: var(--ember-deep); color: #f4e6d8; }
.section--dark h2, .section--dark h3 { color: #fff; }
.section--dark p { color: #e5cfbc; }
.section--dark .eyebrow { color: var(--saffron); }
.section--dark .eyebrow::before { background: var(--ember); }
.section--dark + .section { padding-top: 72px; }

.head { max-width: 68ch; margin-bottom: 34px; }
.head p { color: var(--ink-soft); }

.grid { display: grid; gap: var(--gap); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 46px; align-items: start; }
.split--wide { grid-template-columns: 1.15fr 0.85fr; }

/* ------------------------------------------------------------- buttons -- */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--ember);
  color: #fff;
  border: 1px solid var(--ember);
  border-radius: var(--r-sm);
  padding: 12px 22px;
  font-weight: 700;
  font-size: 0.96rem;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.16s ease, border-color 0.16s ease, color 0.16s ease;
}
.btn:hover { background: var(--ember-deep); border-color: var(--ember-deep); color: #fff; }
.btn--ghost { background: transparent; color: var(--ember); }
.btn--ghost:hover { background: var(--ember); color: #fff; }
.btn--light { background: #fff; color: var(--ember-deep); border-color: #fff; }
.btn--light:hover { background: var(--stone); border-color: var(--stone); color: var(--ember-deep); }
.btn-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 22px; }

/* -------------------------------------------------------------- header -- */

.site-head {
  position: sticky;
  top: 0;
  z-index: 90;
  background: rgba(255, 253, 249, 0.94);
  backdrop-filter: blur(9px);
  border-bottom: 1px solid var(--line-soft);
}
.head-bar { display: flex; align-items: center; gap: 18px; min-height: 70px; }

.brand { display: flex; align-items: center; gap: 11px; text-decoration: none; color: var(--ink); margin-right: auto; }
.brand-mark { width: 36px; height: 36px; flex: none; }
.brand b { font-family: "Fraunces", Georgia, serif; font-weight: 600; font-size: 1.24rem; letter-spacing: -0.015em; display: block; line-height: 1.05; }
.brand i { font-style: normal; font-size: 0.7rem; color: var(--ink-faint); letter-spacing: 0.05em; }

.nav { display: flex; gap: 4px; align-items: center; }
.nav a {
  color: var(--ink-soft);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  padding: 8px 12px;
  border-radius: var(--r-sm);
}
.nav a:hover { color: var(--ember); background: var(--stone-2); }
.nav a[aria-current="page"] { color: var(--ember-deep); font-weight: 700; box-shadow: inset 0 -2px 0 var(--saffron); }

.cur-switch { display: flex; margin-left: 12px; border: 1px solid var(--line); border-radius: var(--r-sm); overflow: hidden; }
.cur-switch button {
  border: 0; background: transparent; padding: 6px 9px;
  font-size: 0.8rem; font-weight: 700; color: var(--ink-faint); cursor: pointer;
}
.cur-switch button + button { border-left: 1px solid var(--line); }
.cur-switch button[aria-pressed="true"] { background: var(--ember); color: #fff; }

.burger { display: none; border: 1px solid var(--line); background: var(--paper); border-radius: var(--r-sm); padding: 8px 11px; cursor: pointer; }
.burger span { display: block; width: 18px; height: 2px; background: var(--ink); margin: 3px 0; }

/* ---------------------------------------------------------------- hero -- */

.hero { background: linear-gradient(168deg, var(--stone-2) 0%, var(--paper) 62%); border-bottom: 1px solid var(--line-soft); overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 52px; align-items: center; padding: 68px 0 0; }
.hero-copy h1 { margin-bottom: 18px; }
.hero-copy .lede { max-width: 46ch; }

.hero-grid--solo { grid-template-columns: 1fr; }
.hero-grid--solo .hero-copy { max-width: 64ch; }
.hero-grid--solo .hero-copy .lede { max-width: 60ch; }

.facts { display: flex; flex-wrap: wrap; gap: 30px; margin-top: 34px; padding-top: 26px; border-top: 1px solid var(--line); }
.fact strong {
  display: block;
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.62rem;
  color: var(--ember-deep);
  line-height: 1.1;
  font-variant-numeric: tabular-nums;
}
.fact span { font-size: 0.85rem; color: var(--ink-faint); }

/* ------------------------------------------------------------ ridgeline -- */

.ridge { display: block; width: 100%; height: auto; margin-top: 46px; color: var(--ember-deep); opacity: 0.16; }
.section--dark .ridge { color: var(--saffron); opacity: 0.34; }
.hero .ridge { margin-top: 40px; margin-bottom: -1px; opacity: 0.2; }

/* ----------------------------------------------------------- estimator -- */

.estimator {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 26px;
  box-shadow: var(--shadow-lift);
}
.estimator h3 { font-family: "Karla", sans-serif; font-weight: 700; font-size: 1rem; margin-bottom: 4px; }
.est-note { font-size: 0.85rem; color: var(--ink-faint); margin-bottom: 20px; }

.field { margin-bottom: 16px; }
.field label { display: block; font-size: 0.85rem; font-weight: 700; margin-bottom: 6px; color: var(--ink-soft); }
.field select, .field input[type="text"], .field input[type="email"], .field input[type="tel"], .field input[type="date"], .field input[type="number"], .field textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  background: var(--paper);
  padding: 10px 12px;
}
.field textarea { min-height: 128px; resize: vertical; }

input[type="range"] { width: 100%; accent-color: var(--ember); }
.range-head { display: flex; justify-content: space-between; align-items: baseline; }
.range-head output { font-weight: 700; color: var(--ember-deep); font-variant-numeric: tabular-nums; }

.seg { display: flex; border: 1px solid var(--line); border-radius: var(--r-sm); overflow: hidden; }
.seg button {
  flex: 1; border: 0; background: var(--paper); padding: 9px 6px;
  font-size: 0.86rem; font-weight: 700; color: var(--ink-soft); cursor: pointer;
}
.seg button + button { border-left: 1px solid var(--line); }
.seg button[aria-pressed="true"] { background: var(--ember); color: #fff; }

.bars { margin-top: 22px; display: grid; gap: 13px; }
.bar-row .bar-top { display: flex; justify-content: space-between; font-size: 0.87rem; margin-bottom: 5px; }
.bar-row .bar-top strong { font-variant-numeric: tabular-nums; }
.bar-track { height: 9px; background: var(--stone); border-radius: 99px; overflow: hidden; }
.bar-fill { height: 100%; width: 0; background: var(--ink-faint); transition: width 0.5s cubic-bezier(0.22, 1, 0.36, 1); }
.bar-row[data-k="stay"] .bar-fill { background: linear-gradient(90deg, var(--ember), var(--saffron)); }
.bar-row[data-k="car"] .bar-fill { background: linear-gradient(90deg, var(--olive), #99a86a); }
.bar-row[data-k="do"] .bar-fill { background: linear-gradient(90deg, var(--sea), #6fbfc0); }
.bar-row[data-k="food"] .bar-fill { background: linear-gradient(90deg, #a9722f, var(--saffron)); }

.total {
  margin-top: 22px;
  padding: 15px 16px;
  background: var(--stone-2);
  border-left: 3px solid var(--saffron);
  border-radius: 0 var(--r-sm) var(--r-sm) 0;
}
.total .amount {
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(1.9rem, 4.4vw, 2.4rem);
  line-height: 1;
  font-variant-numeric: tabular-nums;
  color: var(--ember-deep);
  display: block;
}
.total p { font-size: 0.9rem; margin: 6px 0 0; color: var(--ink-soft); }

/* --------------------------------------------------------------- cards -- */

.card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 24px;
  display: flex;
  flex-direction: column;
}
.card h3 { margin-bottom: 8px; }
.card p { font-size: 0.96rem; color: var(--ink-soft); }
.card .card-foot { margin-top: auto; padding-top: 16px; }
.card--flag { border-top: 3px solid var(--saffron); }
.card--sea { border-top-color: var(--sea); }
.card--mountain { border-top-color: var(--olive); }

.price-tag {
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.5rem;
  color: var(--ember-deep);
  font-variant-numeric: tabular-nums;
  display: block;
}
.price-tag small { display: block; font-family: "Karla", sans-serif; font-size: 0.8rem; color: var(--ink-faint); font-variant-numeric: normal; }

/* --------------------------------------------------------------- pills -- */

.pills { display: flex; flex-wrap: wrap; gap: 7px; margin: 0 0 14px; padding: 0; list-style: none; }
.pill {
  font-size: 0.78rem; font-weight: 700; padding: 3px 10px;
  border-radius: 99px; background: var(--stone); color: var(--ink-soft); white-space: nowrap;
}
.pill--sea { background: var(--sea-soft); color: #185f66; }
.pill--mountain { background: var(--olive-soft); color: #435026; }
.pill--town { background: #f6e3d2; color: #8a4a1c; }
.pill--easy { background: #e4efdb; color: #40602c; }
.pill--moderate { background: #faecd3; color: #8a5f1c; }
.pill--hard { background: #f6ded6; color: #8f3520; }

/* ----------------------------------------------------------- checklist -- */

.check { list-style: none; margin: 0; padding: 0; }
.check li { position: relative; padding-left: 26px; margin-bottom: 9px; font-size: 0.95rem; color: var(--ink-soft); }
.check li::before {
  content: "";
  position: absolute;
  left: 2px; top: 8px;
  width: 11px; height: 6px;
  border-left: 2px solid var(--olive);
  border-bottom: 2px solid var(--olive);
  transform: rotate(-45deg);
}
.check li.no::before {
  border: 0;
  left: 4px; top: 9px;
  width: 9px; height: 9px;
  background: linear-gradient(45deg, transparent 44%, var(--ember) 44%, var(--ember) 56%, transparent 56%),
              linear-gradient(-45deg, transparent 44%, var(--ember) 44%, var(--ember) 56%, transparent 56%);
  transform: none;
}

/* --------------------------------------------------------------- steps -- */

.steps { list-style: none; margin: 0; padding: 0; counter-reset: s; display: grid; gap: 4px; }
.steps li { counter-increment: s; display: grid; grid-template-columns: 52px 1fr; gap: 20px; padding: 22px 0; border-top: 1px solid var(--line-soft); }
.steps li:first-child { border-top: 0; }
.steps li::before {
  content: counter(s, decimal-leading-zero);
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.5rem;
  color: var(--saffron);
  line-height: 1;
}
.steps h3 { margin-bottom: 4px; }
.steps p { font-size: 0.96rem; color: var(--ink-soft); margin: 0; }
.steps .when { font-size: 0.82rem; font-weight: 700; color: var(--ember); display: block; margin-bottom: 3px; }

/* ---------------------------------------------------------- filter bar -- */

.filters { display: flex; flex-wrap: wrap; gap: 10px; align-items: center; margin-bottom: 26px; padding-bottom: 20px; border-bottom: 1px solid var(--line-soft); }
.filters .lbl { font-size: 0.82rem; font-weight: 700; color: var(--ink-faint); margin-right: 2px; }
.chip {
  border: 1px solid var(--line);
  background: var(--paper);
  border-radius: 99px;
  padding: 6px 14px;
  font-size: 0.86rem;
  font-weight: 700;
  color: var(--ink-soft);
  cursor: pointer;
}
.chip:hover { border-color: var(--ember); color: var(--ember); }
.chip[aria-pressed="true"] { background: var(--ember); border-color: var(--ember); color: #fff; }
.result-count { font-size: 0.86rem; color: var(--ink-faint); margin-left: auto; }
.empty { padding: 40px 0; color: var(--ink-faint); }

/* --------------------------------------------------------------- table -- */

.table-scroll { overflow-x: auto; overscroll-behavior-x: contain; border: 1px solid var(--line); border-radius: var(--r-md); }
table.data { width: 100%; border-collapse: collapse; font-size: 0.94rem; min-width: 620px; }
table.data th, table.data td { padding: 13px 16px; text-align: left; border-bottom: 1px solid var(--line-soft); }
table.data thead th { background: var(--stone-2); font-size: 0.8rem; letter-spacing: 0.03em; color: var(--ink-soft); white-space: nowrap; position: sticky; top: 0; }
table.data tbody tr:last-child td { border-bottom: 0; }
table.data tbody tr:hover { background: var(--stone-2); }
table.data td.num { text-align: right; font-variant-numeric: tabular-nums; white-space: nowrap; }
table.data td.hi { color: var(--ember-deep); font-weight: 700; }
table.data .rowname { font-weight: 700; }
table.data .rowname small { display: block; font-weight: 400; color: var(--ink-faint); font-size: 0.82rem; }

/* ---------------------------------------------------------------- tabs -- */

.tabs { display: flex; flex-wrap: wrap; gap: 6px; border-bottom: 1px solid var(--line); margin-bottom: 28px; }
.tabs button {
  border: 0; background: none; padding: 11px 16px;
  font-weight: 700; font-size: 0.94rem; color: var(--ink-faint); cursor: pointer;
  border-bottom: 2px solid transparent; margin-bottom: -1px;
}
.tabs button:hover { color: var(--ember); }
.tabs button[aria-selected="true"] { color: var(--ember-deep); border-bottom-color: var(--ember); }

.itin { list-style: none; margin: 0; padding: 0; }
.itin li { display: grid; grid-template-columns: 96px 1fr; gap: 20px; padding: 16px 0; border-top: 1px solid var(--line-soft); }
.itin li:first-child { border-top: 0; }
.itin .day { font-size: 0.82rem; font-weight: 700; color: var(--ember); }
.itin h4 { margin-bottom: 3px; font-family: "Karla", sans-serif; font-weight: 700; }
.itin p { font-size: 0.94rem; color: var(--ink-soft); margin: 0; }

/* -------------------------------------------------------- season strip -- */

.season { display: grid; grid-template-columns: 130px repeat(12, minmax(38px, 1fr)); gap: 3px; min-width: 700px; align-items: center; }
.season .rowlabel { font-size: 0.82rem; font-weight: 700; color: var(--ink-soft); padding-right: 8px; }
.season .mon { font-size: 0.72rem; text-align: center; color: var(--ink-faint); font-weight: 700; }
.season .cell { height: 30px; border-radius: 2px; display: grid; place-items: center; font-size: 0.68rem; font-weight: 700; color: #fff; }
.season .cell[data-v="3"] { background: var(--olive); }
.season .cell[data-v="2"] { background: #a3ad76; }
.season .cell[data-v="1"] { background: #ddd7bd; color: var(--ink-soft); }
.season .cell[data-v="0"] { background: var(--stone); color: var(--ink-faint); }
.season-key { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 18px; font-size: 0.82rem; color: var(--ink-faint); }
.season-key i { display: inline-block; width: 12px; height: 12px; border-radius: 2px; margin-right: 6px; vertical-align: -1px; font-style: normal; }

/* ----------------------------------------------------------------- faq -- */

.faq { border-top: 1px solid var(--line-soft); }
.faq details { border-bottom: 1px solid var(--line-soft); }
.faq summary {
  cursor: pointer; padding: 18px 40px 18px 0; position: relative;
  font-weight: 700; font-size: 1.02rem; list-style: none;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: ""; position: absolute; right: 8px; top: 26px;
  width: 9px; height: 9px; border-right: 2px solid var(--ember); border-bottom: 2px solid var(--ember);
  transform: rotate(45deg); transition: transform 0.18s ease;
}
.faq details[open] summary::after { transform: rotate(-135deg); top: 30px; }
.faq .answer { padding: 0 40px 20px 0; color: var(--ink-soft); font-size: 0.97rem; }
.faq .answer p:last-child { margin-bottom: 0; }

/* ---------------------------------------------------------------- form -- */

.form-card { background: var(--paper); border: 1px solid var(--line); border-radius: var(--r-md); padding: 28px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-grid .full { grid-column: 1 / -1; }
.hp { position: absolute; left: -9999px; opacity: 0; height: 0; width: 0; }
.form-note { margin-top: 14px; font-size: 0.86rem; color: var(--ink-faint); }
.form-status { margin-top: 16px; padding: 14px 16px; border-radius: var(--r-sm); font-size: 0.95rem; display: none; }
.form-status.show { display: block; }
.form-status.ok { background: #e7efdc; color: #3d5b2a; border-left: 3px solid var(--olive); }
.form-status.err { background: #f8e5df; color: #7d2f1c; border-left: 3px solid var(--ember); }

/* ------------------------------------------------------------- CTA band -- */

.cta-band { background: var(--stone); border-block: 1px solid var(--line); padding: 52px 0; }
.cta-band .wrap { display: flex; gap: 30px; align-items: center; justify-content: space-between; flex-wrap: wrap; }
.cta-band h2 { margin-bottom: 6px; }
.cta-band p { margin: 0; color: var(--ink-soft); }
.cta-band .btn-row { margin-top: 0; }

/* -------------------------------------------------------------- footer -- */

.site-foot { background: var(--ember-deep); color: #e0c9b7; padding: 56px 0 26px; font-size: 0.94rem; }
.site-foot h4 { color: #fff; font-family: "Karla", sans-serif; font-size: 0.86rem; letter-spacing: 0.06em; margin-bottom: 12px; }
.site-foot a { color: #f0dccc; text-decoration: none; }
.site-foot a:hover { color: #fff; text-decoration: underline; }
.site-foot ul { list-style: none; margin: 0; padding: 0; }
.site-foot li { margin-bottom: 7px; }
.site-foot p { color: #dcc3af; }
.foot-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 34px; }
.foot-brand b { font-family: "Fraunces", Georgia, serif; font-size: 1.3rem; color: #fff; display: block; }
.foot-bottom {
  margin-top: 40px; padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px;
  font-size: 0.84rem; color: #c0a390;
}

/* --------------------------------------------------------- draft banner -- */

.draft-bar {
  background: var(--saffron); color: #3a2410;
  padding: 9px 16px; text-align: center; font-size: 0.88rem; font-weight: 700;
  position: sticky; top: 0; z-index: 120;
}
.draft-bar a { color: #3a2410; }

/* --------------------------------------------------------------- misc -- */

.note-box {
  background: var(--stone-2);
  border-left: 3px solid var(--saffron);
  border-radius: 0 var(--r-sm) var(--r-sm) 0;
  padding: 16px 18px;
  font-size: 0.94rem;
  color: var(--ink-soft);
}
.note-box p:last-child { margin-bottom: 0; }
.note-box strong { color: var(--ink); }

.stack > * + * { margin-top: 14px; }

/* --------------------------------------------------------- responsive -- */

@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; gap: 38px; padding-top: 52px; }
  .split, .split--wide { grid-template-columns: 1fr; gap: 34px; }
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .grid--3 { grid-template-columns: repeat(2, 1fr); }
  .foot-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
}

@media (max-width: 760px) {
  body { font-size: 16px; }
  .section { padding: 54px 0; }
  .section--rule, .section--stone + .section, .section--dark + .section { padding-top: 54px; }
  .nav {
    display: none;
    position: absolute; left: 0; right: 0; top: 100%;
    flex-direction: column; gap: 0; align-items: stretch;
    background: var(--paper); border-bottom: 1px solid var(--line);
    padding: 8px var(--pad-x) 16px;
  }
  .nav.open { display: flex; }
  .nav a { padding: 11px 4px; border-bottom: 1px solid var(--line-soft); border-radius: 0; }
  .nav .cur-switch { margin: 14px 0 0; align-self: flex-start; }
  .burger { display: block; }
  .site-head { position: relative; }
  .grid--2, .grid--3, .grid--4 { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .cta-band .wrap { flex-direction: column; align-items: flex-start; }
  .steps li { grid-template-columns: 38px 1fr; gap: 14px; }
  .itin li { grid-template-columns: 1fr; gap: 4px; }
  .foot-grid { grid-template-columns: 1fr; }
  .facts { gap: 22px; }
}

@media (max-width: 400px) {
  :root { --pad-x: 16px; }
  .head-bar { gap: 10px; }
}

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

@media print {
  .site-head, .cta-band, .btn-row, .filters { display: none; }
  body { font-size: 12px; }
}
