:root {
  color-scheme: light;
  --ink: oklch(24% 0.035 255);
  --muted: oklch(49% 0.025 250);
  --line: oklch(89% 0.016 245);
  --paper: oklch(98% 0.006 225);
  --surface: oklch(100% 0.004 230);
  --navy: oklch(35% 0.16 256);
  --navy-deep: oklch(25% 0.13 256);
  --red: oklch(58% 0.23 27);
  --green: oklch(61% 0.17 150);
  --amber: oklch(76% 0.15 75);
  --radius: 8px;
  --shadow: 0 16px 44px oklch(20% 0.04 255 / 0.12);
  font-family: "Avenir Next", Avenir, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  font-synthesis: none;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  line-height: 1.55;
}
a { color: inherit; }
img { display: block; max-width: 100%; }
button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }

.skip-link {
  position: fixed;
  left: 16px;
  top: -80px;
  z-index: 100;
  padding: 10px 14px;
  background: var(--navy-deep);
  color: var(--surface);
}
.skip-link:focus { top: 16px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  border-bottom: 1px solid oklch(90% 0.012 250 / 0.8);
  background: oklch(99% 0.004 230 / 0.94);
  backdrop-filter: blur(16px);
}
.nav-shell {
  width: min(1180px, calc(100% - 40px));
  min-height: 72px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 28px;
}
.brand { display: inline-flex; align-items: center; text-decoration: none; }
.brand img { width: 176px; height: auto; }
.site-nav { display: flex; align-items: center; gap: 22px; margin-left: auto; }
.site-nav a { color: var(--muted); font-size: 0.93rem; font-weight: 650; text-decoration: none; }
.site-nav a:hover, .site-nav a[aria-current="page"] { color: var(--navy); }
.nav-actions { display: flex; gap: 10px; }
.menu-button { display: none; }

.button {
  min-height: 44px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  padding: 0 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 750;
  text-decoration: none;
  cursor: pointer;
  transition: transform 180ms cubic-bezier(.22,1,.36,1), background-color 180ms ease, border-color 180ms ease;
}
.button:hover { transform: translateY(-1px); }
.button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible, a:focus-visible {
  outline: 3px solid oklch(72% 0.13 250 / 0.45);
  outline-offset: 2px;
}
.button-primary { background: var(--red); color: var(--surface); }
.button-primary:hover { background: oklch(52% 0.22 27); }
.button-secondary { border-color: var(--line); background: var(--surface); color: var(--navy); }
.button-quiet { background: oklch(94% 0.02 250); color: var(--navy); }
.button[disabled] { opacity: .52; cursor: not-allowed; transform: none; }

.hero {
  min-height: min(760px, calc(100vh - 72px));
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(460px, .95fr);
  align-items: center;
  overflow: hidden;
  background: var(--surface);
}
.hero-copy { padding: clamp(56px, 8vw, 120px) clamp(28px, 7vw, 112px); }
.eyebrow { margin: 0 0 14px; color: var(--red); font-size: .78rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.hero h1, .page-hero h1 {
  margin: 0;
  max-width: 760px;
  color: var(--navy-deep);
  font-size: clamp(3rem, 6.4vw, 6.5rem);
  line-height: .94;
  letter-spacing: 0;
}
.hero-lead { max-width: 610px; margin: 24px 0 0; color: var(--muted); font-size: clamp(1.05rem, 1.6vw, 1.3rem); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.hero-note { margin: 18px 0 0; color: var(--muted); font-size: .86rem; }
.hero-visual {
  min-height: min(760px, calc(100vh - 72px));
  display: grid;
  align-items: center;
  padding: 54px 0 54px 28px;
  background: var(--navy-deep);
  overflow: hidden;
}
.hero-visual img { width: min(840px, 112%); max-width: none; filter: drop-shadow(0 30px 42px oklch(10% 0.05 255 / .32)); }

.trust-strip { background: var(--navy-deep); color: var(--surface); }
.trust-inner { width: min(1180px, calc(100% - 40px)); margin: 0 auto; display: grid; grid-template-columns: 1.2fr repeat(3, 1fr); }
.trust-inner > div { min-height: 116px; padding: 24px 28px; display: flex; flex-direction: column; justify-content: center; border-right: 1px solid oklch(52% 0.09 255 / .42); }
.trust-inner > div:first-child { padding-left: 0; }
.trust-inner > div:last-child { border-right: 0; }
.trust-label { color: oklch(77% 0.04 245); font-size: .8rem; font-weight: 700; text-transform: uppercase; }
.trust-value { margin-top: 4px; font-size: 1.05rem; font-weight: 700; }

.section { padding: clamp(72px, 10vw, 132px) 0; }
.section-tight { padding: 64px 0; }
.section-ink { background: var(--navy-deep); color: var(--surface); }
.section-red { background: var(--red); color: var(--surface); }
.shell { width: min(1180px, calc(100% - 40px)); margin: 0 auto; }
.section-heading { display: grid; grid-template-columns: .72fr 1.28fr; gap: 48px; align-items: end; margin-bottom: 52px; }
.section-heading h2 { margin: 0; color: inherit; font-size: clamp(2rem, 4vw, 4.4rem); line-height: 1; letter-spacing: 0; }
.section-heading p { max-width: 620px; margin: 0; color: var(--muted); font-size: 1.1rem; }
.section-ink .section-heading p { color: oklch(80% 0.025 245); }

.feature-rail { border-top: 1px solid var(--line); }
.feature-row { display: grid; grid-template-columns: 74px .8fr 1.2fr; gap: 28px; padding: 30px 0; border-bottom: 1px solid var(--line); align-items: start; }
.feature-number { color: var(--red); font-weight: 800; }
.feature-row h3 { margin: 0; color: var(--navy); font-size: 1.28rem; }
.feature-row p { margin: 0; color: var(--muted); max-width: 650px; }

.safety-layout { display: grid; grid-template-columns: .92fr 1.08fr; gap: clamp(38px, 7vw, 96px); align-items: center; }
.safety-image { padding: 26px 26px 0; background: oklch(96% 0.01 245); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.safety-image img { max-height: 720px; margin: 0 auto; object-fit: contain; }
.safety-copy h2 { margin: 0; color: var(--navy-deep); font-size: clamp(2.2rem, 4.6vw, 4.8rem); line-height: 1; }
.safety-copy > p { color: var(--muted); font-size: 1.1rem; }
.check-list { margin: 30px 0; padding: 0; list-style: none; }
.check-list li { padding: 13px 0; border-bottom: 1px solid var(--line); display: flex; gap: 12px; }
.check-list li::before { content: "✓"; color: var(--green); font-weight: 900; }

.audience-grid { display: grid; grid-template-columns: 1.05fr .95fr; border: 1px solid oklch(50% 0.08 255); }
.audience-panel { min-height: 420px; padding: clamp(32px, 5vw, 64px); display: flex; flex-direction: column; justify-content: space-between; }
.audience-panel + .audience-panel { border-left: 1px solid oklch(50% 0.08 255); background: oklch(30% 0.13 256); }
.audience-panel h3 { margin: 0; font-size: clamp(2rem, 3vw, 3.6rem); line-height: 1; }
.audience-panel p { color: oklch(80% 0.025 245); max-width: 540px; }
.audience-panel .button { align-self: flex-start; }

.page-hero { padding: clamp(72px, 10vw, 130px) 0 70px; background: var(--surface); border-bottom: 1px solid var(--line); }
.page-hero h1 { max-width: 900px; font-size: clamp(2.8rem, 6vw, 6rem); }
.page-hero p { max-width: 720px; margin: 24px 0 0; color: var(--muted); font-size: 1.15rem; }
.content-grid { display: grid; grid-template-columns: 240px minmax(0, 740px); gap: 60px; }
.content-nav { position: sticky; top: 104px; align-self: start; }
.content-nav a { display: block; padding: 8px 0; color: var(--muted); text-decoration: none; font-weight: 650; }
.prose h2 { margin: 2.4em 0 .5em; color: var(--navy-deep); font-size: 1.75rem; }
.prose h2:first-child { margin-top: 0; }
.prose h3 { margin-top: 2em; color: var(--navy); }
.prose p, .prose li { color: oklch(38% 0.025 250); }
.prose .notice { padding: 20px; border: 1px solid oklch(78% 0.12 75); background: oklch(96% 0.05 85); border-radius: var(--radius); color: var(--ink); }

.directory-tools { display: flex; gap: 12px; margin-bottom: 28px; }
.directory-tools input, .directory-tools select { min-height: 48px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface); padding: 0 14px; color: var(--ink); }
.directory-tools input { flex: 1; }
.business-list { border-top: 1px solid var(--line); }
.business-row { display: grid; grid-template-columns: 1fr 180px 150px; gap: 24px; padding: 24px 0; border-bottom: 1px solid var(--line); }
.business-row h2 { margin: 0; font-size: 1.2rem; color: var(--navy); }
.business-row p { margin: 5px 0 0; color: var(--muted); font-size: .92rem; }
.tag { display: inline-flex; width: fit-content; padding: 4px 8px; border-radius: 999px; background: oklch(94% 0.025 250); color: var(--navy); font-size: .75rem; font-weight: 750; }

.form-shell { max-width: 720px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { display: grid; gap: 7px; }
.field-wide { grid-column: 1 / -1; }
.field label { font-size: .88rem; font-weight: 750; color: var(--ink); }
.field input, .field select, .field textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid oklch(83% 0.02 250);
  border-radius: var(--radius);
  background: var(--surface);
  color: var(--ink);
  padding: 11px 13px;
}
.field textarea { min-height: 150px; resize: vertical; }
.field-hint { margin: 0; color: var(--muted); font-size: .78rem; }
.form-status { min-height: 24px; margin-top: 14px; color: var(--muted); font-weight: 650; }
.form-status[data-state="success"] { color: var(--green); }
.form-status[data-state="error"] { color: var(--red); }
.honeypot { position: absolute; left: -9999px; }

.site-footer { padding: 54px 0 30px; background: oklch(20% 0.06 256); color: var(--surface); }
.footer-grid { display: grid; grid-template-columns: 1.3fr repeat(3, 1fr); gap: 34px; }
.footer-brand img { width: 180px; }
.footer-brand p { max-width: 340px; color: oklch(76% 0.025 245); font-size: .9rem; }
.footer-column strong { display: block; margin-bottom: 12px; }
.footer-column a { display: block; padding: 4px 0; color: oklch(76% 0.025 245); text-decoration: none; font-size: .9rem; }
.footer-bottom { margin-top: 44px; padding-top: 22px; border-top: 1px solid oklch(42% 0.05 255); color: oklch(68% 0.025 245); font-size: .82rem; display: flex; justify-content: space-between; gap: 20px; }

@media (max-width: 900px) {
  .nav-shell { min-height: 64px; }
  .site-nav, .nav-actions .button-secondary { display: none; }
  .menu-button { margin-left: auto; display: inline-flex; width: 44px; height: 44px; border: 0; border-radius: 50%; align-items: center; justify-content: center; background: oklch(94% 0.02 250); color: var(--navy); }
  .site-nav[data-open="true"] { position: absolute; top: 64px; left: 0; right: 0; display: grid; gap: 0; padding: 12px 20px 22px; background: var(--surface); border-bottom: 1px solid var(--line); box-shadow: var(--shadow); }
  .site-nav[data-open="true"] a { min-height: 46px; display: flex; align-items: center; }
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-copy { padding: 72px 24px 52px; }
  .hero-visual { min-height: 430px; padding: 38px 0 38px 18px; }
  .trust-inner { grid-template-columns: 1fr 1fr; }
  .trust-inner > div { border-bottom: 1px solid oklch(52% 0.09 255 / .42); }
  .section-heading, .safety-layout, .content-grid { grid-template-columns: 1fr; }
  .section-heading { gap: 20px; }
  .content-nav { position: static; display: flex; flex-wrap: wrap; gap: 8px 18px; }
  .audience-grid { grid-template-columns: 1fr; }
  .audience-panel + .audience-panel { border-left: 0; border-top: 1px solid oklch(50% 0.08 255); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 620px) {
  .nav-shell, .shell, .trust-inner { width: min(100% - 28px, 1180px); }
  .brand img { width: 148px; }
  .nav-actions .button-primary { display: none; }
  .hero h1, .page-hero h1 { font-size: clamp(2.65rem, 15vw, 4rem); }
  .hero-actions .button { width: 100%; }
  .trust-inner { grid-template-columns: 1fr; }
  .trust-inner > div { min-height: 90px; padding: 18px 0; border-right: 0; }
  .feature-row { grid-template-columns: 42px 1fr; gap: 14px; }
  .feature-row p { grid-column: 2; }
  .business-row { grid-template-columns: 1fr; gap: 10px; }
  .directory-tools, .footer-bottom { flex-direction: column; }
  .form-grid, .footer-grid { grid-template-columns: 1fr; }
  .field-wide { grid-column: auto; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; }
}
