@charset "UTF-8";
/* ==========================================================================
   ZTOO — ztoo.company
   One stylesheet, no dependencies. Values are taken from the ZTOO design
   system; the token blocks below are copied verbatim from
   _ds/…/tokens/*.css so this file is the only thing a page needs to load.
   ========================================================================== */

/* --------------------------------------------------------------------------
   Fonts — self-hosted, OFL. Licences live beside the files in assets/fonts/.
   -------------------------------------------------------------------------- */
@font-face {
  font-family: 'Sora';
  src: url('../fonts/Sora-Variable.woff2') format('woff2-variations');
  font-weight: 100 800;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Manrope';
  src: url('../fonts/Manrope-Variable.woff2') format('woff2-variations');
  font-weight: 200 800;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Space Grotesk';
  src: url('../fonts/SpaceGrotesk-Variable.woff2') format('woff2-variations');
  font-weight: 300 700;
  font-style: normal;
  font-display: swap;
}

/* --------------------------------------------------------------------------
   Tokens
   -------------------------------------------------------------------------- */
:root {
  /* Brand — sampled from the logo mark */
  --brand-50: #fff4e6;
  --brand-100: #ffe4c2;
  --brand-200: #ffce94;
  --brand-300: #ffb05c;
  --brand-400: #ff9a2e;
  --brand-500: #fd8604;
  --brand-600: #e8620a;
  --brand-700: #c24e08;
  --brand-800: #963c0a;
  --brand-900: #6b2c0c;
  --amber-400: #ffb020;
  --amber-300: #ffc65a;

  /* Warm neutrals — never pure grey */
  --ink-950: #0b0a09;
  --ink-900: #141210;
  --ink-800: #1f1c19;
  --ink-700: #2c2823;
  --ink-600: #46403a;
  --ink-500: #6b635b;
  --ink-400: #938a80;
  --ink-300: #bdb4a8;
  --ink-200: #ded7cc;
  --ink-100: #efeae1;
  --ink-50: #f7f3ec;
  --paper: #fbf8f2;
  --white: #ffffff;

  --success: #3f9d5a;
  --success-soft: #e4f2e7;
  --danger: #d8452b;

  --grad-brand: linear-gradient(135deg, #ffb020 0%, #fd8604 45%, #e8620a 100%);
  --grad-ink: linear-gradient(160deg, #1f1c19 0%, #0b0a09 100%);

  --surface: var(--white);
  --border: var(--ink-200);
  --border-strong: var(--ink-300);
  --text: var(--ink-900);
  --text-muted: var(--ink-500);
  --text-subtle: var(--ink-400);
  --text-on-brand: #1a0f02;
  --link: var(--brand-600);
  --link-hover: var(--brand-700);
  --focus-ring: var(--brand-400);

  --font-display: 'Sora', 'Segoe UI', system-ui, sans-serif;
  --font-body: 'Manrope', 'Segoe UI', system-ui, sans-serif;
  --font-mono: 'Space Grotesk', ui-monospace, 'SF Mono', monospace;

  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 22px;
  --radius-2xl: 28px;
  --radius-full: 999px;
  --container: 1200px;

  --shadow-xs: 0 1px 2px rgba(20, 18, 16, 0.06);
  --shadow-sm: 0 2px 6px rgba(20, 18, 16, 0.08);
  --shadow-md: 0 8px 20px rgba(20, 18, 16, 0.1);
  --shadow-lg: 0 18px 40px rgba(20, 18, 16, 0.14);
  --glow-brand: 0 6px 24px rgba(253, 134, 4, 0.35);
  --glow-brand-lg: 0 10px 44px rgba(253, 134, 4, 0.45);

  --ease-out: cubic-bezier(0.16, 0.84, 0.44, 1);
  --dur-fast: 120ms;
  --dur-base: 200ms;
}

/* --------------------------------------------------------------------------
   Base
   -------------------------------------------------------------------------- */
*,
*::before,
*::after { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--text);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img, svg { max-width: 100%; }
img { height: auto; }

a { color: var(--link); text-decoration: none; }
a:hover { color: var(--link-hover); }

h1, h2, h3, h4, p, ul, ol, dl, dd, figure { margin: 0; }
ul, ol { padding: 0; list-style: none; }

:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(255, 154, 46, 0.5);
  border-radius: var(--radius-sm);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 8px;
  z-index: 100;
  padding: 10px 16px;
  border-radius: var(--radius-md);
  background: var(--ink-900);
  color: var(--paper);
  font-size: 14px;
  font-weight: 700;
}
.skip-link:focus { left: 12px; color: var(--paper); }

/* --------------------------------------------------------------------------
   Layout
   -------------------------------------------------------------------------- */
.sect {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 44px;
}

.band { position: relative; overflow: hidden; }
.band--ink { background: var(--ink-950); }
.band--ink-top { margin-top: 60px; }

/* Decorative radial glow. Always inside a clipping parent. */
.glow {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  background: radial-gradient(circle, rgba(253, 134, 4, 0.2), transparent 68%);
}
.glow--tr { top: -140px; right: -120px; width: 380px; height: 380px; }
.glow--tr-lg { top: -160px; right: -120px; width: 420px; height: 420px; background: radial-gradient(circle, rgba(253, 134, 4, 0.18), transparent 68%); }
.glow--br { bottom: -140px; right: -100px; width: 360px; height: 360px; }
.glow--bottom { bottom: -200px; left: 30%; width: 620px; height: 620px; background: radial-gradient(circle, rgba(253, 134, 4, 0.14), transparent 70%); }

.grid { display: grid; }
.grid > * { min-width: 0; }
.g2 { grid-template-columns: 1fr 1fr; }
.g3 { grid-template-columns: repeat(3, 1fr); }
.g4 { grid-template-columns: repeat(4, 1fr); }
.g5 { grid-template-columns: repeat(5, 1fr); }

.stack { display: flex; }

/* --------------------------------------------------------------------------
   Type
   -------------------------------------------------------------------------- */
.eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  color: var(--brand-600);
}
.eyebrow--on-ink { color: var(--brand-400); letter-spacing: 0.2em; }

.h1 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 56px;
  line-height: 1.05;
  letter-spacing: -0.035em;
  color: var(--ink-900);
  text-wrap: pretty;
}
.h1--hero { font-size: 60px; line-height: 1.04; }
.h1--contact { font-size: 52px; line-height: 1.06; }

.h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 40px;
  letter-spacing: -0.025em;
  color: var(--ink-900);
  text-wrap: pretty;
}
.h2--36 { font-size: 36px; }
.h2--34 { font-size: 34px; letter-spacing: -0.02em; }
.h2--32 { font-size: 32px; letter-spacing: -0.02em; }
.h2--28 { font-size: 28px; letter-spacing: -0.02em; }
.h2--on-ink { color: var(--paper); }

.lead {
  font-size: 19px;
  line-height: 1.7;
  color: var(--text-muted);
  text-wrap: pretty;
}
.lead--on-ink { color: var(--ink-300); font-size: 17px; }

.copy { font-size: 16px; line-height: 1.7; color: var(--text-muted); }
.copy--sm { font-size: 15px; line-height: 1.65; }
.note { font-size: 13px; line-height: 1.6; color: var(--text-subtle); }
.mono {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--ink-500);
}
.mono--12 { font-size: 12px; letter-spacing: 0; }

/* --------------------------------------------------------------------------
   Buttons — heights, radii and glow from the design system's Button
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 42px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1;
  white-space: nowrap;
  cursor: pointer;
  user-select: none;
  text-decoration: none;
  transition: transform var(--dur-fast) var(--ease-out), background var(--dur-base) var(--ease-out),
    box-shadow var(--dur-base) var(--ease-out), border-color var(--dur-base) var(--ease-out), color var(--dur-base) var(--ease-out);
}
.btn:active { transform: scale(0.97); }
.btn[disabled] { opacity: 0.45; pointer-events: none; }

.btn--sm { height: 34px; padding: 0 14px; border-radius: var(--radius-sm); }
.btn--lg { height: 52px; padding: 0 28px; font-size: 16px; gap: 10px; }
.btn--block { width: 100%; }

.btn--primary {
  background: var(--grad-brand);
  color: var(--text-on-brand);
  box-shadow: var(--glow-brand);
}
.btn--primary:hover { box-shadow: var(--glow-brand-lg); filter: brightness(1.04); color: var(--text-on-brand); }

.btn--secondary {
  background: var(--surface);
  color: var(--text);
  border-color: var(--border-strong);
  box-shadow: var(--shadow-xs);
}
.btn--secondary:hover { border-color: var(--brand-500); color: var(--brand-600); }

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

.btn__icon { display: flex; flex: none; }
.btn__icon svg { width: 18px; height: 18px; }

/* --------------------------------------------------------------------------
   Header
   -------------------------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(251, 248, 242, 0.86);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}
.site-header__inner {
  height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.site-header__left { display: flex; align-items: center; gap: 36px; min-width: 0; }
.brand { display: flex; align-items: center; }
.brand img { height: 42px; width: auto; display: block; }

.nav { display: flex; gap: 24px; }
.nav__link {
  font-size: 14px;
  font-weight: 600;
  color: var(--ink-600);
  transition: color var(--dur-base);
}
.nav__link:hover { color: var(--brand-600); }
.nav__link[aria-current='page'] { color: var(--ink-900); }
.nav__link[aria-current='page']::after {
  content: '';
  display: block;
  height: 2px;
  border-radius: 2px;
  background: var(--grad-brand);
  margin-top: 5px;
}

.site-header__right { display: flex; align-items: center; gap: 14px; }
.header-phone {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--ink-500);
  white-space: nowrap;
}

.menu-btn {
  display: none;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-md);
  background: var(--surface);
  color: var(--ink-800);
  cursor: pointer;
}
.menu-btn svg { width: 20px; height: 20px; }
.menu-btn__close { display: none; }
.menu-btn[aria-expanded='true'] .menu-btn__open { display: none; }
.menu-btn[aria-expanded='true'] .menu-btn__close { display: block; }

.drawer {
  display: none;
  border-top: 1px solid var(--border);
  background: var(--paper);
  padding: 16px 24px 24px;
}
.drawer[data-open='1'] { display: block; }
.drawer__link {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 20px;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  color: var(--ink-900);
}
.drawer__link[aria-current='page'] { color: var(--brand-600); }
.drawer__foot { display: flex; flex-direction: column; gap: 12px; margin-top: 18px; }
.drawer__phone { font-family: var(--font-mono); font-size: 13px; color: var(--ink-500); text-align: center; }

/* --------------------------------------------------------------------------
   Hero
   -------------------------------------------------------------------------- */
.hero { padding-top: 60px; }
.hero__inner { max-width: 840px; }
.hero .h1 { margin-top: 16px; }
.hero .lead { margin-top: 18px; }

.page-head { padding-top: 60px; padding-bottom: 40px; }
.page-head .h1 { margin-top: 14px; }
.page-head .lead { margin-top: 18px; }
.page-head__narrow { max-width: 760px; }
.page-head__lead { max-width: 640px; }

/* --------------------------------------------------------------------------
   Scope tool
   -------------------------------------------------------------------------- */
.scope { padding-top: 34px; padding-bottom: 72px; }
.scope__grid { display: grid; grid-template-columns: 1fr 400px; gap: 28px; align-items: start; }
.scope__grid > * { min-width: 0; }

.scope__card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-2xl);
  padding: 32px;
  box-shadow: var(--shadow-md);
}

.step { display: flex; align-items: baseline; gap: 12px; }
.step--2 { margin-top: 34px; }
.step__n { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.18em; color: var(--brand-600); }
.step__title { font-family: var(--font-display); font-weight: 700; font-size: 19px; color: var(--ink-900); }
.step__count { font-family: var(--font-mono); font-size: 11px; color: var(--ink-400); margin-left: auto; }

.chips { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 16px; }
.chip {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--surface);
  color: var(--ink-700);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--dur-base);
}
.chip[aria-checked='true'] {
  border-color: transparent;
  background: var(--grad-brand);
  color: var(--text-on-brand);
  box-shadow: var(--glow-brand);
}

.opts { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 16px; }
.opts > * { min-width: 0; }
.opt {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  width: 100%;
  padding: 14px;
  text-align: left;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: var(--surface);
  cursor: pointer;
  transition: all var(--dur-base);
  font-family: var(--font-body);
}
.opt[aria-pressed='true'] {
  border-color: var(--brand-500);
  background: var(--brand-50);
  box-shadow: var(--shadow-sm);
}
.opt__icon {
  width: 34px;
  height: 34px;
  flex: none;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--ink-100);
  color: var(--ink-500);
  transition: all var(--dur-base);
}
.opt__icon svg { width: 17px; height: 17px; }
.opt[aria-pressed='true'] .opt__icon {
  background: var(--grad-brand);
  color: var(--text-on-brand);
  box-shadow: var(--glow-brand);
}
.opt__text { min-width: 0; }
.opt__row { display: flex; align-items: baseline; }
.opt__label { font-size: 15px; font-weight: 700; color: var(--ink-800); }
.opt[aria-pressed='true'] .opt__label { color: var(--brand-700); }
.opt__mark {
  font-family: var(--font-mono);
  font-size: 15px;
  line-height: 1;
  margin-left: auto;
  padding-left: 8px;
  color: var(--ink-400);
}
.opt[aria-pressed='true'] .opt__mark { color: var(--brand-600); }
.opt__mark-off { display: inline; }
.opt__mark-on { display: none; }
.opt[aria-pressed='true'] .opt__mark-off { display: none; }
.opt[aria-pressed='true'] .opt__mark-on { display: inline; }
.opt__note { font-size: 12.5px; line-height: 1.45; color: var(--text-muted); margin-top: 2px; }

.custom { display: flex; align-items: center; gap: 10px; margin-top: 18px; }
.custom__icon {
  width: 34px;
  height: 34px;
  flex: none;
  border-radius: 10px;
  background: var(--ink-100);
  color: var(--ink-500);
  display: flex;
  align-items: center;
  justify-content: center;
}
.custom__icon svg { width: 17px; height: 17px; }
.custom__input {
  width: 100%;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--ink-900);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 15px 16px;
  outline: none;
  transition: border-color var(--dur-base);
}
.custom__input:not(:placeholder-shown) { border-color: var(--brand-500); }
.scope__foot { margin-top: 20px; }

.readout {
  position: sticky;
  top: 98px;
  background: var(--grad-ink);
  border-radius: var(--radius-2xl);
  padding: 32px;
  overflow: hidden;
}
.readout__inner { position: relative; }
.readout__label { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.2em; color: var(--ink-400); }
.readout__kind {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 40px;
  line-height: 1.05;
  letter-spacing: -0.03em;
  background: var(--grad-brand);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-top: 14px;
}
.readout__sub { font-size: 15px; color: var(--ink-300); margin-top: 4px; }
.readout__block { margin-top: 24px; padding-top: 22px; border-top: 1px solid var(--ink-800); }
.readout__list { display: flex; flex-direction: column; gap: 11px; margin-top: 14px; }
.readout__item {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 15px;
  line-height: 1.5;
  color: var(--paper);
}
.readout__tick { color: var(--brand-500); display: flex; flex: none; margin-top: 2px; }
.readout__tick svg { width: 16px; height: 16px; }
.readout__cta { margin-top: 28px; display: flex; flex-direction: column; gap: 10px; }
.readout__fine { font-size: 12px; color: var(--ink-400); text-align: center; }

.progress { margin-top: 26px; }
.progress__row { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
.progress__end { font-family: var(--font-display); font-weight: 800; font-size: 13px; color: var(--ink-500); }
.progress__end--1 { color: var(--brand-500); }
.progress__track {
  flex: 1;
  height: 6px;
  border-radius: var(--radius-full);
  background: var(--ink-800);
  overflow: hidden;
  display: flex;
}
.progress__seg:nth-child(1) { width: 15%; background: var(--brand-700); }
.progress__seg:nth-child(2) { width: 25%; background: var(--brand-600); }
.progress__seg:nth-child(3) { width: 45%; background: var(--brand-500); }
.progress__seg:nth-child(4) { width: 15%; background: var(--amber-400); }
.progress__labels {
  display: flex;
  justify-content: space-between;
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.1em;
  color: var(--ink-500);
}

.bar01 { display: flex; align-items: center; gap: 14px; margin-bottom: 26px; }
.bar01__end { font-family: var(--font-display); font-weight: 800; font-size: 14px; color: var(--ink-500); }
.bar01__end--1 { color: var(--brand-500); }
.bar01__track { flex: 1; height: 5px; border-radius: var(--radius-full); background: var(--ink-800); overflow: hidden; }
.bar01__fill { width: 100%; height: 100%; background: var(--grad-brand); }

/* --------------------------------------------------------------------------
   Tech rail
   -------------------------------------------------------------------------- */
.rail { border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); background: var(--paper); }
.rail__inner { display: flex; align-items: center; gap: 20px; padding-top: 18px; padding-bottom: 18px; overflow: hidden; }
.rail__label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--ink-400);
  flex: none;
  white-space: nowrap;
}
.rail__mask {
  flex: 1;
  min-width: 0;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}
@keyframes ztoo-marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.marquee { display: flex; width: max-content; animation: ztoo-marquee 46s linear infinite; }
.marquee:hover { animation-play-state: paused; }
.techitem { display: flex; align-items: center; gap: 9px; padding: 0 22px; flex: none; }
.techitem img {
  width: 22px;
  height: 22px;
  filter: grayscale(1);
  opacity: 0.5;
  transition: filter var(--dur-base), opacity var(--dur-base);
}
.techitem span {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  color: var(--ink-400);
  white-space: nowrap;
  transition: color var(--dur-base);
}
.techitem:hover img { filter: none; opacity: 1; }
.techitem:hover span { color: var(--ink-800); }

/* --------------------------------------------------------------------------
   Rows (practices index, release log, posts)
   -------------------------------------------------------------------------- */
.rows { border-top: 1px solid var(--border); }
.row {
  display: grid;
  gap: 24px;
  padding: 26px 12px;
  border-bottom: 1px solid var(--border);
  color: inherit;
  transition: background var(--dur-base), transform var(--dur-base);
}
a.row:hover { background: var(--ink-50); transform: translateX(5px); color: inherit; }

.row--svc { grid-template-columns: 60px 1fr 1.1fr 190px; align-items: center; }
.row--read { grid-template-columns: 1.1fr 1fr; align-items: center; }
.row--read .row__title { font-size: 21px; }
.row__n { font-family: var(--font-mono); font-size: 13px; color: var(--brand-600); }
.row__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 28px;
  letter-spacing: -0.02em;
  color: var(--ink-900);
}
.row__desc { font-size: 15px; line-height: 1.6; color: var(--text-muted); }
.row__aside { font-family: var(--font-mono); font-size: 12px; color: var(--ink-500); text-align: right; }

.row--log { grid-template-columns: 1fr 220px; gap: 20px; padding: 24px 12px; align-items: start; }
.row__head { display: flex; align-items: center; gap: 10px; }
.row__dot { width: 7px; height: 7px; flex: none; border-radius: 50%; background: var(--ink-300); }
.row__dot--live { background: var(--brand-500); box-shadow: var(--glow-brand); }
.row__log-title { font-family: var(--font-display); font-weight: 800; font-size: 21px; color: var(--ink-900); }
.row__kind {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--ink-500);
  text-align: right;
}

.row--post { grid-template-columns: 120px 1fr 150px; padding: 28px 12px; align-items: baseline; }
.row__date { font-family: var(--font-mono); font-size: 12px; color: var(--ink-400); }
.row__post-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 24px;
  letter-spacing: -0.015em;
  color: var(--ink-900);
}
.row__excerpt { font-size: 15px; line-height: 1.65; color: var(--text-muted); margin-top: 6px; max-width: 640px; }

/* --------------------------------------------------------------------------
   Process
   -------------------------------------------------------------------------- */
.process { padding-top: 80px; padding-bottom: 80px; position: relative; }
.process__list { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.process__list > * { min-width: 0; }
.process__step { padding: 20px 16px; border-top: 1px solid var(--ink-800); transition: background var(--dur-base); }
.process__step:hover { background: rgba(253, 134, 4, 0.07); }
.process__num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 44px;
  line-height: 1;
  background: var(--grad-brand);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.process__title { font-family: var(--font-display); font-weight: 700; font-size: 19px; color: var(--paper); margin: 12px 0 6px; }
.process__body { font-size: 14px; line-height: 1.6; color: var(--ink-400); }
.process__tag { font-family: var(--font-mono); font-size: 11px; color: var(--ink-600); margin-top: 10px; }

/* --------------------------------------------------------------------------
   Clients
   -------------------------------------------------------------------------- */
.clients { padding-top: 60px; padding-bottom: 76px; }
.clients__head { display: flex; align-items: flex-end; justify-content: space-between; gap: 20px; }
.logo-strip {
  margin-top: 26px;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}
.logo-marquee {
  display: flex;
  width: max-content;
  gap: 16px;
  list-style: none;
  margin: 0;
  padding: 0;
  animation: ztoo-marquee 28s linear infinite;
}
.logo-marquee:hover { animation-play-state: paused; }
.logo-tile {
  flex: none;
  width: 190px;
  height: 104px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--surface);
  padding: 10px;
}
.logo-tile img,
.logo-slot img { width: 100%; height: 100%; object-fit: contain; display: block; }
.log { margin-top: 26px; border-top: 1px solid var(--border); }

/* --------------------------------------------------------------------------
   Team strip
   -------------------------------------------------------------------------- */
.team-split { display: grid; grid-template-columns: 1fr 1fr; gap: 36px; align-items: center; margin-top: 72px; }
.team-split > * { min-width: 0; }
.team-split .copy { font-size: 17px; }
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.team-grid > * { min-width: 0; }
.tile-square { aspect-ratio: 1; border-radius: var(--radius-lg); }
.tile-mark {
  background: var(--ink-950);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
}
.tile-mark img { max-width: 100%; max-height: 100%; width: auto; display: block; }
.tile-kl {
  background: var(--ink-900);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  color: var(--ink-400);
}

/* --------------------------------------------------------------------------
   Cards (services, work)
   -------------------------------------------------------------------------- */
.cards { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.cards > * { min-width: 0; }

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-2xl);
  padding: 32px;
  box-shadow: var(--shadow-md);
}
.lift { transition: transform var(--dur-base) var(--ease-out), box-shadow var(--dur-base) var(--ease-out); }
.lift:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }

.card__icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-lg);
  background: var(--grad-brand);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-on-brand);
  box-shadow: var(--glow-brand);
}
.card__icon svg { width: 24px; height: 24px; }
.card .h2--28 { margin: 20px 0 8px; }
.card__list { display: flex; flex-direction: column; gap: 9px; margin-top: 20px; }
.card__list li { display: flex; gap: 10px; align-items: center; font-size: 15px; color: var(--ink-700); }
.card__tick { color: var(--brand-600); display: flex; flex: none; }
.card__tick svg { width: 16px; height: 16px; }
.card__foot {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  margin-top: 24px;
  padding-top: 18px;
  border-top: 1px solid var(--border);
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--ink-500);
}

.card--ink {
  background: var(--grad-ink);
  border: none;
  border-radius: var(--radius-2xl);
  padding: 32px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.card--ink .card__foot { border-top-color: var(--ink-800); color: var(--ink-400); position: relative; }

.panel-ink {
  background: var(--grad-ink);
  border-radius: var(--radius-2xl);
  padding: 36px;
  position: relative;
  overflow: hidden;
}

/* Work cards */
.work-card {
  border-radius: var(--radius-xl);
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 230px;
}
.work-card--light { background: var(--surface); border: 1px solid var(--border); box-shadow: var(--shadow-md); }
.work-card--brand { background: var(--grad-brand); box-shadow: var(--glow-brand); }
.work-card--ink { background: var(--ink-900); position: relative; overflow: hidden; }
.work-card--dashed { background: var(--surface); border: 1px dashed var(--border-strong); }
.work-card__wash {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(253, 134, 4, 0.16), transparent 60%);
  pointer-events: none;
}
.work-card__inner { position: relative; }
.work-card__kind { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.14em; color: var(--brand-600); }
.work-card__kind--on-ink { color: var(--brand-400); }
.work-card__kind--on-brand { color: var(--text-on-brand); opacity: 0.7; }
.work-card__title { font-family: var(--font-display); font-weight: 800; font-size: 24px; line-height: 1.15; color: var(--ink-900); margin: 10px 0 6px; }
.work-card__title--on-ink { color: var(--paper); }
.work-card__title--on-brand { color: var(--text-on-brand); }
.work-card__body { font-size: 15px; line-height: 1.65; color: var(--text-muted); }
.work-card__body--on-ink { color: var(--ink-300); }
.work-card__body--on-brand { color: #3a1706; }
.work-card__tag { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.12em; color: var(--ink-500); margin-top: 16px; }
.work-card__tag--on-ink { color: var(--ink-400); position: relative; }
.work-card__tag--on-brand { color: #3a1706; }

/* Featured work card */
.feature { border-radius: var(--radius-2xl); overflow: hidden; background: var(--ink-900); position: relative; }
.feature__wash {
  position: absolute;
  inset: 0;
  background: linear-gradient(150deg, rgba(253, 134, 4, 0.2), transparent 55%);
  pointer-events: none;
}
.feature__grid { position: relative; display: grid; grid-template-columns: 1fr; gap: 36px; padding: 36px; }
.feature__grid > * { min-width: 0; }
.feature__col { display: flex; flex-direction: column; }
.feature__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 36px;
  line-height: 1.08;
  letter-spacing: -0.025em;
  color: var(--paper);
  margin: 12px 0 10px;
}
.modules { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-top: 22px; }
.modules > * { min-width: 0; }
.module {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 11px 13px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--ink-800);
  font-size: 14px;
  color: var(--paper);
}
.module__icon { color: var(--brand-500); display: flex; flex: none; }
.module__icon svg { width: 16px; height: 16px; }
.outcomes {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 30px;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--ink-800);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--ink-400);
}
.outcomes span { white-space: nowrap; }
.shots { display: flex; flex-direction: column; gap: 14px; }
.shots__row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.shots__row > * { min-width: 0; }

/* --------------------------------------------------------------------------
   Placeholders — slots waiting for real artwork
   -------------------------------------------------------------------------- */
.ph {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 8px;
  border: 1px dashed var(--border-strong);
  border-radius: var(--radius-lg);
  background: var(--ink-100);
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  color: var(--ink-400);
}
.ph--dark { background: transparent; border-color: var(--ink-700); color: var(--ink-500); }
/* A bare dashed --ink-700 outline is invisible at logo size on ink. */
.ph--soft { background: rgba(255, 255, 255, 0.05); border-color: var(--ink-600); }
.ph--square { aspect-ratio: 1; }
.ph--fill { width: 100%; height: 100%; }
.ph--grow { flex: 1; min-height: 230px; }
.ph--r12 { border-radius: var(--radius-md); }
.ph--r20 { border-radius: 20px; }
.ph--h130 { height: 130px; }
.ph--h200 { height: 200px; border-radius: 20px; }

.logo-slot { box-sizing: border-box; }
.logo-slot--plate { background: #fff; border-radius: var(--radius-md); padding: 8px; }
.logo-slot--lead { width: 170px; height: 104px; }
.logo-slot--wide { width: 170px; height: 80px; }
.logo-slot--square { width: 96px; height: 96px; }
.logo-slot--gbs { width: 160px; height: 76px; }
@media (max-width: 520px) {
  .logo-slot--lead, .logo-slot--wide, .logo-slot--gbs { width: 140px; }
}

/* --------------------------------------------------------------------------
   Contact
   -------------------------------------------------------------------------- */
.contact-grid { display: grid; grid-template-columns: 1fr 460px; gap: 44px; align-items: start; }
.contact-grid > * { min-width: 0; }
.contact-list { display: flex; flex-direction: column; gap: 2px; margin-top: 34px; border-top: 1px solid var(--border); }
.contact-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 18px 4px;
  border-bottom: 1px solid var(--border);
}
.contact-row dt { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.16em; color: var(--ink-400); }
.contact-row dd { font-size: 16px; color: var(--ink-700); text-align: right; }
.contact-row dd a { font-weight: 600; }

.form {
  position: sticky;
  top: 98px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-2xl);
  padding: 32px;
  box-shadow: var(--shadow-lg);
}
.form__head { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.form__title { font-family: var(--font-display); font-weight: 800; font-size: 22px; color: var(--ink-900); }
.badge {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  color: var(--success);
  background: var(--success-soft);
  padding: 4px 8px;
  border-radius: var(--radius-full);
  white-space: nowrap;
}
.form__sub { font-size: 14px; color: var(--text-muted); margin: 6px 0 20px; }
.form__fields { display: flex; flex-direction: column; gap: 14px; }
.form__submit { margin-top: 22px; }
.form__fine { font-size: 12px; color: var(--text-subtle); text-align: center; margin-top: 12px; }

.field { display: flex; flex-direction: column; gap: 6px; }
.field__label { font-size: 14px; font-weight: 600; color: var(--text); }
.field__req { color: var(--brand-600); }
.field__box {
  display: flex;
  align-items: center;
  height: 44px;
  padding: 0 14px;
  background: var(--surface);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-xs);
  transition: border-color var(--dur-base) var(--ease-out), box-shadow var(--dur-base) var(--ease-out);
}
.field__box:focus-within { border-color: var(--brand-500); box-shadow: 0 0 0 3px rgba(255, 154, 46, 0.32); }
.field__box input,
.field__box select {
  flex: 1;
  min-width: 0;
  border: none;
  outline: none;
  background: transparent;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--text);
}
.field--select .field__box { position: relative; padding-right: 40px; }
.field--select select { appearance: none; cursor: pointer; height: 100%; }
.field__chev { position: absolute; right: 14px; pointer-events: none; color: var(--text-muted); display: flex; }
.field__chev svg { width: 14px; height: 14px; }

/* Custom-styled listbox that replaces the native <select> popup once JS runs.
   The <select> itself stays in the DOM (visually hidden) so the field keeps
   working with zero JS. */
.select-native { position: absolute; inset: 0; opacity: 0; pointer-events: none; }
.select-trigger {
  all: unset;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  flex: 1;
  min-width: 0;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--text);
  cursor: pointer;
}
.select-trigger:focus-visible { outline: 2px solid var(--brand-500); outline-offset: 2px; border-radius: 4px; }
.select-popup {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  right: 0;
  z-index: 40;
  background: var(--surface);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: 6px;
  list-style: none;
  margin: 0;
  max-height: 260px;
  overflow-y: auto;
}
.select-popup[hidden] { display: none; }
.select-option { padding: 10px 12px; border-radius: 8px; font-size: 14px; color: var(--text); cursor: pointer; }
.select-option--active { background: var(--brand-50); }
.select-option--selected { color: var(--brand-700); font-weight: 600; }
.select-option--selected.select-option--active { background: var(--brand-100); }
.field__error { font-size: 12px; color: var(--danger); }
.field[data-invalid='1'] .field__box { border-color: var(--danger); }
.honeypot { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; }

.attached {
  border: 1px solid var(--brand-200);
  background: var(--brand-50);
  border-radius: 14px;
  padding: 14px 16px;
  margin-bottom: 18px;
}
.attached__label { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.16em; color: var(--brand-700); }
.attached__body { font-size: 13.5px; line-height: 1.6; color: var(--ink-700); margin-top: 6px; }

.result { text-align: center; padding: 24px 0; }
.result__icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--grad-brand);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-on-brand);
  margin: 0 auto;
  box-shadow: var(--glow-brand);
}
.result__icon svg { width: 30px; height: 30px; }
.result__title { font-family: var(--font-display); font-weight: 800; font-size: 24px; color: var(--ink-900); margin: 20px 0 6px; }
.result__body { font-size: 15px; line-height: 1.7; color: var(--text-muted); margin-bottom: 20px; }
.result__actions { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; }
.form__alert { font-size: 13.5px; line-height: 1.6; color: var(--danger); margin-top: 16px; }
.linkish {
  background: none;
  border: 0;
  padding: 0;
  font: inherit;
  color: var(--link);
  text-decoration: underline;
  cursor: pointer;
}

/* --------------------------------------------------------------------------
   CTA band
   -------------------------------------------------------------------------- */
.cta-band { display: flex; align-items: center; justify-content: space-between; gap: 28px; padding-top: 56px; padding-bottom: 56px; }

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */
.site-footer { background: var(--ink-950); border-top: 1px solid var(--ink-800); }
.site-footer__top {
  display: flex;
  justify-content: space-between;
  gap: 36px;
  flex-wrap: wrap;
  padding-top: 56px;
  padding-bottom: 24px;
}
.site-footer__brand { max-width: 320px; }
.site-footer__brand img { height: 52px; width: auto; display: block; margin-bottom: 16px; }
.site-footer__blurb { font-size: 14px; line-height: 1.7; color: var(--ink-400); }
.site-footer__cols { display: flex; gap: 56px; flex-wrap: wrap; }
.site-footer__title {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--brand-400);
  margin-bottom: 14px;
}
.site-footer__links { display: flex; flex-direction: column; gap: 10px; font-size: 14px; color: var(--ink-300); }
.site-footer__links a,
.site-footer__links span { color: var(--ink-300); font-weight: 600; font-size: 14px; }
.site-footer__links a:hover { color: var(--brand-500); }
.site-footer__bottom {
  padding-top: 22px;
  padding-bottom: 40px;
  border-top: 1px solid var(--ink-800);
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--ink-500);
}
.site-footer__bottom em { font-style: normal; color: var(--brand-500); }

/* --------------------------------------------------------------------------
   Scroll reveal
   -------------------------------------------------------------------------- */
.rv {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 480ms var(--ease-out), transform 480ms var(--ease-out);
}
.rv.in { opacity: 1; transform: none; }
/* If the script never runs, nothing may stay hidden. */
.no-js .rv { opacity: 1; transform: none; }

/* --------------------------------------------------------------------------
   Spacing helpers used by the page templates
   -------------------------------------------------------------------------- */
.pt-0 { padding-top: 0; }
.pt-20 { padding-top: 20px; }
.pt-40 { padding-top: 40px; }
.pt-76 { padding-top: 76px; }
.pb-20 { padding-bottom: 20px; }
.pb-24 { padding-bottom: 24px; }
.pb-34 { padding-bottom: 34px; }
.pb-40 { padding-bottom: 40px; }
.pb-76 { padding-bottom: 76px; }
.mt-12 { margin-top: 12px; }
.mt-14 { margin-top: 14px; }
.mt-18 { margin-top: 18px; }
.mt-22 { margin-top: 22px; }
.mt-26 { margin-top: 26px; }
.mb-26 { margin-bottom: 26px; }
.mb-34 { margin-bottom: 34px; }
.max-620 { max-width: 620px; }
.max-640 { max-width: 640px; }
.max-660 { max-width: 660px; }
.max-700 { max-width: 700px; }
.max-720 { max-width: 720px; }
.max-780 { max-width: 780px; }
.max-600 { max-width: 600px; }
.max-520 { max-width: 520px; }

/* --------------------------------------------------------------------------
   Responsive
   -------------------------------------------------------------------------- */

/* Tablet. The two-column splits collapse here rather than lower down: a 400px
   sidebar beside the scope tool's card grid leaves both too cramped to use. */
@media (max-width: 1080px) {
  .sect { padding-left: 32px; padding-right: 32px; }
  .g5 { grid-template-columns: repeat(3, 1fr); }
  .g4 { grid-template-columns: repeat(2, 1fr); }
  .scope__grid,
  .contact-grid,
  .team-split,
  .feature__grid { grid-template-columns: 1fr; }
  .h1, .h1--hero, .h1--contact { font-size: 48px; }
  /* Stacked panels sit above their content, so let them scroll away. Keep them
     positioned — the decorative glow inside is absolute and would otherwise
     resolve against the page and overflow it. */
  .readout, .form { position: relative; top: auto; }
}

@media (max-width: 980px) {
  .nav, .header-phone, .site-header__right .btn { display: none; }
  .menu-btn { display: inline-flex; }
}

/* Phone. Matches the prototype's mobile shell. */
@media (max-width: 820px) {
  .g2, .g3, .g4, .g5, .cards, .opts, .modules, .team-grid, .shots__row, .process__list {
    grid-template-columns: 1fr;
  }
  .h1, .h1--hero, .h1--contact { font-size: 38px; line-height: 1.06; }
  .h2 { font-size: 28px; }
  .h2--36, .h2--34, .h2--32 { font-size: 28px; }
  .stack, .clients__head, .cta-band { flex-direction: column; align-items: stretch; }
  .clients__head, .cta-band { align-items: flex-start; }
  .row--svc, .row--log, .row--post, .row--read { grid-template-columns: 1fr; gap: 8px; }
  .row__aside, .row__kind { text-align: left; }
  a.row:hover { transform: none; }
  .sect { padding-left: 24px; padding-right: 24px; }
  .process, .clients, .pb-76 { padding-top: 48px; padding-bottom: 48px; }
  .feature__grid, .panel-ink { padding: 24px; }
  .scope__card, .card, .card--ink, .readout, .form { padding: 24px; }
  .team-split { margin-top: 48px; }
}

@media (max-width: 520px) {
  .sect { padding-left: 20px; padding-right: 20px; }
  .h1, .h1--hero, .h1--contact { font-size: 33px; }
  .h2, .h2--36, .h2--34, .h2--32 { font-size: 25px; }
  .feature__title { font-size: 28px; }
  .readout__kind { font-size: 34px; }
  .process__num { font-size: 36px; }
  .lead { font-size: 17px; }
}

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

@media print {
  .site-header, .site-footer, .rail, .no-print { display: none !important; }
  body { background: #fff; }
  .rv { opacity: 1; transform: none; }
}

/* --------------------------------------------------------------------------
   Cookie consent
   -------------------------------------------------------------------------- */
.consent-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 200;
  max-width: 640px;
  margin: 0 auto;
  padding: 20px 22px;
  border-radius: var(--radius-lg);
  background: var(--grad-ink);
  box-shadow: var(--shadow-lg);
}
.consent-banner__text { font-size: 14px; line-height: 1.6; color: var(--ink-300); margin: 0 0 16px; }
.consent-banner__text a { color: var(--paper); }
.consent-banner__actions { display: flex; gap: 10px; flex-wrap: wrap; }
.consent-banner__actions .btn { flex: 1 1 auto; }

/* --------------------------------------------------------------------------
   Coverage map (Leaflet)
   -------------------------------------------------------------------------- */
.coverage-map {
  height: 420px;
  border-radius: var(--radius-2xl);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
  background: var(--ink-50);
}
@media (max-width: 640px) {
  .coverage-map { height: 320px; border-radius: var(--radius-lg); }
}

.coverage-map .leaflet-container { font-family: var(--font-body); background: var(--ink-50); }

.coverage-map .leaflet-control-zoom {
  border: 1px solid var(--border-strong) !important;
  border-radius: var(--radius-md) !important;
  box-shadow: var(--shadow-sm) !important;
  overflow: hidden;
}
.coverage-map .leaflet-control-zoom a {
  background: var(--surface) !important;
  color: var(--text) !important;
  width: 32px !important;
  height: 32px !important;
  line-height: 32px !important;
}
.coverage-map .leaflet-control-zoom a:hover { background: var(--brand-50) !important; color: var(--brand-700) !important; }

.coverage-map .leaflet-popup-content-wrapper {
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  font-family: var(--font-body);
}
.coverage-map .leaflet-popup-content { margin: 12px 14px; font-size: 13.5px; line-height: 1.5; color: var(--text); }
.coverage-map .leaflet-popup-content strong { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.08em; color: var(--brand-600); display: block; margin-bottom: 3px; text-transform: uppercase; }
.coverage-map .leaflet-popup-tip { box-shadow: var(--shadow-sm); }

.coverage-map .leaflet-control-attribution {
  background: rgba(251, 248, 242, 0.85) !important;
  font-size: 10.5px !important;
  color: var(--text-muted) !important;
}

.map-pin {
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  background: var(--brand-600);
  box-shadow: var(--shadow-md);
  border: 2px solid var(--paper);
}
.map-pin svg { transform: rotate(45deg); }
