/* =========================================================
   Prestige Wound Solutions — Design System v2
   Deep Red + Muted Gold + Charcoal — premium clinical editorial
   ========================================================= */

:root {
  /* Color tokens */
  --red-900: #4A0F1B;
  --red-800: #6B1826;
  --red-700: #8C1F2E;
  --red-600: #A9293A;
  --red-500: #C23548;
  --red-100: #FBEEEF;
  --red-50:  #FDF6F6;

  --gold-700: #86662E;
  --gold-600: #9C7A3F;
  --gold-500: #B7924E;
  --gold-400: #CDA968;
  --gold-300: #E1C48D;
  --gold-100: #F7EFDD;

  --charcoal-950: #17181B;
  --charcoal-900: #212327;
  --charcoal-800: #2E3034;
  --charcoal-700: #45484D;
  --charcoal-500: #6B6E73;
  --charcoal-300: #9A9DA3;

  --gray-50:  #FAFAFA;
  --gray-100: #F4F5F6;
  --gray-200: #E9EBED;
  --gray-300: #D9DCE0;

  --blue-700: #1F4A63;
  --blue-600: #2F5C7A;
  --blue-400: #6E93A8;
  --blue-100: #E7F0F5;
  --blue-50:  #F3F8FA;

  --white: #FFFFFF;

  /* Type */
  --font-display: "Fraunces", "Source Serif 4", Georgia, serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-mono: "IBM Plex Mono", ui-monospace, monospace;

  /* Layout */
  --max-w: 1240px;
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --shadow-sm: 0 2px 8px rgba(23,24,27,0.06);
  --shadow-md: 0 12px 32px rgba(23,24,27,0.10);
  --shadow-lg: 0 24px 60px rgba(23,24,27,0.16);
  --shadow-red: 0 16px 40px rgba(140,31,46,0.22);
  --header-h: 74px;
  --sticky-cta-h: 58px;
  --ease: cubic-bezier(.22,.68,0,1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
}
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--charcoal-900);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  padding-bottom: 0;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 600; line-height: 1.12; letter-spacing: -0.01em; margin: 0 0 0.45em; color: var(--charcoal-950); }
h1 { font-size: clamp(2.5rem, 5vw, 4.2rem); font-weight: 500; letter-spacing: -0.02em; }
h2 { font-size: clamp(1.8rem, 3.4vw, 2.75rem); font-weight: 500; }
h3 { font-size: clamp(1.15rem, 2vw, 1.4rem); font-weight: 600; }
p { margin: 0 0 1.15em; color: var(--charcoal-700); }
b, strong { color: var(--charcoal-900); }
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 28px; }
.eyebrow {
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-variant: small-caps;
  letter-spacing: 0.02em;
  color: var(--red-700);
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 1em;
  font-weight: 600;
}
.eyebrow::before { content: ""; width: 20px; height: 2px; border-radius: 2px; background: var(--gold-500); display: inline-block; }
.eyebrow--light { color: var(--blue-100); }
.eyebrow--light::before { background: var(--gold-300); }
:focus-visible { outline: 3px solid var(--gold-500); outline-offset: 2px; border-radius: 2px; }
.visually-hidden { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
.skip-link {
  position: absolute; left: 12px; top: -60px; background: var(--red-700); color: #fff;
  padding: 10px 16px; border-radius: var(--radius-sm); z-index: 2000; transition: top .15s ease;
}
.skip-link:focus { top: 12px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: var(--font-body); font-weight: 600; font-size: 0.95rem;
  padding: 14px 28px; border-radius: 999px; border: 1.5px solid transparent;
  cursor: pointer; transition: transform .2s var(--ease), background .2s ease, border-color .2s ease, color .2s ease, box-shadow .2s ease;
  white-space: nowrap; position: relative;
}
.btn svg { width: 16px; height: 16px; flex-shrink: 0; }
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--red-700); color: #fff; box-shadow: 0 8px 20px rgba(140,31,46,0.28); }
.btn-primary:hover { background: var(--red-800); box-shadow: 0 12px 28px rgba(140,31,46,0.34); }
.btn-gold { background: var(--gold-500); color: var(--charcoal-950); }
.btn-gold:hover { background: var(--gold-600); color: #fff; }
.btn-outline { background: transparent; border-color: rgba(255,255,255,0.55); color: #fff; }
.btn-outline:hover { background: rgba(255,255,255,0.14); border-color: #fff; }
.btn-outline-dark { background: transparent; border-color: var(--charcoal-300); color: var(--charcoal-900); }
.btn-outline-dark:hover { background: var(--charcoal-950); border-color: var(--charcoal-950); color: #fff; }
.btn-sm { padding: 10px 20px; font-size: 0.86rem; }
.btn-row { display: flex; flex-wrap: wrap; gap: 14px; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 900; background: rgba(255,255,255,0.92);
  backdrop-filter: saturate(160%) blur(10px);
  border-bottom: 1px solid transparent;
  transition: box-shadow .25s ease, border-color .25s ease, background .25s ease;
}
.site-header.is-scrolled { box-shadow: 0 4px 20px rgba(23,24,27,0.06); border-color: var(--gray-300); background: rgba(255,255,255,0.98); }
.header-bar {
  display: flex; align-items: center; justify-content: space-between;
  max-width: var(--max-w); margin: 0 auto; padding: 12px 28px; gap: 20px; height: var(--header-h);
}
.brand { display: flex; align-items: center; height: 100%; }
.brand img { height: 65px; width: auto; display: block; }
.brand-mark-fallback {
  width: 42px; height: 42px; border-radius: 50%;
  background: linear-gradient(150deg, var(--red-600), var(--red-800));
  display: none; align-items: center; justify-content: center; color: #fff; font-weight: 600; font-size: 1.02rem; flex-shrink: 0;
  font-family: var(--font-display);
}

.main-nav { display: flex; align-items: center; gap: 0; }
.main-nav a {
  font-size: 0.79rem; font-weight: 500; padding: 7px 8px; border-radius: 999px;
  color: var(--charcoal-700); transition: background .18s ease, color .18s ease; position: relative;
  white-space: nowrap;
}
.main-nav a:hover { background: var(--gray-100); color: var(--red-700); }
.main-nav a[aria-current="page"] { background: var(--red-100); color: var(--red-700); font-weight: 600; }
.header-actions { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.header-phone { display: flex; flex-direction: column; align-items: flex-end; font-size: 0.78rem; margin-right: 4px; line-height: 1.3; }
.header-phone span:first-child { color: var(--charcoal-500); }
.header-phone a { font-weight: 700; color: var(--red-700); font-size: 1rem; }
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--charcoal-900); margin: 5px 0; border-radius: 2px; transition: transform .2s ease, opacity .2s ease; }

@media (max-width: 1220px) {
  .main-nav a { font-size: 0.74rem; padding: 6px 6px; }
  .header-phone { display: none; }
}
@media (max-width: 980px) {
  .main-nav { position: fixed; inset: var(--header-h) 0 0 0; background: #fff; flex-direction: column; align-items: stretch;
    padding: 12px 24px 40px; overflow-y: auto; transform: translateX(100%); transition: transform .3s var(--ease); gap: 4px; }
  .main-nav.is-open { transform: translateX(0); }
  .main-nav a { padding: 16px 8px; border-bottom: 1px solid var(--gray-200); font-size: 1.08rem; border-radius: 0; white-space: normal; }
  .main-nav a[aria-current="page"] { border-radius: 8px; }
  .nav-toggle { display: block; }
  .header-phone { display: none; }
}

/* ---------- Sticky mobile CTA ---------- */
.sticky-cta {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 950; display: none;
  grid-template-columns: 1fr 1fr; height: var(--sticky-cta-h);
  box-shadow: 0 -6px 24px rgba(0,0,0,0.18);
}
.sticky-cta a {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  font-weight: 700; font-size: 0.92rem;
}
.sticky-cta .call { background: var(--charcoal-950); color: #fff; }
.sticky-cta .refer { background: var(--red-700); color: #fff; }
@media (max-width: 700px) { .sticky-cta { display: grid; } body { padding-bottom: var(--sticky-cta-h); } }

/* ---------- Cinematic hero (full-screen, glass panel, choreographed entrance) ---------- */
.hero {
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  background: linear-gradient(150deg, var(--blue-50), var(--white) 60%);
}
.hero-media {
  position: absolute; inset: -4% -4% -4% -4%; z-index: 0; overflow: hidden;
  will-change: transform;
}
.hero-media img {
  width: 100%; height: 100%; object-fit: cover; object-position: center 28%;
  transform: scale(1.08);
  animation: hero-kenburns 28s ease-in-out infinite alternate;
}

.hero-media video {

    width:100%;
    height:100%;
	
    object-fit:cover;
	object-position: center 5%;

    transform:scale(.75);

    animation:hero-kenburns 28s ease-in-out infinite alternate;

}

@keyframes hero-kenburns {
  from { transform: scale(1.08) translate3d(0,0,0); }
  to { transform: scale(1.16) translate3d(-1.6%,-1.2%,0); }
}
.hero-scrim {
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.06) 0%, rgba(255,255,255,0.0) 34%, rgba(16,28,38,0.14) 76%, rgba(12,20,28,0.32) 100%),
    linear-gradient(100deg, rgba(255,255,255,0.16) 0%, rgba(255,255,255,0.02) 40%, transparent 62%);
}
.hero-glow {
  position: absolute; z-index: 1; left: 0; top: 10%; width: 55%; height: 80%;
  background: radial-gradient(60% 60% at 30% 40%, rgba(255,255,255,0.55), transparent 70%);
  filter: blur(10px);
  pointer-events: none;
}
.hero-inner {
  position: relative; z-index: 2;
  max-width: var(--max-w); margin: 0 auto; width: 100%;
  padding: calc(var(--header-h) + 32px) 28px 90px;
  display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 40px; align-items: center;
}

/* Glass content panel wrapping the hero copy — bright, warm, hopeful (not dark/moody) */
.hero-glass {
  background: rgba(255,255,255,0.62);
  backdrop-filter: blur(22px) saturate(160%);
  -webkit-backdrop-filter: blur(22px) saturate(160%);
  border: 1px solid rgba(255,255,255,0.75);
  border-radius: var(--radius-lg);
  padding: 44px 46px;
  max-width: 660px;
  box-shadow: 0 30px 70px rgba(23,24,27,0.14);
}
.hero-glass .eyebrow { color: var(--red-700); }
.hero-glass .eyebrow::before { background: var(--gold-500); }
.hero-glass h1 { color: var(--charcoal-950); margin-bottom: 0.4em; }
.hero-lede { font-size: 1.18rem; max-width: 46ch; color: var(--charcoal-800); }
.hero-badges { display: flex; flex-wrap: wrap; gap: 10px; margin: 22px 0 30px; }
.badge {
  font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 0.03em;
  background: rgba(255,255,255,0.75); border: 1px solid rgba(255,255,255,0.9); color: var(--charcoal-800);
  padding: 8px 14px; border-radius: 30px; display: inline-flex; align-items: center; gap: 7px;
  box-shadow: 0 4px 14px rgba(74,15,27,0.06);
}
.badge::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--gold-600); flex-shrink: 0; }

/* Choreographed entrance — plays on load, no JS/scroll dependency */
.hero-animate > * { opacity: 0; transform: translateY(18px); animation: hero-rise .8s var(--ease) both; }
.hero-animate > *:nth-child(1) { animation-delay: .05s; }
.hero-animate > *:nth-child(2) { animation-delay: .16s; }
.hero-animate > *:nth-child(3) { animation-delay: .27s; }
.hero-animate > *:nth-child(4) { animation-delay: .38s; }
.hero-animate > *:nth-child(5) { animation-delay: .49s; }
@keyframes hero-rise {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}
.btn-row .btn { animation: hero-rise .7s var(--ease) both; }
.hero-glass .btn-row .btn:nth-child(1) { animation-delay: .5s; }
.hero-glass .btn-row .btn:nth-child(2) { animation-delay: .6s; }

/* Floating glass card — sits over the hero photo, right column */
.hero-float {
  position: relative; z-index: 3;
  background: rgba(255,255,255,0.88);
  backdrop-filter: blur(18px) saturate(160%);
  border: 1px solid rgba(255,255,255,0.6);
  border-radius: var(--radius-lg);
  padding: 28px 28px 26px;
  box-shadow: var(--shadow-lg);
  max-width: 320px;
  margin-left: auto;
  opacity: 0;
  animation: float-in .9s var(--ease) .7s both, ambient-float 5s ease-in-out 1.6s infinite;
}
@keyframes ambient-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
.hero-float .float-icon {
  width: 42px; height: 42px; border-radius: 11px; background: var(--red-100); color: var(--red-700);
  display: flex; align-items: center; justify-content: center; margin-bottom: 14px;
}
.hero-float .float-icon svg { width: 21px; height: 21px; }
.hero-float h3 { font-size: 1.05rem; margin-bottom: 6px; }
.hero-float p { font-size: 0.87rem; margin-bottom: 16px; }
.hero-float .btn { width: 100%; }
@keyframes float-in {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.scroll-cue {
  position: absolute; z-index: 3; left: 50%; bottom: 28px; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: rgba(255,255,255,0.6); font-family: var(--font-mono); font-size: 0.65rem;
  letter-spacing: 0.12em; text-transform: uppercase;
  animation: scroll-cue-bob 2.2s ease-in-out infinite;
}
.scroll-cue span { width: 1px; height: 26px; background: linear-gradient(180deg, rgba(255,255,255,0.7), transparent); }
@keyframes scroll-cue-bob {
  0%, 100% { transform: translate(-50%, 0); opacity: 0.7; }
  50% { transform: translate(-50%, 8px); opacity: 1; }
}

@media (max-width: 980px) {
  .hero-inner { grid-template-columns: 1fr; padding: calc(var(--header-h) + 24px) 20px 56px; align-items: start; }
  .hero-glass { padding: 32px 26px; max-width: 100%; }
  .hero-float { margin: 20px 0 0; max-width: 100%; }
  .scroll-cue { display: none; }
}
@media (prefers-reduced-motion: reduce) {
  .hero-media img { animation: none; transform: scale(1.04); }
  .hero-animate > *, .btn-row .btn, .hero-float, .scroll-cue { animation: none; opacity: 1; transform: none; }
}

/* Image-caption credit line for hotlinked demo photography */
.photo-credit {
  position: absolute; z-index: 3; right: 16px; bottom: 10px;
  font-family: var(--font-mono); font-size: 0.62rem; color: rgba(255,255,255,0.85);
  letter-spacing: 0.03em;
  background: rgba(23,24,27,0.45); padding: 4px 10px; border-radius: 20px;
}

/* ---------- Unified editorial photo grade — bright, clean, subtly cool (hope/healing, not warm/beige) ---------- */
.hero-media img, .photo-frame img {
  filter: saturate(1.04) contrast(1.03) brightness(1.07);
}
.photo-frame::after {
  content: "";
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: linear-gradient(155deg, rgba(231,240,245,0.16), rgba(47,92,122,0.07));
  mix-blend-mode: soft-light;
}

/* ---------- CTA split (overlaps hero) ---------- */
.cta-split-wrap { position: relative; z-index: 5; }
.cta-split {
  max-width: var(--max-w); margin: 0 auto; padding: 0 28px;
  transform: translateY(-64px);
}
.cta-split-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 20px;
}
.cta-split-card {
  background: #fff; padding: 36px 38px; display: flex; flex-direction: column; gap: 6px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--gray-200);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.cta-split-card:hover { transform: translateY(-4px); box-shadow: 0 32px 70px rgba(23,24,27,0.16); }
.cta-split-card .split-icon {
  width: 46px; height: 46px; border-radius: 13px; background: var(--red-100); color: var(--red-700);
  display: flex; align-items: center; justify-content: center; margin-bottom: 16px;
}
.cta-split-card .split-icon svg { width: 23px; height: 23px; }
.cta-split-card:last-child .split-icon { background: var(--gold-100); color: var(--gold-700); }
.cta-split-card h3 { margin-bottom: 8px; }
.cta-split-card p { margin-bottom: 20px; font-size: 0.96rem; }
.cta-split-card .btn { align-self: flex-start; }
@media (max-width: 780px) {
  .cta-split-grid { grid-template-columns: 1fr; }
  .cta-split { transform: translateY(-40px); }
  .cta-split-card { padding: 28px 26px; }
}

/* ---------- Real photo frame (with graceful fallback if hotlink fails) ---------- */
.photo-frame {
  position: relative; border-radius: var(--radius-md); overflow: hidden;
  min-height: 300px; background: linear-gradient(150deg, var(--charcoal-900), var(--charcoal-950));
}
.photo-frame img {
  width: 100%; height: 100%; min-height: 300px; object-fit: cover; display: block;
  transition: transform .5s var(--ease);
}
.photo-frame:hover img { transform: scale(1.035); }
.photo-frame .frame-tag {
  position: absolute; left: 14px; bottom: 14px; z-index: 2;
  font-family: var(--font-mono); font-size: 0.66rem; letter-spacing: 0.04em; color: #fff;
  background: rgba(23,24,27,0.55); backdrop-filter: blur(6px);
  padding: 6px 12px; border-radius: 20px;
}
.photo-frame.img-failed::after {
  content: "Photo placeholder — replace before production";
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  text-align: center; padding: 24px; color: rgba(255,255,255,0.55);
  font-family: var(--font-mono); font-size: 0.75rem;
}

/* ---------- Section utilities ---------- */
.section { padding: 84px 0; }
.section--tight { padding: 48px 0; }
.section--top-tight { padding-top: 8px; }
.section--gray { background: var(--gray-50); }
.section--charcoal { background: var(--charcoal-950); color: #fff; }
.section--charcoal h2, .section--charcoal h3 { color: #fff; }
.section--charcoal p { color: rgba(255,255,255,0.72); }
.section--red { background: linear-gradient(135deg, var(--red-700), var(--red-900)); color: #fff; }
.section--red h2 { color: #fff; }
.section--red p { color: rgba(255,255,255,0.88); }
.section-head { max-width: 640px; margin-bottom: 40px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section { position: relative; }

/* Editorial watermark — huge faint type sitting behind a section for depth */
.section-watermark {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  font-family: var(--font-display); font-weight: 600; font-size: clamp(6rem, 22vw, 15rem);
  color: var(--charcoal-900); opacity: 0.035; letter-spacing: -0.02em; white-space: nowrap;
  pointer-events: none; z-index: 0; user-select: none;
}
.section--charcoal .section-watermark { color: #fff; opacity: 0.045; }
.section > .container { position: relative; z-index: 1; }

/* Photo that bleeds past its column for layered composition */
.photo-frame--bleed { margin-right: -48px; }
@media (max-width: 980px) { .photo-frame--bleed { margin-right: 0; } }

/* ---------- Grid / Cards ---------- */
.grid { display: grid; gap: 26px; }
.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: 980px) { .grid-4 { grid-template-columns: repeat(2, 1fr); } .grid-3 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; } }

.card {
  background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius-md);
  padding: 30px; transition: box-shadow .25s var(--ease), transform .25s var(--ease), border-color .25s ease;
}
.card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); border-color: var(--gray-300); }
.card h3 { font-size: 1.12rem; margin-bottom: 0.4em; }
.card p:last-child { margin-bottom: 0; }
.card .card-icon {
  width: 48px; height: 48px; border-radius: 12px;
  background: var(--red-100); color: var(--red-700);
  display: flex; align-items: center; justify-content: center; margin-bottom: 18px;
}
.card .card-icon svg { width: 24px; height: 24px; }
.card--dark { background: rgba(255,255,255,0.04); border-color: rgba(255,255,255,0.12); }
.card--dark .card-icon { background: rgba(255,255,255,0.08); color: var(--gold-300); }
.card--dark h3 { color: #fff; }
.card--dark p { color: rgba(255,255,255,0.68); }

.card--gray { background: var(--gray-50); border-color: var(--gray-200); }
.card--link { display: block; }
.card--link .card-cta { margin-top: 14px; font-weight: 600; color: var(--red-700); font-size: 0.9rem; display: inline-flex; align-items: center; gap: 6px; transition: gap .2s ease; }
.card--link:hover .card-cta { gap: 10px; }
.card--link.card--dark .card-cta { color: var(--gold-300); }

/* ---------- Stat strip ---------- */
.stat-strip { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.stat-strip .stat {
  padding: 30px 22px; text-align: left; border: 1px solid var(--gray-200); border-radius: var(--radius-md);
  background: #fff; transition: box-shadow .2s ease, transform .2s ease;
}
.stat-strip .stat:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.stat .stat-icon { width: 34px; height: 34px; color: var(--gold-600); margin-bottom: 16px; }
.stat .stat-icon svg { width: 100%; height: 100%; }
.stat b { display: block; font-family: var(--font-display); font-size: 2.1rem; color: var(--charcoal-950); font-weight: 500; }
.stat span { font-size: 0.85rem; color: var(--charcoal-500); }
@media (max-width: 780px) { .stat-strip { grid-template-columns: repeat(2, 1fr); } }

/* ---------- Timeline / process ---------- */
.process-list { list-style: none; margin: 0; padding: 0; counter-reset: step; }
.process-list li { display: grid; grid-template-columns: 48px 1fr; gap: 20px; padding: 24px 0; border-bottom: 1px solid var(--gray-200); position: relative; }
.process-list li:last-child { border-bottom: none; }
.process-list li::before {
  counter-increment: step; content: counter(step);
  font-family: var(--font-display); font-weight: 500; color: var(--gold-700);
  width: 48px; height: 48px; border-radius: 50%; border: 1.5px solid var(--gold-400);
  display: flex; align-items: center; justify-content: center; font-size: 1.15rem;
  background: var(--gold-100);
}

/* ---------- Small Ohio coverage badge (compact, not oversized) ---------- */
.coverage-badge {
  display: flex; align-items: center; gap: 18px;
  background: var(--charcoal-950); border-radius: var(--radius-md);
  padding: 22px 24px; color: #fff;
}
.coverage-badge .badge-icon { width: 56px; height: 56px; flex-shrink: 0; color: var(--gold-300); }
.coverage-badge .badge-icon svg { width: 100%; height: 100%; }
.coverage-badge .badge-text b { display: block; font-family: var(--font-display); font-size: 1.5rem; font-weight: 500; color: var(--gold-300); }
.coverage-badge .badge-text span { font-size: 0.82rem; color: rgba(255,255,255,0.65); }

/* ---------- Breadcrumb ---------- */
.breadcrumb { font-size: 0.82rem; color: var(--charcoal-500); padding: 18px 0 0; }
.breadcrumb a:hover { color: var(--red-700); }
.breadcrumb span[aria-current] { color: var(--charcoal-900); }

/* ---------- Page hero (interior) ---------- */
.page-hero { padding: 36px 0 52px; background: var(--gray-50); border-bottom: 1px solid var(--gray-200); }
.page-hero .eyebrow { margin-top: 6px; }
.page-hero p { max-width: 62ch; font-size: 1.08rem; }

/* ---------- Disclaimer banner ---------- */
.disclaimer-banner {
  background: var(--gold-100); border: 1px solid var(--gold-300); border-radius: var(--radius-md);
  padding: 20px 24px; font-size: 0.89rem; color: var(--charcoal-700);
}
.disclaimer-banner strong { color: var(--charcoal-900); }
.emergency-banner {
  background: var(--red-50); border: 1px solid var(--red-500); border-radius: var(--radius-md);
  padding: 20px 24px; font-size: 0.9rem; color: var(--red-900);
}

/* ---------- Forms ---------- */
.form-card { background: #fff; border: 1px solid var(--gray-200); border-radius: var(--radius-md); padding: 34px; box-shadow: var(--shadow-md); }
.field { margin-bottom: 18px; }
.field label { display: block; font-weight: 600; font-size: 0.88rem; margin-bottom: 6px; }
.field .hint { font-size: 0.78rem; color: var(--charcoal-500); margin-top: 4px; }
.field input, .field select, .field textarea {
  width: 100%; padding: 12px 14px; border: 1.5px solid var(--gray-300); border-radius: var(--radius-sm);
  font-family: var(--font-body); font-size: 0.95rem; background: #fff; color: var(--charcoal-900);
}
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--red-700); outline: none; box-shadow: 0 0 0 3px var(--red-100); }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 640px) { .field-row { grid-template-columns: 1fr; } }
.upload-drop {
  border: 2px dashed var(--gray-300); border-radius: var(--radius-md); padding: 26px; text-align: center;
  color: var(--charcoal-500); font-size: 0.88rem; background: var(--gray-50);
}
.form-note { font-size: 0.8rem; color: var(--charcoal-500); }
.form-success { display: none; background: var(--gold-100); border: 1px solid var(--gold-300); border-radius: var(--radius-md); padding: 16px 20px; font-size: 0.9rem; margin-top: 16px; }
.form-success.is-visible { display: block; }

/* ---------- FAQ accordion ---------- */
.accordion-item { border-bottom: 1px solid var(--gray-300); }
.accordion-trigger {
  width: 100%; text-align: left; background: none; border: none; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  padding: 22px 4px; font-family: var(--font-display); font-size: 1.08rem; font-weight: 500; color: var(--charcoal-900);
}
.accordion-trigger .plus { flex-shrink: 0; font-size: 1.3rem; color: var(--gold-600); transition: transform .2s ease; }
.accordion-trigger[aria-expanded="true"] .plus { transform: rotate(45deg); }
.accordion-panel { max-height: 0; overflow: hidden; transition: max-height .25s ease; }
.accordion-panel .inner { padding: 0 4px 22px; color: var(--charcoal-700); }

/* ---------- Gallery ---------- */
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
@media (max-width: 900px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .gallery-grid { grid-template-columns: 1fr; } }
.gallery-item { border: 1px solid var(--gray-200); border-radius: var(--radius-md); overflow: hidden; background: #fff; cursor: pointer; transition: box-shadow .2s ease, transform .2s ease; }
.gallery-item:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.gallery-item .ba-frame { display: grid; grid-template-columns: 1fr 1fr; }
.gallery-item figure { margin: 0; position: relative; }
.gallery-item figcaption { position: absolute; bottom: 6px; left: 6px; background: rgba(23,24,27,0.75); color: #fff; font-size: 0.65rem; padding: 3px 8px; border-radius: 3px; font-family: var(--font-mono); letter-spacing: 0.05em;}
.gallery-item .placeholder-img { width: 100%; aspect-ratio: 4/3; background: linear-gradient(135deg, var(--gray-200), var(--gray-100)); display: flex; align-items: center; justify-content: center; color: var(--charcoal-500); font-size: 0.75rem; text-align: center; padding: 10px; }
.gallery-item .meta { padding: 16px 18px; }
.gallery-item .meta h3 { font-size: 0.96rem; margin-bottom: 4px; }
.gallery-item .meta p { font-size: 0.82rem; margin-bottom: 0; }
.lightbox { position: fixed; inset: 0; background: rgba(20,20,22,0.92); display: none; align-items: center; justify-content: center; z-index: 2000; padding: 24px; }
.lightbox.is-open { display: flex; }
.lightbox-content { background: #fff; border-radius: var(--radius-md); max-width: 720px; width: 100%; padding: 24px; position: relative; max-height: 90vh; overflow-y: auto; }
.lightbox-close { position: absolute; top: 14px; right: 14px; background: var(--gray-100); border: none; border-radius: 50%; width: 34px; height: 34px; cursor: pointer; font-size: 1.1rem; }

/* ---------- Team ---------- */
.team-photo-placeholder { aspect-ratio: 4/3; background: var(--gray-200); border-radius: var(--radius-md); display: flex; align-items: center; justify-content: center; color: var(--charcoal-500); font-size: 0.82rem; text-align: center; padding: 16px; }

/* ---------- Footer ---------- */
.site-footer { background: var(--charcoal-950); color: rgba(255,255,255,0.85); padding: 64px 0 30px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; }
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }
.site-footer h4 { color: var(--gold-300); font-family: var(--font-mono); font-size: 0.75rem; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 18px; }
.site-footer a { color: rgba(255,255,255,0.75); font-size: 0.9rem; }
.site-footer a:hover { color: #fff; }
.footer-links { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 11px; }
.footer-brand-name { font-family: var(--font-display); font-size: 1.3rem; color: #fff; margin-bottom: 12px; font-weight: 500; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.14); margin-top: 44px; padding-top: 22px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; font-size: 0.8rem; color: rgba(255,255,255,0.5); }
.footer-bottom a { color: rgba(255,255,255,0.5); }
.footer-legal-links { display: flex; gap: 18px; flex-wrap: wrap; }

/* ---------- Conditions index chips ---------- */
.condition-nav { display: flex; flex-wrap: wrap; gap: 10px; margin: 28px 0; }
.condition-nav a {
  border: 1px solid var(--gray-300); border-radius: 30px; padding: 9px 16px; font-size: 0.85rem; font-weight: 500;
  transition: background .15s ease, border-color .15s ease;
}
.condition-nav a:hover { background: var(--red-100); border-color: var(--red-700); color: var(--red-700); }

/* ---------- Table ---------- */
.table-wrap { overflow-x: auto; }
table.data-table { width: 100%; border-collapse: collapse; font-size: 0.92rem; }
table.data-table th, table.data-table td { text-align: left; padding: 16px; border-bottom: 1px solid var(--gray-200); }
table.data-table th { font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 0.06em; text-transform: uppercase; color: var(--charcoal-500); }

/* ---------- Utility spacing/animation ---------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .6s var(--ease), transform .6s var(--ease); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.reveal-stagger > * { opacity: 0; transform: translateY(22px); transition: opacity .6s var(--ease), transform .6s var(--ease); }
.reveal-stagger.is-visible > * { opacity: 1; transform: translateY(0); }
.reveal-stagger.is-visible > *:nth-child(1) { transition-delay: 0s; }
.reveal-stagger.is-visible > *:nth-child(2) { transition-delay: .08s; }
.reveal-stagger.is-visible > *:nth-child(3) { transition-delay: .16s; }
.reveal-stagger.is-visible > *:nth-child(4) { transition-delay: .24s; }

.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
@media (max-width: 900px) { .two-col { grid-template-columns: 1fr; gap: 36px; } }
.tag { display: inline-block; font-family: var(--font-mono); font-size: 0.68rem; letter-spacing: 0.08em; text-transform: uppercase; background: var(--gray-100); border: 1px solid var(--gray-300); border-radius: 20px; padding: 4px 10px; margin: 0 6px 6px 0; color: var(--charcoal-700); }

.image-caption { font-size: 0.78rem; color: var(--charcoal-500); margin-top: 10px; font-style: italic; }

/* ---------- Premium media placeholder (used instead of gray boxes) ---------- */
.media-frame {
  position: relative; border-radius: var(--radius-md); overflow: hidden;
  min-height: 260px; display: flex; align-items: center; justify-content: center;
  background: linear-gradient(150deg, var(--charcoal-900), var(--charcoal-950));
  color: #fff;
}
.media-frame::before {
  content: ""; position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.08) 1px, transparent 1px);
  background-size: 20px 20px;
}
.media-frame.tone-red { background: linear-gradient(150deg, var(--red-700), var(--red-900)); }
.media-frame.tone-gold { background: linear-gradient(150deg, var(--gold-500), var(--gold-700)); }
.media-frame .frame-content { position: relative; z-index: 2; text-align: center; padding: 32px; }
.media-frame .frame-icon { width: 56px; height: 56px; margin: 0 auto 18px; color: var(--gold-300); }
.media-frame.tone-gold .frame-icon { color: #fff; }
.media-frame .frame-icon svg { width: 100%; height: 100%; }
.media-frame .frame-caption { font-family: var(--font-mono); font-size: 0.7rem; letter-spacing: 0.04em; color: rgba(255,255,255,0.6); max-width: 32ch; margin: 0 auto; }
