/* The Customs Desk - site styles */
:root {
  --ink: #16212E;
  --ink-2: #22324A;
  --ink-deep: #10192A;
  --paper: #F5F1E8;
  --paper-2: #EDE7DA;
  --stamp: #B8431E;
  --stamp-dark: #8F3314;
  --stamp-soft: #F0B8A4;
  --harbour: #2E5E57;
  --harbour-soft: #E3EEEA;
  --line: #D9D2C3;
  --text-2: #3A4452;
  --muted: #5A6270;
  --muted-on-ink: #B9C0CA;
  --serif: 'Instrument Serif', Georgia, serif;
  --sans: 'Hanken Grotesk', system-ui, -apple-system, sans-serif;
  --mono: 'IBM Plex Mono', ui-monospace, monospace;
  --gutter: 20px;
  --max: 1280px;
}
@media (min-width: 900px) { :root { --gutter: 48px; } }
@media (min-width: 1200px) { :root { --gutter: 80px; } }

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body { margin: 0; background: var(--paper); color: var(--ink); font-family: var(--sans); font-size: 17px; line-height: 1.55; -webkit-font-smoothing: antialiased; }
img { max-width: 100%; display: block; }
a { color: var(--stamp); }
a:hover { color: var(--stamp-dark); }
h1, h2, h3 { margin: 0; font-weight: 400; }
p { margin: 0; }
button { font: inherit; }
:focus-visible { outline: 2px solid var(--stamp); outline-offset: 2px; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }

.wrap { width: 100%; max-width: calc(var(--max) + 2 * var(--gutter)); margin: 0 auto; padding: 0 var(--gutter); }
.section { padding: 56px 0; }
@media (min-width: 900px) { .section { padding: 104px 0; } }
.section--tint { background: var(--paper-2); }
.section--ink { background: var(--ink); color: var(--paper); }
.stack { display: flex; flex-direction: column; gap: 20px; }
.stack-lg { display: flex; flex-direction: column; gap: 40px; }

/* Type */
.kicker { font-family: var(--mono); font-size: 12px; letter-spacing: .12em; text-transform: uppercase; color: var(--stamp); }
.kicker--green { color: var(--harbour); }
.display { font-family: var(--serif); font-size: clamp(48px, 7.4vw, 92px); line-height: .98; letter-spacing: -.02em; }
.h2 { font-family: var(--serif); font-size: clamp(38px, 5vw, 64px); line-height: 1.03; }
.h3 { font-size: 21px; font-weight: 700; line-height: 1.3; }
.lead { font-size: clamp(18px, 1.6vw, 21px); line-height: 1.6; color: var(--text-2); max-width: 620px; }
.muted { color: var(--muted); }
.accent { color: var(--stamp); }
em, .it { font-style: italic; }
.mono { font-family: var(--mono); }
.small { font-size: 14px; }
.tiny { font-size: 13px; }

/* Buttons */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; min-height: 52px; padding: 14px 26px; border-radius: 999px; border: 1.5px solid transparent; font-weight: 600; font-size: 17px; text-decoration: none; cursor: pointer; transition: background .15s, color .15s, transform .15s; }
.btn:active { transform: translateY(1px); }
.btn--primary { background: var(--stamp); color: #fff; }
.btn--primary:hover { background: var(--stamp-dark); color: #fff; }
.btn--ink { background: var(--ink); color: var(--paper); }
.btn--ink:hover { background: #000; color: var(--paper); }
.btn--ghost { border-color: var(--ink); color: var(--ink); background: transparent; }
.btn--ghost:hover { background: var(--ink); color: var(--paper); }
.btn--light { background: #fff; color: var(--ink); }
.btn--light:hover { background: var(--paper); color: var(--ink); }
.btn-row { display: flex; flex-wrap: wrap; gap: 12px; }
@media (max-width: 599px) { .btn-row .btn { width: 100%; } }

/* Header */
.site-header { position: sticky; top: 0; z-index: 50; background: rgba(245,241,232,.94); backdrop-filter: blur(8px); border-bottom: 1px solid var(--line); }
.site-header .wrap { display: flex; align-items: center; justify-content: space-between; height: 68px; }
@media (min-width: 900px) { .site-header .wrap { height: 84px; } }
.logo { display: flex; align-items: center; gap: 10px; text-decoration: none; color: var(--ink); }
.logo svg { width: 30px; height: 30px; flex-shrink: 0; }
.logo span { font-family: var(--serif); font-size: 23px; white-space: nowrap; }
@media (min-width: 900px) { .logo svg { width: 36px; height: 36px; } .logo span { font-size: 28px; } }
.nav { display: none; align-items: center; gap: 32px; font-weight: 500; font-size: 16px; }
.nav a { color: var(--ink); text-decoration: none; }
.nav a:hover, .nav a[aria-current="page"] { color: var(--stamp); }
.nav .btn { color: var(--paper); min-height: 46px; padding: 10px 20px; font-size: 16px; }
@media (min-width: 1000px) { .nav { display: flex; } }
.header-mobile { display: flex; align-items: center; gap: 4px; }
.header-mobile .btn { min-height: 42px; padding: 8px 14px; font-size: 14px; }
@media (min-width: 1000px) { .header-mobile { display: none; } }
.menu-btn { width: 44px; height: 44px; border: 0; background: none; display: grid; place-items: center; cursor: pointer; color: var(--ink); }
.mobile-menu { display: none; border-top: 1px solid var(--line); background: var(--paper); }
.mobile-menu.open { display: block; }
.mobile-menu a { display: block; padding: 16px var(--gutter); font-size: 19px; font-weight: 600; color: var(--ink); text-decoration: none; border-bottom: 1px solid var(--line); }
@media (min-width: 1000px) { .mobile-menu { display: none !important; } }

/* Hero */
.hero { padding: 40px 0 32px; }
@media (min-width: 900px) { .hero { padding: 96px 0 72px; } }
.hero-grid { display: grid; gap: 40px; align-items: center; }
@media (min-width: 1000px) { .hero-grid { grid-template-columns: 1.15fr 1fr; gap: 64px; } }
.hero-note { font-family: var(--mono); font-size: 14px; color: var(--text-2); }

/* Cards */
.card { background: #fff; border: 1px solid var(--line); border-radius: 20px; padding: 28px; }
@media (min-width: 900px) { .card { padding: 36px; } }
.card--ink { background: var(--ink); color: var(--paper); border: 0; }
.card--paper { background: var(--paper); border: 0; }
.grid-2, .grid-3, .grid-4 { display: grid; gap: 16px; }
@media (min-width: 700px) { .grid-2 { grid-template-columns: repeat(2, minmax(0,1fr)); gap: 24px; } .grid-3, .grid-4 { grid-template-columns: repeat(2, minmax(0,1fr)); gap: 20px; } }
@media (min-width: 1000px) { .grid-3 { grid-template-columns: repeat(3, minmax(0,1fr)); gap: 24px; } .grid-4 { grid-template-columns: repeat(4, minmax(0,1fr)); gap: 24px; } }
.split { display: grid; gap: 32px; align-items: center; }
@media (min-width: 1000px) { .split { grid-template-columns: 1fr 1fr; gap: 72px; } .split--wide-right { grid-template-columns: 1fr 1.5fr; } .split--wide-left { grid-template-columns: 1.3fr 1fr; } }

/* Declaration card */
.decl { position: relative; background: #fff; border: 1px solid var(--line); border-radius: 24px; padding: 24px; box-shadow: 0 30px 60px -30px rgba(22,33,46,.28); display: flex; flex-direction: column; gap: 12px; }
@media (min-width: 900px) { .decl { padding: 36px; gap: 18px; } }
.decl-head { display: flex; justify-content: space-between; align-items: center; font-family: var(--mono); font-size: 13px; letter-spacing: .08em; }
.pill-cleared { background: var(--harbour-soft); color: var(--harbour); font-family: var(--sans); font-weight: 700; font-size: 13px; letter-spacing: 0; padding: 5px 12px; border-radius: 999px; }
.decl-row { display: flex; justify-content: space-between; gap: 16px; padding: 11px 0; border-bottom: 1px dashed var(--line); font-size: 16px; }
.decl-row span:first-child { color: var(--muted); }
.decl-row span:last-child { font-weight: 600; text-align: right; }
.decl-foot { display: flex; justify-content: space-between; align-items: flex-end; }
.stamp { transform: rotate(-9deg); border: 3px solid var(--stamp); color: var(--stamp); border-radius: 12px; padding: 8px 14px; font-family: var(--mono); font-weight: 500; font-size: 13px; letter-spacing: .12em; text-align: center; line-height: 1.4; }

/* Stats */
.stats { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 10px; }
.stat { background: #fff; border: 1px solid var(--line); border-radius: 16px; padding: 18px; display: flex; flex-direction: column; gap: 2px; }
.stat strong { font-family: var(--serif); font-weight: 400; font-size: 34px; line-height: 1.05; }
.stat span { font-size: 14px; color: var(--muted); }
.stat--ink { background: var(--ink); border-color: var(--ink); color: var(--paper); }
.stat--ink strong { color: var(--stamp-soft); }
.stat--ink span { color: var(--paper); }
@media (min-width: 1000px) {
  .stats { grid-template-columns: repeat(5, minmax(0,1fr)); gap: 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
  .stat, .stat--ink { background: none; border: 0; border-radius: 0; padding: 28px 20px; border-left: 1px solid var(--line); color: var(--ink); }
  .stat:first-child { border-left: 0; padding-left: 0; }
  .stat strong { font-size: 42px; }
  .stat--ink strong { color: var(--stamp); }
  .stat--ink span { color: var(--text-2); font-weight: 600; }
}

/* Definition block */
.definition { background: var(--ink); color: var(--paper); border-radius: 24px; padding: 32px 24px; display: grid; gap: 24px; }
@media (min-width: 900px) { .definition { padding: 72px 80px; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; border-radius: 28px; } }
.definition .word { font-family: var(--serif); font-size: clamp(40px, 5vw, 64px); line-height: 1; }
.definition .phon { font-family: var(--mono); font-size: 14px; color: var(--muted-on-ink); margin-top: 10px; }
.definition .body { display: flex; flex-direction: column; gap: 16px; font-size: clamp(18px, 1.7vw, 22px); line-height: 1.55; }
.definition .pay { font-family: var(--serif); font-style: italic; color: var(--stamp-soft); font-size: clamp(28px, 2.6vw, 34px); line-height: 1.2; }
.definition--light { background: var(--paper-2); color: var(--ink); }
.definition--light .phon { color: var(--muted); }

/* Steps */
.steps { display: grid; gap: 24px; }
@media (min-width: 900px) { .steps { grid-template-columns: repeat(4, minmax(0,1fr)); } }
.step { display: flex; gap: 16px; }
.step-num { flex-shrink: 0; width: 36px; height: 36px; border-radius: 999px; background: var(--ink); color: var(--paper); display: grid; place-items: center; font-family: var(--mono); font-size: 14px; }
.step:last-child .step-num { background: var(--stamp); }
@media (min-width: 900px) {
  .step { flex-direction: column; gap: 14px; padding-top: 24px; border-top: 3px solid var(--ink); }
  .step:last-child { border-top-color: var(--stamp); }
  .step-num { display: none; }
}
.step-label { font-family: var(--mono); font-size: 13px; display: none; }
@media (min-width: 900px) { .step-label { display: block; } .step:last-child .step-label { color: var(--stamp); } }

/* Compare table */
.compare { background: #fff; border: 1px solid var(--line); border-radius: 20px; overflow: hidden; }
.compare-row { display: grid; grid-template-columns: 1.3fr 1fr 1fr; font-size: 15px; border-bottom: 1px solid var(--line); }
.compare-row:last-child { border-bottom: 0; }
.compare-row > div { padding: 14px 12px; }
.compare-row > div:first-child { padding-left: 18px; }
.compare-row--head { background: var(--ink); color: var(--paper); font-weight: 600; }
.compare-row--head > div:last-child { background: var(--stamp); }
.compare-row .no { color: var(--muted); }
.compare-row .yes { color: var(--harbour); font-weight: 700; }
@media (min-width: 900px) { .compare-row { font-size: 17px; } .compare-row > div { padding: 18px 16px; } .compare-row > div:first-child { padding-left: 24px; } }

/* Chips */
.chips { display: flex; flex-wrap: wrap; gap: 8px; }
.chip { padding: 11px 18px; border-radius: 999px; background: #fff; border: 1px solid var(--line); font-weight: 500; font-size: 15px; }
.chip--ink { background: var(--ink); color: var(--paper); border-color: var(--ink); }
@media (min-width: 900px) { .chip { padding: 15px 24px; font-size: 18px; } }

/* Portrait */
.portrait { position: relative; border-radius: 24px; overflow: hidden; background: var(--ink); aspect-ratio: 4 / 5; }
.portrait img { width: 100%; height: 100%; object-fit: cover; }
.badge { position: absolute; right: 14px; bottom: 14px; background: var(--paper); border-radius: 14px; padding: 10px 14px; display: flex; align-items: center; gap: 10px; box-shadow: 0 10px 24px -10px rgba(0,0,0,.5); }
.badge svg { width: 24px; height: 24px; flex-shrink: 0; }
.badge strong { display: block; font-size: 14px; line-height: 1.2; }
.badge span { display: block; font-size: 12px; color: var(--muted); line-height: 1.2; }

/* Reviews */
.review { display: flex; flex-direction: column; gap: 16px; }
.stars { color: var(--stamp); letter-spacing: 3px; font-size: 18px; }
.review blockquote { margin: 0; font-size: 19px; line-height: 1.5; }
.review cite { font-style: normal; font-size: 14px; color: var(--muted); }
.awards { display: flex; flex-wrap: wrap; gap: 10px 28px; font-family: var(--mono); font-size: 12px; letter-spacing: .06em; color: var(--muted); }

/* Offer */
.offer { background: var(--stamp); color: #fff; border-radius: 24px; padding: 32px 24px; display: grid; gap: 24px; }
@media (min-width: 900px) { .offer { padding: 72px 80px; grid-template-columns: 1.3fr 1fr; gap: 48px; align-items: center; border-radius: 28px; } }
.offer .price-big { font-family: var(--mono); font-size: clamp(52px, 6vw, 72px); font-weight: 500; line-height: 1; }
.offer .strike { font-family: var(--mono); font-size: 26px; text-decoration: line-through; opacity: .7; }

/* FAQ */
.faq details { border-top: 1px solid var(--line); padding: 20px 0; }
.faq details:last-child { border-bottom: 1px solid var(--line); }
.faq summary { font-size: 18px; font-weight: 700; cursor: pointer; list-style: none; display: flex; justify-content: space-between; gap: 16px; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: '+'; font-family: var(--mono); font-weight: 400; color: var(--stamp); font-size: 22px; line-height: 1; }
.faq details[open] summary::after { content: '−'; }
.faq p { margin-top: 12px; color: var(--text-2); font-size: 17px; }
@media (min-width: 900px) { .faq summary { font-size: 21px; } .faq p { font-size: 18px; } }

/* Footer */
.site-footer { background: var(--ink-deep); color: var(--muted-on-ink); font-size: 14px; line-height: 1.7; padding: 48px 0; }
.site-footer .wrap { display: grid; gap: 28px; }
@media (min-width: 900px) { .site-footer .wrap { grid-template-columns: 1.2fr 1fr 1.4fr; } }
.site-footer a { color: var(--paper); text-decoration: none; }
.site-footer a:hover { color: var(--stamp-soft); }
.footer-brand { font-family: var(--serif); font-size: 26px; color: var(--paper); }

/* Currency picker */
.currency { display: inline-flex; gap: 4px; background: var(--paper-2); border-radius: 999px; padding: 4px; }
.currency button { min-width: 64px; height: 42px; border: 0; border-radius: 999px; background: transparent; color: var(--ink); font-family: var(--mono); font-size: 14px; cursor: pointer; padding: 0 12px; }
.currency button[aria-pressed="true"] { background: var(--ink); color: var(--paper); }
.currency--dark { background: var(--ink-2); }
.currency--dark button { color: var(--muted-on-ink); min-width: 44px; height: 36px; }
.currency--dark button[aria-pressed="true"] { background: var(--paper); color: var(--ink); }
.fx-note { font-size: 13px; color: var(--muted-on-ink); }
.fx-note[hidden] { display: none; }

/* Pricing */
.price-card { position: relative; background: var(--ink); color: var(--paper); border-radius: 24px; padding: 28px 22px; display: flex; flex-direction: column; gap: 22px; }
@media (min-width: 900px) { .price-card { padding: 56px; border-radius: 28px; } }
.price-card .big { font-family: var(--mono); font-size: clamp(76px, 9vw, 120px); font-weight: 500; line-height: 1; }
.price-card .vat { font-size: 15px; color: var(--muted-on-ink); }
.price-card .extra { display: flex; align-items: center; gap: 14px; padding: 16px 18px; border-radius: 14px; background: var(--ink-2); }
.price-card .extra strong { font-family: var(--mono); font-weight: 500; font-size: 28px; color: var(--stamp-soft); white-space: nowrap; }
.price-card .corner { position: absolute; top: 24px; right: 20px; transform: rotate(8deg); border: 2.5px solid var(--stamp-soft); color: var(--stamp-soft); border-radius: 10px; padding: 6px 10px; font-family: var(--mono); font-size: 11px; letter-spacing: .08em; text-align: center; line-height: 1.35; }
@media (min-width: 900px) { .price-card .corner { top: 40px; right: 40px; font-size: 14px; padding: 10px 14px; } }
.ticks { display: grid; gap: 10px 24px; font-size: 16px; list-style: none; padding: 0; margin: 0; }
@media (min-width: 700px) { .ticks { grid-template-columns: repeat(2, minmax(0,1fr)); font-size: 17px; } }
.ticks li::before { content: '✓ '; color: var(--stamp-soft); }
.calc-row { display: flex; justify-content: space-between; align-items: center; gap: 12px; padding: 14px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.stepper { display: flex; align-items: center; gap: 12px; }
.stepper button { width: 46px; height: 46px; border-radius: 999px; border: 1.5px solid var(--ink); background: #fff; color: var(--ink); font-size: 22px; cursor: pointer; }
.stepper output { font-family: var(--mono); font-size: 28px; min-width: 44px; text-align: center; }
.calc-total { font-family: var(--mono); font-size: clamp(44px, 5vw, 64px); font-weight: 500; line-height: 1.05; }
.example { display: flex; flex-direction: column; gap: 10px; }
.example .amt { font-family: var(--mono); font-size: 36px; font-weight: 500; margin-top: auto; }
.optionb { background: #fff; border: 1.5px solid var(--ink); border-radius: 24px; padding: 28px 22px; display: grid; gap: 24px; align-items: center; }
@media (min-width: 900px) { .optionb { padding: 48px 56px; grid-template-columns: 1.4fr 1fr; gap: 48px; border-radius: 28px; } }

/* Forms */
.field { display: flex; flex-direction: column; gap: 6px; font-size: 14px; font-weight: 600; }
.field .opt { font-weight: 400; color: var(--muted); }
.field input, .field textarea { width: 100%; min-height: 50px; border-radius: 12px; border: 1.5px solid var(--line); padding: 12px 14px; font-size: 16px; font-family: var(--sans); background: #fff; color: var(--ink); }
.field textarea { min-height: 120px; resize: vertical; }
.field input:focus, .field textarea:focus { outline: 2px solid var(--stamp); outline-offset: 1px; border-color: transparent; }
.form-card { background: var(--paper); color: var(--ink); border-radius: 24px; padding: 24px; display: flex; flex-direction: column; gap: 16px; }
@media (min-width: 900px) { .form-card { padding: 40px; } }
.form-grid { display: grid; gap: 16px; }
@media (min-width: 700px) { .form-grid--2 { grid-template-columns: 1fr 1fr; } }
.hidden { display: none !important; }
.received { display: inline-block; transform: rotate(-6deg); border: 3px solid var(--harbour); color: var(--harbour); border-radius: 12px; padding: 8px 14px; font-family: var(--mono); font-size: 16px; letter-spacing: .12em; }

/* Brexit */
.brexit { background: #fff; border: 1px solid var(--line); border-radius: 24px; padding: 28px 22px; display: grid; gap: 32px; }
@media (min-width: 1000px) { .brexit { padding: 72px; grid-template-columns: 1fr 1.5fr; gap: 64px; border-radius: 28px; } }
.brexit .card--paper { padding: 24px; border-radius: 16px; display: flex; flex-direction: column; gap: 8px; }
.brexit .card--paper .mono { font-size: 11px; letter-spacing: .08em; color: var(--harbour); }

/* Services (consultancy) */
.service { display: flex; flex-direction: column; gap: 12px; }
.service .tech { margin-top: auto; padding-top: 14px; border-top: 1px dashed var(--line); font-family: var(--mono); font-size: 12px; color: var(--muted); text-transform: uppercase; letter-spacing: .03em; }
.quote-bubble { background: #fff; border-radius: 16px; padding: 22px; font-size: 18px; line-height: 1.45; }

/* Funnel */
.funnel-body { min-height: 100vh; min-height: 100dvh; display: flex; flex-direction: column; }
.funnel-top { display: flex; align-items: center; justify-content: space-between; height: 64px; padding: 0 var(--gutter); }
.funnel-progress { height: 4px; background: #E4DDCE; margin: 0 var(--gutter); border-radius: 4px; overflow: hidden; }
.funnel-progress div { height: 100%; background: var(--stamp); width: 0; transition: width .3s; }
.funnel-step-label { font-family: var(--mono); font-size: 12px; color: var(--muted); padding: 8px var(--gutter) 0; }
.funnel-main { flex-grow: 1; width: 100%; max-width: 820px; margin: 0 auto; padding: 28px var(--gutter) 24px; }
@media (min-width: 900px) { .funnel-main { padding-top: 56px; } }
.funnel-q h1 { font-family: var(--serif); font-size: clamp(36px, 5vw, 56px); line-height: 1.05; }
.funnel-q .sub { margin-top: 8px; color: var(--muted); }
.options { display: grid; gap: 10px; margin-top: 24px; }
@media (min-width: 700px) { .options { grid-template-columns: 1fr 1fr; gap: 12px; } }
.option { display: flex; align-items: center; justify-content: space-between; gap: 12px; min-height: 60px; padding: 14px 18px; border-radius: 14px; border: 1.5px solid var(--line); background: #fff; color: var(--ink); font-size: 17px; font-weight: 600; text-align: left; cursor: pointer; transition: border-color .15s, background .15s; }
.option:hover { border-color: var(--ink); }
.option[aria-pressed="true"] { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.option[aria-pressed="true"]::after { content: '✓'; }
.funnel-bar { position: sticky; bottom: 0; display: flex; gap: 10px; padding: 14px var(--gutter) 18px; border-top: 1px solid var(--line); background: var(--paper); }
.funnel-bar .inner { width: 100%; max-width: 780px; margin: 0 auto; display: flex; gap: 10px; }
.funnel-bar .back { width: 56px; height: 56px; flex-shrink: 0; border-radius: 999px; border: 1.5px solid var(--line); background: #fff; font-size: 20px; cursor: pointer; color: var(--ink); }
.funnel-bar .next { flex-grow: 1; min-height: 56px; }
.funnel-bar .next:disabled { opacity: .35; cursor: not-allowed; }
.funnel-trust { text-align: center; font-family: var(--mono); font-size: 11px; color: var(--muted); letter-spacing: .04em; padding: 0 var(--gutter) 14px; background: var(--paper); }
.result-grid { display: grid; gap: 20px; }
@media (min-width: 900px) { .result-grid { grid-template-columns: 1fr 1.1fr; gap: 32px; align-items: start; } }
.result-card { background: var(--ink); color: var(--paper); border-radius: 20px; padding: 22px; display: flex; flex-direction: column; gap: 12px; }
@media (min-width: 900px) { .result-card { padding: 32px; position: sticky; top: 24px; } }
.result-card .big { font-family: var(--mono); font-size: 52px; font-weight: 500; line-height: 1; }
.result-offer { background: var(--stamp); border-radius: 12px; padding: 14px 16px; font-weight: 700; font-size: 18px; }
.eori { display: flex; gap: 8px; }
.eori button { flex-grow: 1; min-height: 44px; border-radius: 999px; border: 1.5px solid var(--line); background: #fff; font-weight: 600; font-size: 15px; cursor: pointer; color: var(--ink); }
.eori button[aria-pressed="true"] { background: var(--ink); color: var(--paper); border-color: var(--ink); }

/* Legal page */
.legal { max-width: 760px; }
.legal h2 { font-family: var(--serif); font-size: 32px; margin-top: 40px; margin-bottom: 12px; }
.legal p, .legal li { color: var(--text-2); margin-bottom: 12px; }
.stat--wide { grid-column: 1 / -1; }
@media (min-width: 1000px) { .stat--wide { grid-column: auto; } }
.q-group { margin-top: 24px; }
.q-group + .q-group { margin-top: 36px; padding-top: 28px; border-top: 1px solid var(--line); }
.q-group-title { font-family: var(--serif); font-size: clamp(28px, 3.4vw, 36px); line-height: 1.1; }
.q-group .options { margin-top: 14px; }
.q-group .options { grid-template-columns: 1fr 1fr; gap: 8px; }
.q-group .option { min-height: 52px; padding: 12px 14px; font-size: 15px; }
@media (min-width: 700px) { .q-group .options { grid-template-columns: repeat(3, minmax(0,1fr)); } }
@media (min-width: 1000px) {
  .price-card--wide { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
  .price-card--wide .ticks { grid-template-columns: 1fr 1fr; }
}
.price-card--wide .corner { top: -6px; right: 0; }
@media (max-width: 999px) { .price-card--wide .corner { top: 44px; right: 0; } }
@media (max-width: 599px) { .price-card .extra { flex-direction: column; align-items: flex-start; gap: 6px; } }
.footer-label { font-family: var(--mono); font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: var(--stamp-soft); }
.site-footer p { max-width: 36ch; color: var(--muted-on-ink); }
.footer-legal { font-size: 12px; line-height: 1.6; opacity: .8; margin-top: 6px; }
