/* ==========================================================================
   Hanna Dentistry — Showcase redesign
   Brand: sage · copper · plum · cream
   ========================================================================== */

:root {
  --sage: #7A8B6E;
  --sage-deep: #5F6F54;
  --sage-soft: #9AAA8E;
  --sage-mist: #E8EDE3;
  --copper: #C4783A;
  --copper-bright: #D4894A;
  --copper-deep: #A8622E;
  --plum: #3D2640;
  --plum-mid: #4A2F4F;
  --plum-soft: #6B4A6F;
  --cream: #F7F3EB;
  --cream-deep: #EFE8DC;
  --ivory: #FBF8F3;
  --charcoal: #2C2A28;
  --ink: #3A3835;
  --muted: #6B6762;
  --line: rgba(44, 42, 40, 0.1);
  --white: #FFFFFF;
  --shadow-sm: 0 2px 8px rgba(44, 42, 40, 0.06);
  --shadow-md: 0 12px 40px rgba(44, 42, 40, 0.1);
  --shadow-lg: 0 24px 60px rgba(61, 38, 64, 0.18);
  --radius: 18px;
  --radius-sm: 12px;
  --radius-pill: 999px;
  --font-display: "Fraunces", Georgia, "Times New Roman", serif;
  --font-sans: "DM Sans", system-ui, -apple-system, sans-serif;
  --header-h: 78px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --max: 1180px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-sans);
  color: var(--ink);
  background: var(--ivory);
  line-height: 1.65;
  overflow-x: hidden;
  padding-bottom: 0;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button, input, textarea, select { font: inherit; }
address { font-style: normal; }

.container {
  width: min(100% - 2.5rem, var(--max));
  margin-inline: auto;
}

.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); border: 0;
}

/* ---------- Typography ---------- */
.display {
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.12;
  color: var(--charcoal);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--copper);
}

.eyebrow::before {
  content: "";
  width: 1.4rem;
  height: 2px;
  background: var(--copper);
  border-radius: 2px;
}

.lead {
  font-size: 1.125rem;
  color: var(--muted);
  max-width: 38rem;
}

.section-head {
  margin-bottom: 2.75rem;
  max-width: 40rem;
}

.section-head.center {
  text-align: center;
  margin-inline: auto;
}

.section-head.center .eyebrow { justify-content: center; }
.section-head.center .eyebrow::before { display: none; }
.section-head h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.4vw, 3rem);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin: 0.65rem 0 0.85rem;
  color: var(--charcoal);
}
.section-head p { color: var(--muted); font-size: 1.05rem; }

/* ---------- Buttons ---------- */
.btn {
  --btn-bg: var(--plum);
  --btn-fg: var(--white);
  --btn-bd: transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.95rem 1.55rem;
  border-radius: var(--radius-pill);
  border: 1.5px solid var(--btn-bd);
  background: var(--btn-bg);
  color: var(--btn-fg);
  font-weight: 650;
  font-size: 0.92rem;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), background 0.25s, color 0.25s, border-color 0.25s;
  box-shadow: 0 10px 28px rgba(61, 38, 64, 0.22);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}
.btn svg { width: 1.05rem; height: 1.05rem; flex-shrink: 0; }
.btn:hover {
  transform: translateY(-2px) scale(1.015);
  box-shadow: 0 16px 36px rgba(61, 38, 64, 0.28);
}
.btn:active { transform: translateY(0) scale(0.99); }
.btn-copper {
  --btn-bg: linear-gradient(135deg, var(--copper-bright), var(--copper));
  background: linear-gradient(135deg, var(--copper-bright), var(--copper));
  box-shadow: 0 10px 28px rgba(196, 120, 58, 0.32);
}
.btn-copper:hover { box-shadow: 0 16px 36px rgba(196, 120, 58, 0.4); }
.btn-outline {
  --btn-bg: transparent;
  --btn-fg: var(--charcoal);
  --btn-bd: rgba(44, 42, 40, 0.18);
  box-shadow: none;
  background: transparent;
}
.btn-outline:hover {
  --btn-bd: var(--sage);
  --btn-fg: var(--sage-deep);
  background: var(--sage-mist);
  box-shadow: none;
}
.btn-ghost-light {
  --btn-bg: rgba(255,255,255,0.12);
  --btn-fg: var(--white);
  --btn-bd: rgba(255,255,255,0.28);
  box-shadow: none;
  backdrop-filter: blur(8px);
}
.btn-ghost-light:hover {
  background: rgba(255,255,255,0.2);
  box-shadow: none;
}
.btn-sm { padding: 0.7rem 1.2rem; font-size: 0.82rem; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: color-mix(in srgb, var(--cream) 82%, transparent);
  backdrop-filter: blur(16px) saturate(1.2);
  -webkit-backdrop-filter: blur(16px) saturate(1.2);
  border-bottom: 1px solid var(--line);
  transition: box-shadow 0.3s, background 0.3s;
}
.site-header.is-scrolled {
  box-shadow: 0 8px 30px rgba(44, 42, 40, 0.08);
  background: color-mix(in srgb, var(--cream) 92%, transparent);
}

.header-top {
  background: linear-gradient(90deg, var(--sage-deep), var(--sage));
  color: var(--white);
  font-size: 0.8rem;
}
.header-top .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.45rem 0;
  flex-wrap: wrap;
}
.header-top a { color: var(--white); opacity: 0.95; }
.header-top a:hover { opacity: 1; text-decoration: underline; }
.header-top .top-call span { color: #F0D4B0; font-weight: 700; margin-right: 0.35rem; }
.header-top .top-meta { display: flex; gap: 1.25rem; flex-wrap: wrap; align-items: center; }

.nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: var(--header-h);
  padding: 0.55rem 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}
.brand-mark {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
}
.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}
.brand-text strong {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--sage-deep);
}
.brand-text span {
  font-size: 0.68rem;
  font-weight: 650;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--copper);
  margin-top: 0.2rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.15rem;
}
.nav-links a {
  padding: 0.55rem 0.8rem;
  font-size: 0.82rem;
  font-weight: 650;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink);
  border-radius: 10px;
  transition: color 0.2s, background 0.2s;
}
.nav-links a:hover,
.nav-links a[aria-current="page"] {
  color: var(--sage-deep);
  background: var(--sage-mist);
}

.nav-cta { margin-left: 0.5rem; }

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border-radius: 12px;
  border: 1.5px solid var(--line);
  background: var(--white);
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--charcoal);
  position: relative;
}
.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 18px;
  height: 2px;
  background: var(--charcoal);
}
.nav-toggle span::before { top: -6px; }
.nav-toggle span::after { top: 6px; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: clamp(560px, 88vh, 820px);
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--white);
}
.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.08);
  animation: kenburns 22s ease-in-out infinite alternate;
}
@keyframes kenburns {
  from { transform: scale(1.08) translate(0, 0); }
  to { transform: scale(1.16) translate(-1.5%, -1%); }
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(61, 38, 64, 0.82) 0%, rgba(61, 38, 64, 0.55) 42%, rgba(95, 111, 84, 0.35) 72%, rgba(196, 120, 58, 0.22) 100%),
    linear-gradient(to top, rgba(44, 42, 40, 0.55) 0%, transparent 45%);
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 5.5rem 0 4.5rem;
  max-width: 720px;
}
.hero .eyebrow { color: #F0D4B0; }
.hero .eyebrow::before { background: #F0D4B0; }
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 6vw, 4.35rem);
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin: 0.8rem 0 1.1rem;
  text-wrap: balance;
}
.hero h1 em {
  font-style: italic;
  font-weight: 450;
  color: #F5D9B8;
}
.hero-lead {
  font-size: clamp(1.05rem, 1.6vw, 1.22rem);
  color: rgba(255,255,255,0.88);
  max-width: 34rem;
  margin-bottom: 1.85rem;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-bottom: 2.4rem;
}
.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, auto);
  gap: 1.5rem 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.18);
  width: fit-content;
}
.hero-stats strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 550;
  color: #F5D9B8;
}
.hero-stats span {
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  opacity: 0.78;
}

.page-hero {
  position: relative;
  padding: 4.5rem 0 3.5rem;
  background:
    radial-gradient(ellipse at 15% 20%, rgba(154, 170, 142, 0.28), transparent 50%),
    radial-gradient(ellipse at 90% 10%, rgba(196, 120, 58, 0.12), transparent 40%),
    linear-gradient(180deg, var(--cream) 0%, var(--ivory) 100%);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}
.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1.1;
  margin: 0.7rem 0 0.9rem;
  max-width: 16ch;
}
.page-hero .lead { max-width: 36rem; }

/* ---------- Reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.85s var(--ease), transform 0.85s var(--ease);
}
.reveal.is-in {
  opacity: 1;
  transform: none;
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ---------- Trust strip ---------- */
.trust-strip {
  background: var(--cream);
  border-bottom: 1px solid var(--line);
  padding: 1.35rem 0;
}
.trust-strip .container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem 2.5rem;
  align-items: center;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--sage-deep);
}
.trust-item svg {
  width: 22px;
  height: 22px;
  color: var(--copper);
  flex-shrink: 0;
}

/* ---------- Intro split ---------- */
.intro-split {
  padding: 5.5rem 0;
}
.intro-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 3.5rem;
  align-items: center;
}
.intro-visual {
  position: relative;
}
.intro-visual .frame {
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/5;
}
.intro-visual .frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.intro-badge {
  position: absolute;
  left: -1rem;
  bottom: 1.5rem;
  background: var(--plum);
  color: var(--white);
  padding: 1.15rem 1.35rem;
  border-radius: 18px;
  box-shadow: var(--shadow-md);
  max-width: 220px;
}
.intro-badge strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 500;
  margin-bottom: 0.25rem;
}
.intro-badge span { font-size: 0.85rem; opacity: 0.85; line-height: 1.4; }
.intro-copy h2 {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3vw, 2.7rem);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin: 0.65rem 0 1rem;
}
.intro-copy p { color: var(--muted); margin-bottom: 1rem; }
.intro-copy .checklist {
  margin: 1.4rem 0 1.8rem;
  display: grid;
  gap: 0.65rem;
}
.intro-copy .checklist li {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  font-weight: 550;
  color: var(--ink);
}
.intro-copy .checklist li svg {
  width: 20px;
  height: 20px;
  color: var(--sage);
  flex-shrink: 0;
  margin-top: 0.15rem;
}

/* ---------- Bento services ---------- */
.services-band {
  padding: 5.5rem 0;
  background:
    radial-gradient(ellipse at 80% 0%, rgba(107, 74, 111, 0.35), transparent 45%),
    linear-gradient(165deg, var(--plum) 0%, #2A1A2D 100%);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.services-band::before {
  content: "";
  position: absolute;
  inset: auto -10% -30% 40%;
  height: 60%;
  background: radial-gradient(circle, rgba(196, 120, 58, 0.18), transparent 60%);
  pointer-events: none;
}
.services-band .section-head h2 { color: var(--white); }
.services-band .section-head p { color: rgba(255,255,255,0.72); }
.services-band .eyebrow { color: #F0D4B0; }
.services-band .eyebrow::before { background: #F0D4B0; }

.bento {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1rem;
}
.bento-card {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  min-height: 200px;
  transition: transform 0.45s var(--ease), box-shadow 0.45s var(--ease), border-color 0.3s;
  display: flex;
  flex-direction: column;
}
.bento-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.28);
  border-color: rgba(240, 212, 176, 0.35);
}
.bento-card.photo {
  padding: 0;
  justify-content: flex-end;
}
.bento-card.photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}
.bento-card.photo:hover img { transform: scale(1.06); }
.bento-card.photo .shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(42, 26, 45, 0.92) 0%, rgba(42, 26, 45, 0.2) 55%, transparent 100%);
  z-index: 1;
}
.bento-card.photo .body {
  position: relative;
  z-index: 2;
  padding: 1.4rem 1.5rem 1.5rem;
}
.bento-card.solid {
  background: var(--cream);
  color: var(--charcoal);
  padding: 1.5rem;
  border: none;
}
.bento-card.solid:hover { border: none; }
.bento-card.accent {
  background: linear-gradient(145deg, var(--sage), var(--sage-deep));
  border: none;
  padding: 1.5rem;
}
.bento-card.copper-tile {
  background: linear-gradient(145deg, var(--copper-bright), var(--copper-deep));
  border: none;
  padding: 1.5rem;
}
.bento-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: var(--sage-mist);
  color: var(--sage-deep);
  margin-bottom: 1rem;
}
.bento-icon svg { width: 24px; height: 24px; }
.bento-card.accent .bento-icon,
.bento-card.copper-tile .bento-icon {
  background: rgba(255,255,255,0.18);
  color: var(--white);
}
.bento-card h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 550;
  letter-spacing: -0.015em;
  margin-bottom: 0.45rem;
  line-height: 1.2;
}
.bento-card.solid h3 { color: var(--copper); }
.bento-card p {
  font-size: 0.92rem;
  opacity: 0.85;
  line-height: 1.5;
}
.bento-card.solid p { color: var(--muted); opacity: 1; }
.bento-card .link-more {
  margin-top: auto;
  padding-top: 1rem;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #F0D4B0;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}
.bento-card.solid .link-more { color: var(--sage-deep); }

.b1 { grid-column: span 5; grid-row: span 2; min-height: 420px; }
.b2 { grid-column: span 4; }
.b3 { grid-column: span 3; }
.b4 { grid-column: span 3; }
.b5 { grid-column: span 4; }
.b6 { grid-column: span 5; min-height: 220px; }
.b7 { grid-column: span 7; }
.b8 { grid-column: span 5; }

.services-band .band-cta {
  margin-top: 2.25rem;
  text-align: center;
}

/* ---------- Tech section ---------- */
.tech-section {
  padding: 5.5rem 0;
  background: var(--ivory);
}
.tech-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.15rem;
}
.tech-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 1.6rem 1.4rem;
  box-shadow: var(--shadow-sm);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
  height: 100%;
}
.tech-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}
.tech-card .icon-wrap {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  background: linear-gradient(145deg, var(--sage-mist), #dfe6d8);
  color: var(--sage-deep);
  display: grid;
  place-items: center;
  margin-bottom: 1.1rem;
}
.tech-card .icon-wrap svg { width: 26px; height: 26px; }
.tech-card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 550;
  margin-bottom: 0.45rem;
  letter-spacing: -0.01em;
}
.tech-card p { font-size: 0.92rem; color: var(--muted); }

/* ---------- Facial esthetics teaser ---------- */
.facial-teaser {
  padding: 5rem 0;
  background: var(--cream);
}
.facial-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  min-height: 480px;
}
.facial-copy {
  background: var(--plum);
  color: var(--white);
  padding: 3rem 2.75rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.facial-copy .eyebrow { color: #F0D4B0; }
.facial-copy .eyebrow::before { background: #F0D4B0; }
.facial-copy h2 {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3vw, 2.6rem);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin: 0.7rem 0 1rem;
}
.facial-copy p { color: rgba(255,255,255,0.78); margin-bottom: 1rem; }
.facial-copy ul {
  margin: 0.5rem 0 1.75rem;
  display: grid;
  gap: 0.55rem;
}
.facial-copy ul li {
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
  font-weight: 550;
}
.facial-copy ul li::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--copper-bright);
  margin-top: 0.45rem;
  flex-shrink: 0;
}
.facial-visual {
  position: relative;
  min-height: 320px;
}
.facial-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}

/* ---------- Pathway ---------- */
.pathway {
  padding: 5rem 0;
  background:
    linear-gradient(180deg, var(--sage-mist) 0%, var(--ivory) 100%);
}
.pathway-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  counter-reset: step;
}
.pathway-step {
  background: var(--white);
  border-radius: 20px;
  padding: 1.6rem 1.4rem 1.5rem;
  border: 1px solid var(--line);
  position: relative;
  box-shadow: var(--shadow-sm);
}
.pathway-step::before {
  counter-increment: step;
  content: "0" counter(step);
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 500;
  color: var(--copper);
  display: block;
  margin-bottom: 0.75rem;
  letter-spacing: -0.02em;
  opacity: 0.85;
}
.pathway-step h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 550;
  margin-bottom: 0.45rem;
}
.pathway-step p { font-size: 0.92rem; color: var(--muted); }

/* ---------- Doctor spotlight ---------- */
.doctor-band {
  padding: 5.5rem 0;
}
.doctor-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 3rem;
  align-items: center;
}
.doctor-monogram {
  aspect-ratio: 1;
  border-radius: 28px;
  background:
    radial-gradient(circle at 30% 25%, rgba(196, 120, 58, 0.25), transparent 45%),
    linear-gradient(145deg, var(--sage-soft), var(--sage-deep));
  display: grid;
  place-items: center;
  position: relative;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.doctor-monogram::after {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(255,255,255,0.28);
  border-radius: 20px;
}
.doctor-monogram .rh {
  font-family: var(--font-display);
  font-size: clamp(5rem, 12vw, 8rem);
  font-weight: 500;
  color: rgba(255,255,255,0.92);
  letter-spacing: -0.04em;
  line-height: 1;
  position: relative;
  z-index: 1;
}
.doctor-monogram .caption {
  position: absolute;
  bottom: 2rem;
  left: 0;
  right: 0;
  text-align: center;
  color: rgba(255,255,255,0.85);
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  z-index: 1;
  font-weight: 650;
}
.doctor-copy .eyebrow { margin-bottom: 0.4rem; }
.doctor-copy h2 {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3vw, 2.7rem);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin: 0.5rem 0 0.35rem;
}
.doctor-copy .role {
  color: var(--copper);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.82rem;
  margin-bottom: 1.1rem;
}
.doctor-copy p { color: var(--muted); margin-bottom: 0.9rem; }

/* ---------- Location ---------- */
.location-band {
  padding: 5rem 0;
  background: var(--cream);
}
.location-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1.25rem;
}
.map-frame {
  border-radius: 24px;
  overflow: hidden;
  min-height: 420px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
  background: var(--sage-mist);
}
.map-frame iframe {
  width: 100%;
  height: 100%;
  min-height: 420px;
  border: 0;
  display: block;
  filter: grayscale(0.15) contrast(1.02);
}
.location-card {
  background: var(--plum);
  color: var(--white);
  border-radius: 24px;
  padding: 2.25rem 2rem;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-lg);
}
.location-card h2 {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 500;
  letter-spacing: -0.02em;
  margin: 0.5rem 0 1.25rem;
}
.location-card .eyebrow { color: #F0D4B0; }
.location-card .eyebrow::before { background: #F0D4B0; }
.hours-table {
  display: grid;
  gap: 0.55rem;
  margin: 0.5rem 0 1.5rem;
  font-size: 0.95rem;
}
.hours-table div {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.hours-table span:last-child { opacity: 0.85; text-align: right; }
.hours-table .closed span:last-child { color: #F0D4B0; }
.location-address {
  margin-bottom: 1.5rem;
  line-height: 1.55;
  opacity: 0.9;
}
.location-card .btn { margin-top: auto; width: 100%; }

/* ---------- CTA banner ---------- */
.cta-banner {
  padding: 4.5rem 0;
  background:
    linear-gradient(120deg, rgba(61, 38, 64, 0.92), rgba(95, 111, 84, 0.88)),
    url("https://images.unsplash.com/photo-1606811841689-23dfddce3e95?auto=format&fit=crop&w=1600&q=80") center/cover;
  color: var(--white);
  text-align: center;
}
.cta-banner h2 {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  font-weight: 500;
  letter-spacing: -0.02em;
  margin: 0.6rem auto 0.9rem;
  max-width: 18ch;
}
.cta-banner p {
  color: rgba(255,255,255,0.82);
  max-width: 34rem;
  margin: 0 auto 1.75rem;
}
.cta-banner .actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  justify-content: center;
}

/* ---------- Footer ---------- */
.site-footer {
  background: #241820;
  color: rgba(255,255,255,0.78);
  padding: 4rem 0 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.1fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}
.footer-brand .brand { margin-bottom: 1rem; }
.footer-brand .brand-text strong { color: var(--white); }
.footer-brand p { font-size: 0.92rem; max-width: 28ch; line-height: 1.6; }
.footer-col h4 {
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #F0D4B0;
  margin-bottom: 1rem;
  font-weight: 700;
}
.footer-col ul { display: grid; gap: 0.55rem; }
.footer-col a {
  font-size: 0.92rem;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--white); }
.footer-contact li {
  font-size: 0.92rem;
  margin-bottom: 0.65rem;
  line-height: 1.5;
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 1.35rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.75rem;
  font-size: 0.8rem;
  opacity: 0.7;
}

/* ---------- Mobile call bar ---------- */
.mobile-callbar {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 120;
  padding: 0.7rem 0.9rem calc(0.7rem + env(safe-area-inset-bottom));
  background: color-mix(in srgb, var(--plum) 94%, transparent);
  backdrop-filter: blur(12px);
  border-top: 1px solid rgba(255,255,255,0.12);
  gap: 0.65rem;
}
.mobile-callbar a {
  flex: 1;
  text-align: center;
  padding: 0.85rem 0.75rem;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 0.88rem;
}
.mobile-callbar .call {
  background: linear-gradient(135deg, var(--copper-bright), var(--copper));
  color: var(--white);
}
.mobile-callbar .secondary {
  background: rgba(255,255,255,0.1);
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.2);
}

/* ---------- Inner pages ---------- */
.content-section { padding: 4.5rem 0; }
.content-section.alt { background: var(--cream); }

.prose { max-width: 42rem; }
.prose h2 {
  font-family: var(--font-display);
  font-size: 1.85rem;
  font-weight: 550;
  letter-spacing: -0.015em;
  margin: 2rem 0 0.75rem;
}
.prose h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 550;
  margin: 1.5rem 0 0.55rem;
}
.prose p { color: var(--muted); margin-bottom: 1rem; }
.prose ul {
  margin: 0.75rem 0 1.25rem 0;
  display: grid;
  gap: 0.45rem;
}
.prose ul li {
  padding-left: 1.2rem;
  position: relative;
  color: var(--ink);
}
.prose ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--copper);
}

.service-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.1rem;
}
.service-tile {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 1.45rem 1.3rem;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
  height: 100%;
}
.service-tile:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.service-tile .icon-wrap {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: var(--sage-mist);
  color: var(--sage-deep);
  display: grid;
  place-items: center;
  margin-bottom: 0.9rem;
}
.service-tile .icon-wrap svg { width: 22px; height: 22px; }
.service-tile h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 550;
  color: var(--copper);
  margin-bottom: 0.4rem;
}
.service-tile p { font-size: 0.9rem; color: var(--muted); }

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: start;
}

.card-panel {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
}
.card-panel h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  margin-bottom: 0.75rem;
}

/* Contact form */
.form-grid {
  display: grid;
  gap: 1rem;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.field label {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--sage-deep);
  margin-bottom: 0.4rem;
}
.field input,
.field textarea,
.field select {
  width: 100%;
  padding: 0.85rem 1rem;
  border-radius: 12px;
  border: 1.5px solid var(--line);
  background: var(--ivory);
  color: var(--charcoal);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.field input:focus,
.field textarea:focus,
.field select:focus {
  outline: none;
  border-color: var(--sage);
  box-shadow: 0 0 0 4px rgba(122, 139, 110, 0.18);
}
.field textarea { min-height: 140px; resize: vertical; }

.info-stack { display: grid; gap: 1rem; }
.info-block {
  background: var(--cream);
  border-radius: 16px;
  padding: 1.15rem 1.25rem;
}
.info-block strong {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 0.35rem;
}
.info-block a { color: var(--plum); font-weight: 650; }
.info-block a:hover { text-decoration: underline; }

/* Feature quote */
.quote-band {
  padding: 3.5rem 0;
  background: var(--plum);
  color: var(--white);
  text-align: center;
}
.quote-band blockquote {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.8vw, 2rem);
  font-weight: 450;
  font-style: italic;
  letter-spacing: -0.015em;
  line-height: 1.35;
  max-width: 38rem;
  margin: 0 auto 1rem;
}
.quote-band cite {
  font-style: normal;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #F0D4B0;
  font-weight: 650;
}

/* Timeline / achievements */
.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin: 1.25rem 0;
}
.pill {
  background: var(--sage-mist);
  color: var(--sage-deep);
  padding: 0.45rem 0.85rem;
  border-radius: var(--radius-pill);
  font-size: 0.8rem;
  font-weight: 650;
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .b1 { grid-column: span 6; grid-row: span 1; min-height: 280px; }
  .b2, .b3, .b4, .b5, .b6, .b7, .b8 { grid-column: span 6; }
  .tech-grid { grid-template-columns: repeat(2, 1fr); }
  .pathway-steps { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .service-list { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 860px) {
  .nav-toggle { display: inline-flex; }
  .nav-links {
    position: fixed;
    inset: calc(var(--header-h) + 34px) 0.85rem auto;
    background: var(--cream);
    border: 1px solid var(--line);
    border-radius: 18px;
    flex-direction: column;
    align-items: stretch;
    padding: 0.75rem;
    box-shadow: var(--shadow-lg);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 0.25s, transform 0.25s;
    z-index: 110;
  }
  .nav-links.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }
  .nav-links a { padding: 0.85rem 1rem; }
  .nav-cta { display: none; }
  .header-top .top-meta { display: none; }

  .intro-grid,
  .doctor-grid,
  .facial-grid,
  .location-grid,
  .two-col { grid-template-columns: 1fr; }
  .facial-visual { min-height: 280px; position: relative; }
  .facial-visual img { position: relative; height: 280px; }
  .intro-badge { left: 1rem; bottom: 1rem; }
  .hero-stats { grid-template-columns: 1fr 1fr; }
  .mobile-callbar { display: flex; }
  body { padding-bottom: 76px; }
}

@media (max-width: 640px) {
  .container { width: min(100% - 1.5rem, var(--max)); }
  .bento { grid-template-columns: 1fr; }
  .b1, .b2, .b3, .b4, .b5, .b6, .b7, .b8 { grid-column: span 1; min-height: 200px; }
  .b1 { min-height: 280px; }
  .tech-grid,
  .pathway-steps,
  .service-list,
  .footer-grid,
  .form-row { grid-template-columns: 1fr; }
  .hero-content { padding: 4rem 0 3.25rem; }
  .hero-actions .btn { width: 100%; }
  .brand-text span { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero-media img { animation: none; transform: none; }
  .btn, .bento-card, .tech-card, .service-tile { transition: none; }
}


/* Client logo (EPS → PNG) */
.brand--logo { gap: 0; align-items: center; }
.brand-logo {
  display: block;
  height: 56px;
  width: auto;
  max-width: 168px;
  object-fit: contain;
}
.brand-logo--footer {
  height: 64px;
  max-width: 180px;
  /* logo greens/oranges read on dark footer */
  filter: none;
}
.footer-brand .brand-logo--footer {
  /* slight lift on plum/dark footer */
  filter: drop-shadow(0 2px 8px rgba(0,0,0,.35));
}
@media (max-width: 720px) {
  .brand-logo { height: 48px; max-width: 140px; }
}
