  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

  :root {
    --green: #1a5296;
    --green-mid: #2972c8;
    --green-light: #e6eef8;
    --green-pale: #f0f5fc;
    --ink: #1a1a18;
    --ink-mid: #3d3d38;
    --ink-muted: #4a4a44;
    --ink-faint: #6b6b63;
    --border: #e2e2d8;
    --border-mid: #c8c8bc;
    --bg: #faf9f6;
    --bg-warm: #f5f4f0;
    --white: #ffffff;
    --serif: 'DM Serif Display', Georgia, serif;
    --sans: 'DM Sans', system-ui, sans-serif;
    --max: 960px;
    --pad: clamp(1.25rem, 4vw, 2rem);
  }

  html { scroll-behavior: smooth; }

  body {
    font-family: var(--sans);
    font-weight: 400;
    background: var(--bg);
    color: var(--ink);
    font-size: 16px;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
  }

  /* ── UTILITY ── */
  .wrap { max-width: var(--max); margin: 0 auto; padding: 0 var(--pad); }
  .sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }

  /* ── NAV ── */
  nav {
    position: sticky; top: 0; z-index: 100;
    background: var(--bg);
    border-bottom: 1px solid var(--border);
    padding: 0;
  }
  .nav-inner {
    max-width: var(--max); margin: 0 auto; padding: 0 var(--pad);
    display: flex; align-items: center; justify-content: space-between;
    height: 60px; gap: 2rem;
  }
  .nav-logo { text-decoration: none; display:flex; align-items:center; flex: 0 0 auto; margin-right: 1rem; }
  .nav-logo img { display: none !important; }
  .nav-logo::before {
    content: 'OHC'; display: grid; place-items: center; width: 36px; height: 36px;
    border-radius: 50%; background: var(--green); color: var(--white);
    font-family: var(--serif); font-size: 15px; letter-spacing: 0.02em;
    margin-right: 10px;
  }
  .nav-name { color: var(--ink); font-size: 14px; font-weight: 500; line-height: 1.15; white-space: nowrap; }
  .nav-inner { max-width: 1120px; }
  .nav-links { display: flex; align-items: center; gap: 1rem; list-style: none; margin-left: auto; }
  .nav-links a { font-size: 14px; font-weight: 400; color: var(--ink-muted); text-decoration: none; transition: color 0.15s; white-space: nowrap; }
  .nav-links a:hover { color: var(--ink); }
  .nav-cta {
    font-size: 13px; font-weight: 500; color: var(--white) !important;
    background: var(--green); padding: 7px 14px; border-radius: 4px;
    transition: background 0.15s !important; white-space: nowrap;
  }
  .nav-cta:hover { background: var(--green-mid) !important; }
  .nav-phone-secondary { display: inline; }
  @media (max-width: 1180px) {
    .nav-phone-secondary { display: none; }
  }
  .nav-hamburger { display: none; background: none; border: none; cursor: pointer; padding: 4px; }
  .nav-hamburger span { display: block; width: 22px; height: 1.5px; background: var(--ink); margin: 5px 0; transition: all 0.2s; }

  /* ── PAGE SECTIONS ── */
  .page { display: none; }
  .page.active { display: block; }

  /* ── HERO ── */
  .hero { padding: 3rem 0 2rem; }
  .hero-eyebrow {
    display: inline-flex; align-items: center; gap: 8px;
    font-size: 12px; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase;
    color: var(--green); margin-bottom: 1.25rem;
  }
  .hero-eyebrow::before {
    content: ''; display: block; width: 24px; height: 1px; background: var(--green-mid);
  }
  .hero h1 {
    font-family: var(--serif); font-size: clamp(2.4rem, 6vw, 3.8rem);
    line-height: 1.1; letter-spacing: -0.02em;
    color: var(--ink); max-width: 700px; margin-bottom: 1.25rem;
  }
  .hero h1 em { font-style: italic; color: var(--green-mid); }
  .hero-body {
    font-size: 17px; color: var(--ink-mid); line-height: 1.75;
    max-width: 560px; margin-bottom: 1.5rem;
  }
  .hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; align-items: center; margin-bottom: 1rem; }
  .btn {
    display: inline-block; font-family: var(--sans); font-size: 14px; font-weight: 500;
    padding: 11px 22px; border-radius: 4px; text-decoration: none;
    transition: all 0.15s; cursor: pointer; border: none;
  }
  .btn-green { background: var(--green); color: var(--white); }
  .btn-green:hover { background: var(--green-mid); }
  .btn-outline { background: transparent; color: var(--ink); border: 1px solid var(--border-mid); }
  .btn-outline:hover { border-color: var(--ink-muted); }
  .hero-footnote { font-size: 13px; color: var(--ink-faint); }

  /* ── STATS ── */
  .stats-strip {
    display: grid; grid-template-columns: repeat(3, 1fr);
    border: 1px solid var(--border); border-radius: 6px;
    overflow: hidden; margin: 3.5rem 0;
  }
  .stat {
    padding: 1.75rem 1.5rem; background: var(--white);
    border-right: 1px solid var(--border);
  }
  .stat:last-child { border-right: none; }
  .stat-num { font-family: var(--serif); font-size: 2.5rem; color: var(--ink); line-height: 1; margin-bottom: 6px; }
  .stat-label { font-size: 13px; color: var(--ink-muted); line-height: 1.5; }

  /* ── DIVIDER ── */
  .divider { border: none; border-top: 1px solid var(--border); margin: 0; }

  /* ── SECTION ── */
  .section { padding: 1.75rem 0; }
  .section-eyebrow {
    font-size: 11px; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase;
    color: var(--ink-faint); margin-bottom: 0.75rem;
  }
  .section h2 {
    font-family: var(--serif); font-size: clamp(1.75rem, 4vw, 2.4rem);
    line-height: 1.2; letter-spacing: -0.02em; color: var(--ink);
    margin-bottom: 0.75rem;
  }
  .section-intro { font-size: 16px; color: var(--ink-mid); line-height: 1.75; max-width: 580px; margin-bottom: 1.5rem; }

  /* ── STEPS ── */
  .steps { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1.25rem; }
  .step-card {
    background: var(--white); border: 1px solid var(--border);
    border-radius: 6px; padding: 1.5rem;
  }
  .step-num {
    font-size: 11px; font-weight: 500; letter-spacing: 0.08em; color: var(--green-mid);
    margin-bottom: 1rem; display: block;
  }
  .step-card h3 { font-size: 15px; font-weight: 500; margin-bottom: 0.5rem; color: var(--ink); }
  .step-card p { font-size: 14px; color: var(--ink-muted); line-height: 1.65; }

  /* ── PULLQUOTE ── */
  .pullquote-section { padding: 1.25rem 0; }
  .pullquote {
    border-left: 3px solid var(--green-mid);
    padding: 0.5rem 0 0.5rem 2rem;
    max-width: 680px;
  }
  .pullquote-text {
    font-family: var(--serif); font-size: clamp(1.2rem, 3vw, 1.6rem);
    line-height: 1.45; color: var(--ink); margin-bottom: 0.75rem;
  }
  .pullquote-attr { font-size: 12px; color: var(--ink-faint); letter-spacing: 0.04em; }

  /* ── OFFER GRID ── */
  .offer-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1rem; }
  .offer-item {
    padding: 1.25rem; background: var(--bg-warm);
    border-radius: 5px; border: 1px solid var(--border);
  }
  .offer-item h4 { font-size: 14px; font-weight: 500; margin-bottom: 5px; color: var(--ink); }
  .offer-item p { font-size: 13px; color: var(--ink-muted); line-height: 1.6; }

  /* ── CTA BOX ── */
  .cta-box {
    background: var(--green); border-radius: 8px;
    padding: clamp(2rem, 5vw, 3rem);
    margin: 1.25rem 0;
  }
  .cta-box h2 {
    font-family: var(--serif); font-size: clamp(1.6rem, 4vw, 2.4rem);
    color: var(--white); margin-bottom: 0.75rem; letter-spacing: -0.02em;
  }
  .cta-box p { font-size: 16px; color: rgba(255,255,255,0.8); max-width: 520px; margin-bottom: 2rem; }
  .contact-row { display: flex; gap: 2.5rem; flex-wrap: wrap; margin-bottom: 2rem; }
  .contact-item span { display: block; font-size: 11px; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.5); margin-bottom: 3px; }
  .contact-item strong { font-size: 15px; font-weight: 400; color: var(--white); }
  .btn-white { background: var(--white); color: var(--green); }
  .btn-white:hover { background: var(--green-light); }

  /* ── ABOUT PAGE ── */
  .about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: start; }
  .about-text p { font-size: 16px; color: var(--ink-mid); line-height: 1.8; margin-bottom: 1.25rem; }
  .about-text p:first-child { font-size: 18px; color: var(--ink); }
  .about-aside { display: flex; flex-direction: column; gap: 1rem; }
  .aside-card {
    background: var(--white); border: 1px solid var(--border);
    border-radius: 6px; padding: 1.25rem;
  }
  .aside-card h4 { font-size: 13px; font-weight: 500; color: var(--ink); margin-bottom: 6px; }
  .aside-card p { font-size: 13px; color: var(--ink-muted); line-height: 1.6; }

  /* ── REFERRAL PAGE ── */
  .referral-intro { max-width: 640px; }
  .referral-intro p { font-size: 16px; color: var(--ink-mid); line-height: 1.8; margin-bottom: 1rem; }
  .criteria-list { list-style: none; margin: 1.5rem 0 2.5rem; display: flex; flex-direction: column; gap: 0.6rem; }
  .criteria-list li {
    font-size: 15px; color: var(--ink-mid);
    display: flex; align-items: flex-start; gap: 10px;
  }
  .criteria-list li::before {
    content: ''; display: block; min-width: 18px; height: 18px; margin-top: 3px;
    background: var(--green-light); border-radius: 50%;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M3 8l3.5 3.5 6.5-7' stroke='%231a6b4a' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat; background-position: center;
  }
  .form-wrap { max-width: 600px; margin-top: 2rem; }
  .form-group { margin-bottom: 1.25rem; }
  .form-group label { display: block; font-size: 13px; font-weight: 500; color: var(--ink); margin-bottom: 6px; }
  .form-group input,
  .form-group select,
  .form-group textarea {
    width: 100%; padding: 10px 12px;
    border: 1px solid var(--border-mid); border-radius: 4px;
    font-family: var(--sans); font-size: 14px; color: var(--ink);
    background: var(--white); transition: border-color 0.15s;
    outline: none;
  }
  .form-group input:focus,
  .form-group select:focus,
  .form-group textarea:focus { border-color: var(--green-mid); }
  .form-group textarea { min-height: 100px; resize: vertical; }
  .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
  .form-note { font-size: 12px; color: var(--ink-faint); margin-top: 0.5rem; }
  .form-submit { margin-top: 1.5rem; }

  /* ── CONTACT PAGE ── */
  .contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: start; }
  .contact-info p { font-size: 16px; color: var(--ink-mid); line-height: 1.8; margin-bottom: 2rem; }
  .contact-details { display: flex; flex-direction: column; gap: 1.25rem; }
  .contact-detail { border-left: 2px solid var(--green-light); padding-left: 1rem; }
  .contact-detail span { display: block; font-size: 11px; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-faint); margin-bottom: 3px; }
  .contact-detail strong { font-size: 15px; font-weight: 400; color: var(--ink); }
  .contact-note {
    margin-top: 2rem; padding: 1.25rem;
    background: var(--green-pale); border-radius: 5px;
    border: 1px solid rgba(29,158,117,0.2);
  }
  .contact-note p { font-size: 14px; color: var(--ink-mid); line-height: 1.65; margin: 0; }

  /* ── FOOTER ── */
  footer {
    border-top: 1px solid var(--border);
    padding: 1.5rem 0;
    margin-top: 1.25rem;
  }
  .footer-inner {
    display: flex; justify-content: space-between; align-items: center;
    flex-wrap: wrap; gap: 1rem;
  }
  .footer-inner p { font-size: 12px; color: var(--ink-faint); }
  .footer-inner a { color: var(--ink-faint); text-decoration: none; }
  .footer-inner a:hover { color: var(--ink-muted); }

  /* ── RESPONSIVE ── */
  @media (max-width: 680px) {
    .nav-links { display: none; }
    .nav-links.open {
      display: flex; flex-direction: column; gap: 0; list-style: none;
      position: absolute; top: 60px; left: 0; right: 0;
      background: var(--bg); border-bottom: 1px solid var(--border);
      padding: 1rem var(--pad);
    }
    .nav-links.open a { padding: 0.6rem 0; font-size: 16px; display: block; }
    .nav-hamburger { display: block; }
    .stats-strip { grid-template-columns: 1fr; }
    .stat { border-right: none; border-bottom: 1px solid var(--border); }
    .stat:last-child { border-bottom: none; }
    .steps { grid-template-columns: 1fr; }
    .offer-grid { grid-template-columns: 1fr; }
    .about-grid { grid-template-columns: 1fr; }
    .team-grid { grid-template-columns: 1fr 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .nav-name { font-size: 13px; }
  }
/* Multi-page display fix */
.page { display: block !important; }

/* Crisis / safety note box (used on suicide, supply-chain, and drug-comparison articles) */
.crisis-box {
  background: var(--green-pale);
  border: 1px solid rgba(29,158,117,0.2);
  border-radius: 6px;
  padding: 1.5rem 1.75rem;
  margin-top: 1.5rem;
}
.crisis-box h3 {
  font-size: 15px;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 0.75rem;
}
.crisis-box ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.crisis-box li {
  font-size: 14px;
  color: var(--ink-mid);
  line-height: 1.6;
}
.crisis-box strong {
  color: var(--ink);
  font-weight: 500;
}

/* Resource grid (used on resources.html) */
.resource-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
  margin-top: 1.5rem;
  margin-bottom: 3.5rem;
}
.resource-group {
  scroll-margin-top: 90px;
}
.resource-group h2 {
  margin-bottom: 0.5rem;
}
.resource-group-intro {
  max-width: 680px;
  color: var(--ink-muted);
  line-height: 1.7;
}
.resource-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 1.75rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.resource-card .tag {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green-mid);
}
.resource-card h3 {
  font-family: var(--serif);
  font-size: 1.3rem;
  line-height: 1.25;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin: 0;
}
.resource-card p {
  font-size: 14px;
  color: var(--ink-muted);
  line-height: 1.7;
  flex: 1;
}
.resource-card a.read-link {
  font-size: 13px;
  font-weight: 500;
  color: var(--green-mid);
  text-decoration: none;
  margin-top: 0.5rem;
}
.resource-card a.read-link:hover {
  color: var(--green);
}
@media (max-width: 980px) {
  .resource-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 680px) {
  .resource-grid { grid-template-columns: 1fr; }
}

/* Recovery First booklet */
.recovery-first-page {
  background:
    linear-gradient(180deg, var(--green-pale) 0, rgba(240, 245, 252, 0) 34rem),
    var(--bg);
}
.booklet-wrap { max-width: 1040px; }
.booklet-intro {
  max-width: 760px;
  margin: 0 auto;
  padding: 3rem 0 2rem;
}
.booklet-intro h1 {
  max-width: 720px;
  margin-bottom: 0.75rem;
  font-family: var(--serif);
  font-size: clamp(2.7rem, 7vw, 4.5rem);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.025em;
}
.booklet-intro .section-intro {
  max-width: none;
  margin-bottom: 2.25rem;
  color: var(--green);
  font-size: 1.08rem;
  font-weight: 500;
}
.booklet-intro > p:not(.section-intro) {
  margin-bottom: 1rem;
  color: var(--ink-mid);
  font-size: 1.03rem;
  line-height: 1.8;
}
.key-note {
  margin: 2rem 0 0;
  padding: 1.25rem 1.4rem;
  border: 1px solid #c9d9ee;
  border-left: 4px solid var(--green-mid);
  border-radius: 0 6px 6px 0;
  background: var(--white);
  color: var(--ink-mid);
  font-size: 0.94rem;
  line-height: 1.7;
}
.key-note strong { color: var(--ink); font-weight: 500; }

.contents-card {
  position: static;
  z-index: auto;
  margin: 0 0 2.5rem;
  padding: clamp(1.5rem, 4vw, 2.25rem);
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 10px 30px rgba(26, 82, 150, 0.06);
}
.contents-card h2 {
  margin-bottom: 1.5rem;
  font-family: var(--serif);
  font-size: 1.9rem;
  font-weight: 400;
  line-height: 1.2;
}
.contents-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}
.contents-grid > div {
  padding: 1.35rem;
  border: 1px solid var(--border);
  border-radius: 6px;
  background: var(--bg);
}
.contents-grid h3 {
  margin-bottom: 0.75rem;
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 1.35;
}
.contents-grid h3 a { color: var(--ink); text-decoration: none; }
.contents-grid h3 a:hover { color: var(--green-mid); }
.contents-grid ul { margin: 0; padding: 0; list-style: none; }
.contents-grid li + li { margin-top: 0.42rem; }
.contents-grid li a {
  display: inline-block;
  color: var(--ink-muted);
  font-size: 0.87rem;
  line-height: 1.45;
  text-decoration: none;
}
.contents-grid li a::before {
  content: '\2192';
  margin-right: 0.45rem;
  color: var(--green-mid);
}
.contents-grid li a:hover { color: var(--green); text-decoration: underline; text-underline-offset: 3px; }

.booklet-section {
  max-width: 760px;
  margin: 0 auto;
  padding: 2.75rem 0 2.25rem;
  border-top: 1px solid var(--border-mid);
  scroll-margin-top: 72px;
}
.booklet-section .section-eyebrow { color: var(--green-mid); }
  .booklet-section h2 { margin-bottom: 1.75rem; }
.booklet-section h3 {
  margin: 2rem 0 1rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border);
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(1.45rem, 3vw, 1.8rem);
  font-weight: 400;
  line-height: 1.3;
  scroll-margin-top: 80px;
}
.booklet-section h2 + h3 { margin-top: 0; }
.booklet-section h4 {
  margin: 2rem 0 0.65rem;
  color: var(--green);
  font-size: 0.98rem;
  font-weight: 500;
  line-height: 1.4;
}
.booklet-section p {
  margin-bottom: 1.1rem;
  color: var(--ink-mid);
  font-size: 1rem;
  line-height: 1.82;
}
.booklet-section .criteria-list { margin: 1.25rem 0 1.75rem; gap: 0.7rem; }
.booklet-section .criteria-list li { line-height: 1.65; }
.booklet-section ol.criteria-list { counter-reset: booklet-step; }
.booklet-section ol.criteria-list li { counter-increment: booklet-step; }
.booklet-section ol.criteria-list li::before {
  content: counter(booklet-step);
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 24px;
  height: 24px;
  margin-top: 1px;
  border-radius: 50%;
  background: var(--green-light);
  background-image: none;
  color: var(--green);
  font-size: 0.73rem;
  font-weight: 500;
}
.booklet-section .key-note { margin: 2rem 0; }
.back-to-contents {
  display: inline-block;
  margin-top: 1.5rem;
  color: var(--green-mid);
  font-size: 0.82rem;
  font-weight: 500;
  text-decoration: none;
}
.back-to-contents:hover { color: var(--green); text-decoration: underline; text-underline-offset: 3px; }
.booklet-footer-link {
  max-width: 760px;
  margin: 0 auto;
  padding: 2rem 0;
  border-top: 1px solid var(--border);
}
.booklet-footer-link a {
  color: var(--green-mid);
  font-size: 0.88rem;
  font-weight: 500;
  text-decoration: none;
}
.booklet-footer-link a:hover { color: var(--green); text-decoration: underline; text-underline-offset: 3px; }

@media (max-width: 680px) {
  .booklet-intro { padding: 3rem 0 2.25rem; }
  .booklet-intro h1 { font-size: clamp(2.6rem, 15vw, 3.7rem); }
  .contents-card { margin-bottom: 2.5rem; padding: 1.25rem; }
  .contents-grid { grid-template-columns: 1fr; }
  .contents-grid > div { padding: 1.1rem; }
  .booklet-section { padding: 3rem 0 2.75rem; }
  .booklet-section h2 { margin-bottom: 2rem; }
  .booklet-section h3 { margin-top: 2.5rem; }
}
