/* ============================================================
   Ratolest — rozvaha domácnosti | pruneworks.digital
   Editorial finance interface: deep olive, warm ivory, paper
   ============================================================ */

:root {
  --ink: #22261c;
  --olive: #414f31;
  --olive-deep: #2c3623;
  --olive-soft: #7d8a6a;
  --ivory: #f6f1e6;
  --paper: #ebe4d4;
  --paper-2: #e2d9c5;
  --brass: #a8853f;
  --muted: #5f6154;
  --line: rgba(34, 38, 28, .16);
  --line-strong: rgba(34, 38, 28, .34);
  --white: #fffdf8;
  --shadow: 0 18px 40px -28px rgba(34, 38, 28, .45);

  --serif: "Fraunces", "Iowan Old Style", Georgia, "Times New Roman", serif;
  --sans: "Karla", "Helvetica Neue", Arial, sans-serif;
  --mono: "IBM Plex Mono", "SFMono-Regular", Consolas, monospace;

  --wrap: 1180px;
  --gap: clamp(1.5rem, 4vw, 3.5rem);
  --radius: 3px;
}

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

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

body {
  margin: 0;
  background-color: var(--ivory);
  background-image:
    radial-gradient(circle at 12% 8%, rgba(168, 133, 63, .07), transparent 45%),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)' opacity='.05'/%3E%3C/svg%3E");
  color: var(--ink);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.68;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }

a { color: var(--olive-deep); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--brass); }

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -.015em;
  margin: 0 0 .6em;
  color: var(--olive-deep);
}

h1 { font-size: clamp(2.2rem, 5.2vw, 3.9rem); }
h2 { font-size: clamp(1.7rem, 3.4vw, 2.6rem); }
h3 { font-size: clamp(1.15rem, 2vw, 1.4rem); }
h4 { font-size: 1.05rem; }

p { margin: 0 0 1.1em; }
p:last-child { margin-bottom: 0; }

.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: clamp(1.1rem, 4vw, 2.5rem); }

.eyebrow {
  font-family: var(--mono);
  font-size: .72rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--brass);
  display: flex;
  align-items: center;
  gap: .8rem;
  margin: 0 0 1.1rem;
}
.eyebrow::after { content: ""; flex: 1; height: 1px; background: var(--line); }

.lead { font-size: 1.14rem; color: var(--muted); max-width: 62ch; }

.mono { font-family: var(--mono); }

/* ---------- Skip link ---------- */
.skip {
  position: absolute; left: -9999px; top: 0; z-index: 200;
  background: var(--olive-deep); color: var(--ivory); padding: .7rem 1.2rem;
}
.skip:focus { left: .5rem; top: .5rem; }

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

/* ---------- Info strip ---------- */
.strip {
  background: var(--olive-deep);
  color: rgba(246, 241, 230, .82);
  font-family: var(--mono);
  font-size: .74rem;
  letter-spacing: .06em;
}
.strip .wrap { display: flex; flex-wrap: wrap; gap: .4rem 1.6rem; justify-content: space-between; padding-block: .55rem; }
.strip a { color: var(--ivory); text-decoration: none; }
.strip a:hover { color: #d8c79a; }

/* ---------- Header ---------- */
.site-head {
  position: sticky; top: 0; z-index: 90;
  background: rgba(246, 241, 230, .93);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
.head-row { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding-block: .85rem; }

.brand { display: flex; align-items: center; gap: .7rem; text-decoration: none; }
.brand svg { width: 34px; height: 34px; flex: none; }
.brand-name { font-family: var(--serif); font-size: 1.32rem; font-weight: 600; letter-spacing: .01em; color: var(--olive-deep); line-height: 1; }
.brand-sub { font-family: var(--mono); font-size: .6rem; letter-spacing: .2em; text-transform: uppercase; color: var(--brass); display: block; margin-top: .28rem; }

.nav-toggle {
  display: none; background: none; border: 1px solid var(--line-strong); border-radius: var(--radius);
  padding: .5rem .8rem; font-family: var(--mono); font-size: .74rem; letter-spacing: .12em;
  text-transform: uppercase; color: var(--olive-deep); cursor: pointer;
}

.nav { display: flex; align-items: center; gap: clamp(.6rem, 1.4vw, 1.5rem); }
.nav a {
  font-size: .93rem; text-decoration: none; color: var(--ink); padding: .3rem 0;
  border-bottom: 1px solid transparent; transition: border-color .2s, color .2s;
}
.nav a:hover { border-bottom-color: var(--brass); }
.nav a[aria-current="page"] { color: var(--olive); border-bottom-color: var(--olive); font-weight: 700; }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  font-family: var(--mono); font-size: .8rem; letter-spacing: .1em; text-transform: uppercase;
  padding: .78rem 1.35rem; border-radius: var(--radius); border: 1px solid var(--olive-deep);
  background: var(--olive-deep); color: var(--ivory); text-decoration: none; cursor: pointer;
  transition: background .2s, color .2s, transform .2s;
}
.btn:hover { background: var(--olive); color: var(--ivory); transform: translateY(-2px); }
.btn--ghost { background: transparent; color: var(--olive-deep); }
.btn--ghost:hover { background: var(--paper); color: var(--olive-deep); }
.btn--brass { background: var(--brass); border-color: var(--brass); color: #2a2110; }
.btn--brass:hover { background: #b8934a; border-color: #b8934a; color: #2a2110; }
.btn--sm { padding: .55rem 1rem; font-size: .72rem; }

/* Grid children must be allowed to shrink below intrinsic content width */
.hero-grid > *, .split > *, .grid > *, .prices > *, .band > *, .foot-grid > *, .steps > * { min-width: 0; }

/* ---------- Sections ---------- */
.section { padding-block: clamp(3.2rem, 7vw, 6rem); }
.section--paper { background: linear-gradient(180deg, var(--paper) 0%, var(--paper-2) 100%); border-block: 1px solid var(--line); }
.section--olive { background: var(--olive-deep); color: rgba(246, 241, 230, .85); }
.section--olive h2, .section--olive h3 { color: var(--ivory); }
.section--olive .eyebrow { color: #d8c79a; }
.section--olive .eyebrow::after { background: rgba(246, 241, 230, .25); }

.section-head { max-width: 66ch; margin-bottom: clamp(2rem, 4vw, 3rem); }

/* ---------- Hero ---------- */
.hero { padding-block: clamp(2.5rem, 6vw, 5rem) clamp(3rem, 6vw, 5.5rem); }
.hero-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: var(--gap); align-items: start; }
.hero h1 { margin-bottom: .5em; }
.hero h1 em { font-style: italic; color: var(--brass); }
.hero-facts { display: flex; flex-wrap: wrap; gap: 1.6rem; margin-top: 2rem; padding-top: 1.4rem; border-top: 1px solid var(--line); }
.fact { min-width: 8.5rem; }
.fact b { display: block; font-family: var(--serif); font-size: 1.7rem; color: var(--olive); line-height: 1; }
.fact span { font-family: var(--mono); font-size: .68rem; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); }
.hero-actions { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 2rem; }

/* ---------- Ledger card (signature) ---------- */
.ledger {
  background: var(--white);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: clamp(1.2rem, 2.4vw, 1.8rem);
  background-image: repeating-linear-gradient(180deg, transparent 0 31px, rgba(34, 38, 28, .06) 31px 32px);
  background-position: 0 4px;
}
.ledger-title { font-family: var(--mono); font-size: .72rem; letter-spacing: .18em; text-transform: uppercase; color: var(--brass); margin: 0 0 1rem; }
.ledger-field { display: block; margin-bottom: 1rem; }
.ledger-field span { display: block; font-size: .86rem; color: var(--muted); margin-bottom: .3rem; }
.ledger-field input, .ledger-field select {
  width: 100%; font-family: var(--mono); font-size: 1rem; color: var(--ink);
  background: transparent; border: none; border-bottom: 1px solid var(--line-strong);
  padding: .35rem 0; border-radius: 0;
}
.ledger-out { border-top: 2px solid var(--olive-deep); margin-top: 1.4rem; padding-top: .9rem; }
.ledger-row { display: flex; justify-content: space-between; gap: 1rem; font-family: var(--mono); font-size: .9rem; padding: .3rem 0; }
.ledger-row b { color: var(--olive); }
.ledger-note { font-size: .82rem; color: var(--muted); margin-top: .9rem; }
.ledger-bar { height: 8px; background: var(--paper-2); border-radius: 99px; overflow: hidden; margin-top: .8rem; }
.ledger-bar i { display: block; height: 100%; background: var(--olive); width: 0; transition: width .5s ease; }

/* ---------- Figures ---------- */
.figure { position: relative; }
.figure img { border-radius: var(--radius); border: 1px solid var(--line); filter: saturate(.92); }
.figure figcaption {
  font-family: var(--mono); font-size: .68rem; letter-spacing: .12em; text-transform: uppercase;
  color: var(--muted); margin-top: .7rem; padding-left: 1.6rem; position: relative;
}
.figure figcaption::before { content: ""; position: absolute; left: 0; top: .55em; width: 1rem; height: 1px; background: var(--brass); }

/* ---------- Asymmetric split ---------- */
.split { display: grid; gap: var(--gap); align-items: center; }
.split--7-5 { grid-template-columns: 1.25fr .75fr; }
.split--5-7 { grid-template-columns: .75fr 1.25fr; }
.split--half { grid-template-columns: 1fr 1fr; }
.split--offset > *:nth-child(2) { margin-top: clamp(0px, 3vw, 3.5rem); }

/* ---------- Marginalia ---------- */
.margin-note {
  border-left: 2px solid var(--brass); padding: .2rem 0 .2rem 1.1rem;
  font-family: var(--serif); font-style: italic; font-size: 1.05rem; color: var(--olive);
  max-width: 34ch;
}

/* ---------- Cards ---------- */
.grid { display: grid; gap: clamp(1rem, 2.2vw, 1.8rem); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: clamp(1.2rem, 2.2vw, 1.7rem); display: flex; flex-direction: column; gap: .3rem;
}
.card--flat { background: transparent; border: none; border-top: 2px solid var(--olive-deep); padding-inline: 0; border-radius: 0; }
.card h3 { margin-bottom: .35em; }
.card p { font-size: .96rem; color: var(--muted); }
.card .tag { font-family: var(--mono); font-size: .68rem; letter-spacing: .14em; text-transform: uppercase; color: var(--brass); }
.card-link { margin-top: auto; padding-top: 1rem; font-family: var(--mono); font-size: .74rem; letter-spacing: .1em; text-transform: uppercase; text-decoration: none; color: var(--olive); }
.card-link:hover { color: var(--brass); }
.card-link::after { content: " →"; }

.card--olive { background: rgba(246, 241, 230, .06); border-color: rgba(246, 241, 230, .2); }
.card--olive p { color: rgba(246, 241, 230, .78); }

.mono-tile {
  aspect-ratio: 4 / 3; display: grid; place-items: center; border-radius: var(--radius);
  background: linear-gradient(140deg, var(--olive-deep) 0%, var(--olive) 100%);
  color: var(--ivory); font-family: var(--serif); font-size: clamp(2rem, 5vw, 2.8rem);
  letter-spacing: .04em; border: 1px solid var(--olive-deep);
}

/* ---------- Steps (real sequence) ---------- */
.steps { counter-reset: step; display: grid; gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.step { counter-increment: step; background: var(--white); padding: clamp(1.2rem, 2.4vw, 1.8rem); display: grid; grid-template-columns: 4.5rem 1fr; gap: 1.2rem; }
.step::before {
  content: counter(step, decimal-leading-zero);
  font-family: var(--serif); font-size: 2.2rem; color: var(--brass); line-height: .9;
}
.step h3 { margin-bottom: .3em; }
.step p { color: var(--muted); font-size: .97rem; }
.step .step-meta { font-family: var(--mono); font-size: .7rem; letter-spacing: .12em; text-transform: uppercase; color: var(--olive-soft); margin-top: .6rem; }

/* ---------- Pricing ---------- */
.prices { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1rem, 2vw, 1.6rem); align-items: stretch; }
.price {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: clamp(1.3rem, 2.4vw, 1.9rem); display: flex; flex-direction: column;
}
.price--featured { border: 2px solid var(--olive-deep); box-shadow: var(--shadow); position: relative; }
.price--featured::after {
  content: "Nejčastější volba"; position: absolute; top: -.85rem; left: 50%; transform: translateX(-50%);
  background: var(--brass); color: #2a2110; font-family: var(--mono); font-size: .64rem;
  letter-spacing: .14em; text-transform: uppercase; padding: .28rem .7rem; border-radius: 99px; white-space: nowrap;
}
.price-name { font-family: var(--serif); font-size: 1.5rem; color: var(--olive-deep); margin: 0 0 .2em; }
.price-for { font-size: .9rem; color: var(--muted); min-height: 3rem; }
.price-tag { font-family: var(--mono); font-size: 2rem; color: var(--olive); margin: 1rem 0 .1rem; letter-spacing: -.02em; }
.price-unit { font-family: var(--mono); font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); }
.price ul { list-style: none; margin: 1.3rem 0; padding: 0; display: grid; gap: .55rem; font-size: .95rem; }
.price ul li { padding-left: 1.4rem; position: relative; }
.price ul li::before { content: "✓"; position: absolute; left: 0; color: var(--brass); font-size: .9rem; }
.price .btn { margin-top: auto; }

.table-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); }
table { width: 100%; border-collapse: collapse; font-size: .95rem; min-width: 520px; }
caption { text-align: left; font-family: var(--mono); font-size: .72rem; letter-spacing: .16em; text-transform: uppercase; color: var(--muted); padding: 1rem 1.1rem .4rem; }
th, td { text-align: left; padding: .85rem 1.1rem; border-bottom: 1px solid var(--line); vertical-align: top; }
thead th { font-family: var(--mono); font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; color: var(--olive-deep); background: var(--paper); }
tbody tr:last-child td { border-bottom: none; }
td.num { font-family: var(--mono); white-space: nowrap; color: var(--olive); }

/* ---------- Accordion ---------- */
.acc { border-top: 1px solid var(--line-strong); }
.acc-item { border-bottom: 1px solid var(--line); }
.acc-btn {
  width: 100%; background: none; border: none; cursor: pointer; text-align: left;
  font-family: var(--serif); font-size: 1.1rem; color: var(--olive-deep);
  padding: 1.1rem 2.5rem 1.1rem 0; position: relative;
}
.acc-btn::after {
  content: "+"; position: absolute; right: .3rem; top: 50%; transform: translateY(-50%);
  font-family: var(--mono); color: var(--brass); font-size: 1.2rem;
}
.acc-btn[aria-expanded="true"]::after { content: "–"; }
.acc-panel { display: none; padding: 0 clamp(0px, 3vw, 3rem) 1.3rem 0; color: var(--muted); font-size: .98rem; }
.acc-panel.is-open { display: block; }

/* ---------- Quote ---------- */
.quote {
  font-family: var(--serif); font-size: clamp(1.25rem, 2.6vw, 1.75rem); font-style: italic;
  line-height: 1.35; color: var(--olive-deep); border-left: 3px solid var(--brass);
  padding-left: clamp(1rem, 2.5vw, 2rem); margin: 0;
}
.quote cite { display: block; font-family: var(--mono); font-style: normal; font-size: .72rem; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); margin-top: 1rem; }

/* ---------- Form ---------- */
.form { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: clamp(1.3rem, 3vw, 2.2rem); }
.field { margin-bottom: 1.2rem; }
.field label { display: block; font-size: .9rem; font-weight: 700; margin-bottom: .35rem; color: var(--olive-deep); }
.field input, .field select, .field textarea {
  width: 100%; font-family: var(--sans); font-size: 1rem; color: var(--ink);
  background: var(--ivory); border: 1px solid var(--line-strong); border-radius: var(--radius);
  padding: .7rem .85rem;
}
.field textarea { min-height: 140px; resize: vertical; }
.field .hint { font-size: .82rem; color: var(--muted); margin-top: .3rem; }
.field.is-error input, .field.is-error select, .field.is-error textarea { border-color: #9c3b28; background: #fdf3f0; }
.err { display: none; color: #9c3b28; font-size: .84rem; margin-top: .3rem; }
.field.is-error .err { display: block; }
.check { display: grid; grid-template-columns: 1.4rem 1fr; gap: .7rem; align-items: start; font-size: .9rem; color: var(--muted); }
.check input { width: 1.15rem; height: 1.15rem; margin-top: .25rem; accent-color: var(--olive); }
.form-note { font-size: .84rem; color: var(--muted); margin-top: 1rem; }
.form-ok {
  display: none; margin-top: 1.2rem; padding: 1rem 1.2rem; border-left: 3px solid var(--olive);
  background: var(--paper); font-size: .95rem;
}
.form-ok.is-visible { display: block; }

/* ---------- Contact list ---------- */
.dl { display: grid; gap: 1.1rem; margin: 0; }
.dl > div { border-top: 1px solid var(--line); padding-top: .8rem; }
.dl dt { font-family: var(--mono); font-size: .68rem; letter-spacing: .16em; text-transform: uppercase; color: var(--brass); margin-bottom: .25rem; }
.dl dd { margin: 0; font-size: 1rem; }

/* ---------- Legal / prose ---------- */
.prose { max-width: 76ch; }
.prose h2 { margin-top: 2.4rem; font-size: clamp(1.35rem, 2.4vw, 1.7rem); }
.prose h3 { margin-top: 1.8rem; }
.prose ul, .prose ol { padding-left: 1.3rem; color: var(--muted); }
.prose li { margin-bottom: .5rem; }
.prose .updated { font-family: var(--mono); font-size: .74rem; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); }
.toc { background: var(--paper); border-radius: var(--radius); padding: 1.2rem 1.4rem; margin: 1.6rem 0 2.4rem; }
.toc p { font-family: var(--mono); font-size: .7rem; letter-spacing: .16em; text-transform: uppercase; color: var(--olive-deep); margin-bottom: .6rem; }
.toc ol { margin: 0; padding-left: 1.2rem; font-size: .95rem; }

/* ---------- Page header ---------- */
.page-head { padding-block: clamp(2.5rem, 5vw, 4rem) clamp(1.5rem, 3vw, 2.5rem); border-bottom: 1px solid var(--line); }
.crumb { font-family: var(--mono); font-size: .7rem; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); margin-bottom: 1.2rem; }
.crumb a { color: var(--muted); text-decoration: none; }
.crumb a:hover { color: var(--brass); }

/* ---------- CTA band ---------- */
.band { background: var(--olive-deep); color: var(--ivory); border-radius: var(--radius); padding: clamp(1.6rem, 4vw, 3rem); display: grid; grid-template-columns: 1.4fr .6fr; gap: var(--gap); align-items: center; }
.band h2 { color: var(--ivory); margin-bottom: .4em; }
.band p { color: rgba(246, 241, 230, .8); margin: 0; }
.band .btn { background: var(--brass); border-color: var(--brass); color: #2a2110; }
.band .btn:hover { background: #c1a05a; border-color: #c1a05a; }

/* ---------- Footer ---------- */
.site-foot { background: var(--olive-deep); color: rgba(246, 241, 230, .74); padding-block: clamp(2.5rem, 5vw, 4rem) 1.5rem; font-size: .93rem; }
.foot-grid { display: grid; grid-template-columns: 1.4fr .8fr .8fr 1fr; gap: var(--gap); }
.site-foot h4 { color: var(--ivory); font-family: var(--mono); font-size: .7rem; letter-spacing: .18em; text-transform: uppercase; margin-bottom: 1rem; }
.site-foot a { color: rgba(246, 241, 230, .78); text-decoration: none; }
.site-foot a:hover { color: #d8c79a; text-decoration: underline; }
.foot-list { list-style: none; margin: 0; padding: 0; display: grid; gap: .55rem; }
.foot-brand svg { width: 40px; height: 40px; margin-bottom: .9rem; }
.foot-bottom { margin-top: clamp(2rem, 4vw, 3rem); padding-top: 1.2rem; border-top: 1px solid rgba(246, 241, 230, .18); display: flex; flex-wrap: wrap; gap: .6rem 1.6rem; justify-content: space-between; font-family: var(--mono); font-size: .7rem; letter-spacing: .06em; }
.disclaimer { font-size: .8rem; color: rgba(246, 241, 230, .58); max-width: 80ch; margin-top: 1rem; }

/* ---------- Cookie banner ---------- */
.cookie {
  position: fixed; inset: auto 1rem 1rem 1rem; z-index: 120; max-width: 44rem; margin-inline: auto;
  background: var(--white); border: 1px solid var(--line-strong); border-radius: var(--radius);
  box-shadow: 0 24px 50px -20px rgba(34, 38, 28, .5); padding: 1.3rem 1.4rem;
  display: none;
}
.cookie.is-visible { display: block; }
.cookie h4 { font-family: var(--serif); font-size: 1.15rem; margin-bottom: .4em; }
.cookie p { font-size: .9rem; color: var(--muted); margin-bottom: 1rem; }
.cookie-actions { display: flex; flex-wrap: wrap; gap: .6rem; }
.cookie-prefs { display: none; border-top: 1px solid var(--line); margin-top: 1rem; padding-top: 1rem; }
.cookie-prefs.is-open { display: block; }
.cookie-prefs .check { margin-bottom: .8rem; }
.cookie-status { font-family: var(--mono); font-size: .72rem; letter-spacing: .08em; color: var(--olive); margin-top: .8rem; }

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

/* ---------- To top ---------- */
.to-top {
  position: fixed; right: 1rem; bottom: 1rem; z-index: 80; width: 2.8rem; height: 2.8rem;
  border-radius: 50%; border: 1px solid var(--line-strong); background: var(--white);
  color: var(--olive-deep); font-family: var(--mono); cursor: pointer; display: none;
}
.to-top.is-visible { display: block; }

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .hero-grid, .split--7-5, .split--5-7, .split--half { grid-template-columns: 1fr; }
  .split--offset > *:nth-child(2) { margin-top: 0; }
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .prices { grid-template-columns: 1fr; }
  .price--featured::after { left: 1.5rem; transform: none; }
  .foot-grid { grid-template-columns: 1fr 1fr; }
  .band { grid-template-columns: 1fr; }
}

@media (max-width: 780px) {
  .nav-toggle { display: block; }
  .nav {
    display: none; position: absolute; left: 0; right: 0; top: 100%;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--ivory); border-bottom: 1px solid var(--line-strong); padding: .6rem clamp(1.1rem, 4vw, 2.5rem) 1.4rem;
  }
  .nav.is-open { display: flex; }
  .nav a { padding: .8rem 0; border-bottom: 1px solid var(--line); }
  .nav .btn { margin-top: .9rem; border-bottom: 1px solid var(--olive-deep); }
  .site-head .head-row { position: relative; }
}

@media (max-width: 620px) {
  body { font-size: 16px; }
  .grid--2, .grid--3, .grid--4 { grid-template-columns: 1fr; }
  .step { grid-template-columns: 1fr; gap: .4rem; }
  .foot-grid { grid-template-columns: 1fr; }
  .strip .wrap { justify-content: flex-start; }
}

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

@media print {
  .site-head, .site-foot, .cookie, .to-top, .strip { display: none; }
  body { background: #fff; }
}
