/* === Riga Local Host — design tokens === */
:root {
  --bg: #F4F1E8;
  --bg-soft: #ECE7D7;
  --ink: #0D0D0D;
  --ink-2: #1A1A1A;
  --muted: #6B6960;
  --line: #1A1A1A;
  --line-soft: #D9D2BE;
  --accent: #E8B547;
  --accent-ink: #0D0D0D;
  --accent-text: #8B5A0A;
  --accent-deep: #B07A12;
  --dark: #0D0D0D;
  --paper: #FAF8F2;
  --pop: #F5C842;        /* warm signal yellow for callouts */
  --pop-2: #FF5B2E;      /* orange for stag/hen energy moments */
  --ok: #0F8A5F;
  --danger: #C0392B;

  --radius-s: 8px;
  --radius-m: 14px;
  --radius-l: 22px;
  --radius-xl: 36px;

  --pad-page: clamp(20px, 4vw, 56px);
  --pad-section: clamp(64px, 9vw, 140px);

  --max: 1400px;

  --font-display: "Bricolage Grotesque", ui-serif, Georgia, serif;
  --font-body: "Hanken Grotesk", "Bricolage Grotesque", system-ui, sans-serif;
  --font-mono: "Hanken Grotesk", "Bricolage Grotesque", system-ui, sans-serif;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.5;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }

/* Display type */
.display {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 0.95;
  font-variation-settings: "wdth" 100;
  text-wrap: balance;
}
.display.wide { font-variation-settings: "wdth" 110; }
.display.narrow { font-variation-settings: "wdth" 85; }

.eyebrow {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
}
.eyebrow .dot {
  display: inline-block;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
  margin-right: 8px;
  vertical-align: middle;
  transform: translateY(-1px);
}

/* === Page chrome === */
.shell {
  max-width: var(--max);
  margin: 0 auto;
  padding-left: var(--pad-page);
  padding-right: var(--pad-page);
}

.nav {
  position: sticky; top: 0; z-index: 50;
  background: color-mix(in oklab, var(--bg) 88%, transparent);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent;
  transition: border-color .2s;
}
.nav.scrolled { border-bottom-color: var(--line-soft); }
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 14px; padding-bottom: 14px;
  gap: 24px;
}
.wordmark {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 19px;
  letter-spacing: -0.02em;
}
.wordmark-mark {
  width: 26px; height: 26px;
  border-radius: 7px;
  background: var(--ink);
  color: var(--bg);
  display: inline-grid; place-items: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: -0.04em;
  position: relative;
  overflow: hidden;
}
.wordmark-mark::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 9px;
  background: var(--accent);
}
.nav-links {
  display: flex; gap: 28px;
  font-size: 14px;
  color: var(--ink);
}
.nav-links a { opacity: .75; transition: opacity .2s; }
.nav-links a:hover { opacity: 1; }
@media (max-width: 800px) { .nav-links { display: none; } }

/* Language switcher */
.nav-right { display: flex; align-items: center; gap: 14px; }
.lang-switch {
  display: inline-flex;
  border: 1px solid var(--line-soft);
  border-radius: 999px;
  padding: 3px;
  background: var(--paper);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
}
.lang-switch button {
  background: transparent;
  border: none;
  padding: 6px 10px;
  border-radius: 999px;
  color: var(--muted);
  font: inherit;
  cursor: pointer;
  transition: background .15s, color .15s;
}
.lang-switch button.active {
  background: var(--ink);
  color: var(--paper);
}
.lang-switch button:hover:not(.active) { color: var(--ink); }

/* === Buttons === */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: -0.005em;
  transition: transform .15s ease, background .15s, color .15s, border-color .15s;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: var(--ink);
  color: var(--bg);
}
.btn-primary:hover { background: var(--accent-text); color: var(--bg); }

.btn-accent {
  background: var(--accent);
  color: var(--accent-ink);
}
.btn-accent:hover { background: var(--accent-deep); color: #fff; }

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.btn-ghost:hover { background: var(--ink); color: var(--bg); }

.btn-ghost-light {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,.4);
}
.btn-ghost-light:hover { background: #fff; color: var(--ink); }

.btn .arrow {
  display: inline-block;
  transition: transform .2s;
}
.btn:hover .arrow { transform: translateX(3px); }

/* === Sections === */
.section {
  padding-top: var(--pad-section);
  padding-bottom: var(--pad-section);
}
.section-dark {
  background: var(--ink);
  color: #F4F1E8;
}
.section-paper { background: var(--paper); }
.section-accent {
  background: var(--accent);
  color: var(--accent-ink);
}

.section-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(24px, 5vw, 80px);
  align-items: end;
  margin-bottom: clamp(40px, 6vw, 72px);
}
@media (max-width: 800px) {
  .section-head { grid-template-columns: 1fr; align-items: start; }
}
.section-head .lead p {
  max-width: 46ch;
  color: var(--muted);
  font-size: 17px;
  margin: 0;
}
.section-dark .section-head .lead p { color: rgba(244,241,232,.7); }
.section-accent .section-head .lead p { color: rgba(255,255,255,.85); }

.h-title {
  font-size: clamp(40px, 6.2vw, 88px);
  margin: 0;
}

/* === Hero === */
.hero { padding-top: 28px; padding-bottom: 0; position: relative; }
.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: clamp(24px, 4vw, 56px);
  align-items: end;
  min-height: calc(100vh - 200px);
  padding-bottom: 56px;
}
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; min-height: auto; padding-bottom: 32px; }
}
.hero-headline {
  font-size: clamp(56px, 10.5vw, 168px);
  letter-spacing: -0.045em;
  line-height: 0.88;
  margin: 24px 0 0 0;
}
.hero-headline em {
  font-style: normal;
  color: var(--accent-text);
  font-variation-settings: "wdth" 80;
  display: inline-block;
}
.hero-headline .strike {
  position: relative;
  display: inline-block;
}
.hero-headline .strike::after {
  content: "";
  position: absolute;
  left: -2%;
  right: -2%;
  top: 54%;
  height: 0.09em;
  background: currentColor;
  transform: rotate(-2deg);
}
.hero-sub {
  max-width: 38ch;
  font-size: clamp(17px, 1.4vw, 21px);
  line-height: 1.45;
  color: var(--muted);
  margin: 32px 0 0 0;
}
.hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 32px; }
.hero-side {
  position: relative;
  min-height: 420px;
  align-self: stretch;
  padding-bottom: 12px;
  display: flex; flex-direction: column;
}
.hero-img {
  flex: 1;
  border-radius: var(--radius-l);
  background: var(--bg-soft);
  border: 1px solid var(--line-soft);
  overflow: hidden;
  position: relative;
  min-height: 420px;
}
.hero-img img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-img-tag {
  position: absolute;
  left: 18px; bottom: 18px;
  background: var(--ink);
  color: var(--bg);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 7px 11px;
  border-radius: 999px;
}
.hero-pill-row {
  margin-top: 16px;
  display: flex; gap: 8px; flex-wrap: wrap;
}
.hero-pill {
  font-size: 13px;
  padding: 7px 13px;
  border-radius: 999px;
  border: 1px solid var(--line-soft);
  background: var(--paper);
  color: var(--ink);
  font-weight: 500;
}
.hero-pill.lead {
  background: var(--ink);
  color: var(--bg);
  border-color: var(--ink);
}

.hero-marquee {
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
  padding: 18px 0;
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  display: flex; align-items: center; gap: 42px;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 24px;
}
.hero-marquee .item { display: inline-flex; align-items: center; gap: 12px; }
.hero-marquee .item .dot {
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--accent);
}

/* "Placeholder image" common look */
.placeholder-img {
  background: var(--bg-soft);
  border: 1px dashed var(--line-soft);
  border-radius: var(--radius-l);
  display: grid;
  place-items: center;
  text-align: center;
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 24px;
  position: relative;
  overflow: hidden;
}
.placeholder-img.dark {
  background: #161616;
  border-color: #2A2A2A;
  color: #777;
}
.placeholder-img .pi-corner {
  position: absolute;
  top: 12px; left: 12px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  color: var(--muted);
  opacity: .7;
}
.placeholder-img .pi-x {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top right, transparent calc(50% - 0.5px), color-mix(in oklab, var(--muted) 25%, transparent) 50%, transparent calc(50% + 0.5px)),
    linear-gradient(to top left, transparent calc(50% - 0.5px), color-mix(in oklab, var(--muted) 25%, transparent) 50%, transparent calc(50% + 0.5px));
  opacity: .35;
  pointer-events: none;
}
.placeholder-img .pi-label {
  position: relative;
  z-index: 1;
  background: var(--bg-soft);
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid var(--line-soft);
}
.placeholder-img.dark .pi-label { background: #161616; border-color: #2A2A2A; }

/* === Differentiator section === */
.diff-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-l);
  overflow: hidden;
}
@media (max-width: 800px) { .diff-grid { grid-template-columns: 1fr; } }
.diff-card {
  background: var(--ink);
  padding: 36px 32px 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-height: 280px;
}
.diff-card .num {
  font-family: var(--font-mono);
  font-size: 12px;
  color: rgba(244,241,232,.45);
  letter-spacing: 0.1em;
}
.diff-card h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 28px;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 0;
}
.diff-card p {
  color: rgba(244,241,232,.7);
  margin: 0;
  max-width: 32ch;
}
.diff-card .icon-wrap {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: rgba(255,255,255,.08);
  display: grid; place-items: center;
  margin-bottom: 8px;
  color: #fff;
}

/* === Services === */
.serv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
@media (max-width: 1000px) { .serv-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .serv-grid { grid-template-columns: 1fr; } }
.serv-card {
  background: var(--paper);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-m);
  padding: 28px 26px 26px;
  display: flex; flex-direction: column;
  gap: 12px;
  min-height: 200px;
  transition: transform .2s, background .2s, color .2s, border-color .2s;
}
.serv-card:hover {
  transform: translateY(-2px);
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
}
.serv-card:hover h3 { color: var(--paper); }
.serv-card:hover p { color: rgba(244,241,232,.75); }
.serv-card:hover .serv-icon { background: rgba(255,255,255,.14); color: #fff; }
.serv-icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: var(--bg-soft);
  display: grid; place-items: center;
  color: var(--ink);
  transition: background .2s, color .2s;
}
.serv-card h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 22px;
  letter-spacing: -0.015em;
  margin: 0;
}
.serv-card p {
  font-size: 15px;
  color: var(--muted);
  margin: 0;
}

/* === Who it's for === */
.who-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
@media (max-width: 900px) { .who-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .who-grid { grid-template-columns: 1fr; } }
.who-card {
  border-radius: var(--radius-m);
  padding: 24px 22px;
  min-height: 160px;
  display: flex; flex-direction: column; justify-content: space-between;
  gap: 16px;
  position: relative;
  overflow: hidden;
  background: var(--paper);
  border: 1px solid var(--line-soft);
  transition: transform .2s;
}
.who-card:hover { transform: translateY(-2px); }
.who-card.featured {
  background: var(--accent);
  color: var(--accent-ink);
  border-color: var(--accent);
  grid-column: span 2;
  grid-row: span 1;
}
.who-card.featured-dark {
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
}
.who-card .who-top {
  display: flex; justify-content: space-between; align-items: flex-start;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: .65;
}
.who-card h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(22px, 2vw, 30px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 0;
}
.who-card.featured h3 { font-size: clamp(28px, 3vw, 40px); }
.who-card .who-sub {
  font-size: 14px;
  opacity: .8;
  max-width: 32ch;
}

/* === How it works === */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--line-soft);
}
@media (max-width: 900px) { .steps { grid-template-columns: 1fr; } }
.step {
  padding: 36px 28px 36px 0;
  border-right: 1px solid var(--line-soft);
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.step:last-child { border-right: none; padding-right: 0; }
@media (max-width: 900px) {
  .step { border-right: none; border-bottom: 1px solid var(--line-soft); padding: 28px 0; }
  .step:last-child { border-bottom: none; }
}
.step-num {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--accent-text);
  letter-spacing: 0.1em;
}
.step h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 26px;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 0;
  max-width: 14ch;
}
.step p {
  font-size: 15px;
  color: var(--muted);
  margin: 0;
  max-width: 30ch;
}

/* === Form === */
.form-section { background: var(--ink); color: var(--bg); position: relative; overflow: hidden; }
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(32px, 6vw, 80px);
  align-items: start;
}
@media (max-width: 900px) { .form-grid { grid-template-columns: 1fr; } }

.form-pitch h2 {
  font-size: clamp(40px, 5vw, 72px);
  margin: 24px 0 24px 0;
}
.form-pitch h2 em {
  font-style: normal;
  color: var(--accent);
  font-variation-settings: "wdth" 80;
}
.form-pitch p {
  color: rgba(244,241,232,.7);
  max-width: 40ch;
  margin: 0 0 24px 0;
}
.form-trust {
  display: flex; flex-wrap: wrap; gap: 10px 24px;
  font-size: 14px;
  color: rgba(244,241,232,.6);
  margin-top: 32px;
}
.form-trust span { display: inline-flex; align-items: center; gap: 8px; }
.form-trust .tick {
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--accent);
  display: inline-grid; place-items: center;
  color: var(--accent-ink);
}

.form-card {
  background: var(--paper);
  color: var(--ink);
  border-radius: var(--radius-l);
  padding: clamp(24px, 3vw, 36px);
  position: relative;
}

.form-progress {
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 24px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  color: var(--muted);
}
.form-progress .step-dot {
  width: 28px; height: 28px;
  border-radius: 50%;
  border: 1px solid var(--line-soft);
  display: grid; place-items: center;
  font-size: 12px;
  font-family: var(--font-mono);
  background: var(--paper);
  transition: background .2s, color .2s, border-color .2s;
}
.form-progress .step-dot.active {
  background: var(--ink); color: var(--paper); border-color: var(--ink);
}
.form-progress .step-dot.done {
  background: var(--accent); color: var(--accent-ink); border-color: var(--accent);
}
.form-progress .step-line {
  flex: 1; height: 1px; background: var(--line-soft);
}
.form-progress .step-line.done { background: var(--accent); }

.form-step h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 26px;
  letter-spacing: -0.02em;
  margin: 0 0 8px 0;
}
.form-step .step-hint {
  color: var(--muted);
  font-size: 14px;
  margin: 0 0 22px 0;
}
.field { display: flex; flex-direction: column; gap: 8px; margin-bottom: 16px; }
.field label {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.01em;
}
.field input, .field textarea, .field select {
  font: inherit;
  font-size: 15px;
  padding: 13px 14px;
  border-radius: 10px;
  border: 1px solid var(--line-soft);
  background: var(--bg);
  color: var(--ink);
  outline: none;
  transition: border-color .15s, box-shadow .15s;
}
.field input:focus, .field textarea:focus, .field select:focus {
  border-color: var(--ink);
  box-shadow: 0 0 0 4px color-mix(in oklab, var(--accent) 20%, transparent);
}
.field textarea { resize: vertical; min-height: 88px; }
.field.invalid input, .field.invalid textarea, .field.invalid select {
  border-color: var(--danger);
  box-shadow: 0 0 0 4px color-mix(in oklab, var(--danger) 18%, transparent);
}
.field .err {
  font-size: 12px;
  color: var(--danger);
  margin-top: 2px;
}
.field-row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 12px;
}
@media (max-width: 500px) { .field-row { grid-template-columns: 1fr; } }

.choice-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  margin-bottom: 16px;
}
.choice {
  border: 1px solid var(--line-soft);
  background: var(--bg);
  padding: 13px 14px;
  border-radius: 10px;
  font-size: 14px;
  text-align: left;
  display: flex; align-items: center; gap: 10px;
  transition: border-color .15s, background .15s;
}
.choice:hover { border-color: var(--ink); }
.choice.selected {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--paper);
}
.choice .check {
  width: 18px; height: 18px;
  border-radius: 50%;
  border: 1.5px solid var(--line-soft);
  display: grid; place-items: center;
  flex-shrink: 0;
  transition: background .15s, border-color .15s;
}
.choice.selected .check { background: var(--accent); border-color: var(--accent); color: var(--accent-ink); }

.chip-grid {
  display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 16px;
}
.chip {
  font-size: 13px;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid var(--line-soft);
  background: var(--bg);
  transition: border-color .15s, background .15s, color .15s;
}
.chip:hover { border-color: var(--ink); }
.chip.selected {
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
}

.form-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-top: 12px;
}
.form-back {
  background: transparent;
  border: none;
  padding: 10px 0;
  font-size: 14px;
  color: var(--muted);
  display: inline-flex; align-items: center; gap: 6px;
}
.form-back:hover { color: var(--ink); }
.form-back:disabled { opacity: 0; pointer-events: none; }

.review {
  background: var(--bg);
  border: 1px solid var(--line-soft);
  border-radius: 12px;
  padding: 18px;
  margin-bottom: 18px;
  font-size: 14px;
}
.review-row {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 12px;
  padding: 6px 0;
  border-bottom: 1px dashed var(--line-soft);
}
.review-row:last-child { border-bottom: none; }
.review-row .k { color: var(--muted); font-size: 13px; }
.review-row .v { font-weight: 500; }

.success {
  text-align: center;
  padding: 24px 8px 8px;
}
.success-mark {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--accent-ink);
  display: grid; place-items: center;
  margin: 0 auto 18px;
}
.success h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 32px;
  letter-spacing: -0.02em;
  margin: 0 0 8px 0;
}
.success p {
  color: var(--muted);
  max-width: 36ch;
  margin: 0 auto 18px;
}

/* === FAQ === */
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: clamp(32px, 5vw, 80px);
  align-items: start;
}
@media (max-width: 800px) { .faq-grid { grid-template-columns: 1fr; } }

.faq-list { border-top: 1px solid var(--line-soft); }
.faq-item { border-bottom: 1px solid var(--line-soft); }
.faq-q {
  width: 100%;
  text-align: left;
  padding: 24px 0;
  background: transparent;
  border: none;
  display: flex; justify-content: space-between; align-items: center;
  gap: 24px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(19px, 1.6vw, 22px);
  letter-spacing: -0.015em;
  color: var(--ink);
  transition: color .15s;
}
.faq-q:hover { color: var(--accent-text); }
.faq-toggle {
  width: 32px; height: 32px;
  border-radius: 50%;
  border: 1px solid var(--line-soft);
  display: grid; place-items: center;
  flex-shrink: 0;
  transition: background .15s, color .15s, border-color .15s, transform .2s;
  background: transparent;
}
.faq-item.open .faq-toggle { background: var(--ink); color: var(--bg); border-color: var(--ink); transform: rotate(45deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.55;
}
.faq-a-inner { padding: 0 0 24px 0; max-width: 60ch; }
.faq-item.open .faq-a { max-height: 400px; }

/* === Footer === */
.footer {
  padding: 56px 0 32px;
  border-top: 1px solid var(--line-soft);
  font-size: 14px;
  color: var(--muted);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2.2fr 1fr 1fr 1fr;
  gap: 32px;
  margin-bottom: 40px;
  align-items: start;
}
@media (max-width: 800px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
.footer-logo-col img {
  width: 100%;
  max-width: 360px;
  height: auto;
  display: block;
}
.footer h4 {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink);
  margin: 0 0 14px 0;
}
.footer ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.footer a:hover { color: var(--ink); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  padding-top: 24px;
  border-top: 1px solid var(--line-soft);
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
@media (max-width: 600px) { .footer-bottom { flex-direction: column; align-items: flex-start; } }
.big-mark {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(80px, 18vw, 220px);
  letter-spacing: -0.04em;
  line-height: 0.9;
  margin: 48px 0 24px;
  color: var(--ink);
}

/* density */
[data-density="compact"] {
  --pad-section: clamp(48px, 7vw, 100px);
}
[data-density="compact"] .section-head { margin-bottom: clamp(28px, 4vw, 48px); }

/* tweak overrides — each accent declares its own ink (text-on-accent) and text (accent-as-text on cream) */
[data-accent="yellow"] { --accent: #E8B547; --accent-ink: #0D0D0D; --accent-text: #8B5A0A; --accent-deep: #B07A12; }
[data-accent="indigo"] { --accent: #1E3FFF; --accent-ink: #FFFFFF; --accent-text: #1E3FFF; --accent-deep: #0B1FA3; }
[data-accent="orange"] { --accent: #EA580C; --accent-ink: #FFFFFF; --accent-text: #EA580C; --accent-deep: #C2410C; }
[data-accent="green"]  { --accent: #15803D; --accent-ink: #FFFFFF; --accent-text: #15803D; --accent-deep: #166534; }

/* misc */
.kicker-row {
  display: flex; align-items: center; gap: 14px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}
.kicker-row .line { flex: 1; height: 1px; background: var(--line-soft); }

.tag-row { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 18px; }
.tag {
  font-size: 12px;
  padding: 6px 11px;
  border-radius: 999px;
  border: 1px solid currentColor;
  opacity: .65;
  font-family: var(--font-mono);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
