:root {
  /* Palette */
  --bg: #0c0c0d;
  --bg-elev: #111113;
  --bg-card: #141416;
  --grid-line: rgba(255,255,255,0.04);
  --border: rgba(255,255,255,0.08);
  --border-strong: rgba(255,255,255,0.18);
  --text: #ece8df;
  --text-dim: #a5a094;
  --text-faint: #6e695e;
  --gold: #c8a96e;
  --gold-soft: #b8934a;
  --gold-faint: rgba(200,169,110,0.12);

  /* Fonts */
  --font-display: 'Cormorant Garamond', 'Georgia', serif;
  --font-body: 'Inter', system-ui, sans-serif;
  --font-mono: 'JetBrains Mono', monospace;

  /* Type scale (fluid) */
  --text-xs: clamp(0.69rem, 0.65rem + 0.18vw, 0.78rem);
  --text-sm: clamp(0.81rem, 0.78rem + 0.18vw, 0.9rem);
  --text-base: 1rem;
  --text-lg: clamp(1.13rem, 1.07rem + 0.3vw, 1.31rem);
  --text-xl: clamp(1.4rem, 1.28rem + 0.6vw, 1.75rem);
  --text-2xl: clamp(2rem, 1.6rem + 1.8vw, 3rem);
  --text-3xl: clamp(2.75rem, 2.1rem + 3.2vw, 4.5rem);
  --text-hero: clamp(3.25rem, 2.4rem + 4.5vw, 6rem);

  /* Spacing */
  --s-1: 0.25rem; --s-2: 0.5rem; --s-3: 0.75rem; --s-4: 1rem;
  --s-6: 1.5rem; --s-8: 2rem; --s-12: 3rem; --s-16: 4rem;
  --s-20: 5rem; --s-24: 6rem; --s-32: 8rem;

  --container: 1280px;
  --section-pad-y: clamp(4rem, 8vw, 8rem);
  --section-pad-x: clamp(1.5rem, 4vw, 4rem);

  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

html, body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
}

body {
  background-image:
    linear-gradient(to right, var(--grid-line) 1px, transparent 1px);
  background-size: calc(100% / 12) 100%;
  background-attachment: fixed;
  min-height: 100vh;
}

/* Typography utilities */
.serif { font-family: var(--font-display); font-weight: 400; letter-spacing: -0.01em; }
.serif-italic { font-family: var(--font-display); font-style: italic; font-weight: 400; color: var(--gold); }
.eyebrow {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: var(--s-3);
}
.eyebrow::before {
  content: '';
  width: 36px;
  height: 1px;
  background: var(--gold);
  display: inline-block;
}
.label {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-dim);
  font-weight: 500;
}

/* Layout */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding-inline: var(--section-pad-x);
}
.section {
  padding-block: var(--section-pad-y);
  position: relative;
}
.section + .section { border-top: 1px solid var(--border); }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(14px);
  background: rgba(12,12,13,0.78);
  border-bottom: 1px solid var(--border);
}
.site-header .inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--s-6) var(--section-pad-x);
  max-width: var(--container);
  margin: 0 auto;
}
.logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  letter-spacing: 0.01em;
  color: var(--text);
}
.logo .amp { color: var(--gold); font-style: italic; padding: 0 0.15em; }

.nav { display: flex; gap: var(--s-8); align-items: center; }
.nav a {
  font-size: var(--text-xs);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-dim);
  font-weight: 500;
  transition: color 0.3s var(--ease);
}
.nav a:hover, .nav a.active { color: var(--gold); }

.menu-btn {
  display: none;
  color: var(--text);
  font-size: var(--text-xs);
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

/* Hero */
.hero {
  min-height: 88vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-block: var(--s-16);
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-16);
  align-items: center;
  width: 100%;
}
.hero-text { max-width: 640px; }
.hero h1 {
  font-family: var(--font-display);
  font-size: var(--text-hero);
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: -0.02em;
  margin-top: var(--s-8);
  margin-bottom: var(--s-8);
}
.hero h1 em {
  font-style: italic;
  color: var(--gold);
  font-weight: 400;
}
.hero-sub {
  font-size: var(--text-base);
  color: var(--text-dim);
  line-height: 1.65;
  max-width: 52ch;
  margin-bottom: var(--s-12);
}
.hero-ctas { display: flex; gap: var(--s-4); flex-wrap: wrap; }
.hero-visual {
  position: relative;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 420px;
}
@media (max-width: 900px) {
  .hero-visual { display: none; }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--s-3);
  padding: 1rem 1.75rem;
  font-size: var(--text-xs);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 500;
  border: 1px solid var(--border-strong);
  color: var(--text);
  transition: all 0.3s var(--ease);
  cursor: pointer;
}
.btn:hover { border-color: var(--gold); color: var(--gold); }
.btn-primary {
  background: var(--gold);
  color: #1a1408;
  border-color: var(--gold);
}
.btn-primary:hover {
  background: transparent;
  color: var(--gold);
  border-color: var(--gold);
}

/* Section heading block */
.section-head { margin-bottom: var(--s-16); max-width: 780px; }
.section-head .num {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  letter-spacing: 0.22em;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: var(--s-6);
  display: block;
}
.section-head h2 {
  font-family: var(--font-display);
  font-size: var(--text-3xl);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: var(--s-6);
}
.section-head h2 em { font-style: italic; color: var(--gold); font-weight: 400; }
.section-head p {
  font-size: var(--text-lg);
  color: var(--text-dim);
  line-height: 1.6;
  max-width: 60ch;
}

/* Watermark numeral */
.watermark {
  position: absolute;
  right: var(--section-pad-x);
  top: var(--section-pad-y);
  font-family: var(--font-display);
  font-size: clamp(8rem, 18vw, 16rem);
  color: var(--gold);
  opacity: 0.05;
  line-height: 0.8;
  font-weight: 300;
  pointer-events: none;
  user-select: none;
  letter-spacing: -0.04em;
}

/* Stat strip */
.stat-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.stat-strip .stat {
  padding: var(--s-8) var(--s-6);
  border-right: 1px solid var(--border);
}
.stat-strip .stat:last-child { border-right: none; }
.stat .v {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  color: var(--text);
  margin-bottom: var(--s-2);
  line-height: 1.1;
}
.stat .l {
  font-size: var(--text-xs);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-dim);
}

/* Cards grid */
.cards-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-6);
}
.cards-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--s-6);
}
.card {
  padding: var(--s-8);
  border: 1px solid var(--border);
  background: var(--bg-elev);
  transition: border-color 0.3s var(--ease), background 0.3s var(--ease);
}
.card:hover { border-color: var(--gold-faint); background: var(--bg-card); }
.card .num {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  color: var(--gold);
  font-style: italic;
  margin-bottom: var(--s-4);
  line-height: 1;
}
.card h3 {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: var(--s-4);
}
.card h4 {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: var(--s-4);
  color: var(--text);
}
.card p {
  color: var(--text-dim);
  font-size: var(--text-base);
  line-height: 1.65;
}
.card ul { margin-top: var(--s-4); }
.card ul li {
  position: relative;
  padding-left: var(--s-6);
  color: var(--text-dim);
  font-size: var(--text-sm);
  line-height: 1.7;
  margin-bottom: var(--s-2);
}
.card ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.85em;
  width: 14px;
  height: 1px;
  background: var(--gold);
}

/* Therapeutic areas */
.therap-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--border);
  border-left: 1px solid var(--border);
}
.therap-grid .item {
  padding: var(--s-8);
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.therap-grid h4 {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 400;
  font-style: italic;
  color: var(--gold);
  margin-bottom: var(--s-3);
}
.therap-grid p {
  color: var(--text-dim);
  font-size: var(--text-sm);
  line-height: 1.6;
}

/* Modalities chip row */
.modalities {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-2);
  margin-top: var(--s-8);
}
.modalities span {
  padding: var(--s-2) var(--s-4);
  border: 1px solid var(--border);
  font-size: var(--text-xs);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-dim);
}

/* Process list */
.process { display: grid; gap: 0; }
.process .step {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: var(--s-8);
  padding: var(--s-8) 0;
  border-top: 1px solid var(--border);
  align-items: start;
}
.process .step:last-child { border-bottom: 1px solid var(--border); }
.process .step-num {
  font-family: var(--font-display);
  font-style: italic;
  font-size: var(--text-2xl);
  color: var(--gold);
  line-height: 1;
}
.process h4 {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 400;
  margin-bottom: var(--s-3);
}
.process p {
  color: var(--text-dim);
  max-width: 60ch;
  line-height: 1.65;
}

/* Quotes */
.testimonials { display: grid; gap: var(--s-8); }
.testimonial {
  padding: var(--s-12);
  border: 1px solid var(--border);
  background: var(--bg-elev);
}
.testimonial .ctx {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--s-6);
}
.testimonial blockquote {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  line-height: 1.45;
  color: var(--text);
  margin-bottom: var(--s-6);
  font-weight: 400;
}
.testimonial .attrib {
  font-size: var(--text-xs);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-dim);
}

/* Geo hubs */
.hubs {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0;
  border-top: 1px solid var(--border);
  margin-top: var(--s-12);
}
.hub {
  padding: var(--s-8) var(--s-4);
  border-right: 1px solid var(--border);
  text-align: center;
}
.hub:last-child { border-right: none; }
.hub .city {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  margin-bottom: var(--s-2);
}
.hub .tag {
  font-size: var(--text-xs);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}

/* Contact form */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: var(--s-16);
  align-items: start;
}
.contact-info p {
  color: var(--text-dim);
  margin-bottom: var(--s-6);
  line-height: 1.7;
}
.contact-info .info-line {
  border-top: 1px solid var(--border);
  padding: var(--s-6) 0;
}
.contact-info .info-line .l {
  font-size: var(--text-xs);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--s-2);
}
.contact-info .info-line .v {
  font-family: var(--font-display);
  font-size: var(--text-lg);
}
.confidential {
  margin-top: var(--s-8);
  padding: var(--s-6);
  border-left: 2px solid var(--gold);
  background: var(--gold-faint);
}
.confidential .l {
  font-size: var(--text-xs);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--s-2);
}
.confidential p {
  color: var(--text);
  font-size: var(--text-sm);
  line-height: 1.6;
  margin: 0;
}

form { display: grid; gap: var(--s-6); }
.row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: var(--s-4); }
.field { display: grid; gap: var(--s-2); }
.field label {
  font-size: var(--text-xs);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-dim);
  font-weight: 500;
}
.field input, .field select, .field textarea {
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--border-strong);
  color: var(--text);
  padding: var(--s-3) 0;
  font-size: var(--text-base);
  font-family: var(--font-body);
  transition: border-color 0.2s var(--ease);
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-bottom-color: var(--gold);
}
.field textarea { resize: vertical; min-height: 120px; }
.field select { appearance: none; cursor: pointer; background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8' fill='%23c8a96e'><path d='M6 8L0 0h12z'/></svg>"); background-repeat: no-repeat; background-position: right 0 center; background-size: 10px; padding-right: 1.5rem; }
.field select option { background: var(--bg-elev); color: var(--text); }

.form-status {
  font-size: var(--text-sm);
  padding: var(--s-4);
  border-left: 2px solid var(--gold);
  background: var(--gold-faint);
  display: none;
}
.form-status.show { display: block; }
.form-status.error { border-color: #d97757; background: rgba(217,119,87,0.08); }

/* CTA banner */
.cta-banner {
  text-align: center;
  padding-block: var(--section-pad-y);
  border-top: 1px solid var(--border);
}
.cta-banner h2 {
  font-family: var(--font-display);
  font-size: var(--text-3xl);
  font-weight: 400;
  line-height: 1.1;
  margin-bottom: var(--s-6);
  max-width: 22ch;
  margin-inline: auto;
}
.cta-banner h2 em { font-style: italic; color: var(--gold); }
.cta-banner p {
  color: var(--text-dim);
  max-width: 56ch;
  margin: 0 auto var(--s-8);
  line-height: 1.7;
}
.cta-buttons {
  display: flex;
  gap: var(--s-4);
  justify-content: center;
  flex-wrap: wrap;
}

/* Footer */
.site-footer {
  border-top: 1px solid var(--border);
  padding-block: var(--s-16);
  text-align: center;
}
.footer-logo {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  color: var(--text);
  margin-bottom: var(--s-6);
  line-height: 1.2;
}
.footer-logo .amp { color: var(--gold); font-style: italic; display: block; }
.footer-nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: var(--s-8);
  margin-bottom: var(--s-8);
}
.footer-nav a {
  font-size: var(--text-xs);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-dim);
}
.footer-nav a:hover { color: var(--gold); }
.footer-meta {
  font-size: var(--text-xs);
  letter-spacing: 0.12em;
  color: var(--text-faint);
}

/* Molecule SVG hero */
.molecule {
  width: 100%;
  height: auto;
  opacity: 0.85;
}

/* Role timing list */
.roles { display: grid; gap: 0; }
.role {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: var(--s-8);
  padding: var(--s-8) 0;
  border-top: 1px solid var(--border);
  align-items: start;
}
.role:last-child { border-bottom: 1px solid var(--border); }
.role .role-cat {
  font-size: var(--text-xs);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  padding-top: 0.4em;
}
.role .role-title {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  margin-bottom: var(--s-3);
}
.role .role-desc {
  color: var(--text-dim);
  max-width: 60ch;
  line-height: 1.65;
}

/* Service offerings */
.services { display: grid; gap: var(--s-2); }
.service {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: var(--s-8);
  padding: var(--s-8) 0;
  border-top: 1px solid var(--border);
  align-items: baseline;
}
.service:last-child { border-bottom: 1px solid var(--border); }
.service h4 {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  min-width: 240px;
}
.service .desc-block {
  display: grid;
  gap: var(--s-3);
}
.service .sub {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  color: var(--text);
}
.service p {
  color: var(--text-dim);
  line-height: 1.65;
  max-width: 64ch;
}

/* Conviction blocks */
.convictions { display: grid; gap: var(--s-6); }
.conviction {
  padding: var(--s-8);
  border: 1px solid var(--border);
  background: var(--bg-elev);
}
.conviction .quote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: var(--text-xl);
  color: var(--gold);
  margin-bottom: var(--s-4);
  line-height: 1.3;
}
.conviction p {
  color: var(--text-dim);
  line-height: 1.65;
}

/* Founder block */
.founder-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-12);
  padding: var(--s-12);
  border: 1px solid var(--border);
  background: var(--bg-elev);
  align-items: start;
}
.founder-name {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  margin-bottom: var(--s-2);
}
.founder-role {
  font-size: var(--text-xs);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--s-6);
}
.founder-card .linkedin {
  margin-top: var(--s-6);
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
  color: var(--gold);
  font-size: var(--text-xs);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--gold-faint);
  padding-bottom: var(--s-1);
}
.founder-bio p {
  color: var(--text-dim);
  line-height: 1.7;
  margin-bottom: var(--s-4);
}

/* US map */
.us-map-wrap {
  margin-top: var(--s-12);
  border: 1px solid var(--border);
  background: #04060c;
  position: relative;
  overflow: hidden;
}
.us-map-container { width: 100%; min-height: 440px; }

/* Geo stats */
.geo-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: var(--s-8);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.geo-stat {
  padding: var(--s-8);
  border-right: 1px solid var(--border);
}
.geo-stat:last-child { border-right: none; }

/* Mobile */
@media (max-width: 900px) {
  .hero { min-height: 70vh; }
  .hero-inner { grid-template-columns: 1fr; gap: var(--s-12); }
  .hero-visual { max-width: 420px; margin: 0 auto; }
  .stat-strip { grid-template-columns: repeat(2, 1fr); }
  .stat-strip .stat:nth-child(2) { border-right: none; }
  .stat-strip .stat:nth-child(1), .stat-strip .stat:nth-child(2) { border-bottom: 1px solid var(--border); }
  .cards-3, .cards-2 { grid-template-columns: 1fr; }
  .therap-grid { grid-template-columns: 1fr; }
  .therap-grid .item { border-right: none; }
  .hubs { grid-template-columns: repeat(2, 1fr); }
  .hub:nth-child(even) { border-right: none; }
  .hub { border-bottom: 1px solid var(--border); }
  .contact-grid { grid-template-columns: 1fr; gap: var(--s-12); }
  .row-2 { grid-template-columns: 1fr; }
  .role, .process .step, .service { grid-template-columns: 1fr; gap: var(--s-3); }
  .service h4 { min-width: 0; }
  .geo-stats { grid-template-columns: 1fr; }
  .geo-stat { border-right: none; border-bottom: 1px solid var(--border); }
  .geo-stat:last-child { border-bottom: none; }
  .founder-card { grid-template-columns: 1fr; padding: var(--s-8); }
  .nav { display: none; position: absolute; top: 100%; left: 0; right: 0; background: var(--bg-elev); flex-direction: column; gap: 0; padding: var(--s-4) 0; border-bottom: 1px solid var(--border); }
  .nav.open { display: flex; }
  .nav a { padding: var(--s-4) var(--section-pad-x); width: 100%; }
  .menu-btn { display: inline-block; }
  .watermark { font-size: 6rem; opacity: 0.04; }
}

/* Animations */
@media (prefers-reduced-motion: no-preference) {
  .js-ready .reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
  }
  .js-ready .reveal.in {
    opacity: 1;
    transform: translateY(0);
  }
}
