/* ============ SACHDEV SITE — SHARED STYLES ============ */

:root {
  --cream: #f6f1e8;
  --cream-deep: #ece4d2;
  --paper: #fbf8f1;
  --ink: #1f2a24;
  --ink-soft: #3a4640;
  --moss: #4a5c4d;
  --moss-deep: #2f3d34;
  --sage: #8a9a85;
  --rust: #a44a26;
  --gold: #b88a3e;
  --line: #d8cdb6;
  --line-soft: rgba(31, 42, 36, 0.12);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: "Inter Tight", system-ui, sans-serif;
  font-weight: 400;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
.serif { font-family: "Fraunces", "Times New Roman", serif; font-optical-sizing: auto; }
img { max-width: 100%; display: block; }
a { color: inherit; }

/* ============ TOP STRIP ============ */
.topstrip {
  background: var(--moss-deep);
  color: var(--cream);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.55rem 0;
}
.topstrip-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.topstrip a {
  color: var(--cream);
  text-decoration: none;
  border-bottom: 1px solid rgba(246, 241, 232, 0.3);
  padding-bottom: 1px;
  transition: border-color 0.2s;
}
.topstrip a:hover { border-bottom-color: var(--cream); }
.topstrip-left span { opacity: 0.9; }

/* ============ NAV ============ */
nav.site-nav {
  background: var(--cream);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(6px);
  background-color: rgba(246, 241, 232, 0.96);
}
.nav-inner {
  position: relative;
  max-width: 1280px;
  margin: 0 auto;
  padding: 1.4rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}
.brand {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
  text-decoration: none;
}
.brand-name {
  font-family: "Fraunces", serif;
  font-weight: 500;
  font-size: 1.35rem;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.brand-spec {
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--moss);
  margin-top: 0.2rem;
}
.nav-links {
  display: flex;
  gap: 2.2rem;
  align-items: center;
}
.nav-links a {
  color: var(--ink-soft);
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 500;
  position: relative;
  transition: color 0.2s;
}
.nav-links a:not(.cta)::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--rust);
  transition: width 0.3s ease;
}
.nav-links a:not(.cta):hover::after { width: 100%; }
.nav-links a:not(.cta):hover,
.nav-links a:not(.cta).active { color: var(--ink); }
.nav-links a:not(.cta).active::after { width: 100%; }
.cta {
  background: var(--moss-deep);
  color: var(--cream) !important;
  padding: 0.7rem 1.3rem;
  border-radius: 999px;
  transition: background 0.2s;
}
.cta:hover { background: var(--ink); }

/* mobile nav toggle */
.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 0.5rem 0.7rem;
  cursor: pointer;
  color: var(--ink);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ============ PAGE HEADER (for inner pages) ============ */
.page-header {
  padding: 5rem 2rem 4rem;
  background: var(--cream);
  border-bottom: 1px solid var(--line);
}
.page-header-inner {
  max-width: 1280px;
  margin: 0 auto;
}
.page-header .crumbs {
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--moss);
  margin-bottom: 1.6rem;
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-weight: 500;
}
.page-header .crumbs::before {
  content: '';
  width: 32px;
  height: 1px;
  background: var(--moss);
}
.page-header .crumbs a {
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s;
}
.page-header .crumbs a:hover { border-bottom-color: var(--moss); }
.page-header h1 {
  font-family: "Fraunces", serif;
  font-weight: 400;
  font-size: clamp(2.4rem, 5vw, 4rem);
  line-height: 1.04;
  letter-spacing: -0.02em;
  color: var(--ink);
  max-width: 50rem;
}
.page-header h1 em {
  font-style: italic;
  color: var(--moss-deep);
}
.page-header .lede {
  margin-top: 1.6rem;
  max-width: 38rem;
  font-size: 1.1rem;
  color: var(--ink-soft);
  line-height: 1.65;
}

/* ============ HERO (home) ============ */
.hero {
  position: relative;
  padding: 5rem 2rem 6rem;
  overflow: hidden;
  background: var(--cream);
}
.hero-grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 5rem;
  align-items: center;
  position: relative;
  z-index: 2;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--moss);
  margin-bottom: 1.8rem;
  font-weight: 500;
}
.hero-eyebrow::before {
  content: '';
  width: 32px;
  height: 1px;
  background: var(--moss);
}
h1.hero-h1 {
  font-family: "Fraunces", serif;
  font-weight: 400;
  font-size: clamp(2.8rem, 5.5vw, 4.6rem);
  line-height: 1.02;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 1.8rem;
}
h1.hero-h1 em {
  font-style: italic;
  color: var(--moss-deep);
}
.hero-lede {
  font-size: 1.15rem;
  color: var(--ink-soft);
  max-width: 30rem;
  margin-bottom: 2.2rem;
  line-height: 1.6;
}
.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.btn-primary {
  background: var(--moss-deep);
  color: var(--cream);
  padding: 1rem 1.8rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  border: none;
  cursor: pointer;
  transition: background 0.25s, transform 0.25s;
}
.btn-primary:hover { background: var(--ink); transform: translateY(-2px); }
.btn-secondary {
  background: transparent;
  color: var(--ink);
  padding: 1rem 1.8rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  border: 1px solid var(--line);
  cursor: pointer;
  transition: border-color 0.25s, background 0.25s;
}
.btn-secondary:hover { border-color: var(--ink); background: var(--paper); }

/* portrait */
.portrait {
  position: relative;
  aspect-ratio: 4 / 5;
  background: var(--cream-deep);
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 30px 60px -30px rgba(31, 42, 36, 0.25);
}
.portrait img,
.portrait .portrait-svg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.portrait-tag {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  right: 1.5rem;
  background: var(--paper);
  padding: 1rem 1.2rem;
  border-left: 3px solid var(--rust);
  font-size: 0.85rem;
  color: var(--ink-soft);
}
.portrait-tag strong {
  display: block;
  color: var(--ink);
  font-family: "Fraunces", serif;
  font-weight: 500;
  font-size: 0.98rem;
  margin-bottom: 0.2rem;
}

.hero-numeral {
  position: absolute;
  font-family: "Fraunces", serif;
  font-weight: 300;
  font-size: clamp(8rem, 22vw, 22rem);
  color: var(--cream-deep);
  line-height: 0.8;
  bottom: -3rem;
  right: -2rem;
  z-index: 1;
  pointer-events: none;
  user-select: none;
}

/* ============ STATS ============ */
.stats {
  background: var(--moss-deep);
  color: var(--cream);
  padding: 3.5rem 2rem;
}
.stats-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3rem;
}
.stat-num {
  font-family: "Fraunces", serif;
  font-size: clamp(2.6rem, 5vw, 3.4rem);
  font-weight: 400;
  line-height: 1;
  color: var(--cream);
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums lining-nums;
  white-space: nowrap;
}
.stat-num .plus { color: var(--gold); font-style: italic; }
.stat-num--ratio { display: inline-flex; align-items: baseline; }
.stat-num--ratio .slash {
  color: var(--gold);
  font-style: italic;
  font-size: 0.78em;
  margin: 0 0.08em;
  transform: translateY(-0.04em);
  display: inline-block;
}
.stat-label {
  margin-top: 0.6rem;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(246, 241, 232, 0.7);
}

/* ============ FRAME / GENERIC SECTION ============ */
section.frame {
  padding: 7rem 2rem;
  max-width: 1280px;
  margin: 0 auto;
}
.section-eyebrow {
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--rust);
  margin-bottom: 1.2rem;
  font-weight: 600;
}
h2 {
  font-family: "Fraunces", serif;
  font-weight: 400;
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  line-height: 1.05;
  letter-spacing: -0.015em;
  color: var(--ink);
  max-width: 40rem;
}
h2 em {
  font-style: italic;
  color: var(--moss-deep);
}

/* ============ ABOUT ============ */
.about {
  background: var(--paper);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 5rem;
  align-items: start;
}
.about-prose {
  font-size: 1.05rem;
  color: var(--ink-soft);
  line-height: 1.75;
}
.about-prose p { margin-bottom: 1.4rem; }
.about-prose .dropcap::first-letter {
  font-family: "Fraunces", serif;
  font-size: 4rem;
  font-weight: 400;
  float: left;
  line-height: 0.85;
  margin: 0.4rem 0.6rem 0 0;
  color: var(--moss-deep);
}
.credentials {
  background: var(--cream);
  padding: 2.5rem;
  border: 1px solid var(--line);
  position: sticky;
  top: 6rem;
}
.credentials h3 {
  font-family: "Fraunces", serif;
  font-weight: 500;
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--line);
}
.cred-item {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 1rem;
  padding: 0.9rem 0;
  border-bottom: 1px dotted var(--line);
  font-size: 0.9rem;
}
.cred-item:last-child { border-bottom: none; }
.cred-label {
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--moss);
  font-weight: 500;
  padding-top: 0.15rem;
}
.cred-value { color: var(--ink); }

/* ============ SERVICES ============ */
.services-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 3rem;
  margin-bottom: 4rem;
  flex-wrap: wrap;
}
.services-head p {
  max-width: 24rem;
  color: var(--ink-soft);
  font-size: 1rem;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.service {
  background: var(--cream);
  padding: 2.5rem 2rem;
  transition: background 0.3s;
  position: relative;
}
.service:hover { background: var(--paper); }
.service-num {
  font-family: "Fraunces", serif;
  font-style: italic;
  font-size: 0.85rem;
  color: var(--rust);
  margin-bottom: 1.5rem;
  letter-spacing: 0.05em;
}
.service h3 {
  font-family: "Fraunces", serif;
  font-weight: 500;
  font-size: 1.35rem;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: var(--ink);
}
.service p {
  font-size: 0.92rem;
  color: var(--ink-soft);
  line-height: 1.65;
}

/* ============ CONDITIONS ============ */
.conditions {
  background: var(--moss-deep);
  color: var(--cream);
  padding: 7rem 2rem;
}
.conditions-inner {
  max-width: 1280px;
  margin: 0 auto;
}
.conditions h2 { color: var(--cream); }
.conditions h2 em { color: var(--gold); }
.conditions .section-eyebrow { color: var(--gold); }
.conditions-head { margin-bottom: 4rem; }
.conditions-head p {
  color: rgba(246, 241, 232, 0.75);
  max-width: 32rem;
  margin-top: 1.5rem;
  font-size: 1.05rem;
}
.conditions-list {
  columns: 3;
  column-gap: 3rem;
  list-style: none;
}
.conditions-list li {
  padding: 1.1rem 0;
  border-bottom: 1px solid rgba(246, 241, 232, 0.15);
  font-family: "Fraunces", serif;
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--cream);
  break-inside: avoid;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.conditions-list li::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ============ TESTIMONIAL ============ */
.testimonial {
  background: var(--cream);
  padding: 7rem 2rem;
  text-align: center;
}
.testimonial-inner { max-width: 850px; margin: 0 auto; }
.testimonial-quote {
  font-family: "Fraunces", serif;
  font-weight: 300;
  font-size: clamp(1.5rem, 2.6vw, 2.2rem);
  line-height: 1.35;
  color: var(--ink);
  font-style: italic;
  margin-bottom: 2rem;
  position: relative;
}
.testimonial-quote::before {
  content: '\201C';
  font-family: "Fraunces", serif;
  font-size: 5rem;
  color: var(--rust);
  line-height: 0.5;
  display: block;
  margin-bottom: 1rem;
  font-style: normal;
}
.testimonial-attr {
  font-size: 0.82rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--moss);
  font-weight: 500;
}

/* ============ VISIT / CONTACT ============ */
.visit { background: var(--paper); border-top: 1px solid var(--line); }
.visit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}
.visit-info { padding-top: 1rem; }
.visit-block {
  margin-bottom: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid var(--line);
}
.visit-block:last-child { border-bottom: none; }
.visit-label {
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--rust);
  font-weight: 600;
  margin-bottom: 0.8rem;
}
.visit-value {
  font-family: "Fraunces", serif;
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--ink);
  line-height: 1.35;
}
.visit-value a {
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1px solid var(--line);
  transition: border-color 0.2s;
}
.visit-value a:hover { border-bottom-color: var(--rust); }
.visit-sub { margin-top: 0.6rem; font-size: 0.92rem; color: var(--ink-soft); }
.visit-sub--spaced { margin-top: 1rem; }
.telehealth-description {
  margin-top: 1.5rem;
  color: var(--ink-soft);
  font-size: 1.05rem;
  line-height: 1.7;
  max-width: 32rem;
}
.hours-row {
  display: flex;
  justify-content: space-between;
  padding: 0.55rem 0;
  font-size: 0.95rem;
  border-bottom: 1px dotted var(--line);
}
.hours-row:last-child { border-bottom: none; }
.hours-row span:first-child { color: var(--ink-soft); }
.hours-row span:last-child { color: var(--ink); font-family: "Fraunces", serif; }

.map-card {
  background: var(--cream);
  border: 1px solid var(--line);
  padding: 2rem;
}
.map-embed {
  width: 100%;
  aspect-ratio: 4 / 3;
  background: var(--cream-deep);
  border: 1px solid var(--line);
  margin-bottom: 1.5rem;
  overflow: hidden;
  position: relative;
}
.map-embed iframe {
  width: 100%;
  height: 100%;
  display: block;
  filter: grayscale(0.15) contrast(1.02);
}
.map-actions {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}
.map-card h4 {
  font-family: "Fraunces", serif;
  font-weight: 500;
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}
.map-card p { color: var(--ink-soft); font-size: 0.95rem; }
.directions-link {
  display: inline-block;
  margin-top: 1rem;
  color: var(--rust);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  border-bottom: 1px solid var(--rust);
  padding-bottom: 2px;
}

/* ============ INSURANCE ============ */
.insurance {
  background: var(--cream-deep);
  padding: 4rem 2rem;
  text-align: center;
}
.insurance-inner { max-width: 1100px; margin: 0 auto; }
.insurance-eyebrow {
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--moss);
  margin-bottom: 1rem;
  font-weight: 600;
}
.insurance h3 {
  font-family: "Fraunces", serif;
  font-weight: 400;
  font-size: 1.8rem;
  margin-bottom: 2rem;
  color: var(--ink);
}
.insurance-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.6rem 1rem;
  color: var(--ink-soft);
}
.insurance-list span {
  padding: 0.5rem 1.1rem;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.88rem;
}

/* ============ FORM (contact page) ============ */
.contact-form {
  display: grid;
  gap: 1.4rem;
}
.form-row { display: grid; gap: 0.5rem; }
.form-row.two { grid-template-columns: 1fr 1fr; gap: 1.4rem; }
.form-row label {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--moss);
  font-weight: 600;
}
.form-row input,
.form-row select,
.form-row textarea {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 2px;
  padding: 0.95rem 1.1rem;
  font: inherit;
  color: var(--ink);
  font-size: 0.95rem;
  width: 100%;
  transition: border-color 0.2s, background 0.2s;
}
.form-row textarea { min-height: 140px; resize: vertical; font-family: inherit; }
.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  outline: none;
  border-color: var(--moss-deep);
  background: var(--paper);
}
.form-note {
  font-size: 0.82rem;
  color: var(--ink-soft);
  line-height: 1.55;
  padding: 1rem 1.2rem;
  background: var(--cream);
  border-left: 2px solid var(--gold);
}
.form-submit { justify-self: start; }
.form-success {
  display: none;
  background: var(--moss-deep);
  color: var(--cream);
  padding: 1.5rem 1.8rem;
  border-radius: 2px;
  font-family: "Fraunces", serif;
  font-size: 1.1rem;
  margin-top: 1.5rem;
}
.form-success.show { display: block; }

/* ============ AFFILIATIONS (about page) ============ */
.affil-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}
.affil-card {
  background: var(--paper);
  border: 1px solid var(--line);
  padding: 1.8rem;
}
.affil-card h4 {
  font-family: "Fraunces", serif;
  font-weight: 500;
  font-size: 1.1rem;
  margin-bottom: 0.6rem;
  color: var(--ink);
}
.affil-card p { font-size: 0.92rem; color: var(--ink-soft); line-height: 1.6; }

/* ============ TIMELINE (about) ============ */
.timeline {
  list-style: none;
  border-left: 1px solid var(--line);
  padding-left: 2rem;
  margin-top: 1.5rem;
}
.timeline li {
  position: relative;
  padding: 0 0 2rem;
}
.timeline li::before {
  content: '';
  position: absolute;
  left: -2.3rem;
  top: 0.5rem;
  width: 11px;
  height: 11px;
  background: var(--rust);
  border-radius: 50%;
  border: 2px solid var(--cream);
}
.timeline .year {
  font-family: "Fraunces", serif;
  font-style: italic;
  color: var(--moss);
  font-size: 0.95rem;
  margin-bottom: 0.3rem;
}
.timeline h4 {
  font-family: "Fraunces", serif;
  font-weight: 500;
  font-size: 1.2rem;
  color: var(--ink);
  margin-bottom: 0.4rem;
}
.timeline p { color: var(--ink-soft); font-size: 0.95rem; line-height: 1.6; }

/* ============ TELEHEALTH ============ */
.telehealth {
  background: var(--cream);
  padding: 7rem 2rem;
  position: relative;
  overflow: hidden;
}
.telehealth-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 5rem;
  align-items: center;
  position: relative;
  z-index: 2;
}
/* (telehealth image + fallback removed) */
.telehealth-features {
  margin-top: 2rem;
  display: grid;
  gap: 1.5rem;
}
.telehealth-feature {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 1.2rem;
  align-items: start;
}
.telehealth-feature svg {
  width: 32px;
  height: 32px;
  color: var(--rust);
  flex-shrink: 0;
}
.telehealth-feature h4 {
  font-family: "Fraunces", serif;
  font-weight: 500;
  font-size: 1.1rem;
  color: var(--ink);
  margin-bottom: 0.3rem;
}
.telehealth-feature p {
  font-size: 0.93rem;
  color: var(--ink-soft);
  line-height: 1.6;
}
.telehealth-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--moss-deep);
  color: var(--cream);
  padding: 0.5rem 1rem;
  border-radius: 999px;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 1.5rem;
}
.telehealth-badge::before {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

@media (max-width: 960px) {
  .telehealth-inner { grid-template-columns: 1fr; gap: 3rem; }
}

footer {
  background: var(--ink);
  color: var(--cream);
  padding: 5rem 2rem 2rem;
}
.footer-inner { max-width: 1280px; margin: 0 auto; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3.5rem;
  border-bottom: 1px solid rgba(246, 241, 232, 0.15);
}
.footer-brand {
  font-family: "Fraunces", serif;
  font-weight: 400;
  font-size: 1.6rem;
  margin-bottom: 1rem;
  color: var(--cream);
}
.footer-tag {
  color: rgba(246, 241, 232, 0.6);
  font-size: 0.95rem;
  max-width: 22rem;
  line-height: 1.6;
}
.footer-col h5 {
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 1.4rem;
}
.footer-col a, .footer-col p {
  display: block;
  color: rgba(246, 241, 232, 0.75);
  text-decoration: none;
  font-size: 0.92rem;
  padding: 0.35rem 0;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--cream); }
.footer-bottom {
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.78rem;
  color: rgba(246, 241, 232, 0.45);
  letter-spacing: 0.05em;
}
.disclaimer {
  margin-top: 2rem;
  padding: 1.2rem 1.5rem;
  background: rgba(246, 241, 232, 0.06);
  border-left: 2px solid var(--gold);
  color: rgba(246, 241, 232, 0.65);
  font-size: 0.8rem;
  line-height: 1.6;
  max-width: 70rem;
}

/* ============ RESPONSIVE ============ */
@media (max-width: 960px) {
  .hero-grid, .about-grid, .visit-grid { grid-template-columns: 1fr; gap: 3rem; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); gap: 2.5rem; }
  .services-grid { grid-template-columns: 1fr; }
  .conditions-list { columns: 2; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  section.frame { padding: 5rem 1.5rem; }
  .credentials { position: static; }
  .affil-grid { grid-template-columns: 1fr; }
  .form-row.two { grid-template-columns: 1fr; }

  .nav-toggle { display: inline-flex; }
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--cream);
    border-bottom: 1px solid var(--line);
    flex-direction: column;
    gap: 0;
    padding: 0.5rem 0;
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 1rem 2rem; width: 100%; }
  .nav-links a.cta { margin: 1rem 2rem; text-align: center; }
}
@media (max-width: 600px) {
  .topstrip-inner { font-size: 0.7rem; }
  .conditions-list { columns: 1; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .stats-inner { grid-template-columns: 1fr 1fr; }
  .hero { padding: 3rem 1.5rem 4rem; }
  .nav-inner { padding: 1rem 1.5rem; }
  .page-header { padding: 3.5rem 1.5rem 3rem; }
}

.insurance .cta-paragraph {
  max-width: 40rem;
  margin: 0 auto 2rem;
  color: var(--ink-soft);
  line-height: 1.7;
  font-size: 0.98rem;
}

.insurance p.insurance-footnote {
  margin-top: 1.5rem;
  color: var(--ink-soft);
  font-size: 0.88rem;
}

.portrait--bio {
  position: sticky;
  top: 6rem;
}
@media (max-width: 960px) {
  .portrait--bio { position: static; }
}

/* ============ UTILITY & POLISH ============ */

/* Section wrappers that handle their own outer padding */
.section {
  padding: 7rem 2rem;
}
.section-inner {
  max-width: 1280px;
  margin: 0 auto;
}
.section--paper { background: var(--paper); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.section--cream { background: var(--cream); }
.section--deep { background: var(--moss-deep); color: var(--cream); }

/* Two-column generic layouts */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 5rem;
  align-items: start;
}
.two-col--reverse {
  grid-template-columns: 1.3fr 1fr;
}
.two-col--even {
  grid-template-columns: 1fr 1fr;
}

/* Generic prose container */
.prose-block { max-width: 38rem; }
.prose-block p {
  color: var(--ink-soft);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 1rem;
}

/* Section intro pairing — eyebrow + headline + description */
.section-intro { margin-bottom: 4rem; }
.section-intro .description {
  margin-top: 1.5rem;
  max-width: 36rem;
  color: var(--ink-soft);
  font-size: 1.05rem;
  line-height: 1.65;
}
.section--deep .section-intro .description { color: rgba(246, 241, 232, 0.75); }

/* CTA cluster */
.cta-row {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 2.5rem;
}
.cta-row--center {
  justify-content: center;
  margin-top: 3rem;
}

/* Refined link style */
.read-more {
  display: inline-block;
  color: var(--rust);
  text-decoration: none;
  border-bottom: 1px solid var(--rust);
  padding-bottom: 2px;
  font-weight: 500;
  font-size: 0.92rem;
  letter-spacing: 0.02em;
  margin-top: 1.5rem;
  transition: color 0.2s, border-color 0.2s;
}
.read-more:hover { color: var(--ink); border-bottom-color: var(--ink); }

/* Card sets */
.three-col-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 2rem;
}
.three-col-cards .affil-card { background: rgba(246, 241, 232, 0.06); border-color: rgba(246, 241, 232, 0.15); }
.three-col-cards .affil-card h4 { color: var(--cream); }
.three-col-cards .affil-card p { color: rgba(246, 241, 232, 0.7); }

/* Expectations / prep cards */
.prep-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 1rem;
}
.prep-card {
  background: var(--paper);
  border: 1px solid var(--line);
  padding: 2.25rem;
  transition: border-color 0.25s, transform 0.25s;
}
.prep-card:hover { border-color: var(--moss); transform: translateY(-3px); }
.prep-card--highlight { border-left: 3px solid var(--rust); }
.prep-card h3 {
  font-family: "Fraunces", serif;
  font-weight: 500;
  font-size: 1.2rem;
  margin-bottom: 0.8rem;
  color: var(--ink);
}
.prep-card p {
  color: var(--ink-soft);
  line-height: 1.7;
  font-size: 0.93rem;
}

.service--paper { background: var(--paper); }
.service--paper:hover { background: var(--cream); }

/* Refined services grid for telehealth wide-card */
.service--wide {
  grid-column: 1 / -1;
  border-top: 3px solid var(--rust);
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 2.5rem;
  align-items: start;
}
.service--wide .service-head {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.service--wide .service-num {
  margin-bottom: 0;
}
.service--wide h3 { margin-bottom: 0; }
@media (max-width: 760px) {
  .service--wide { grid-template-columns: 1fr; gap: 1rem; }
}

/* Contact form layout */
.form-section-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 5rem;
  align-items: start;
}
.form-section-grid h2 { margin-bottom: 1.5rem; }
.form-section-grid p {
  color: var(--ink-soft);
  line-height: 1.7;
  font-size: 1rem;
}

/* Career timeline layout */
.timeline-layout {
  display: grid;
  grid-template-columns: 1fr 1.8fr;
  gap: 5rem;
  align-items: start;
}
.timeline-layout .intro p {
  color: var(--ink-soft);
  font-size: 1rem;
  line-height: 1.7;
}

/* Conditions page tweaks */
.section--cream-deep { background: var(--cream-deep); }
.conditions-list--inverted li {
  color: var(--ink);
  border-bottom-color: var(--line);
  font-weight: 400;
}
.conditions-list--inverted li::before { background: var(--rust); }

/* Focus states (accessibility) */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--rust);
  outline-offset: 3px;
  border-radius: 2px;
}

/* Smooth typography refinements */
h1, h2, h3, h4 {
  text-wrap: balance;
}

/* Selection */
::selection {
  background: var(--moss-deep);
  color: var(--cream);
}

/* Responsive cleanup */
@media (max-width: 960px) {
  .section { padding: 5rem 1.5rem; }
  .two-col, .two-col--reverse, .two-col--even,
  .form-section-grid, .timeline-layout {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .three-col-cards { grid-template-columns: 1fr; }
  .prep-grid { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .section { padding: 4rem 1.25rem; }
}

@keyframes rise {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.rise { animation: rise 0.9s ease both; }
.rise-1 { animation-delay: 0.05s; }
.rise-2 { animation-delay: 0.18s; }
.rise-3 { animation-delay: 0.32s; }
.rise-4 { animation-delay: 0.46s; }

/* Scroll reveal */
@media (prefers-reduced-motion: no-preference) {
  .reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.8s ease, transform 0.8s ease;
  }
  .reveal.in-view {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ============ MOBILE POLISH ============ */
@media (max-width: 760px) {
  /* Consistent breathing room for every major section on phones */
  .section,
  .telehealth,
  .visit.section,
  .insurance,
  section.frame {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
  .stats { padding: 2.5rem 1.5rem; }
  .stats-inner { gap: 2rem 1.5rem; }

  /* Typography rebalanced for narrow screens */
  .hero-h1 { font-size: clamp(2rem, 8vw, 2.6rem); line-height: 1.1; }
  h1, h2 { word-wrap: break-word; }

  /* Tighter telehealth feature cards */
  .telehealth-features { gap: 1.1rem; }
  .telehealth-feature { grid-template-columns: 32px 1fr; gap: 0.9rem; }

  /* Footer breathing room */
  footer .footer-inner { padding-left: 1.5rem; padding-right: 1.5rem; }
}

/* Don't let the topstrip text crowd on the smallest phones */
@media (max-width: 420px) {
  .topstrip-inner { justify-content: center; text-align: center; }
}

