/* =========================================================================
   KAHLOON.COM - corporate umbrella site (v3, editorial)
   Each page has its own visual logic. Home = asymmetric editorial.
   Products = alternating spotlights. Projects = magazine spreads.
   Contact = two-column. Numbered section markers replace decorative icons.
   ========================================================================= */

:root {
  /* Brand */
  --red:        #eb0303;
  --red-dark:   #b50000;
  --red-soft:   #fef2f2;

  /* Sub-brand colours (per product / project) */
  --people:     #eb0303;
  --clinic:     #0f766e;
  --p360:       #27c77d;
  --foundation: #eb0303;
  --imhc:       #b91c1c;
  --mfc:        #2563eb;
  --cmfa:       #15803d;

  /* Neutral palette */
  --ink:        #0a0a0a;
  --ink-soft:   #262626;
  --ink-muted:  #525252;
  --ink-faint:  #737373;
  --ink-light:  #a3a3a3;
  --line:       #e5e5e5;
  --line-soft:  #f0f0f0;
  --bg:         #ffffff;
  --bg-band:    #f7f7f7;
  --cream:      #f5f1e8;
  --cream-deep: #ece6d5;
  --ink-deep:   #0a0a0a;

  /* Type */
  --font-sans:  -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Roboto, Arial, sans-serif;
  --font-mono:  ui-monospace, SFMono-Regular, 'SF Mono', Menlo, Consolas, monospace;

  /* Layout */
  --radius:     6px;
  --radius-lg:  12px;
  --maxw:       1280px;
  --pad-x:      40px;
  --nav-h:      80px;
  --nav-h-min:  56px;
}

* { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%; scroll-behavior: smooth;
  /* Black bg so elastic overscroll past the footer shows footer colour, not white */
  background: var(--ink-deep);
}
body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

a { color: inherit; text-decoration: none; }
img, svg { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; }

.container { max-width: var(--maxw); margin: 0 auto; padding: 0 var(--pad-x); }
.container--wide { max-width: 1440px; margin: 0 auto; padding: 0 var(--pad-x); }

/* ─── Nav (condensable) ─────────────────────────────────────────────────── */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255, 255, 255, 0.86);
  -webkit-backdrop-filter: saturate(140%) blur(10px);
  backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s, background 0.2s;
}
.nav.is-condensed {
  background: rgba(255, 255, 255, 0.95);
  border-bottom-color: var(--line);
}
.nav-row {
  display: flex; align-items: center; justify-content: flex-start;
  height: var(--nav-h);
  transition: height 0.2s;
}
.nav.is-condensed .nav-row { height: var(--nav-h-min); }
.nav-row > .nav-links { margin-left: auto; }
.nav-row > .nav-cta { margin-left: 28px; }

.brand { display: inline-flex; align-items: center; gap: 10px; color: var(--ink); line-height: 1; }
.brand-logo {
  width: 36px; height: 36px; flex-shrink: 0; display: block;
  transition: width 0.2s, height 0.2s;
}
.nav.is-condensed .brand-logo { width: 28px; height: 28px; }
.brand-main { font-size: 28px; font-weight: 700; letter-spacing: -0.025em; display: inline-flex; align-items: baseline; transition: color 0.18s ease; }
.brand:hover .brand-main { color: var(--red); }
.brand-main .dot { display: inline-block; width: 7px; height: 7px; border-radius: 50%; background: var(--red); margin-left: 3px; transform: translateY(-2px); }

.nav-links { display: flex; gap: 32px; align-items: center; font-size: 15px; color: var(--ink-muted); }
.nav-links a { transition: color 0.15s; }
.nav-links a:hover { color: var(--red); }
.nav-links a.active { color: var(--ink); font-weight: 500; }
.nav-cta { display: flex; gap: 12px; align-items: center; }
.nav-contact { font-size: 15px; color: var(--ink-muted); padding: 8px 14px; transition: color 0.15s; }
.nav-contact:hover { color: var(--red); }

/* ─── Buttons ───────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: inherit; font-size: 15px; font-weight: 500; line-height: 1;
  padding: 13px 22px; border-radius: var(--radius); border: 1px solid transparent;
  cursor: pointer; transition: background 0.15s, border-color 0.15s, color 0.15s, transform 0.05s;
}
.btn-primary { background: var(--ink); color: #fff; }
.btn-primary:hover { background: var(--ink-soft); }
.btn-primary:active { transform: translateY(1px); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn-ghost:hover { border-color: var(--ink); }
.btn-lg { font-size: 16px; padding: 16px 30px; }
.btn-arrow::after { content: '→'; margin-left: 4px; transition: transform 0.15s; }
.btn-arrow:hover::after { transform: translateX(3px); }

/* Prose-style inline link (left-to-right underline reveal) */
.link {
  position: relative; display: inline; color: inherit;
  background-image: linear-gradient(currentColor, currentColor);
  background-size: 0% 1px; background-repeat: no-repeat;
  background-position: 0 100%;
  transition: background-size 0.35s ease;
}
.link:hover { background-size: 100% 1px; }

/* ─── Eyebrow pill (sub-pages only - Home is too confident for one) ─────── */
.eyebrow {
  display: inline-block; font-size: 12px; font-weight: 600; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--ink-faint);
  padding: 6px 12px; border: 1px solid var(--line); border-radius: 100px;
  margin-bottom: 28px;
}

/* ─── Sub-page hero (Products / Projects / Contact) ─────────────────────── */
.sub-hero { padding: 56px 0 36px; }
.sub-hero .h1 {
  font-size: clamp(48px, 6vw, 84px); line-height: 1.02; letter-spacing: -0.035em;
  font-weight: 700; margin: 0 0 24px; max-width: 920px; color: var(--ink);
}
.sub-hero .h1 .accent { color: var(--red); }
.sub-hero .lede {
  font-size: clamp(18px, 1.4vw, 22px); line-height: 1.55; color: var(--ink-soft);
  max-width: 720px; margin: 0;
}

/* ─── Editorial hero (Home only) ────────────────────────────────────────── */
.editorial-hero { padding: 60px 0 64px; }
.editorial-hero .grid {
  display: grid; grid-template-columns: 1fr 280px; gap: 64px; align-items: end;
}
.editorial-hero .display {
  font-size: clamp(56px, 8.5vw, 128px);
  line-height: 0.96; letter-spacing: -0.04em; font-weight: 700;
  margin: 0; color: var(--ink);
}
.editorial-hero .display em { font-style: italic; font-weight: 500; color: var(--ink-muted); }
.editorial-hero .hero-sub {
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin: 28px 0 0;
}
.editorial-hero .display .accent { color: var(--red); }
.editorial-hero .meta {
  display: flex; flex-direction: column; gap: 14px;
  padding-bottom: 14px;
}
.editorial-hero .meta-row { font-size: 13px; color: var(--ink-faint); letter-spacing: 0.04em; }
.editorial-hero .meta-label { font-family: var(--font-mono); font-size: 11px; text-transform: uppercase; letter-spacing: 0.14em; color: var(--ink-light); display: block; margin-bottom: 4px; }
.editorial-hero .meta-value { font-size: 14px; color: var(--ink-soft); }
.editorial-hero .attribution { display: inline-flex; align-items: center; gap: 12px; margin-top: 8px; }
.editorial-hero .attribution .photo {
  width: 40px; height: 40px; border-radius: 50%; overflow: hidden;
  background: var(--bg-band); border: 1px solid var(--line);
}
.editorial-hero .attribution .photo img { width: 100%; height: 100%; object-fit: cover; }
.editorial-hero .attribution .name { font-size: 14px; font-weight: 600; color: var(--ink); line-height: 1.2; }
.editorial-hero .attribution .role { font-size: 13px; color: var(--ink-faint); margin-top: 2px; line-height: 1.2; }

/* ─── Opening statement (Home, post-hero) ───────────────────────────────── */
.statement { padding: 80px 0 100px; border-top: 1px solid var(--line-soft); }
.statement-grid {
  display: grid; grid-template-columns: 1fr 1.4fr; gap: 64px; align-items: start;
}
.statement-num {
  font-family: var(--font-mono); font-size: 13px; letter-spacing: 0.1em;
  color: var(--ink-light); text-transform: uppercase; padding-top: 8px;
}
.statement-label { font-size: 28px; font-weight: 700; color: var(--ink); line-height: 1.2; letter-spacing: -0.02em; padding-top: 1px; }
.statement-label .accent { color: var(--red); }
.statement-body p { font-size: 19px; line-height: 1.55; color: var(--ink-soft); margin: 0 0 18px; }
.statement-body p:last-child { margin-bottom: 0; }
.statement-sub { font-size: 17px; font-weight: 500; color: var(--ink-soft); letter-spacing: -0.01em; margin: 14px 0 0; }
.statement-missions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.mission-pill {
  font-family: var(--font-mono); font-size: 13px; letter-spacing: 0.04em; color: var(--ink-muted);
  text-decoration: none; padding: 9px 18px; border: 1px solid var(--line); border-radius: 100px; background: #fff;
  transition: transform 0.18s ease, border-color 0.18s ease, color 0.18s ease, box-shadow 0.2s ease;
}
.mission-pill:hover {
  transform: translateY(-3px); border-color: var(--red); color: var(--foundation);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.07);
}
.statement-body .lead { font-size: 22px; line-height: 1.45; color: var(--ink); font-weight: 500; letter-spacing: -0.012em; }

/* ─── Full-bleed two-panel split (Home: Products + Projects) ────────────── */
.split { display: grid; grid-template-columns: 1fr 1fr; }
.split-panel {
  position: relative; padding: 96px 8vw 96px 8vw;
  display: flex; flex-direction: column; justify-content: space-between;
  min-height: 640px;
  transition: background 0.25s;
}
.split-panel--dark { background: var(--ink-deep); color: #fff; }
.split-panel--cream { background: var(--cream); color: var(--ink); }
.split-panel:hover .split-cta::after { transform: translateX(6px); }
.split-numeral {
  font-size: clamp(140px, 18vw, 220px); line-height: 0.85; font-weight: 700;
  letter-spacing: -0.04em; opacity: 0.08; margin: 0;
  position: absolute; top: 24px; right: 8vw; pointer-events: none;
}
.split-panel--dark .split-numeral { color: #fff; opacity: 0.07; }
.split-panel--cream .split-numeral { color: var(--ink); opacity: 0.08; }
.split-tag {
  font-family: var(--font-mono); font-size: 12px; text-transform: uppercase;
  letter-spacing: 0.16em; opacity: 0.7; margin-bottom: 24px; position: relative; z-index: 1;
}
.split-h {
  font-size: clamp(34px, 4vw, 52px); line-height: 1.05; letter-spacing: -0.025em;
  font-weight: 600; margin: 0 0 24px; max-width: 14ch; position: relative; z-index: 1;
}
.split-panel--dark .split-h { max-width: 18ch; }
.split-panel--cream .split-h { max-width: 26ch; }
.split-p { font-size: 17px; line-height: 1.6; opacity: 0.78; margin: 0 0 36px; max-width: 36ch; position: relative; z-index: 1; }
.split-list {
  font-family: var(--font-mono); font-size: 13px; letter-spacing: 0.02em;
  opacity: 0.6; margin: 0 0 36px; line-height: 1.7; position: relative; z-index: 1;
}
.split-list span { display: block; }
.split-list span + span { margin-top: 6px; }
.split-panel { scroll-margin-top: 80px; }
html { scroll-behavior: smooth; }
.split-cta { font-size: 15px; font-weight: 500; display: inline-flex; align-items: center; gap: 10px; position: relative; z-index: 1; }
.split-cta::after { content: '→'; transition: transform 0.2s; }

/* ─── Pull-quote (Foundation commitment) ────────────────────────────────── */
.pullquote { padding: 140px 0 140px; background: var(--bg); position: relative; overflow: hidden; }
.pullquote-mark {
  position: absolute; top: 20px; left: 4vw;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 480px; line-height: 1; color: var(--red);
  opacity: 0.07; font-weight: 700; pointer-events: none;
}
.pullquote-body {
  position: relative; z-index: 1; max-width: 980px; margin: 0 auto;
  text-align: left;
}
.pullquote-text {
  font-size: clamp(28px, 3.4vw, 46px); line-height: 1.25; letter-spacing: -0.015em;
  font-weight: 400; color: var(--ink); margin: 0 0 36px;
  font-style: italic;
}
.pullquote-text .accent { color: var(--red); font-style: normal; font-weight: 600; }
.pullquote-cite {
  font-family: var(--font-mono); font-size: 12px; text-transform: uppercase;
  letter-spacing: 0.14em; color: var(--ink-faint);
  padding-left: 32px; border-left: 1px solid var(--line); display: inline-block;
}
.pullquote-cite a { color: var(--ink); }
.pullquote-cite a:hover { color: var(--red); }

/* ─── Founder spread (Home, reversed asymmetric) ────────────────────────── */
.founder-spread { padding: 140px 0; border-top: 1px solid var(--line-soft); }
.founder-spread .grid {
  display: grid; grid-template-columns: 1fr 480px; gap: 80px; align-items: center;
}
.founder-spread .copy { padding-right: 20px; }
.founder-spread .tag {
  font-family: var(--font-mono); font-size: 12px; text-transform: uppercase;
  letter-spacing: 0.14em; color: var(--red); margin-bottom: 20px; display: block;
}
.founder-spread .name {
  font-size: clamp(36px, 4.2vw, 56px); line-height: 1.04; letter-spacing: -0.025em;
  font-weight: 600; margin: 0 0 8px; color: var(--ink);
}
.founder-spread .role {
  font-size: 17px; color: var(--ink-faint); margin: 0 0 36px;
}
.founder-spread .bio p { font-size: 17px; line-height: 1.7; color: var(--ink-soft); margin: 0 0 18px; }
.founder-spread .photo {
  width: 480px; height: 600px; overflow: hidden; background: var(--ink-deep);
  position: relative;
}
.founder-spread .photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.founder-spread .social {
  display: flex; gap: 10px; margin: 36px 0 28px; flex-wrap: wrap;
}
.founder-spread .social a {
  display: inline-flex; align-items: center; justify-content: center;
  width: 38px; height: 38px; border-radius: 50%;
  background: #fff; border: 1px solid var(--line); color: var(--ink-muted);
  transition: background 0.15s, color 0.15s, border-color 0.15s, transform 0.15s;
}
.founder-spread .social a:hover { background: var(--ink); color: #fff; border-color: var(--ink); transform: translateY(-1px); }
.founder-spread .social svg { width: 17px; height: 17px; }
.founder-spread .closing {
  font-size: 15px; line-height: 1.6; color: var(--ink-faint); font-style: italic;
  padding-top: 22px; border-top: 1px solid var(--line-soft);
}

/* ─── Product spotlights (Products page, alternating) ───────────────────── */
.spotlight-section { padding: 0; }
.spotlight {
  padding: 120px 0;
  border-top: 1px solid var(--line-soft);
}
.spotlight:first-child { border-top: none; }
.spotlight .grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 96px; align-items: center;
}
.spotlight--mirror .grid > .spotlight-copy { order: 2; }
.spotlight--mirror .grid > .spotlight-visual { order: 1; }
.spotlight-tag {
  font-family: var(--font-mono); font-size: 12px; text-transform: uppercase;
  letter-spacing: 0.16em; margin-bottom: 18px; display: inline-flex; align-items: center; gap: 10px;
}
.spotlight-tag .num { color: var(--ink-light); }
.spotlight-tag .status {
  font-family: var(--font-sans); font-size: 11px; padding: 3px 10px;
  border-radius: 100px; letter-spacing: 0.06em;
}
.spotlight-tag .status.live { background: #ecfdf5; color: #047857; border: 1px solid #6ee7b7; }
.spotlight-tag .status.soon { background: #fef3c7; color: #92400e; border: 1px solid #fcd34d; }
.spotlight-logo {
  max-width: 260px; height: auto; margin-bottom: 28px;
}
.spotlight-logo--wide { max-width: 380px; }
.spotlight-name {
  font-size: clamp(36px, 4.4vw, 56px); line-height: 1.05; letter-spacing: -0.025em;
  font-weight: 600; margin: 0 0 22px; color: var(--ink);
}
.spotlight-blurb {
  font-size: 18px; line-height: 1.6; color: var(--ink-soft); margin: 0 0 32px;
  max-width: 44ch;
}
.spotlight-meta {
  font-family: var(--font-mono); font-size: 13px; color: var(--ink-faint);
  margin: 0 0 32px;
}
.spotlight-cta {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 15px; font-weight: 500; color: var(--ink);
  padding: 14px 0; border-bottom: 1px solid var(--ink); transition: border-color 0.15s;
}
.spotlight-cta:hover { border-color: var(--red); color: var(--red); }
.spotlight-cta::after { content: '→'; transition: transform 0.2s; }
.spotlight-cta:hover::after { transform: translateX(4px); }

/* Typographic "mockup" panel - large branded card with feature list */
.spotlight-visual {
  background: var(--bg-band); border-radius: 16px; padding: 56px 48px;
  min-height: 460px; display: flex; flex-direction: column; justify-content: space-between;
  position: relative; overflow: hidden;
}
.spotlight-visual--dark { background: var(--ink-deep); color: #fff; }
.spotlight-visual--red { background: var(--red); color: #fff; }
.spotlight-visual--cream { background: var(--cream); color: var(--ink); }
.spotlight-visual--p360 { background: var(--p360); color: #fff; }
.spotlight-visual--imhc { background: var(--imhc); color: #fff; }
.spotlight-visual--mfc  { background: var(--mfc);  color: #fff; }
.spotlight-visual--cmfa { background: var(--cmfa); color: #fff; }
.spotlight-visual--imhc .spotlight-visual-features,
.spotlight-visual--mfc .spotlight-visual-features,
.spotlight-visual--cmfa .spotlight-visual-features { margin-bottom: 32px; }
.spotlight-visual-num {
  font-size: 140px; line-height: 0.85; font-weight: 700; letter-spacing: -0.04em;
  margin: 0; opacity: 0.08;
  position: absolute; bottom: 32px; right: 40px; pointer-events: none;
}
.spotlight-visual-features {
  font-family: var(--font-mono); font-size: 13px; line-height: 2; letter-spacing: 0.02em;
  list-style: none; padding: 0; margin: 0;
  position: relative; z-index: 1;
}
.spotlight-visual-features li { padding-left: 22px; position: relative; opacity: 0.85; }
.spotlight-visual-features li::before {
  content: ''; position: absolute; left: 0; top: 50%; width: 12px; height: 1px;
  background: currentColor; opacity: 0.5;
}
.spotlight-visual-tagline {
  font-size: 20px; line-height: 1.4; letter-spacing: -0.012em; font-weight: 500;
  margin: 0 0 32px; max-width: 30ch; position: relative; z-index: 1;
}
.spotlight-visual--link .spotlight-visual-tagline { margin-bottom: 2px; }
.spotlight-visual-subtitle {
  font-size: 15px; line-height: 1.45; font-weight: 400; opacity: 0.82;
  margin: 0 0 32px; max-width: 28ch; position: relative; z-index: 1;
}
.spotlight-visual--link {
  text-decoration: none; cursor: pointer;
  transform-style: preserve-3d; will-change: transform;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.spotlight-visual--link:hover { box-shadow: 0 22px 48px rgba(0, 0, 0, 0.22); }
/* Shared mouse-tilt hook (applied to boxes/sections flagged for the effect) */
.js-tilt { transform-style: preserve-3d; will-change: transform; transition: transform 0.2s ease, box-shadow 0.2s ease; }
/* Ghosted pillar word inside a spotlight box (Projects) */
.spotlight-visual-word {
  font-size: clamp(48px, 6vw, 84px); line-height: 0.85; font-weight: 700;
  letter-spacing: -0.04em; margin: 0; opacity: 0.12; text-transform: none;
  position: absolute; bottom: 24px; right: 32px; pointer-events: none; z-index: 0;
  max-width: calc(100% - 64px); white-space: nowrap;
}

/* ─── Foundation umbrella band (Projects, the parent section) ────────────── */
.foundation-band {
  padding: 88px 0; background: var(--bg-band);
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
}
.foundation-grid {
  display: grid; grid-template-columns: 1fr 1.5fr; gap: 64px; align-items: start;
}
.foundation-body { margin-top: 67px; }
.foundation-eyebrow {
  font-family: var(--font-mono); font-size: 12px; text-transform: uppercase;
  letter-spacing: 0.16em; color: var(--ink-light); margin-bottom: 16px;
}
.foundation-name {
  font-size: clamp(30px, 3.4vw, 44px); line-height: 1.05; letter-spacing: -0.025em;
  font-weight: 700; margin: 0; color: var(--ink);
}
.foundation-statement {
  font-size: clamp(26px, 3vw, 38px); line-height: 1.2; letter-spacing: -0.02em;
  font-weight: 700; color: var(--foundation); margin: 0 0 24px;
}
.foundation-lead {
  font-size: 19px; line-height: 1.6; color: var(--ink-soft); margin: 0 0 32px; max-width: 60ch;
}
.foundation-programs {
  list-style: none; padding: 0; margin: 0 0 36px;
  display: flex; flex-wrap: wrap; gap: 8px 10px;
}
.foundation-programs li {
  font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.04em; color: var(--ink-muted);
  padding: 6px 12px; border: 1px solid var(--line); border-radius: 100px; background: #fff;
  transition: transform 0.18s ease, border-color 0.18s ease, color 0.18s ease, box-shadow 0.2s ease;
}
.foundation-programs li:hover {
  transform: translateY(-3px);
  border-color: var(--red); color: var(--foundation);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.07);
}
.foundation-cta {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 15px; font-weight: 500; color: var(--ink); padding: 8px 0;
  background-image: linear-gradient(currentColor, currentColor);
  background-size: 100% 1px; background-repeat: no-repeat; background-position: 0 100%;
  transition: color 0.15s, background-size 0.25s ease;
}
.foundation-cta::after { content: '→'; transition: transform 0.2s; }
.foundation-cta:hover { color: var(--foundation); }
.foundation-cta:hover::after { transform: translateX(4px); }
.foundation-faces {
  margin-top: 32px; max-width: 384px; background: #fff;
  display: grid; grid-template-columns: repeat(6, 1fr); gap: 4px;
  border-radius: 14px; overflow: hidden;
}
.foundation-faces img {
  width: 100%; aspect-ratio: 1; object-fit: cover; display: block;
  filter: grayscale(1); transition: filter 0.3s ease;
}
.foundation-faces img:hover { filter: grayscale(0); }
.group-label { position: relative; margin: 0 0 14px; }
.gl-ghost {
  position: absolute; left: -2px; top: 50%; transform: translateY(-50%);
  z-index: 0; font-size: clamp(48px, 5.5vw, 80px); font-weight: 800;
  letter-spacing: -0.04em; line-height: 1; color: var(--ink); opacity: 0.05;
  pointer-events: none; white-space: nowrap; user-select: none;
}
.gl-text {
  position: relative; z-index: 1;
  font-family: var(--font-mono); font-size: 12px; text-transform: uppercase;
  letter-spacing: 0.16em; color: var(--ink-light);
}
.foundation-body .group-label { margin-bottom: 74px; }
.spotlight-section > .container > .group-label { margin-top: 64px; margin-bottom: 0; }
.spotlight-section > .container > .group-label + .spotlight { border-top: none; padding-top: 36px; }

/* ─── Project magazine spreads (Projects page) ──────────────────────────── */
.spread {
  padding: 100px 0;
  border-top: 1px solid var(--line-soft);
}
.spread:first-child { border-top: none; padding-top: 40px; }
.spread .grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
}
.spread--mirror .grid > .spread-copy { order: 2; }
.spread--mirror .grid > .spread-visual { order: 1; }
.spread-num {
  font-family: var(--font-mono); font-size: 13px; letter-spacing: 0.16em;
  color: var(--ink-light); text-transform: uppercase; margin-bottom: 20px;
}
.spread-name {
  font-size: clamp(32px, 3.6vw, 46px); line-height: 1.08; letter-spacing: -0.022em;
  font-weight: 600; margin: 0 0 8px; color: var(--ink);
}
.spread-locale {
  font-family: var(--font-mono); font-size: 13px; color: var(--ink-faint);
  margin: 0 0 24px; letter-spacing: 0.04em;
}
.spread-blurb p {
  font-size: 17px; line-height: 1.7; color: var(--ink-soft); margin: 0 0 16px;
}
.spread-blurb p:last-of-type { margin-bottom: 28px; }
.spread-cta {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 14px; font-weight: 500; color: var(--ink);
  padding: 8px 0;
  background-image: linear-gradient(currentColor, currentColor);
  background-size: 100% 1px; background-repeat: no-repeat;
  background-position: 0 100%;
  transition: color 0.15s, background-size 0.25s ease;
}
.spread-cta::after { content: '→'; transition: transform 0.2s; }
.spread-cta:hover::after { transform: translateX(4px); }

.spread-visual { aspect-ratio: 16 / 9; overflow: hidden; background: var(--bg-band); position: relative; }
.spread-visual img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.6s ease; }
.spread-visual:hover img { transform: scale(1.02); }
.spread-tagline {
  font-family: var(--font-mono); font-size: 13px; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--red); margin: 0 0 14px;
  font-weight: 600;
}

/* Typographic visual fallback when no photo exists */
.spread-visual--type {
  background: var(--cream); display: flex; align-items: center; justify-content: center;
  padding: 48px;
}
.spread-visual--type .typeblock {
  text-align: center;
}
.spread-visual--type .typeblock-num {
  font-size: 160px; line-height: 0.85; font-weight: 700; letter-spacing: -0.04em;
  margin: 0 0 16px;
}
.spread-visual--type .typeblock-name {
  font-family: var(--font-mono); font-size: 13px; text-transform: uppercase;
  letter-spacing: 0.16em; color: var(--ink-muted);
}

/* Hero photo for Projects page header */
.spread-hero {
  height: 60vh; min-height: 480px; max-height: 720px;
  overflow: hidden; background: var(--ink-deep);
  margin: 0; position: relative;
}
.spread-hero img { width: 100%; height: 100%; object-fit: cover; opacity: 0.92; }
.spread-hero-caption {
  position: absolute; bottom: 32px; left: var(--pad-x);
  font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.14em;
  text-transform: uppercase; color: rgba(255,255,255,0.85);
  padding: 8px 14px; background: rgba(0,0,0,0.4); backdrop-filter: blur(6px);
}

/* ─── Contact two-column ────────────────────────────────────────────────── */
.contact-split { padding: 60px 0 120px; }
.contact-split .grid {
  display: grid; grid-template-columns: 1fr 1.2fr; gap: 96px; align-items: start;
}
.contact-invite { padding-top: 0; position: relative; }
.contact-ghost {
  font-size: clamp(92px, 10.5vw, 158px); font-weight: 800; letter-spacing: -0.05em;
  line-height: 0.82; color: var(--ink); opacity: 0.06;
  margin: -46px 0 8px -5px; user-select: none; white-space: nowrap; pointer-events: none;
}
.contact-invite-h {
  font-size: clamp(26px, 3vw, 34px); line-height: 1.18; letter-spacing: -0.02em;
  font-weight: 700; color: var(--ink); margin: 0 0 18px; max-width: 16ch;
}
.contact-invite-h .accent { color: var(--red); }
.contact-invite-lede {
  font-size: 18px; line-height: 1.6; color: var(--ink-soft); margin: 0 0 30px; max-width: 40ch;
}
.contact-topics {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-wrap: wrap; gap: 8px 10px;
}
.contact-topics li {
  font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.04em; color: var(--ink-muted);
  padding: 6px 12px; border: 1px solid var(--line); border-radius: 100px; background: #fff;
  transition: transform 0.18s ease, border-color 0.18s ease, color 0.18s ease, box-shadow 0.2s ease;
}
.contact-topics li:hover {
  transform: translateY(-3px); border-color: var(--red); color: var(--red);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.07);
}

/* ─── Form (Contact page - preserved) ───────────────────────────────────── */
.form-host { width: 100%; }
.field { margin: 0 0 20px; }
.field label {
  display: block; font-size: 13px; font-weight: 600; color: var(--ink); margin-bottom: 8px;
  font-family: var(--font-mono); letter-spacing: 0.06em; text-transform: uppercase;
}
.field input, .field select, .field textarea {
  width: 100%; padding: 14px 16px;
  font-family: var(--font-sans); font-size: 16px; color: var(--ink);
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  transition: border-color 0.15s, box-shadow 0.15s;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--ink);
  box-shadow: 0 0 0 3px rgba(10,10,10,0.06);
}
.field textarea { min-height: 150px; resize: vertical; }
.field .hint { font-size: 13px; color: var(--ink-faint); margin-top: 6px; font-family: var(--font-sans); letter-spacing: 0; text-transform: none; font-weight: 400; }
.field .optional { color: var(--ink-faint); font-weight: 400; text-transform: none; letter-spacing: 0; }
.field .req { color: var(--red); margin-left: 1px; }
.honeypot { position: absolute; left: -10000px; width: 1px; height: 1px; overflow: hidden; }
.form-status {
  display: none; padding: 14px 18px; border-radius: var(--radius);
  font-size: 15px; line-height: 1.45; margin: 0 0 22px;
}
.form-status.success { display: block; background: #ecfdf5; border: 1px solid #34d399; color: #065f46; }
.form-status.error   { display: block; background: var(--red-soft); border: 1px solid var(--red); color: var(--red-dark); }

/* ─── Footer ────────────────────────────────────────────────────────────── */
.footer { background: #eb0303; color: #fff; padding: 56px 0 40px; font-size: 14px; margin-top: auto; }
.foot { display: flex; justify-content: space-between; gap: 48px; flex-wrap: wrap; align-items: stretch; }
.foot-brand-col { display: flex; flex-direction: column; min-height: 100%; max-width: 430px; }
.foot-brand { font-size: 26px; font-weight: 700; letter-spacing: -0.025em; color: #fff; line-height: 1; }
.foot-copyright { font-size: 13px; color: rgba(255,255,255,0.82); line-height: 1.7; margin: auto 0 0; padding: 28px 0 0; }
.foot-links { display: flex; gap: 56px; flex-wrap: wrap; }
.foot-col h4 { font-family: var(--font-mono); font-size: 12px; text-transform: uppercase; letter-spacing: 0.14em; color: rgba(255, 255, 255, 0.7); margin: 0 0 14px; font-weight: 500; }
.foot-col a { display: block; font-size: 13.5px; color: rgba(255, 255, 255, 0.85); margin: 0 0 11px; text-decoration: none; line-height: 1.6; letter-spacing: 0.01em; transition: color 0.15s, opacity 0.15s; }
.foot-col a:hover { color: #fff; opacity: 0.75; }

/* ─── Reveal animation (Projects spreads only) ─────────────────────────── */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.is-in { opacity: 1; transform: none; }

/* ─── 404 ───────────────────────────────────────────────────────────────── */
.notfound {
  min-height: calc(100vh - var(--nav-h) - 120px);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; padding: 80px 24px;
}
.notfound-mark {
  font-size: clamp(160px, 22vw, 280px); line-height: 1; font-weight: 700;
  letter-spacing: -0.06em; color: var(--ink); margin: 0;
}
.notfound-mark .dot { display: inline-block; width: 18px; height: 18px; border-radius: 50%; background: var(--red); transform: translateY(-12px); margin-left: 4px; }
.notfound-msg { font-size: 18px; color: var(--ink-soft); margin: 12px 0 32px; }

/* ─── Responsive ───────────────────────────────────────────────────────── */
@media (max-width: 1100px) {
  .spotlight .grid, .spread .grid { gap: 56px; }
  .founder-spread .grid { grid-template-columns: 1fr 380px; gap: 56px; }
  .founder-spread .photo { width: 380px; height: 480px; }
}
@media (max-width: 900px) {
  .split { grid-template-columns: 1fr; }
  .split-panel { min-height: 480px; padding: 72px 8vw; }
  .editorial-hero .grid { grid-template-columns: 1fr; gap: 32px; }
  .editorial-hero { padding: 80px 0 60px; }
  .statement-grid { grid-template-columns: 1fr; gap: 24px; }
  .statement-num { padding-top: 0; }
  .spotlight .grid, .spread .grid, .founder-spread .grid, .contact-split .grid, .foundation-grid {
    grid-template-columns: 1fr; gap: 40px;
  }
  .foundation-body { margin-top: 0; }
  .spotlight--mirror .grid > .spotlight-copy,
  .spotlight--mirror .grid > .spotlight-visual,
  .spread--mirror .grid > .spread-copy,
  .spread--mirror .grid > .spread-visual { order: initial; }
  .founder-spread .photo, .founder-spread .grid { width: auto; }
  .founder-spread .photo { height: 460px; width: 100%; max-width: 100%; }
  .spotlight, .spread, .founder-spread, .pullquote, .foundation-band { padding: 80px 0; }
  .pullquote-mark { font-size: 280px; top: 40px; }
}
@media (max-width: 720px) {
  .nav-row, .nav.is-condensed .nav-row { height: auto; flex-wrap: wrap; row-gap: 12px; padding: 12px 0; }
  .nav-row > .nav-links { order: 3; flex-basis: 100%; margin-left: 0; justify-content: center; gap: 22px; font-size: 14px; }
  .nav-row > .nav-cta { margin-left: auto; }
  :root { --pad-x: 24px; --nav-h: 64px; --nav-h-min: 52px; }
  .sub-hero { padding: 60px 0 24px; }
  .brand-main { font-size: 24px; }
  .editorial-hero .display { letter-spacing: -0.03em; }
  .spotlight-visual { padding: 40px 32px; min-height: 360px; }
  .spotlight-visual-num { font-size: 100px; }
  .pullquote-cite { padding-left: 0; border-left: none; padding-top: 18px; border-top: 1px solid var(--line); }
}

/* ── ALTCHA widget (contact form) ───────────────────────────── */
altcha-widget{
  display:block;
  margin:2px 0 20px;
  --altcha-max-width:100%;
  --altcha-border-radius:10px;
  --altcha-border-width:1px;
  --altcha-color-border:#d9d9d9;
  --altcha-color-text:var(--ink, #0a0a0a);
  --altcha-color-border-focus:var(--red, #eb0303);
  --altcha-color-base:#fbfbfb;
  font:inherit;
}

/* ── Polish pass: focus, motion, active nav ─────────────────── */
a:focus-visible, button:focus-visible, .btn:focus-visible,
.mission-pill:focus-visible, .split-panel:focus-visible,
.spotlight-visual--link:focus-visible, .field input:focus-visible,
.field select:focus-visible, .field textarea:focus-visible {
  outline: 2px solid var(--red);
  outline-offset: 3px;
  border-radius: 4px;
}
.nav-contact.active { color: var(--ink); font-weight: 500; }

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

/* ===========================================================================
   IMHC.online , red-forward healthcare theme on the Kahloon system
   =========================================================================== */
:root{
  --red:        #d41616;   /* deepened, medical-serious red (leads the brand) */
  --red-dark:   #a51111;
  --red-soft:   #fdf3f2;
  --warm:       #fbf6f3;   /* warm off-white band */
  --brand-deep: #b91c1c;   /* dark-red filled panels */
}

/* Hero over the building photo */
.imhc-hero{ position:relative; color:#fff; background:#1a0d0d; overflow:hidden; }
.imhc-hero .hero-img{ position:absolute; inset:0; width:100%; height:100%; object-fit:cover; }
.imhc-hero::after{ content:""; position:absolute; inset:0;
  background:linear-gradient(180deg, rgba(20,8,8,0) 0%, rgba(20,8,8,0) 42%, rgba(20,8,8,0.50) 78%, rgba(20,8,8,0.80) 100%),
            radial-gradient(120% 78% at 100% 100%, rgba(20,8,8,0.48) 0%, rgba(20,8,8,0) 55%); }
.imhc-hero .container{ position:relative; z-index:2; min-height:clamp(620px,88vh,940px); display:flex; flex-direction:column; justify-content:flex-end; align-items:flex-end; text-align:right; padding-top:90px; padding-bottom:30px; }
.imhc-hero .hero-eyebrow{ font-family:var(--font-mono); font-size:13px; letter-spacing:0.16em; text-transform:uppercase; color:rgba(255,255,255,0.86); margin:0 0 18px; }
.imhc-hero .display{ font-size:clamp(46px,6.6vw,98px); line-height:0.98; letter-spacing:-0.035em; font-weight:700; margin:0; color:#fff; text-shadow:0 2px 30px rgba(0,0,0,0.28); }
.imhc-hero .display .accent{ color:#ff5a4d; }
.imhc-hero .hero-lede{ font-size:clamp(17px,1.5vw,21px); line-height:1.5; color:rgba(255,255,255,0.94); max-width:560px; margin:22px 0 30px; margin-left:auto; }
.imhc-hero .hero-actions{ display:flex; gap:14px; flex-wrap:wrap; align-items:center; justify-content:flex-end; margin-top:30px; }
.imhc-hero .hero-meta{ font-family:var(--font-mono); font-size:13px; letter-spacing:0.04em; color:rgba(255,255,255,0.86); margin-top:24px; display:inline-flex; align-items:center; gap:8px; }
.imhc-hero .hero-meta b{ color:#fff; font-weight:600; }
.btn-call{ background:var(--red); color:#fff; }
.btn-call:hover{ background:var(--red-dark); }
.btn-on-dark{ background:transparent; color:#fff; border-color:rgba(255,255,255,0.5); }
.btn-on-dark:hover{ border-color:#fff; }

/* Opening-hours strip */
.hours-strip{ background:var(--warm); border-top:1px solid var(--line); border-bottom:1px solid var(--line); }
.hours-strip .container{ display:flex; align-items:center; flex-wrap:wrap; gap:10px 28px; padding-top:16px; padding-bottom:16px; border-left:0; }
.hours-strip .hs-item{ font-family:var(--font-mono); font-size:13px; letter-spacing:0.04em; color:var(--ink-soft); display:inline-flex; align-items:center; gap:8px; }
.hours-strip .hs-dot{ width:7px; height:7px; border-radius:50%; background:var(--red); display:inline-block; }
.hours-strip .hs-free{ color:var(--red); font-weight:600; }
.hours-strip .hs-call{ margin-left:auto; color:var(--ink); font-weight:600; }

/* Trust band (regulators / charity / NPO seal) */
.trust-band{ background:#fff; border-bottom:1px solid var(--line-soft); }
.trust-band .container{ display:grid; grid-template-columns:1.1fr 1fr; gap:48px; align-items:center; padding-top:48px; padding-bottom:48px; }
.trust-copy .gl-text{ display:block; margin-bottom:12px; }
.trust-copy h2{ font-size:clamp(22px,2.4vw,30px); line-height:1.2; letter-spacing:-0.02em; font-weight:700; margin:0 0 12px; color:var(--ink); }
.trust-copy p{ font-size:16px; line-height:1.6; color:var(--ink-muted); margin:0; max-width:46ch; }
.trust-seals{ display:flex; gap:28px; align-items:center; justify-content:flex-end; flex-wrap:wrap; }
.trust-seals figure{ margin:0; text-align:center; }
.trust-seals img{ width:96px; height:96px; object-fit:contain; }
.trust-seals figcaption{ font-family:var(--font-mono); font-size:10.5px; letter-spacing:0.04em; text-transform:uppercase; color:var(--ink-faint); margin:8px auto 0; max-width:11ch; line-height:1.3; text-align:center; }

/* Services grid (six) */
.service-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:18px; }
.service-card{ background:#fff; border:1px solid var(--line); border-radius:14px; padding:28px 26px; border-top:3px solid var(--red);
  transition:transform 0.18s ease, box-shadow 0.2s ease, border-color 0.18s ease; }
.service-card:hover{ transform:translateY(-4px); box-shadow:0 12px 30px rgba(0,0,0,0.07); }
.service-card .sc-num{ font-family:var(--font-mono); font-size:12px; letter-spacing:0.1em; color:var(--red); }
.service-card h3{ font-size:19px; line-height:1.25; letter-spacing:-0.015em; font-weight:700; margin:10px 0 8px; color:var(--ink); }
.service-card p{ font-size:14.5px; line-height:1.55; color:var(--ink-muted); margin:0; }
.service-card.sc-digital{ border-top-color:var(--clinic); background:var(--warm); }
.service-card.sc-digital .sc-num{ color:var(--clinic); }

/* Stat row (digital workflow proof) */
.stat-row{ display:grid; grid-template-columns:repeat(5,1fr); gap:14px; margin-top:8px; }
.stat{ text-align:center; padding:18px 8px; }
.stat .stat-n{ font-size:clamp(26px,3vw,38px); font-weight:700; letter-spacing:-0.02em; color:var(--ink); line-height:1; }
.stat .stat-l{ font-family:var(--font-mono); font-size:11px; letter-spacing:0.06em; text-transform:uppercase; color:var(--ink-faint); margin-top:8px; }
.stat .stat-n .accent{ color:var(--red); }

/* Contribute panel */
.contribute{ background:var(--brand-deep); color:#fff; }
.contribute .container{ padding-top:84px; padding-bottom:84px; }
.contribute .gl-text{ color:rgba(255,255,255,0.7); }
.contribute h2{ font-size:clamp(30px,4vw,52px); line-height:1.05; letter-spacing:-0.03em; font-weight:700; margin:6px 0 18px; max-width:18ch; }
.contribute .ctr-lede{ font-size:18px; line-height:1.6; color:rgba(255,255,255,0.9); max-width:52ch; margin:0 0 32px; }
.ctr-grid{ display:grid; grid-template-columns:1fr 1fr; gap:24px; align-items:start; }
.btn-white{ background:#fff; color:var(--brand-deep); }
.btn-white:hover{ background:#f5f5f5; }
.bank-slot{ background:rgba(255,255,255,0.08); border:1px solid rgba(255,255,255,0.18); border-radius:14px; padding:22px 24px; }
.bank-slot h4{ font-family:var(--font-mono); font-size:12px; letter-spacing:0.08em; text-transform:uppercase; color:rgba(255,255,255,0.7); margin:0 0 14px; font-weight:600; }
.bank-slot .bank-row{ display:flex; justify-content:space-between; gap:16px; padding:7px 0; border-bottom:1px solid rgba(255,255,255,0.12); font-size:14.5px; }
.bank-row:last-child{ border-bottom:none; }
.bank-row .bk-k{ color:rgba(255,255,255,0.7); } .bank-row .bk-v{ color:#fff; font-weight:500; }
.ctr-online{ display:flex; flex-direction:column; gap:14px; align-items:flex-start; }
.ctr-online p{ font-size:15px; color:rgba(255,255,255,0.85); margin:0; }

/* Tribute */
.tribute{ display:flex; gap:28px; align-items:center; background:var(--warm); border:1px solid var(--line); border-radius:16px; padding:28px 30px; margin-top:10px; }
.tribute img{ width:120px; height:120px; border-radius:50%; object-fit:cover; flex-shrink:0; filter:saturate(0.95); }
.tribute .tr-name{ font-size:22px; font-weight:700; letter-spacing:-0.02em; color:var(--ink); margin:0; }
.tribute .tr-years{ font-family:var(--font-mono); font-size:13px; color:var(--red); margin:4px 0 10px; }
.tribute .tr-text{ font-size:15.5px; line-height:1.6; color:var(--ink-muted); margin:0; max-width:60ch; }

/* Foundation attribution band */
.fnd-band{ background:#eb0303; color:#fff; }
.fnd-band .container{ padding-top:64px; padding-bottom:64px; display:grid; grid-template-columns:1fr 1fr; gap:40px; align-items:center; }
.fnd-band .gl-ghost{ color:#fff; opacity:0.10; }
.fnd-band h2{ font-size:clamp(24px,2.8vw,36px); line-height:1.15; letter-spacing:-0.02em; font-weight:700; margin:8px 0 16px; color:rgba(255,255,255,0.85); }
.fnd-band h2 .accent{ color:#fff; }
.fnd-band p{ font-size:16px; line-height:1.65; color:rgba(255,255,255,0.92); margin:0 0 22px; max-width:52ch; }
.fnd-pillars{ display:flex; gap:10px; flex-wrap:wrap; }
.fnd-pillars span{ font-family:var(--font-mono); font-size:12px; letter-spacing:0.04em; color:#fff; padding:7px 14px; border:1px solid rgba(255,255,255,0.4); border-radius:100px; }
.fnd-pillars span b{ color:#fff; }
.fnd-band .trust-seals figcaption{ color:rgba(255,255,255,0.80); }

/* Light giving cards (Contribute page) */
.give-grid{ display:grid; grid-template-columns:1fr 1fr; gap:24px; align-items:start; margin-top:14px; }
.give-card{ background:#fff; border:1px solid var(--line); border-radius:16px; padding:30px 32px; border-top:3px solid var(--red); }
.give-card .gc-head{ font-family:var(--font-mono); font-size:12px; letter-spacing:0.08em; text-transform:uppercase; color:var(--red); margin:0 0 16px; font-weight:600; }
.give-card .gc-intro{ font-size:15px; line-height:1.6; color:var(--ink-soft); margin:0 0 18px; }
.give-row{ display:flex; justify-content:space-between; gap:16px; padding:9px 0; border-bottom:1px solid var(--line-soft); font-size:14.5px; }
.give-row:last-of-type{ border-bottom:none; }
.give-row .gk{ color:var(--ink-faint); }
.give-row .gv{ color:var(--ink); font-weight:500; text-align:right; }
.give-card .gc-fine{ font-size:13px; line-height:1.55; color:var(--ink-faint); margin:16px 0 0; }
@media(max-width:760px){ .give-grid{ grid-template-columns:1fr; } }

/* Service pills (About section) */
.about-grid.about-grid--stretch{ align-items:stretch; }
.about-col{ display:flex; flex-direction:column; }
.about-col .service-pills{ margin-top:auto; }
.service-pills{ display:grid; grid-template-columns:repeat(3,1fr); gap:8px; margin-top:14px; max-width:560px; }
.service-pill{ font-size:12px; font-weight:500; color:var(--ink-soft); background:var(--warm); border:1px solid var(--line); border-radius:100px; padding:8px 10px; text-align:center; white-space:nowrap; transition:border-color 0.15s, color 0.15s; }
.service-pill::before{ content:""; display:inline-block; width:5px; height:5px; border-radius:50%; background:var(--red); margin-right:7px; vertical-align:middle; }
@media (max-width:600px){ .service-pills{ grid-template-columns:repeat(2,1fr); } }

/* Team grid (Our Team page) */
.team-grid{ display:grid; grid-template-columns:repeat(4,1fr); gap:18px; }
.team-card{ text-align:center; }
.team-card img{ width:100%; aspect-ratio:1; object-fit:cover; border-radius:14px; border:1px solid var(--line); transition:transform 0.18s ease, box-shadow 0.2s ease; }
.team-card:hover img{ transform:translateY(-4px); box-shadow:0 10px 24px rgba(0,0,0,0.08); }
.team-card .tc-name{ font-size:15.5px; font-weight:600; color:var(--ink); margin:12px 0 2px; }
.team-card .tc-role{ font-family:var(--font-mono); font-size:11.5px; letter-spacing:0.03em; color:var(--ink-faint); text-transform:uppercase; }
.doctor-row{ display:grid; grid-template-columns:200px 1fr; gap:28px; align-items:start; padding:32px 0; border-top:1px solid var(--line); }
.doctor-row img{ width:200px; height:200px; border-radius:16px; object-fit:cover; border:1px solid var(--line); }
.doctor-row h3{ font-size:24px; letter-spacing:-0.02em; font-weight:700; margin:0 0 4px; color:var(--ink); }
.doctor-row .dr-role{ font-family:var(--font-mono); font-size:12px; letter-spacing:0.06em; text-transform:uppercase; color:var(--red); margin-bottom:14px; }
.doctor-row .dr-bio{ font-size:15.5px; line-height:1.65; color:var(--ink-soft); margin:0; max-width:68ch; }

/* Map */
.map-embed{ position:relative; width:100%; aspect-ratio:16/10; border-radius:14px; overflow:hidden; border:1px solid var(--line); }
.map-embed iframe{ position:absolute; inset:0; width:100%; height:100%; border:0; }

/* Big tap-to-call in Reach Out */
.call-hero{ display:inline-flex; flex-direction:column; gap:2px; margin:8px 0 22px; }
.call-hero .ch-label{ font-family:var(--font-mono); font-size:12px; letter-spacing:0.08em; text-transform:uppercase; color:var(--ink-faint); }
.call-hero .ch-num{ font-size:clamp(26px,3.2vw,40px); font-weight:700; letter-spacing:-0.02em; color:var(--red); }
.reach-fact{ margin:0 0 16px; } .reach-fact .rf-k{ font-family:var(--font-mono); font-size:12px; letter-spacing:0.06em; text-transform:uppercase; color:var(--ink-faint); display:block; margin-bottom:3px; }
.reach-fact .rf-v{ font-size:16px; color:var(--ink-soft); line-height:1.5; }

@media (max-width: 900px){
  .trust-band .container, .ctr-grid, .fnd-band .container { grid-template-columns:1fr; }
  .service-grid{ grid-template-columns:repeat(2,1fr); }
  .stat-row{ grid-template-columns:repeat(3,1fr); }
  .team-grid{ grid-template-columns:repeat(3,1fr); }
  .doctor-row{ grid-template-columns:1fr; } .doctor-row img{ width:160px; height:160px; }
  .trust-seals{ justify-content:flex-start; }
}
@media (max-width: 600px){
  .service-grid{ grid-template-columns:1fr; }
  .stat-row{ grid-template-columns:repeat(2,1fr); }
  .team-grid{ grid-template-columns:repeat(2,1fr); }
  .hours-strip .hs-call{ margin-left:0; }
}

/* IMHC layout utilities */
.block{ padding:96px 0; }
.block-tight{ padding:64px 0; }
.block--warm{ background:var(--warm); }
.block--line{ border-top:1px solid var(--line-soft); }
.sec-head{ max-width:760px; margin:0 0 44px; }
.sec-head h2{ font-size:clamp(30px,4vw,52px); line-height:1.04; letter-spacing:-0.03em; font-weight:700; color:var(--ink); margin:8px 0 16px; }
.sec-head h2 .accent{ color:var(--red); }
.sec-head p{ font-size:clamp(17px,1.4vw,20px); line-height:1.6; color:var(--ink-soft); margin:0; max-width:62ch; }
.about-grid{ display:grid; grid-template-columns:1fr 1fr; gap:64px; align-items:start; }
.about-right{ display:flex; flex-direction:column; gap:18px; }
.about-right .service-card{ flex:1; display:flex; flex-direction:column; justify-content:center; }
.story-photo{ width:100%; max-width:460px; aspect-ratio:1/1; object-fit:cover; border-radius:18px; display:block; margin-inline:auto; }
.northstar-grid{ display:grid; grid-template-columns:1fr 1fr; gap:24px; }
.northstar-grid .tribute{ margin-top:0; }
@media (max-width:760px){ .northstar-grid{ grid-template-columns:1fr; } }
.team-teaser{ display:grid; grid-template-columns:repeat(6,1fr); gap:12px; margin-top:8px; }
.team-teaser img{ width:100%; aspect-ratio:1; object-fit:cover; border-radius:12px; border:1px solid var(--line); }
.brand-lockup{ display:flex; flex-direction:column; justify-content:center; line-height:1.12; gap:1px; }
.brand-lockup .bl-main{ font-size:clamp(19px,1.6vw,24px); font-weight:700; letter-spacing:-0.015em; color:var(--ink); transition:color 0.15s; }
.brand-lockup .bl-sub{ font-size:clamp(13px,1.1vw,16px); font-weight:600; letter-spacing:-0.005em; color:var(--red); }
.brand-lockup .bl-sub .bl-by{ color:var(--ink-faint); font-weight:500; }
.nav .brand{ gap:12px; align-items:center; }
.nav .brand-logo{ width:auto; height:clamp(46px,4vw,52px); border-radius:9px; }
.brand:hover .bl-main{ color:var(--red); }
.nav.imhc-nav{ background:rgba(255,255,255,0.92); backdrop-filter:saturate(1.2) blur(8px); border-bottom:1px solid var(--line); }
.nav-contact.btn-call{ padding:9px 18px; border-radius:var(--radius); }
.reach-grid{ display:grid; grid-template-columns:1fr 1fr; gap:48px; align-items:start; }
@media (max-width:900px){
  .about-grid, .reach-grid{ grid-template-columns:1fr; gap:36px; }
  .team-teaser{ grid-template-columns:repeat(3,1fr); }
}
