/* ============================================================
   GENZYUG — Shared stylesheet
   Built on the Red Broadcast design system (clean, content-first,
   neutral surfaces with a rationed pure-red accent), pushed premium.

   ▸ SWAP YOUR DESIGN SYSTEM VALUES IN THE :root BLOCK BELOW.
     Every color, font, spacing step and radius is a variable.
   ============================================================ */

/* ---- Webfonts (Roboto — the design-system typeface) ---------- */
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&family=Roboto+Mono:wght@400;500&display=swap');

/* ============================================================
   1. DESIGN TOKENS  —  edit these to rebrand the whole site
   ============================================================ */
:root {
  /* — Colors — */
  --red: #FF0000;          /* primary accent — rationed: CTAs, key words */
  --red-hover: #CC0000;
  --blue: #065FD4;         /* inline links */
  --ink: #0F0F0F;          /* primary text / dark premium surface */
  --ink-soft: #1C1C1C;     /* raised dark surface */
  --gray-600: #606060;     /* secondary text */
  --gray-400: #909090;     /* tertiary / icons on dark */
  --gray-200: #E5E5E5;     /* borders */
  --gray-100: #F2F2F2;     /* resting surface */
  --gray-50:  #F8F8F8;
  --white: #FFFFFF;
  --green: #2BA640;
  --orange: #FB8C00;

  /* — Semantic — */
  --bg: var(--white);
  --surface: var(--gray-100);
  --border: var(--gray-200);
  --text: var(--ink);
  --text-2: var(--gray-600);
  --text-link: var(--blue);
  --on-dark: var(--white);
  --on-dark-2: #AAAAAA;

  /* — Type — */
  --font: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
  --font-mono: 'Roboto Mono', ui-monospace, Menlo, monospace;
  --fw-regular: 400;
  --fw-medium: 500;
  --fw-bold: 700;

  /* — Spacing (8px base) — */
  --s1: 4px;  --s2: 8px;  --s3: 12px; --s4: 16px;
  --s6: 24px; --s8: 32px; --s12: 48px; --s16: 64px; --s24: 96px;

  /* — Radius — */
  --r-badge: 2px;
  --r-menu: 4px;
  --r-panel: 8px;
  --r-thumb: 12px;
  --r-pill: 9999px;

  /* — Elevation — */
  --e1: 0 1px 2px rgba(0,0,0,.10);
  --e2: 0 4px 32px rgba(0,0,0,.10);
  --e3: 0 8px 40px rgba(0,0,0,.20);

  /* — Layout — */
  --maxw: 1200px;
  --maxw-wide: 1320px;
  --header-h: 68px;
}

/* ============================================================
   2. RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  font-weight: var(--fw-regular);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg { display: block; max-width: 100%; }
a { color: var(--text-link); text-decoration: none; }
a:hover { text-decoration: underline; }
ul { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4 { margin: 0; font-weight: var(--fw-bold); line-height: 1.12; letter-spacing: -0.01em; }
p { margin: 0; }
button { font-family: inherit; }

/* Accessible focus — visible, branded */
:focus-visible {
  outline: 3px solid var(--red);
  outline-offset: 2px;
  border-radius: var(--r-badge);
}
.skip-link {
  position: absolute; left: var(--s4); top: -100px;
  background: var(--ink); color: var(--on-dark);
  padding: var(--s2) var(--s4); border-radius: var(--r-panel);
  z-index: 200; transition: top .15s ease;
}
.skip-link:focus { top: var(--s4); text-decoration: none; }

/* ============================================================
   3. LAYOUT HELPERS
   ============================================================ */
.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding-inline: var(--s6); }
.wrap-wide { max-width: var(--maxw-wide); }
.section { padding-block: var(--s24); }
.section--tight { padding-block: var(--s16); }
.section--surface { background: var(--surface); }
.section--dark { background: var(--ink); color: var(--on-dark); }
.section--dark h1, .section--dark h2, .section--dark h3 { color: var(--on-dark); }

.eyebrow {
  display: inline-flex; align-items: center; gap: var(--s2);
  font-size: 12px; font-weight: var(--fw-medium);
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--red);
}
.section--dark .eyebrow { color: #FF5252; }
.eyebrow::before { content: ""; width: 18px; height: 2px; background: currentColor; border-radius: 2px; }

.section-head { max-width: 720px; margin-bottom: var(--s12); }
.section-head--center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head h2 {
  font-size: clamp(28px, 4vw, 40px);
  margin: var(--s3) 0 var(--s4);
}
.section-head p { font-size: 18px; color: var(--text-2); text-wrap: pretty; }
.section--dark .section-head p { color: var(--on-dark-2); }

.lead { font-size: 19px; color: var(--text-2); text-wrap: pretty; }

/* ============================================================
   4. BUTTONS  (pill, sentence case)
   ============================================================ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: var(--s2);
  font-size: 15px; font-weight: var(--fw-medium); line-height: 1;
  padding: 13px var(--s6);
  border-radius: var(--r-pill);
  border: 1px solid transparent;
  cursor: pointer; transition: background-color .12s ease, color .12s ease, border-color .12s ease;
  white-space: nowrap;
}
.btn:hover { text-decoration: none; }
.btn--primary { background: var(--red); color: var(--white); }
.btn--primary:hover { background: var(--red-hover); }
.btn--dark { background: var(--ink); color: var(--white); }
.btn--dark:hover { background: var(--ink-soft); }
.btn--outline { background: transparent; color: var(--text); border-color: var(--gray-200); }
.btn--outline:hover { background: var(--gray-100); }
.section--dark .btn--outline { color: var(--on-dark); border-color: rgba(255,255,255,.25); }
.section--dark .btn--outline:hover { background: rgba(255,255,255,.08); }
.btn--ghost { background: transparent; color: var(--text); padding-left: 0; padding-right: 0; }
.btn--ghost:hover { color: var(--red); background: transparent; }
.btn--lg { font-size: 16px; padding: 16px var(--s8); }
.btn .ico { width: 18px; height: 18px; }
.btn-row { display: flex; flex-wrap: wrap; gap: var(--s3); }

.textlink {
  display: inline-flex; align-items: center; gap: 6px;
  font-weight: var(--fw-medium); color: var(--text);
}
.textlink:hover { color: var(--red); text-decoration: none; }
.textlink .ico { width: 16px; height: 16px; transition: transform .12s ease; }
.textlink:hover .ico { transform: translateX(3px); }

/* ============================================================
   5. HEADER / NAV  (CSS-only mobile drawer)
   ============================================================ */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.92);
  backdrop-filter: saturate(180%) blur(8px);
  border-bottom: 1px solid var(--border);
}
.nav {
  display: flex; align-items: center; gap: var(--s6);
  height: var(--header-h);
  max-width: var(--maxw-wide); margin: 0 auto; padding: 0 var(--s6);
}
.brand { display: inline-flex; align-items: center; gap: 10px; font-weight: var(--fw-bold); font-size: 20px; color: var(--ink); letter-spacing: -0.02em; }
.brand:hover { text-decoration: none; }
.brand .mark { width: 32px; height: 32px; flex: none; }
.brand b { color: var(--red); }

.nav-links { display: flex; align-items: center; gap: 2px; margin-left: var(--s4); flex: 1; }
.nav-links a {
  color: var(--text); font-size: 14.5px; font-weight: var(--fw-medium);
  padding: 8px 12px; border-radius: var(--r-pill);
}
.nav-links a:hover { background: var(--gray-100); text-decoration: none; }
.nav-links a[aria-current="page"] { color: var(--red); }
.nav-cta { display: flex; align-items: center; gap: var(--s3); }

.nav-toggle, .nav-toggle-label { display: none; }
.nav-phone { font-weight: var(--fw-medium); font-size: 14px; color: var(--text); }

@media (max-width: 1080px) {
  .nav-links a { padding: 8px 9px; }
  .nav-phone { display: none; }
}
@media (max-width: 960px) {
  .nav-toggle-label {
    display: inline-flex; align-items: center; justify-content: center;
    width: 44px; height: 44px; margin-left: auto; cursor: pointer;
    border-radius: var(--r-pill); border: 1px solid var(--border);
  }
  .nav-toggle-label:hover { background: var(--gray-100); }
  .nav-links {
    position: absolute; top: var(--header-h); left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--white); border-bottom: 1px solid var(--border);
    margin: 0; padding: var(--s3); box-shadow: var(--e2);
    max-height: 0; overflow: hidden; visibility: hidden;
    transition: max-height .2s ease;
  }
  .nav-links a { padding: 13px var(--s4); border-radius: var(--r-panel); }
  .nav-toggle:checked ~ .nav-links { max-height: 80vh; visibility: visible; }
  .nav .nav-cta .btn--outline { display: none; }
  .nav-cta { margin-left: auto; }
  .nav-toggle-label { margin-left: var(--s2); }
}

/* ============================================================
   6. PLACEHOLDER MEDIA  (swap for real <img> later)
   .ph = on-brand tile carrying an inline-SVG glyph + label
   ============================================================ */
.ph {
  position: relative; overflow: hidden;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: var(--s2);
  background: var(--gray-100);
  color: var(--gray-600);
  border-radius: var(--r-thumb);
  aspect-ratio: 16 / 9;
  text-align: center; padding: var(--s4);
}
.ph svg { width: 38px; height: 38px; }
.ph .ph-label { font-size: 12px; font-weight: var(--fw-medium); letter-spacing: .02em; color: var(--gray-600); }
.ph--tall { aspect-ratio: 4 / 5; }
.ph--square { aspect-ratio: 1 / 1; }
.ph--wide { aspect-ratio: 21 / 9; }
.ph--dark { background: var(--ink-soft); color: var(--on-dark-2); }
.ph--dark .ph-label { color: var(--on-dark-2); }
.ph--red { background: var(--red); color: #fff; }
.ph--red .ph-label { color: rgba(255,255,255,.9); }
.ph--accentline::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 3px; background: var(--red);
}

/* ============================================================
   7. CARDS & GRIDS
   ============================================================ */
.grid { display: grid; gap: var(--s6); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 960px) { .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; } }

/* Bare media card (DS: thumbnail + text, no chrome) */
.mcard .ph { margin-bottom: var(--s3); }
.mcard h3 { font-size: 17px; font-weight: var(--fw-medium); line-height: 1.25; }
.mcard p { color: var(--text-2); font-size: 14px; margin-top: 6px; }
.mcard .meta { color: var(--text-2); font-size: 13px; margin-top: 8px; display: flex; gap: 8px; align-items: center; flex-wrap: wrap; }
.mcard .meta .dot { width: 3px; height: 3px; border-radius: 50%; background: var(--gray-400); }
a.mcard, a.mcard:hover { text-decoration: none; color: inherit; display: block; }
a.mcard .ph { transition: transform .15s ease; }
a.mcard:hover h3 { color: var(--red); }

/* Panel card (bordered, for services/pricing/feature blocks) */
.panel {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--r-panel); padding: var(--s8);
  display: flex; flex-direction: column; gap: var(--s3);
  transition: border-color .12s ease, box-shadow .12s ease;
}
.panel--hover:hover { border-color: var(--gray-400); }
.panel h3 { font-size: 20px; }
.panel p { color: var(--text-2); font-size: 15px; }
.panel .p-ico {
  width: 48px; height: 48px; border-radius: var(--r-panel);
  display: grid; place-items: center; background: var(--gray-100); color: var(--ink);
}
.panel .p-ico svg { width: 24px; height: 24px; }
.panel--feature .p-ico { background: var(--ink); color: #fff; }

.chip-row { display: flex; flex-wrap: wrap; gap: var(--s2); }
.chip {
  font-size: 13px; font-weight: var(--fw-medium); color: var(--text);
  background: var(--gray-100); border-radius: var(--r-pill);
  padding: 7px 14px;
}
.section--dark .chip { background: rgba(255,255,255,.08); color: var(--on-dark); }

.badge {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 11px; font-weight: var(--fw-medium); letter-spacing: .04em;
  text-transform: uppercase; padding: 4px 8px; border-radius: var(--r-badge);
  background: var(--gray-100); color: var(--text-2);
}
.badge--red { background: var(--red); color: #fff; }
.badge--green { background: rgba(43,166,64,.12); color: var(--green); }

/* ============================================================
   8. HERO
   ============================================================ */
.hero { background: var(--ink); color: var(--on-dark); overflow: hidden; }
.hero-inner {
  display: grid; grid-template-columns: 1.05fr .95fr; gap: var(--s16);
  align-items: center; padding-block: var(--s24);
}
.hero h1 {
  font-size: clamp(38px, 5.4vw, 64px); line-height: 1.04;
  letter-spacing: -0.025em; color: var(--on-dark);
}
.hero h1 b { color: var(--red); font-weight: var(--fw-bold); }
.hero .lead { color: var(--on-dark-2); margin-top: var(--s6); font-size: 19px; max-width: 30em; }
.hero .btn-row { margin-top: var(--s8); }
.hero-stats { display: flex; gap: var(--s8); margin-top: var(--s12); flex-wrap: wrap; }
.hero-stats .num { font-size: 28px; font-weight: var(--fw-bold); color: var(--on-dark); }
.hero-stats .lbl { font-size: 13px; color: var(--on-dark-2); }
.hero-collage { display: grid; grid-template-columns: 1fr 1fr; gap: var(--s3); }
.hero-collage .ph { background: var(--ink-soft); color: var(--on-dark-2); border: 1px solid rgba(255,255,255,.06); }
.hero-collage .span2 { grid-column: span 2; }
@media (max-width: 880px) {
  .hero-inner { grid-template-columns: 1fr; gap: var(--s12); padding-block: var(--s16); }
  .hero-collage { order: -1; }
}

/* ============================================================
   9. LOGO / MARQUEE STRIP
   ============================================================ */
.logostrip { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: var(--s4); }
.logostrip .lg {
  font-weight: var(--fw-medium); color: var(--gray-400); font-size: 15px;
  padding: 10px 18px; border: 1px solid var(--border); border-radius: var(--r-pill);
}

/* ============================================================
   10. STATS BAND
   ============================================================ */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--s6); }
@media (max-width: 720px) { .stats { grid-template-columns: repeat(2, 1fr); } }
.stat .num { font-size: clamp(34px, 5vw, 52px); font-weight: var(--fw-bold); letter-spacing: -0.02em; line-height: 1; }
.stat .num b { color: var(--red); }
.stat .lbl { color: var(--text-2); font-size: 15px; margin-top: var(--s2); }
.section--dark .stat .lbl { color: var(--on-dark-2); }

/* ============================================================
   11. PROCESS TIMELINE
   ============================================================ */
.timeline { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--s6); counter-reset: step; }
@media (max-width: 860px) { .timeline { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .timeline { grid-template-columns: 1fr; } }
.step { position: relative; padding-top: var(--s8); }
.step::before {
  counter-increment: step; content: counter(step, decimal-leading-zero);
  font-size: 13px; font-weight: var(--fw-bold); color: var(--red);
  position: absolute; top: 0; left: 0;
}
.step::after {
  content: ""; position: absolute; top: 7px; left: 34px; right: 0; height: 1px; background: var(--border);
}
.timeline .step:last-child::after { display: none; }
.step h3 { font-size: 18px; margin-bottom: 6px; }
.step p { color: var(--text-2); font-size: 14.5px; }
.section--dark .step::after { background: rgba(255,255,255,.14); }
.section--dark .step p { color: var(--on-dark-2); }

/* ============================================================
   12. FAQ ACCORDION  (CSS-only details/summary)
   ============================================================ */
.faq { max-width: 820px; margin: 0 auto; }
.faq details { border-bottom: 1px solid var(--border); }
.faq summary {
  list-style: none; cursor: pointer; padding: var(--s6) 0;
  display: flex; justify-content: space-between; align-items: center; gap: var(--s4);
  font-size: 18px; font-weight: var(--fw-medium); color: var(--text);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary .pm { width: 22px; height: 22px; flex: none; position: relative; transition: transform .18s ease; }
.faq summary .pm::before, .faq summary .pm::after {
  content: ""; position: absolute; background: var(--red); border-radius: 2px;
  top: 50%; left: 50%; transform: translate(-50%,-50%);
}
.faq summary .pm::before { width: 14px; height: 2px; }
.faq summary .pm::after { width: 2px; height: 14px; transition: transform .18s ease; }
.faq details[open] summary .pm::after { transform: translate(-50%,-50%) scaleY(0); }
.faq details[open] summary { color: var(--red); }
.faq .ans { padding: 0 0 var(--s6); color: var(--text-2); font-size: 15.5px; max-width: 64ch; }

/* ============================================================
   13. COMPARISON TABLE
   ============================================================ */
.cmp { width: 100%; border-collapse: collapse; font-size: 15px; }
.cmp th, .cmp td { text-align: left; padding: var(--s4) var(--s4); border-bottom: 1px solid var(--border); }
.cmp thead th { font-size: 13px; text-transform: uppercase; letter-spacing: .04em; color: var(--text-2); font-weight: var(--fw-medium); }
.cmp tbody th { font-weight: var(--fw-medium); color: var(--text); }
.cmp td.yes { color: var(--green); font-weight: var(--fw-medium); }
.cmp td.no { color: var(--gray-400); }
.cmp .col-em { background: var(--gray-50); }
.cmp-scroll { overflow-x: auto; border: 1px solid var(--border); border-radius: var(--r-panel); }
.cmp-scroll table { min-width: 640px; }

/* ============================================================
   14. PRICING TIERS
   ============================================================ */
.tiers { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--s6); }
@media (max-width: 880px) { .tiers { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; } }
.tier {
  border: 1px solid var(--border); border-radius: var(--r-panel); padding: var(--s8);
  display: flex; flex-direction: column; gap: var(--s4); background: var(--white);
}
.tier--featured { border-color: var(--ink); box-shadow: var(--e2); position: relative; }
.tier--featured::before {
  content: "Most popular"; position: absolute; top: -12px; left: var(--s8);
  background: var(--red); color: #fff; font-size: 11px; font-weight: var(--fw-medium);
  letter-spacing: .04em; text-transform: uppercase; padding: 5px 10px; border-radius: var(--r-badge);
}
.tier .t-name { font-size: 14px; font-weight: var(--fw-medium); letter-spacing: .04em; text-transform: uppercase; color: var(--text-2); }
.tier .t-price { font-size: 40px; font-weight: var(--fw-bold); letter-spacing: -0.02em; }
.tier .t-price small { font-size: 15px; font-weight: var(--fw-regular); color: var(--text-2); }
.tier ul { display: flex; flex-direction: column; gap: var(--s3); margin: var(--s2) 0; }
.tier li { display: flex; gap: var(--s2); align-items: flex-start; font-size: 14.5px; color: var(--text-2); }
.tier li svg { width: 18px; height: 18px; flex: none; color: var(--green); margin-top: 2px; }
.tier .btn { margin-top: auto; }

/* ============================================================
   15. TESTIMONIALS
   ============================================================ */
.tgrid { columns: 3; column-gap: var(--s6); }
@media (max-width: 960px) { .tgrid { columns: 2; } }
@media (max-width: 600px) { .tgrid { columns: 1; } }
.quote {
  break-inside: avoid; margin-bottom: var(--s6);
  border: 1px solid var(--border); border-radius: var(--r-panel); padding: var(--s6);
  background: var(--white);
}
.quote p { font-size: 15.5px; color: var(--text); }
.quote .who { display: flex; align-items: center; gap: var(--s3); margin-top: var(--s4); }
.quote .av { width: 40px; height: 40px; border-radius: var(--r-pill); background: var(--gray-100); color: var(--gray-600); display: grid; place-items: center; font-weight: var(--fw-bold); flex: none; }
.quote .who b { display: block; font-size: 14px; }
.quote .who span { font-size: 13px; color: var(--text-2); }
.stars { color: var(--red); display: flex; gap: 2px; margin-bottom: var(--s3); }
.stars svg { width: 16px; height: 16px; }

/* ============================================================
   16. SPLIT / FEATURE ROWS
   ============================================================ */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: var(--s16); align-items: center; }
.split--reverse .split-media { order: 2; }
@media (max-width: 860px) { .split { grid-template-columns: 1fr; gap: var(--s8); } .split--reverse .split-media { order: 0; } }
.checklist { display: flex; flex-direction: column; gap: var(--s3); margin-top: var(--s6); }
.checklist li { display: flex; gap: var(--s3); align-items: flex-start; }
.checklist svg { width: 22px; height: 22px; flex: none; color: var(--red); margin-top: 1px; }
.checklist b { font-weight: var(--fw-medium); }
.checklist span { color: var(--text-2); font-size: 15px; }

/* ============================================================
   17. CTA BAND
   ============================================================ */
.cta-band { background: var(--ink); color: var(--on-dark); border-radius: var(--r-thumb); padding: var(--s16) var(--s12); text-align: center; }
.cta-band h2 { font-size: clamp(28px, 4vw, 40px); color: var(--on-dark); }
.cta-band p { color: var(--on-dark-2); font-size: 18px; margin: var(--s4) auto 0; max-width: 48ch; }
.cta-band .btn-row { justify-content: center; margin-top: var(--s8); }

/* ============================================================
   18. PAGE HEADER (interior pages)
   ============================================================ */
.page-head { padding: var(--s16) 0 var(--s12); border-bottom: 1px solid var(--border); }
.page-head.section--dark { border-bottom: 0; }
.page-head h1 { font-size: clamp(34px, 5vw, 56px); letter-spacing: -0.025em; }
.page-head p { font-size: 19px; color: var(--text-2); margin-top: var(--s4); max-width: 56ch; text-wrap: pretty; }
.page-head.section--dark p { color: var(--on-dark-2); }
.crumb { font-size: 13px; color: var(--text-2); margin-bottom: var(--s4); }
.crumb a { color: var(--text-2); }
.page-head.section--dark .crumb, .page-head.section--dark .crumb a { color: var(--on-dark-2); }

/* ============================================================
   19. FORMS
   ============================================================ */
.field { display: flex; flex-direction: column; gap: 7px; margin-bottom: var(--s4); }
.field label { font-size: 14px; font-weight: var(--fw-medium); }
.field .req { color: var(--red); }
.field input, .field select, .field textarea {
  font-family: inherit; font-size: 15px; color: var(--text);
  padding: 13px var(--s4); border: 1px solid var(--gray-200); border-radius: var(--r-panel);
  background: var(--white); width: 100%; transition: border-color .12s ease;
}
.field textarea { resize: vertical; min-height: 130px; }
.field input:hover, .field select:hover, .field textarea:hover { border-color: var(--gray-400); }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--ink); box-shadow: 0 0 0 3px rgba(15,15,15,.08); }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--s4); }
@media (max-width: 560px) { .field-row { grid-template-columns: 1fr; } }
.form-note { font-size: 13px; color: var(--text-2); }
.check { display: flex; gap: var(--s3); align-items: flex-start; font-size: 14px; color: var(--text-2); }
.check input { width: 18px; height: 18px; margin-top: 2px; accent-color: var(--red); flex: none; }

/* Contact info list */
.contact-list { display: flex; flex-direction: column; gap: var(--s6); }
.contact-list li { display: flex; gap: var(--s4); align-items: flex-start; }
.contact-list .c-ico { width: 44px; height: 44px; border-radius: var(--r-panel); background: var(--gray-100); display: grid; place-items: center; flex: none; color: var(--ink); }
.contact-list .c-ico svg { width: 22px; height: 22px; }
.contact-list b { display: block; font-size: 15px; }
.contact-list a, .contact-list span { color: var(--text-2); font-size: 15px; }

/* ============================================================
   20. FOOTER
   ============================================================ */
.site-footer { background: var(--ink); color: var(--on-dark-2); padding: var(--s16) 0 var(--s8); }
.footer-top { display: grid; grid-template-columns: 1.4fr repeat(4, 1fr); gap: var(--s8); }
@media (max-width: 960px) { .footer-top { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .footer-top { grid-template-columns: 1fr; } }
.footer-brand .brand { color: #fff; }
.footer-brand p { margin-top: var(--s4); font-size: 14px; max-width: 30ch; }
.footer-tag { font-size: 13px; color: var(--gray-400); margin-top: var(--s4); font-weight: var(--fw-medium); letter-spacing: .02em; }
.fcol h4 { font-size: 13px; text-transform: uppercase; letter-spacing: .06em; color: #fff; margin-bottom: var(--s4); font-weight: var(--fw-medium); }
.fcol a { display: block; color: var(--on-dark-2); font-size: 14px; padding: 5px 0; }
.fcol a:hover { color: #fff; }
.social { display: flex; gap: var(--s2); margin-top: var(--s4); }
.social a { width: 40px; height: 40px; border-radius: var(--r-pill); border: 1px solid rgba(255,255,255,.16); display: grid; place-items: center; color: #fff; }
.social a:hover { background: rgba(255,255,255,.10); text-decoration: none; }
.social svg { width: 18px; height: 18px; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; gap: var(--s4); flex-wrap: wrap; margin-top: var(--s12); padding-top: var(--s6); border-top: 1px solid rgba(255,255,255,.12); font-size: 13px; }
.footer-bottom nav { display: flex; gap: var(--s4); flex-wrap: wrap; }
.footer-bottom a { color: var(--gray-400); }
.footer-bottom a:hover { color: #fff; }

/* ============================================================
   21. UTILITIES
   ============================================================ */
.mt-2 { margin-top: var(--s2); } .mt-4 { margin-top: var(--s4); } .mt-6 { margin-top: var(--s6); } .mt-8 { margin-top: var(--s8); }
.center { text-align: center; }
.muted { color: var(--text-2); }
.measure { max-width: 64ch; }
@media (prefers-reduced-motion: reduce) { * { transition: none !important; scroll-behavior: auto !important; } }
