:root {
  color-scheme: light;
  --bg: oklch(0.965 0.016 95);
  --paper: oklch(0.985 0.01 95);
  --surface: oklch(0.995 0.004 95);
  --surface-2: oklch(0.94 0.02 110);
  --ink: oklch(0.22 0.03 155);
  --ink-soft: oklch(0.36 0.025 150);
  --muted: oklch(0.48 0.02 145);
  --line: oklch(0.86 0.02 110);
  --line-strong: oklch(0.78 0.03 140);
  --accent: oklch(0.4 0.08 150);
  --accent-dark: oklch(0.32 0.07 150);
  --accent-soft: oklch(0.93 0.03 145);
  --signal: oklch(0.78 0.1 90);
  --signal-dark: oklch(0.42 0.08 90);
  --graphite: oklch(0.2 0.03 155);
  --graphite-2: oklch(0.26 0.03 155);
  --radius: 14px;
  --radius-small: 9px;
  --container: min(1180px, calc(100% - 40px));
  --focus-ring: color-mix(in oklch, var(--accent) 58%, white);
}

* { box-sizing: border-box; scrollbar-width: thin; scrollbar-color: rgba(0, 0, 0, 0.15) transparent; }
*::-webkit-scrollbar { width: 6px; height: 6px; }
*::-webkit-scrollbar-track { background: transparent; }
*::-webkit-scrollbar-thumb { background: rgba(0, 0, 0, 0.15); border-radius: 3px; }

html {
  scroll-behavior: smooth;
  background: var(--bg);
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 0% 0%, color-mix(in oklch, var(--accent-soft) 55%, transparent), transparent 28rem),
    linear-gradient(180deg, var(--bg) 0%, var(--paper) 42%, var(--bg) 100%);
  color: var(--ink);
  font-family: "Manrope", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
::selection { background: var(--accent); color: white; }

.page { min-height: 100dvh; overflow: clip; }
.container { width: var(--container); margin: 0 auto; min-width: 0; }

.contact-strip {
  background: var(--graphite);
  color: oklch(0.97 0.005 80);
  font-size: 14px;
}
.contact-strip .container {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 9px 0;
}
.contact-strip a {
  color: white;
  text-decoration: underline;
  text-decoration-color: color-mix(in oklch, white 40%, transparent);
  text-underline-offset: 4px;
}
.contact-strip span,
.footer-grid span { min-width: 0; overflow-wrap: anywhere; }

.phone-inline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.language-badge {
  min-width: 31px;
  height: 22px;
  display: inline-grid;
  place-items: center;
  border-radius: 999px;
  background: var(--signal);
  color: var(--graphite);
  font-size: 12px;
  font-weight: 950;
  line-height: 1;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: color-mix(in oklch, var(--paper) 92%, transparent);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.nav {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  color: var(--ink);
  font-size: clamp(16px, 1.6vw, 22px);
  font-weight: 920;
  letter-spacing: -0.03em;
  line-height: 1;
}
.brand-mark {
  width: 34px;
  height: 22px;
  position: relative;
  flex: 0 0 auto;
  border: 2px solid currentColor;
  border-radius: 4px;
  background: var(--accent);
}
.brand-mark::before,
.brand-mark::after {
  content: "";
  position: absolute;
  bottom: 4px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: currentColor;
}
.brand-mark::before { left: 7px; }
.brand-mark::after { right: 7px; }
.brand span:last-child { overflow-wrap: anywhere; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 20px;
  color: var(--ink-soft);
  font-size: 15px;
  white-space: nowrap;
}
.nav-links a { position: relative; padding: 24px 0; }
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 18px;
  height: 2px;
  transform: scaleX(0);
  transform-origin: left;
  background: var(--accent);
  transition: transform 180ms ease-out;
}
.nav-links a:hover,
.nav-links a:focus-visible { color: var(--ink); }
.nav-links a:hover::after,
.nav-links a:focus-visible::after { transform: scaleX(1); }

.nav-actions {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-left: auto;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line-strong);
  border-radius: 10px;
  background: var(--surface);
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--ink);
}

.language-switch {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  padding: 3px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: color-mix(in oklch, var(--surface) 82%, transparent);
}
.lang-link {
  min-width: 34px;
  min-height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: var(--ink-soft);
  font-size: 13px;
  font-weight: 900;
  line-height: 1;
}
.lang-link.is-active { background: var(--ink); color: white; }

.button {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 19px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
  transition: transform 160ms ease-out, background 160ms ease-out, border-color 160ms ease-out;
}
.button:active { transform: translateY(1px); }
.button:focus-visible,
a:focus-visible,
summary:focus-visible,
input:focus-visible,
textarea:focus-visible,
.nav-toggle:focus-visible {
  outline: 3px solid var(--focus-ring);
  outline-offset: 3px;
}
.button-primary {
  background: var(--accent);
  color: white;
  border-color: color-mix(in oklch, var(--accent-dark) 55%, transparent);
}
.button-primary:hover { background: var(--accent-dark); }
.button-secondary {
  background: transparent;
  color: var(--ink);
  border-color: var(--line-strong);
}
.button-secondary:hover {
  border-color: var(--accent-dark);
  background: color-mix(in oklch, var(--accent-soft) 60%, transparent);
}

.hero {
  position: relative;
  isolation: isolate;
  min-height: min(680px, calc(100dvh - 112px));
  display: grid;
  align-items: center;
  padding: clamp(56px, 8vw, 96px) 0 clamp(40px, 5vw, 64px);
  color: white;
  background:
    linear-gradient(90deg, color-mix(in oklch, var(--graphite) 92%, transparent) 0%, color-mix(in oklch, var(--graphite) 72%, transparent) 42%, color-mix(in oklch, var(--graphite) 26%, transparent) 74%),
    linear-gradient(180deg, color-mix(in oklch, black 22%, transparent), color-mix(in oklch, black 42%, transparent)),
    url("/images/hero-cassettes.jpg") center right / cover no-repeat;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(180deg, transparent 74%, color-mix(in oklch, var(--bg) 92%, transparent));
  pointer-events: none;
}
.hero > .container { position: relative; z-index: 1; }
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 760px);
  gap: clamp(24px, 4vw, 42px);
}
.hero-copy { max-width: 760px; min-width: 0; }

.kicker {
  margin: 0 0 16px;
  color: var(--accent-dark);
  font-size: 15px;
  font-weight: 850;
  letter-spacing: 0.02em;
}
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { text-wrap: balance; letter-spacing: -0.025em; }
h1 {
  max-width: 14ch;
  margin-bottom: 20px;
  font-size: clamp(42px, 6.4vw, 78px);
  line-height: 0.94;
}
.hero .kicker { color: color-mix(in oklch, var(--accent) 70%, white); }
.hero-copy > p {
  max-width: 52ch;
  margin-bottom: 20px;
  color: color-mix(in oklch, white 86%, transparent);
  font-size: clamp(17px, 1.8vw, 20px);
  text-wrap: pretty;
}
.hero-formats {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  max-width: 680px;
  margin: 0 0 26px;
  padding: 0;
  list-style: none;
}
.hero-formats li {
  padding: 7px 11px;
  border: 1px solid color-mix(in oklch, white 28%, transparent);
  border-radius: 999px;
  background: color-mix(in oklch, var(--graphite) 44%, transparent);
  color: white;
  font-size: 14px;
  font-weight: 800;
  line-height: 1;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }
.hero .button-secondary {
  color: white;
  border-color: color-mix(in oklch, white 58%, transparent);
  background: color-mix(in oklch, var(--graphite) 36%, transparent);
}
.hero .button-secondary:hover {
  border-color: white;
  background: color-mix(in oklch, white 12%, transparent);
}

.service-ledger { background: var(--surface); }
.ledger-row { display: grid; grid-template-columns: repeat(4, 1fr); }
.ledger-row > div {
  min-height: 112px;
  min-width: 0;
  padding: 24px 22px;
  border-right: 1px solid var(--line);
}
.ledger-row > div:last-child { border-right: 0; }
.ledger-row strong { display: block; margin-bottom: 8px; font-size: 18px; }
.ledger-row span { color: var(--muted); font-size: 14px; }

.lithuania-panel-wrap {
  padding: clamp(42px, 5vw, 66px) 0;
  background: linear-gradient(135deg, color-mix(in oklch, var(--accent-soft) 82%, white), var(--paper));
}
.lithuania-panel {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(24px, 5vw, 58px);
  align-items: start;
  padding: clamp(28px, 4vw, 42px);
  border-radius: var(--radius);
  background: var(--graphite);
  color: white;
}
.lithuania-panel h2 {
  max-width: 16ch;
  margin-bottom: 0;
  font-size: clamp(30px, 4.2vw, 52px);
  line-height: 0.98;
}
.lithuania-panel-copy {
  display: grid;
  gap: 14px;
  color: color-mix(in oklch, white 80%, transparent);
  font-size: 18px;
}
.lithuania-panel .kicker { color: color-mix(in oklch, var(--accent) 70%, white); }
.lithuania-panel-copy strong { color: white; }
.lithuania-panel-copy p { max-width: 70ch; margin-bottom: 0; text-wrap: pretty; }

section { padding: clamp(48px, 6vw, 78px) 0; }
.section-head { max-width: 760px; margin-bottom: 28px; }
.section-head h2 {
  margin-bottom: 16px;
  font-size: clamp(32px, 4.2vw, 58px);
  line-height: 0.98;
}
.section-head p {
  max-width: 67ch;
  color: var(--ink-soft);
  font-size: 18px;
  text-wrap: pretty;
}

.format-board {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 18px;
  align-items: stretch;
}
.format-board > *,
.format-row > *,
.price-group > *,
.price-line > *,
.seo-layout > *,
.contact-panel > *,
.steps > *,
.terms > *,
.footer-grid > * { min-width: 0; }

.format-intro {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 520px;
  padding: 30px;
  border-radius: var(--radius);
  background: var(--graphite);
  color: var(--paper);
}
.format-intro h3 {
  margin-bottom: 18px;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1;
}
.format-intro p { color: color-mix(in oklch, white 76%, transparent); text-wrap: pretty; }
.format-intro .button { width: max-content; }

.format-matrix {
  display: grid;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--surface);
}
.format-row {
  display: grid;
  grid-template-columns: 132px 1fr auto;
  gap: 22px;
  align-items: center;
  padding: 18px;
  border-bottom: 1px solid var(--line);
}
.format-row:last-child { border-bottom: 0; }
.format-row img {
  width: 132px;
  height: 96px;
  object-fit: contain;
  padding: 8px;
  border-radius: var(--radius-small);
  background: var(--surface-2);
}
.format-row h3 { margin-bottom: 4px; font-size: 22px; line-height: 1.08; }
.format-row p { margin-bottom: 0; color: var(--muted); max-width: 58ch; }
.format-row span {
  min-width: 140px;
  color: var(--accent-dark);
  font-weight: 850;
  text-align: right;
}

.article-hub { background: var(--surface); }
.article-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  background: transparent;
  overflow: visible;
  border-radius: 0;
}
.article-card {
  min-height: 180px;
  display: grid;
  align-content: space-between;
  gap: 20px;
  padding: 24px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: background 160ms ease-out, transform 160ms ease-out, border-color 160ms ease-out;
}
.article-card:hover,
.article-card:focus-visible {
  background: color-mix(in oklch, var(--accent-soft) 58%, white);
  transform: translateY(-2px);
}
.article-card strong {
  display: block;
  margin-bottom: 8px;
  color: var(--ink);
  font-size: 22px;
  line-height: 1.05;
  letter-spacing: -0.02em;
}
.article-card span { color: var(--ink-soft); font-size: 15px; text-wrap: pretty; }
.article-card em { color: var(--accent-dark); font-style: normal; font-weight: 900; }

.memory-block { background: var(--accent-dark); color: white; }
.memory-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(34px, 6vw, 74px);
  align-items: center;
}
.memory-block h2 {
  margin-bottom: 0;
  font-size: clamp(36px, 5.4vw, 72px);
  line-height: 0.94;
}
.memory-copy { display: grid; gap: 20px; font-size: 19px; }
.memory-copy p { margin-bottom: 0; color: white; text-wrap: pretty; }

.price-ledger {
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--surface);
}
.price-group {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  border-bottom: 1px solid var(--line-strong);
}
.price-group:last-child { border-bottom: 0; }
.price-topic {
  padding: 30px;
  background: var(--surface-2);
  border-right: 1px solid var(--line);
}
.price-topic h3 { margin-bottom: 10px; font-size: 28px; line-height: 1.05; }
.price-topic p { margin-bottom: 0; color: var(--ink-soft); }
.price-lines { display: grid; }
.price-line {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  align-items: center;
  padding: 22px 26px;
  border-bottom: 1px solid var(--line);
}
.price-line:last-child { border-bottom: 0; }
.price-line strong { display: block; margin-bottom: 4px; font-size: 18px; }
.price-line span { color: var(--muted); font-size: 15px; }
.price-line em {
  color: var(--accent-dark);
  font-style: normal;
  font-size: 23px;
  font-weight: 900;
  white-space: nowrap;
}

.terms {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--line);
}
.terms div { padding: 22px; background: var(--surface); color: var(--ink-soft); }
.terms strong { display: block; color: var(--ink); margin-bottom: 6px; }

.process { background: var(--graphite); color: var(--paper); }
.process .section-head p { color: color-mix(in oklch, white 75%, transparent); }
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  border: 1px solid color-mix(in oklch, white 18%, transparent);
  border-radius: var(--radius);
  overflow: hidden;
  background: color-mix(in oklch, white 18%, transparent);
}
.step {
  min-height: 280px;
  padding: 28px;
  background: var(--graphite-2);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.step-number {
  width: 42px;
  height: 42px;
  display: inline-grid;
  place-items: center;
  margin-bottom: 42px;
  border-radius: 50%;
  background: var(--accent);
  color: white;
  font-weight: 900;
}
.step h3 { margin-bottom: 12px; font-size: 26px; line-height: 1.04; }
.step p { margin-bottom: 0; color: color-mix(in oklch, white 72%, transparent); text-wrap: pretty; }

.seo-layout {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 50px;
  align-items: start;
}
.seo-aside {
  position: sticky;
  top: 104px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}
.seo-aside strong { display: block; margin-bottom: 12px; font-size: 24px; line-height: 1.1; }
.seo-aside p { margin-bottom: 0; color: var(--muted); }
.seo-copy { display: grid; gap: 22px; font-size: 18px; color: var(--ink-soft); }
.seo-copy p { max-width: 72ch; margin-bottom: 0; text-wrap: pretty; }

.faq { display: grid; gap: 10px; }
.faq details {
  border: 1px solid var(--line);
  border-radius: var(--radius-small);
  background: var(--surface);
}
.faq summary {
  cursor: pointer;
  padding: 22px 24px;
  font-weight: 850;
  list-style: none;
}
.faq summary::-webkit-details-marker { display: none; }
.faq details[open] summary { color: var(--accent-dark); }
.faq p { margin: 0; padding: 0 24px 24px; color: var(--ink-soft); max-width: 76ch; }

.contact { padding-bottom: 0; }
.contact-panel {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--surface);
}
.contact-info {
  padding: clamp(28px, 5vw, 44px);
  background: var(--accent-soft);
  border-right: 1px solid var(--line);
}
.contact-info h2 {
  margin-bottom: 14px;
  font-size: clamp(32px, 4.6vw, 60px);
  line-height: 0.95;
}
.contact-info > p { color: var(--ink-soft); text-wrap: pretty; }
.contact-block {
  padding-top: 22px;
  margin-top: 22px;
  border-top: 1px solid color-mix(in oklch, var(--accent-dark) 22%, transparent);
}
.contact-block strong { display: block; margin-bottom: 6px; }
.contact-block p { margin-bottom: 0; color: var(--ink-soft); }
.contact-block a { text-decoration: underline; text-underline-offset: 4px; }
.contact-form { padding: clamp(28px, 5vw, 44px); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { display: grid; gap: 8px; }
.field.full { grid-column: 1 / -1; }
label { color: var(--ink); font-weight: 850; }
input, textarea {
  width: 100%;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-small);
  background: var(--paper);
  color: var(--ink);
  padding: 14px;
  outline: none;
}
textarea { min-height: 138px; resize: vertical; }
input::placeholder, textarea::placeholder {
  color: color-mix(in oklch, var(--ink-soft) 82%, transparent);
}
.checks {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}
.checks label {
  min-height: 46px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius-small);
  background: var(--paper);
  font-weight: 700;
}
.checks input { width: 18px; height: 18px; padding: 0; accent-color: var(--accent-dark); }
.form-actions { display: flex; align-items: center; gap: 14px; margin-top: 22px; flex-wrap: wrap; }
.form-status { color: var(--muted); font-size: 14px; }
.form-status.is-success { color: var(--signal-dark); font-weight: 800; }
.form-status.is-error { color: var(--accent-dark); font-weight: 800; }

footer {
  margin-top: clamp(42px, 5vw, 72px);
  padding: 34px 0;
  background: var(--graphite);
  color: color-mix(in oklch, white 72%, transparent);
}
.footer-grid {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
  font-size: 14px;
}
.footer-grid a {
  color: white;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

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

@media (max-width: 980px) {
  .nav-toggle { display: inline-block; }
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 8px 20px 18px;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    white-space: normal;
  }
  .nav-links.is-open { display: flex; }
  .nav-links a { padding: 12px 0; }
  .nav-links a::after { display: none; }
  .hero, .lithuania-panel, .format-board, .memory-grid, .price-group, .seo-layout, .contact-panel {
    grid-template-columns: 1fr;
  }
  .hero { min-height: auto; }
  .ledger-row, .steps, .terms { grid-template-columns: repeat(2, 1fr); }
  .ledger-row > div:nth-child(2n) { border-right: 0; }
  .ledger-row > div:nth-child(-n + 2) { border-bottom: 1px solid var(--line); }
  .format-intro { min-height: 320px; }
  .price-topic { border-right: 0; border-bottom: 1px solid var(--line); }
  .seo-aside { position: static; }
  .contact-info { border-right: 0; border-bottom: 1px solid var(--line); }
  .nav-actions .button { display: none; }
}

@media (max-width: 720px) {
  .contact-strip .container { flex-direction: column; gap: 6px; }
  .hero-copy > p { max-width: 100%; }
  .hero-formats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    max-width: 100%;
  }
  .hero-formats li {
    min-width: 0;
    display: grid;
    place-items: center;
    font-size: 13px;
    line-height: 1.15;
    white-space: normal;
    text-align: center;
  }
  .ledger-row, .steps, .terms, .form-grid, .checks { grid-template-columns: 1fr; }
  .ledger-row > div { border-right: 0; border-bottom: 1px solid var(--line); }
  .ledger-row > div:last-child { border-bottom: 0; }
  .format-row { grid-template-columns: 86px 1fr; gap: 14px; }
  .format-row img { width: 86px; height: 78px; }
  .format-row span { grid-column: 1 / -1; min-width: 0; text-align: left; }
  .price-line { grid-template-columns: 1fr; gap: 10px; }
  .price-line em { font-size: 22px; }
  .footer-grid { display: grid; }
}

@media (max-width: 540px) {
  .container {
    width: min(calc(100% - 28px), 100%);
    margin-left: 14px;
    margin-right: 14px;
  }
}

.grecaptcha-badge { visibility: hidden !important; }
.hp-field { position: absolute; left: -10000px; width: 1px; height: 1px; overflow: hidden; }
.recaptcha-note { margin: 14px 0 0; color: var(--muted); font-size: 12px; line-height: 1.45; max-width: 54ch; }
.recaptcha-note a { text-decoration: underline; text-underline-offset: 2px; }
.legal { padding: clamp(40px, 6vw, 72px) 0 80px; }
.legal .lead { font-size: 18px; color: var(--ink-soft); max-width: 60ch; }
.legal .prose p { max-width: 70ch; color: var(--ink-soft); }
.article-page { padding: clamp(40px, 6vw, 72px) 0 80px; }
.article-page .lead { font-size: 18px; color: var(--ink-soft); max-width: 62ch; }
.article-page .prose { max-width: 68ch; }
.article-page .prose h2 { margin-top: 1.6em; }
.article-page .prose p { color: var(--ink-soft); }

@media (max-width: 900px) {
  .article-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 560px) {
  .article-grid { grid-template-columns: 1fr; }
}
