@charset "utf-8";
/* ══════════════════════════════════════════════════════════════
   SmartPrinter.ink — colour-block design system
   Full-bleed saturated fields · hard edges · oversized type
   ══════════════════════════════════════════════════════════════ */

/* ── Fonts ──────────────────────────────────────────────────── */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url('/assets/fonts/inter-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
    U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193,
    U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url('/assets/fonts/inter-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF,
    U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020,
    U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'Sora';
  font-style: normal;
  font-weight: 500 800;
  font-display: swap;
  src: url('/assets/fonts/sora-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
    U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193,
    U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Sora';
  font-style: normal;
  font-weight: 500 800;
  font-display: swap;
  src: url('/assets/fonts/sora-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF,
    U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020,
    U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

/* ── Tokens ─────────────────────────────────────────────────── */
:root {
  --ink: #0c1a18;
  --teal: #10a597;
  --teal-deep: #0b7f74;
  --cream: #f6f0e4;
  --cream-2: #efe6d5;
  --paper: #ffffff;
  --sun: #ffd24a;
  --coral: #ff6b4a;

  --fg: var(--ink);
  --fg-soft: rgba(12, 26, 24, 0.68);
  --bd: 2px solid var(--ink);
  --bd-thick: 3px solid var(--ink);
  --hard: 6px 6px 0 var(--ink);
  --hard-sm: 4px 4px 0 var(--ink);

  --font-display: 'Sora', ui-sans-serif, system-ui, sans-serif;
  --font-body: 'Inter', ui-sans-serif, system-ui, sans-serif;

  --d1: clamp(2.9rem, 1.3rem + 7vw, 7.5rem);
  --d2: clamp(2.1rem, 1.2rem + 4vw, 4.4rem);
  --d3: clamp(1.5rem, 1.2rem + 1.4vw, 2.2rem);
  --d4: clamp(1.1rem, 1rem + 0.5vw, 1.35rem);
  --t-xs: 0.75rem;
  --t-sm: 0.875rem;
  --t: 1.0625rem;
  --t-lg: clamp(1.15rem, 1.05rem + 0.5vw, 1.4rem);

  --pad: clamp(72px, 8vw, 128px);
  --gut: clamp(20px, 4vw, 48px);
}

/* ── Reset ──────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: var(--t);
  line-height: 1.6;
  color: var(--fg);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: clip;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 0.94;
  letter-spacing: -0.045em;
  text-transform: uppercase;
  text-wrap: balance;
}
h1 { font-size: var(--d1); }
h2 { font-size: var(--d2); }
h3 { font-size: var(--d3); letter-spacing: -0.035em; }
h4 { font-size: var(--d4); letter-spacing: -0.03em; }

a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
img, svg { display: block; max-width: 100%; }
img { height: auto; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
strong { font-weight: 700; }
em { font-style: normal; }
::selection { background: var(--sun); color: var(--ink); }
:focus-visible { outline: 3px solid var(--ink); outline-offset: 3px; }

.field-ink ::selection { background: var(--sun); color: var(--ink); }
.field-ink :focus-visible { outline-color: var(--sun); }

/* ── Fields (full-bleed colour panels) ──────────────────────── */
.field {
  position: relative;
  padding-block: var(--pad);
  border-bottom: var(--bd-thick);
}
.field-teal  { background: var(--teal);  color: var(--ink); }
.field-cream { background: var(--cream); color: var(--ink); }
.field-paper { background: var(--paper); color: var(--ink); }
.field-sun   { background: var(--sun);   color: var(--ink); }
.field-ink {
  background: var(--ink);
  color: var(--cream);
  border-bottom-color: var(--ink);
}
.field-ink h1, .field-ink h2, .field-ink h3, .field-ink h4 { color: var(--paper); }
.field-ink { --fg: var(--cream); --fg-soft: rgba(246, 240, 228, 0.66); --bd: 2px solid var(--cream); }

.wrap { width: min(1240px, 100% - var(--gut) * 2); margin-inline: auto; }
.wrap-narrow { width: min(820px, 100% - var(--gut) * 2); margin-inline: auto; }
[id] { scroll-margin-top: 90px; }

/* ── Section labelling ──────────────────────────────────────── */
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 26px;
  padding: 6px 14px;
  border: var(--bd);
  background: var(--paper);
  font-size: var(--t-xs);
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.field-ink .kicker { background: transparent; color: var(--sun); border-color: var(--sun); }
.field-sun .kicker { background: var(--ink); color: var(--sun); }

.lede {
  font-size: var(--t-lg);
  max-width: 54ch;
  color: var(--fg-soft);
  margin-top: 22px;
}
.head { margin-bottom: clamp(44px, 5vw, 76px); }
.head-center { text-align: center; }
.head-center .lede { margin-inline: auto; }

/* ── Buttons ────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 30px;
  border: var(--bd-thick);
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-display);
  font-size: var(--t-sm);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  box-shadow: var(--hard-sm);
  transition: transform 0.12s ease, box-shadow 0.12s ease, background-color 0.18s;
}
.btn:hover { transform: translate(-2px, -2px); box-shadow: var(--hard); }
.btn:active { transform: translate(2px, 2px); box-shadow: 0 0 0 var(--ink); }
.btn-ink { background: var(--ink); color: var(--paper); }
.btn-ink:hover { background: #14231f; }
.btn-sun { background: var(--sun); }
.btn-sun:hover { background: #ffdc73; }
.field-ink .btn { border-color: var(--cream); box-shadow: 4px 4px 0 var(--cream); }
.field-ink .btn:hover { box-shadow: 6px 6px 0 var(--cream); }
.field-ink .btn-sun { background: var(--sun); color: var(--ink); border-color: var(--sun); }

.btn svg { flex: none; }
.link-u {
  font-weight: 700;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}
.link-u:hover { background: var(--sun); }

/* ── Nav ────────────────────────────────────────────────────── */
.nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: 90;
  background: var(--teal);
  border-bottom: var(--bd-thick);
  transition: background-color 0.25s;
}
.nav.is-stuck { background: var(--cream); }
.nav-in {
  display: flex;
  align-items: center;
  gap: 18px;
  height: 68px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-right: auto;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  text-transform: uppercase;
}
.brand svg { width: 30px; height: 30px; flex: none; }
.brand em { font-weight: 700; opacity: 0.5; }

.nav-links { display: flex; align-items: center; gap: 2px; }
.nav-links a {
  padding: 9px 13px;
  font-size: var(--t-sm);
  font-weight: 600;
  border: 2px solid transparent;
}
.nav-links a:hover { border-color: var(--ink); background: var(--paper); }
.nav-links .btn { margin-left: 10px; padding: 11px 20px; }

.burger {
  display: none;
  width: 44px; height: 44px;
  place-items: center;
  border: var(--bd);
  background: var(--paper);
}
.burger span { display: block; width: 18px; height: 2px; background: var(--ink); }
.burger span + span { margin-top: 4px; }
.burger[aria-expanded='true'] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.burger[aria-expanded='true'] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded='true'] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* ── Hero ───────────────────────────────────────────────────── */
.hero { padding-top: calc(68px + var(--pad)); }
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: clamp(36px, 5vw, 72px);
  align-items: center;
}
.hero h1 { margin-bottom: 26px; line-height: 1.05; }
.hero h1 mark {
  background: var(--sun);
  color: var(--ink);
  padding: 0 0.12em;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}
.hero-lede { font-size: var(--t-lg); max-width: 46ch; font-weight: 500; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin: 34px 0 30px; }

.stores { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }
.store {
  position: relative;
  border: var(--bd);
  background: var(--ink);
  padding: 6px 10px;
  box-shadow: var(--hard-sm);
  transition: transform 0.12s ease, box-shadow 0.12s ease;
}
.store:hover { transform: translate(-2px, -2px); box-shadow: var(--hard); }
.store img { height: 34px; width: auto; }
.store b {
  position: absolute;
  top: -11px; right: -11px;
  padding: 2px 7px;
  border: var(--bd);
  background: var(--sun);
  font-size: 0.625rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.rating { font-size: var(--t-sm); font-weight: 600; }

/* Stat boxes */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 46px;
  border: var(--bd-thick);
  background: var(--ink);
  gap: 3px;
}
.stats li { background: var(--cream); padding: 20px 18px; }
.field-teal .stats li { background: var(--teal); }
.stats strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 1rem + 2vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.05em;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.stats span {
  display: block;
  margin-top: 6px;
  font-size: var(--t-xs);
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

/* ── Hero device frame ──────────────────────────────────────── */
.frame {
  border: var(--bd-thick);
  background: var(--paper);
  box-shadow: var(--hard);
}
.frame-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 11px 16px;
  border-bottom: var(--bd);
  background: var(--ink);
  color: var(--cream);
  font-family: var(--font-display);
  font-size: var(--t-xs);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.frame-bar i { display: flex; gap: 5px; }
.frame-bar i b { width: 9px; height: 9px; background: var(--cream); border-radius: 50%; }
.frame-bar i b:first-child { background: var(--sun); }
.frame-body { padding: 22px; }

.job {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px;
  border: var(--bd);
  background: var(--cream);
  margin-bottom: 16px;
}
.job-ico {
  display: grid;
  place-items: center;
  width: 42px; height: 42px;
  flex: none;
  border: var(--bd);
  background: var(--sun);
}
.job strong { display: block; font-size: var(--t-sm); }
.job em { font-size: var(--t-xs); color: var(--fg-soft); }

.meter {
  height: 22px;
  border: var(--bd);
  background: var(--paper);
  padding: 3px;
  margin-bottom: 16px;
}
.meter i {
  display: block;
  height: 100%;
  width: 72%;
  background: var(--teal);
  animation: fill 3.4s ease-in-out infinite;
}
@keyframes fill { 0%, 100% { width: 18%; } 55% { width: 88%; } }

.queue { display: grid; gap: 8px; }
.queue li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 12px;
  border: var(--bd);
  font-size: var(--t-sm);
  font-weight: 600;
}
.queue li span { font-size: var(--t-xs); font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; }
.queue li:nth-child(1) { background: var(--teal); }
.queue li:nth-child(2) { background: var(--paper); }
.queue li:nth-child(3) { background: var(--paper); color: var(--fg-soft); }

/* ── Ticker ─────────────────────────────────────────────────── */
.ticker {
  overflow: hidden;
  background: var(--ink);
  border-bottom: var(--bd-thick);
  padding-block: 18px;
}
.ticker-track { display: flex; width: max-content; animation: roll 38s linear infinite; }
.ticker:hover .ticker-track { animation-play-state: paused; }
@keyframes roll { to { transform: translateX(-50%); } }
.ticker-set { display: flex; align-items: center; gap: 46px; padding-right: 46px; }
.ticker-set img { height: 22px; width: auto; filter: brightness(0) invert(1); opacity: 0.85; }
.ticker-set span {
  font-family: var(--font-display);
  font-size: var(--t-sm);
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sun);
  white-space: nowrap;
}

/* ── Numbered rows ──────────────────────────────────────────── */
.rows { border-top: var(--bd-thick); }
.row {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr) minmax(0, 1.15fr);
  gap: clamp(16px, 3vw, 44px);
  align-items: start;
  padding: clamp(26px, 3vw, 40px) 0;
  border-bottom: var(--bd-thick);
  transition: background-color 0.2s, padding-left 0.2s ease;
}
.row:hover { background: var(--sun); padding-left: 14px; }
.field-ink .row:hover { background: #14231f; }
.row-n {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 1.2rem + 1.4vw, 2.2rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
}
.row p { color: var(--fg-soft); }
.row:hover p { color: var(--ink); }

/* ── Split ──────────────────────────────────────────────────── */
.split {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: clamp(38px, 5vw, 76px);
  align-items: center;
}
.checks { display: grid; gap: 0; border-top: var(--bd); margin-top: 30px; }
.checks li {
  display: flex;
  gap: 16px;
  padding: 18px 0;
  border-bottom: var(--bd);
}
.checks b {
  font-family: var(--font-display);
  font-size: var(--t-sm);
  font-weight: 800;
  flex: none;
}
.checks strong { display: block; }
.checks em { font-size: var(--t-sm); color: var(--fg-soft); }

/* ── Tag chips ──────────────────────────────────────────────── */
.chips { display: flex; flex-wrap: wrap; gap: 10px; margin: 28px 0; }
.chips li {
  padding: 8px 15px;
  border: var(--bd);
  background: var(--paper);
  font-size: var(--t-sm);
  font-weight: 600;
}
.field-ink .chips li { background: transparent; }
.chips li:nth-child(3n) { background: var(--sun); }
.chips li:nth-child(4n) { background: var(--teal); }

/* ── Label graphic ──────────────────────────────────────────── */
.label-card {
  border: var(--bd-thick);
  background: var(--paper);
  box-shadow: var(--hard);
  padding: 22px;
  max-width: 400px;
  margin-inline: auto;
}
.label-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 14px;
  margin-bottom: 16px;
  border-bottom: var(--bd);
  font-family: var(--font-display);
  font-size: var(--t-xs);
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.label-grid { display: flex; gap: 16px; align-items: center; }
.qr { display: grid; grid-template-columns: repeat(4, 1fr); gap: 3px; width: 76px; flex: none; }
.qr i { aspect-ratio: 1; background: var(--ink); }
.qr i:nth-child(2), .qr i:nth-child(5), .qr i:nth-child(8),
.qr i:nth-child(11), .qr i:nth-child(14) { background: var(--paper); }
.label-lines { flex: 1; display: grid; gap: 7px; }
.label-lines i { height: 8px; background: var(--ink); }
.label-lines i:nth-child(2) { width: 62%; background: var(--teal); }
.label-lines i:nth-child(3) { width: 84%; }
.barcode {
  height: 46px;
  margin-top: 16px;
  background: repeating-linear-gradient(90deg, var(--ink) 0 3px, transparent 3px 6px,
    var(--ink) 6px 8px, transparent 8px 13px, var(--ink) 13px 17px, transparent 17px 20px);
}

/* ── Phone ──────────────────────────────────────────────────── */
.phone {
  width: min(300px, 84%);
  margin-inline: auto;
  border: var(--bd-thick);
  background: var(--paper);
  box-shadow: var(--hard);
}
.phone-top {
  padding: 14px 16px;
  border-bottom: var(--bd);
  background: var(--ink);
  color: var(--cream);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-display);
  font-size: var(--t-sm);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.phone-body { padding: 16px; display: grid; gap: 12px; }
.dev {
  border: var(--bd);
  padding: 12px;
  background: var(--cream);
}
.dev-h { display: flex; justify-content: space-between; align-items: center; margin-bottom: 10px; }
.dev-h strong { font-size: var(--t-sm); }
.dev-h span {
  font-size: 0.625rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 2px 7px;
  border: var(--bd);
  background: var(--teal);
}
.inks { display: grid; grid-template-columns: repeat(4, 1fr); gap: 5px; }
.inks span { height: 12px; border: var(--bd); background: var(--paper); padding: 1px; }
.inks i { display: block; height: 100%; background: var(--ink); }
.inks span:nth-child(1) i { width: 74%; background: var(--teal); }
.inks span:nth-child(2) i { width: 52%; background: var(--coral); }
.inks span:nth-child(3) i { width: 88%; background: var(--sun); }
.inks span:nth-child(4) i { width: 36%; }
.acts { display: grid; grid-template-columns: 1.2fr 1fr 1fr; gap: 6px; }
.acts span {
  padding: 10px 4px;
  border: var(--bd);
  text-align: center;
  font-size: var(--t-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.acts span:first-child { background: var(--ink); color: var(--cream); }

/* ── Brand grid ─────────────────────────────────────────────── */
.brands {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  border-top: var(--bd-thick);
  border-left: var(--bd-thick);
}
.brands li {
  padding: 22px 18px;
  border-right: var(--bd-thick);
  border-bottom: var(--bd-thick);
  transition: background-color 0.18s;
}
.brands li:hover { background: var(--sun); }
.brands img { height: 24px; width: 72px; object-fit: contain; object-position: left center; margin-bottom: 14px; }
.brands strong { display: block; font-family: var(--font-display); font-weight: 800; letter-spacing: -0.02em; }
.brands em { font-size: var(--t-xs); font-weight: 600; color: var(--fg-soft); }

.smallprint { margin-top: 32px; font-size: var(--t-xs); line-height: 1.7; color: var(--fg-soft); max-width: 80ch; }

/* ── Quotes ─────────────────────────────────────────────────── */
.quotes { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 20px; }
.quote {
  display: flex;
  flex-direction: column;
  padding: 28px;
  border: var(--bd-thick);
  background: var(--paper);
  box-shadow: var(--hard);
}
.quote:nth-child(2) { background: var(--sun); }
.quote:nth-child(3) { background: var(--teal); }
.quote blockquote {
  flex: 1;
  font-family: var(--font-display);
  font-size: var(--d4);
  font-weight: 600;
  line-height: 1.28;
  letter-spacing: -0.02em;
  margin-bottom: 22px;
}
.quote figcaption { display: flex; align-items: center; gap: 12px; padding-top: 16px; border-top: var(--bd); }
.who {
  display: grid;
  place-items: center;
  width: 40px; height: 40px;
  flex: none;
  border: var(--bd);
  background: var(--ink);
  color: var(--cream);
  font-family: var(--font-display);
  font-size: var(--t-sm);
  font-weight: 800;
}
.quote figcaption strong { display: block; font-size: var(--t-sm); }
.quote figcaption em { font-size: var(--t-xs); }

/* ── FAQ ────────────────────────────────────────────────────── */
.faq { border-top: var(--bd-thick); }
.faq details { border-bottom: var(--bd-thick); }
.faq summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 26px 0;
  cursor: pointer;
  list-style: none;
  font-family: var(--font-display);
  font-size: var(--d4);
  font-weight: 700;
  letter-spacing: -0.025em;
  text-transform: uppercase;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary:hover { color: var(--teal-deep); }
.faq-x {
  position: relative;
  width: 30px; height: 30px;
  flex: none;
  border: var(--bd);
  background: var(--paper);
}
.faq-x::before, .faq-x::after {
  content: '';
  position: absolute;
  left: 50%; top: 50%;
  translate: -50% -50%;
  background: var(--ink);
}
.faq-x::before { width: 13px; height: 2.5px; }
.faq-x::after { width: 2.5px; height: 13px; transition: opacity 0.2s; }
.faq details[open] .faq-x { background: var(--sun); }
.faq details[open] .faq-x::after { opacity: 0; }
.faq-a { padding-bottom: 28px; max-width: 70ch; color: var(--fg-soft); }
.faq-a a { font-weight: 700; text-decoration: underline; text-underline-offset: 3px; }

/* ── CTA ────────────────────────────────────────────────────── */
.cta-big { text-align: center; }
.cta-big h2 { margin-bottom: 22px; }
.cta-big .lede { margin-inline: auto; margin-bottom: 36px; }
.cta-big .stores { justify-content: center; }
.cta-note { margin-top: 26px; font-size: var(--t-sm); }

/* ── Footer ─────────────────────────────────────────────────── */
.foot { background: var(--ink); color: var(--cream); padding-block: clamp(56px, 6vw, 88px) 30px; }
.foot a { color: var(--cream); }
.foot-grid {
  display: grid;
  grid-template-columns: minmax(240px, 1.5fr) repeat(3, minmax(130px, 1fr));
  gap: clamp(28px, 4vw, 56px);
  padding-bottom: 40px;
  border-bottom: 2px solid rgba(246, 240, 228, 0.25);
}
.foot p { color: rgba(246, 240, 228, 0.7); font-size: var(--t-sm); max-width: 36ch; margin: 16px 0 20px; }
.foot h4 {
  margin-bottom: 16px;
  font-family: var(--font-body);
  font-size: var(--t-xs);
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sun);
}
.foot-col a { display: block; padding: 5px 0; font-size: var(--t-sm); }
.foot-col a:hover { color: var(--sun); }
.foot-contact { display: grid; gap: 8px; }
.foot-contact a { font-size: var(--t-sm); font-weight: 600; }
.foot-contact a:hover { color: var(--sun); }
.foot-end {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 40px;
  justify-content: space-between;
  padding-top: 26px;
  font-size: var(--t-xs);
  color: rgba(246, 240, 228, 0.6);
}
.foot-end p { margin: 0; max-width: 70ch; color: inherit; }

/* ── Page head (subpages) ───────────────────────────────────── */
.page-head { padding-top: calc(68px + var(--pad)); }
.crumb {
  display: flex;
  gap: 8px;
  margin-bottom: 20px;
  font-size: var(--t-sm);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.crumb a:hover { background: var(--sun); }

/* ── Prose ──────────────────────────────────────────────────── */
.prose { max-width: 74ch; }
.prose h2 {
  font-size: var(--d3);
  margin: 48px 0 16px;
  padding-top: 26px;
  border-top: var(--bd-thick);
}
.prose > h2:first-child { margin-top: 0; padding-top: 0; border-top: 0; }
.prose h3 { font-size: var(--d4); margin: 28px 0 10px; }
.prose p, .prose li { color: var(--fg-soft); }
.prose p + p { margin-top: 15px; }
.prose ul, .prose ol { margin: 16px 0; display: grid; gap: 9px; }
.prose li { position: relative; padding-left: 24px; }
.prose ul li::before {
  content: '';
  position: absolute;
  left: 0; top: 10px;
  width: 10px; height: 10px;
  background: var(--teal);
  border: 2px solid var(--ink);
}
.prose ol { counter-reset: n; }
.prose ol li::before {
  counter-increment: n;
  content: counter(n) '.';
  position: absolute;
  left: 0; top: 0;
  font-weight: 800;
}
.prose a { font-weight: 700; text-decoration: underline; text-underline-offset: 3px; }
.prose strong { color: var(--ink); }
.stamp {
  display: inline-block;
  padding: 8px 16px;
  margin-bottom: 34px;
  border: var(--bd);
  background: var(--sun);
  font-size: var(--t-sm);
  font-weight: 700;
}
.callout {
  margin: 22px 0;
  padding: 22px;
  border: var(--bd-thick);
  background: var(--teal);
  box-shadow: var(--hard-sm);
}
.callout p { color: var(--ink); font-size: var(--t-sm); }

.legal-cols { display: grid; grid-template-columns: 260px minmax(0, 1fr); gap: clamp(30px, 4vw, 64px); align-items: start; }
.toc { position: sticky; top: 92px; border: var(--bd-thick); background: var(--paper); padding: 20px; }
.toc h4 {
  margin-bottom: 12px;
  font-family: var(--font-body);
  font-size: var(--t-xs);
  font-weight: 800;
  letter-spacing: 0.13em;
}
.toc a { display: block; padding: 5px 0; font-size: var(--t-sm); font-weight: 600; }
.toc a:hover { background: var(--sun); }

/* ── Contact ────────────────────────────────────────────────── */
.contact-cols { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr); gap: clamp(30px, 4vw, 60px); align-items: start; }
.ways { display: grid; gap: 0; border-top: var(--bd-thick); }
.way { display: flex; gap: 16px; padding: 22px 0; border-bottom: var(--bd-thick); }
.way-ico {
  display: grid;
  place-items: center;
  width: 46px; height: 46px;
  flex: none;
  border: var(--bd);
  background: var(--teal);
}
.way h3 { font-size: var(--d4); margin-bottom: 4px; }
.way p { font-size: var(--t-sm); color: var(--fg-soft); }
.way a { font-weight: 700; text-decoration: underline; text-underline-offset: 3px; }

.form { border: var(--bd-thick); background: var(--paper); box-shadow: var(--hard); padding: clamp(24px, 3vw, 36px); }
.form h2 { font-size: var(--d3); margin-bottom: 22px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.fld { margin-bottom: 16px; }
.fld label {
  display: block;
  margin-bottom: 7px;
  font-size: var(--t-xs);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.fld input, .fld select, .fld textarea {
  width: 100%;
  padding: 13px 14px;
  border: var(--bd);
  background: var(--cream);
  font: inherit;
  font-size: var(--t-sm);
  color: var(--ink);
}
.fld textarea { resize: vertical; min-height: 130px; }
.fld input:focus, .fld select:focus, .fld textarea:focus {
  outline: none;
  background: var(--paper);
  box-shadow: var(--hard-sm);
}
.form .btn { width: 100%; margin-top: 6px; }
.form-note { margin-top: 14px; font-size: var(--t-xs); text-align: center; color: var(--fg-soft); }
.form-note a { font-weight: 700; text-decoration: underline; }

/* ── 404 ────────────────────────────────────────────────────── */
.oops { padding-top: calc(68px + var(--pad)); text-align: center; }
.oops .big {
  font-family: var(--font-display);
  font-size: clamp(6rem, 3rem + 18vw, 16rem);
  font-weight: 800;
  line-height: 0.8;
  letter-spacing: -0.06em;
  margin-bottom: 20px;
}
.oops p { max-width: 46ch; margin: 20px auto 32px; font-size: var(--t-lg); }
.oops .hero-cta { justify-content: center; }

/* ── Utilities ──────────────────────────────────────────────── */
.skip {
  position: absolute;
  left: 50%; top: 8px;
  translate: -50% -200%;
  z-index: 200;
  padding: 12px 22px;
  border: var(--bd-thick);
  background: var(--sun);
  font-weight: 700;
  transition: translate 0.2s;
}
.skip:focus-visible { translate: -50% 0; }

.to-top {
  position: fixed;
  right: 22px; bottom: 22px;
  z-index: 80;
  display: grid;
  place-items: center;
  width: 50px; height: 50px;
  border: var(--bd-thick);
  background: var(--sun);
  box-shadow: var(--hard-sm);
  opacity: 0;
  translate: 0 16px;
  pointer-events: none;
  transition: opacity 0.2s, translate 0.2s;
}
.to-top.on { opacity: 1; translate: 0; pointer-events: auto; }
.to-top:hover { transform: translate(-2px, -2px); box-shadow: var(--hard); }

.toast {
  position: fixed;
  left: 50%; bottom: 26px;
  z-index: 120;
  translate: -50% 260%;
  padding: 14px 24px;
  border: var(--bd-thick);
  background: var(--sun);
  font-size: var(--t-sm);
  font-weight: 600;
  box-shadow: var(--hard);
  transition: translate 0.3s ease;
  max-width: min(560px, 90vw);
}
.toast.on { translate: -50% 0; }

html.js .rv { opacity: 0; transform: translateY(18px); transition: opacity 0.5s ease, transform 0.5s ease; transition-delay: var(--d, 0s); }
html.js .rv.in { opacity: 1; transform: none; }

/* ── Responsive ─────────────────────────────────────────────── */
@media (max-width: 1040px) {
  .hero-grid { grid-template-columns: 1fr; }
  .legal-cols { grid-template-columns: 1fr; }
  .toc { position: static; }
  .contact-cols { grid-template-columns: 1fr; }
  .foot-grid { grid-template-columns: 1fr 1fr; }
  .foot-brand { grid-column: 1 / -1; }
}

@media (max-width: 860px) {
  .burger { display: grid; }
  .nav-links {
    position: fixed;
    inset: 68px 0 auto;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 20px var(--gut) 28px;
    background: var(--cream);
    border-bottom: var(--bd-thick);
    translate: 0 -130%;
    visibility: hidden;
    transition: translate 0.3s ease, visibility 0.3s;
  }
  .nav-links.open { translate: 0; visibility: visible; }
  .nav-links a { padding: 14px 4px; border-bottom: var(--bd); font-size: var(--t-lg); font-weight: 700; }
  .nav-links a:hover { border-color: transparent; border-bottom: var(--bd); background: transparent; }
  .nav-links .btn { margin: 18px 0 0; border-bottom: var(--bd-thick); }
  .row { grid-template-columns: 60px minmax(0, 1fr); }
  .row p { grid-column: 2; }
}

@media (max-width: 640px) {
  .stats { grid-template-columns: 1fr 1fr; }
  .field-row { grid-template-columns: 1fr; }
  .foot-grid { grid-template-columns: 1fr; }
  .foot-end { flex-direction: column; }
  .quotes { gap: 16px; }
}

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

@media print {
  .nav, .to-top, .toast, .ticker, .phone, .label-card, .frame { display: none !important; }
  .field { border: 0; padding-block: 20px; }
  body, .field-ink, .field-teal, .field-sun { background: #fff !important; color: #000 !important; }
}
