/* ============================================
   PROGEN · Ultherapy Landing Page
   Palette: Gold · Black · Beige · Cream
   ============================================ */

:root {
  --black: #0F0E0C;
  --gold: #E8C070;
  --gold-soft: #F1D597;
  --gold-deep: #B8923F;
  --bronze-deep: #3D2A14;
  --beige: #9A7A4A;       /* dark bronze — page background */
  --cream: #5A3F22;       /* deep bronze — cards (darker than page so light text pops) */
  --cream-warm: #4A331A;  /* deepest bronze — feature surfaces */
  --paper: #F7E9C5;       /* light cream — primary text & elements on dark surfaces */
  --text: #FBF1D6;        /* warm cream — body text on dark bronze */
  --text-soft: #E8D6A8;   /* muted cream — secondary text */
  --text-on-light: #1A0F06; /* deep brown — text on light surfaces (inputs, etc.) */
  --hairline: rgba(247, 233, 197, 0.4);

  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'Inter', system-ui, -apple-system, sans-serif;
  --font-script: 'Italiana', serif;

  --radius: 4px;
  --max-w: 1200px;
  --max-w-narrow: 760px;
  --header-h: 76px;

  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

/* ============================================
   ACCESSIBILITY
   ============================================ */

.skip-link {
  position: absolute;
  top: -100px;
  left: 16px;
  background: var(--gold);
  color: var(--black);
  padding: 12px 20px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 1px;
  z-index: 1000;
  transition: top 200ms var(--ease);
}
.skip-link:focus {
  top: 16px;
  outline: 2px solid var(--paper);
  outline-offset: 2px;
}

/* Visible keyboard focus styles for all interactive elements */
*:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 2px;
}
.btn:focus-visible {
  outline-offset: 4px;
}
.intake-form input:focus-visible,
.intake-form select:focus-visible,
.intake-form textarea:focus-visible {
  outline: none; /* uses the box-shadow ring already defined on :focus */
}

/* ============================================
   RESET / BASE
   ============================================ */

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-h);
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 20px;
  line-height: 1.8;
  color: var(--text);
  background: var(--beige);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; height: auto; display: block; }

a { color: var(--gold); text-decoration: none; transition: color 200ms var(--ease); }
a:hover { color: var(--gold-soft); }

h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 500;
  letter-spacing: -0.01em;
  margin: 0 0 0.5em;
  color: var(--paper);
}

p { margin: 0 0 1em; }

::selection { background: var(--gold); color: var(--black); }

/* ============================================
   LAYOUT HELPERS
   ============================================ */

.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}
.container.narrow { max-width: var(--max-w-narrow); }

.eyebrow {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-soft);
  margin: 0 0 14px;
}
.eyebrow.gold { color: var(--gold); }

.section-title {
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  line-height: 1.1;
  margin-bottom: 0.6em;
}

.lede {
  font-size: 1.25rem;
  line-height: 1.8;
  color: var(--text);
}
.lede.center { text-align: center; }

.script-accent {
  font-family: var(--font-script);
  font-size: 1.5rem;
  color: var(--paper);
  letter-spacing: 0.05em;
  margin-bottom: 10px;
}

.muted { color: var(--text-soft); font-size: 1rem; }

/* Section divider — gold hairline that draws in */
.divider {
  display: flex;
  justify-content: center;
  padding: 12px 24px;
}
.divider span {
  display: block;
  height: 1px;
  width: 240px;
  background: linear-gradient(90deg, transparent, var(--gold) 50%, transparent);
}

/* ============================================
   HEADER
   ============================================ */

.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 32px;
  background: rgba(15, 12, 8, 0.88);
  border-bottom: 1px solid var(--hairline);
}

.logo-link { display: flex; align-items: center; }
.logo {
  height: 52px;
  width: auto;
  display: block;
}
.logo-text {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  letter-spacing: 0.08em;
  color: var(--black);
  font-weight: 600;
}
.logo-text sup { font-size: 0.5em; }

.site-nav {
  display: flex;
  gap: 28px;
  align-items: center;
}
.site-nav a {
  font-size: 14px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--paper);
  font-weight: 500;
}
.site-nav a:hover { color: var(--gold); }

.nav-cta {
  border: 1px solid var(--gold);
  padding: 10px 18px;
  border-radius: var(--radius);
  color: var(--paper) !important;
  background: transparent;
  transition: all 250ms var(--ease);
}
.nav-cta:hover {
  background: var(--gold);
  color: var(--black) !important;
}

@media (max-width: 720px) {
  .site-header { padding: 0 16px; }
  .site-nav { gap: 14px; }
  .site-nav a:not(.nav-cta) { display: none; }
}

/* ============================================
   BUTTONS
   ============================================ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 16px 28px;
  border-radius: var(--radius);
  cursor: pointer;
  border: 1px solid transparent;
  transition: all 300ms var(--ease);
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
}
.btn-primary:hover {
  background: var(--bronze-deep);
  border-color: var(--bronze-deep);
  color: var(--gold-soft);
  transform: translateY(-1px) scale(1.02);
  box-shadow: 0 12px 32px -10px rgba(20, 12, 4, 0.7);
}

/* CTA shimmer sweep */
.btn-primary::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 60%; height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,0.45), transparent);
  transition: left 900ms var(--ease);
}
.btn-primary:hover::before { left: 130%; }

.btn-ghost {
  background: transparent;
  color: var(--paper);
  border-color: var(--paper);
}
.btn-ghost:hover {
  background: var(--black);
  color: var(--paper);
}

.btn-large { padding: 20px 40px; font-size: 14px; }

/* ============================================
   HERO
   ============================================ */

.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh; /* dynamic viewport — fixes iOS Safari URL-bar overshoot */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: calc(var(--header-h) + 40px) 24px 80px;
  overflow: hidden;
}
@media (max-width: 780px) {
  .hero {
    min-height: 100svh; /* small viewport — assumes URL bar visible, no overshoot */
    padding-top: calc(var(--header-h) + 24px);
    padding-bottom: 32px;
  }

  /* Inner-element margins — desktop uses 48-80px which feels huge on mobile.
     Reduce ~40% so single-column stacked content doesn't feel airy. */
  .what-grid,
  .area-grid,
  .timeline,
  .team-grid,
  .embed-video,
  .quote-grid,
  .faq-list,
  .endorsement-card,
  .intake-form,
  .form-banner,
  .check-list { margin-top: 28px !important; }

  .welcome-video,
  .results-marquee,
  .locations-grid,
  .book-cta-wrap { margin-top: 32px !important; }

  .stats { margin-top: 40px !important; padding: 32px 20px !important; }
  .site-footer { margin-top: 40px !important; padding-top: 40px !important; }
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 70% 25%, rgba(232, 192, 112, 0.18) 0%, transparent 55%),
    linear-gradient(160deg, var(--beige) 0%, var(--bronze-deep) 100%);
}

/* Floating depth-rings ornament so the space above the headline feels alive
   even before the video has loaded */
.hero-ornament {
  position: absolute;
  top: 26%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  pointer-events: none;
  opacity: 0.6;
}
.hero-ornament svg { display: block; }
.hero-ornament .ring {
  fill: none;
  stroke: var(--gold);
  stroke-width: 1;
  transform-origin: 60px 60px;
  animation: heroRing 3.6s ease-out infinite;
}
.hero-ornament .ring:nth-child(2) { animation-delay: 1.2s; }
.hero-ornament .ring:nth-child(3) { animation-delay: 2.4s; }
@keyframes heroRing {
  0%   { transform: scale(0.2); opacity: 0; }
  20%  { opacity: 0.9; }
  100% { transform: scale(2.6); opacity: 0; }
}
.hero-ornament .core {
  fill: var(--gold);
}
.hero-mark {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 18px;
  margin: 0 0 36px;
  font-family: var(--font-script);
  font-size: 0.95rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  white-space: nowrap;
}
.hero-mark::before,
.hero-mark::after {
  content: '';
  display: block;
  width: 60px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold) 50%, transparent);
}

@keyframes kenburns {
  0%   { transform: scale(1.02) translate(0, 0); }
  50%  { transform: scale(1.12) translate(-2%, -1%); }
  100% { transform: scale(1.16) translate(2%, -2%); }
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  background: var(--bronze-deep);
  pointer-events: none;
  /* Blur is baked into the video file itself — zero runtime filter cost. */
  transform: translateZ(0);
  will-change: transform;
}
/* Hide play-button overlay across all browsers */
.hero-video::-webkit-media-controls,
.hero-video::-webkit-media-controls-overlay-play-button,
.hero-video::-webkit-media-controls-start-playback-button,
.hero-video::-webkit-media-controls-panel,
.hero-video::-webkit-media-controls-enclosure {
  display: none !important;
  -webkit-appearance: none;
  appearance: none;
  opacity: 0;
}
.hero-video::-moz-media-controls {
  display: none !important;
  opacity: 0;
}
/* Defensive: in case any UA renders default video chrome */
.hero-video[poster] { object-fit: cover; }

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(180deg, rgba(20, 12, 4, 0.25) 0%, rgba(20, 12, 4, 0.45) 60%, rgba(20, 12, 4, 0.65) 100%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 920px;
  margin: 0 auto;
  text-align: center;
}

.hero-headline {
  font-size: clamp(2.6rem, 7vw, 5.6rem);
  line-height: 1.05;
  font-weight: 500;
  letter-spacing: -0.02em;
  margin-bottom: 28px;
}
.hero-headline em {
  font-style: italic;
  color: var(--gold);
  font-family: var(--font-serif);
}
.hero-headline span,
.hero-headline em {
  display: inline-block;
}

@keyframes wordIn {
  to { opacity: 1; transform: translateY(0); }
}

/* Shimmer sweep across headline */
.shimmer {
  color: var(--paper);
  text-shadow: 0 2px 30px rgba(0, 0, 0, 0.55), 0 1px 4px rgba(0, 0, 0, 0.45);
}
.shimmer em {
  color: var(--gold);
  font-style: italic;
}

@keyframes shimmerSweep {
  0%, 100% { background-position: 200% 0; }
  50% { background-position: -100% 0; }
}
@keyframes wordParent { to {} }

.hero-sub {
  font-size: 1.35rem;
  line-height: 1.7;
  color: var(--text);
  max-width: 660px;
  margin: 0 auto 36px;
}

.hero-ctas {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-meta {
  margin-top: 48px;
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-soft);
}

.hero-cta-logo {
  display: block;
  width: clamp(220px, 32vw, 360px);
  height: auto;
  margin: 12px auto 28px;
}

/* ============================================
   REVEAL ON SCROLL
   ============================================ */

.reveal {
  padding: 24px 0;
}

/* ============================================
   WELCOME
   ============================================ */

.welcome { text-align: center; }
.welcome .lede {
  font-size: 1.45rem;
  line-height: 1.85;
  color: var(--paper);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 600px) {
  .welcome .lede { font-size: 1.2rem; line-height: 1.75; }
}

.founder-photo {
  width: 280px;
  height: 280px;
  border-radius: 50%;
  margin: 0 auto 40px;
  overflow: hidden;
  border: 3px solid var(--gold);
  box-shadow: 0 24px 56px -18px rgba(20, 12, 4, 0.7);
  background: var(--bronze-deep);
}
@media (max-width: 600px) {
  .founder-photo { width: 220px; height: 220px; }
}
.founder-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  display: block;
}

.welcome .signature {
  font-family: var(--font-script);
  font-size: 1.6rem;
  color: var(--paper);
  margin-top: 32px;
  letter-spacing: 0.05em;
}

.welcome-video {
  margin: 56px auto 0;
  max-width: 520px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--hairline);
  box-shadow: 0 24px 60px -20px rgba(0, 0, 0, 0.55);
  position: relative;
  aspect-ratio: 16 / 10;
  background: var(--cream);
}
.welcome-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.welcome-video::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  box-shadow: inset 0 0 60px rgba(0, 0, 0, 0.25);
  border-radius: var(--radius);
}

/* ============================================
   WHAT IS ULTHERAPY
   ============================================ */

.what-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px 48px;
  align-items: stretch;
  justify-items: center;
  margin: 48px auto 0;
  max-width: 1000px;
}

.what-photo {
  grid-column: 1;
  grid-row: 1;
  margin: 0;
  width: 100%;
  max-width: 460px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 6px solid var(--bronze-deep);
  outline: 1px solid var(--gold);
  outline-offset: -7px;
  box-shadow: 0 20px 48px -22px rgba(20, 12, 4, 0.65);
  background: var(--bronze-deep);
  aspect-ratio: 320 / 360;
}
.what-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}

.what-grid .what-diagram {
  grid-column: 2;
  grid-row: 1;
  width: 100%;
  max-width: 460px;
  padding: 0;
  border: 6px solid var(--bronze-deep);
  outline: 1px solid var(--gold);
  outline-offset: -7px;
  box-shadow: 0 20px 48px -22px rgba(20, 12, 4, 0.65);
  aspect-ratio: 320 / 360;
}

.what-grid .what-copy {
  grid-column: 1 / -1;
  grid-row: 2;
  text-align: center;
  max-width: 720px;
  margin: 8px auto 0;
}

@media (max-width: 720px) {
  .what-grid { grid-template-columns: 1fr; }
  .what-grid .what-photo,
  .what-grid .what-diagram { grid-column: 1; }
  .what-grid .what-diagram { grid-row: 2; }
  .what-grid .what-copy { grid-row: 3; }
}
.what-copy { font-size: 1.25rem; line-height: 1.85; }
.what-copy p { margin: 0 0 1.2em; color: var(--paper); }
.what-copy strong { color: var(--gold-soft); font-weight: 600; }

.check-list {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
}
.check-list li {
  padding: 10px 0 10px 28px;
  position: relative;
  border-bottom: 1px solid var(--hairline);
  color: var(--text);
}
.check-list li::before {
  content: '';
  position: absolute;
  left: 0; top: 18px;
  width: 14px; height: 1px;
  background: var(--gold);
}

.what-diagram {
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--cream);
  padding: 20px;
  border-radius: var(--radius);
  border: 1px solid var(--hairline);
  width: 100%;
}
.depth-diagram { width: 100%; height: 100%; display: block; }

.pulse-ring {
  transform-origin: center;
  animation: pulseOut 2.4s ease-out infinite;
  opacity: 0;
}
.pulse-1 { animation-delay: 0s; transform-origin: 220px 105px; }
.pulse-2 { animation-delay: 0.8s; transform-origin: 220px 200px; }
.pulse-3 { animation-delay: 1.6s; transform-origin: 220px 295px; }

@keyframes pulseOut {
  0% { transform: scale(0.4); opacity: 0; }
  20% { opacity: 0.9; }
  100% { transform: scale(4); opacity: 0; }
}

@media (max-width: 800px) {
  .what-grid { grid-template-columns: 1fr; gap: 40px; }
}

/* ============================================
   AREAS
   ============================================ */

.area-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.area-card {
  background: var(--cream);
  border: 1px solid transparent;
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 350ms var(--ease), box-shadow 350ms var(--ease), border-color 350ms var(--ease);
}
.area-card:hover {
  transform: translateY(-4px);
  border-color: var(--gold);
  box-shadow: 0 16px 40px -16px rgba(15, 14, 12, 0.18);
}

.area-img {
  aspect-ratio: 4 / 5;
  background-color: var(--bronze-deep);
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
  transition: transform 700ms var(--ease);
}
.area-card:hover .area-img { transform: scale(1.05); }

.area-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(20, 12, 4, 0) 55%, rgba(20, 12, 4, 0.55) 100%),
    radial-gradient(ellipse at 50% 50%, transparent 55%, rgba(20, 12, 4, 0.25) 100%);
  pointer-events: none;
  transition: opacity 400ms var(--ease);
}
.area-card:hover .area-img::after { opacity: 0.7; }

.area-img[data-area="face"] { background-image: url('images/area-face.jpg'); }
.area-img[data-area="neck"] { background-image: url('images/area-neck.jpg'); }
.area-img[data-area="brow"] { background-image: url('images/area-brow.jpg'); }
.area-img[data-area="decolletage"] { background-image: url('images/area-decolletage.jpg'); }

.area-card h3 {
  font-size: 1.55rem;
  padding: 24px 24px 10px;
  margin: 0;
}
.area-card p {
  padding: 0 24px 26px;
  color: var(--text-soft);
  font-size: 1.05rem;
  line-height: 1.65;
}

@media (max-width: 980px) {
  .area-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 540px) {
  .area-grid { grid-template-columns: 1fr; }
}

/* ============================================
   PROCESS / TIMELINE
   ============================================ */

.timeline {
  position: relative;
  margin: 48px auto 0;
  max-width: 720px;
  padding-left: 64px;
}
.timeline-line {
  position: absolute;
  left: 22px; top: 0;
  width: 4px;
  height: 100%;
}
.timeline-path { transition: stroke-dashoffset 1500ms var(--ease); }
.process.is-visible .timeline-path { stroke-dashoffset: 0; }

.step {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 24px;
  margin-bottom: 56px;
  align-items: flex-start;
  position: relative;
}
.step:last-child { margin-bottom: 0; }

.step-num {
  position: absolute;
  left: -52px;
  top: 0;
  width: 48px;
  height: 48px;
  background: var(--beige);
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--gold);
  font-weight: 600;
}
.step-body { grid-column: 2; }
.step-body h3 { font-size: 1.7rem; margin-bottom: 8px; }
.step-body p { color: var(--text-soft); margin: 0; font-size: 1.1rem; line-height: 1.7; }

@media (max-width: 600px) {
  .timeline { padding-left: 48px; }
  .timeline-line { left: 14px; }
  .step-num { left: -40px; width: 36px; height: 36px; font-size: 0.95rem; }
}

/* STATS */
.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 80px;
  padding: 48px 24px;
  background: var(--black);
  color: var(--paper);
  border-radius: var(--radius);
}
.stat { text-align: center; }
.stat-num {
  display: block;
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 5vw, 3.6rem);
  color: var(--gold);
  font-weight: 500;
  line-height: 1;
  margin-bottom: 10px;
}
.stat-label {
  font-size: 13px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(247, 233, 197, 0.75);
}

@media (max-width: 600px) {
  .stats { grid-template-columns: 1fr; gap: 28px; }
}

/* ============================================
   WHY PROGEN / TEAM
   ============================================ */

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 28px;
  margin-top: 48px;
}
.team-card {
  background: var(--cream);
  border-radius: var(--radius);
  border-top: 2px solid var(--gold);
  overflow: hidden;
  transition: transform 300ms var(--ease), box-shadow 300ms var(--ease);
  display: flex;
  flex-direction: column;
}
.team-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 44px -18px rgba(20, 12, 4, 0.55);
}
.team-photo {
  width: 100%;
  aspect-ratio: 4 / 5;
  background-size: cover;
  background-position: center 25%;
  background-color: var(--bronze-deep);
  position: relative;
}
.team-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(20, 12, 4, 0.4) 100%);
  pointer-events: none;
}
.team-photo--brand {
  background: radial-gradient(ellipse at 50% 30%, rgba(232, 192, 112, 0.28) 0%, transparent 60%), linear-gradient(160deg, #2a1e10 0%, var(--bronze-deep) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.team-photo--brand span {
  font-family: var(--font-script);
  font-size: 8.5rem;
  color: var(--gold);
  line-height: 1;
  text-shadow: 0 6px 30px rgba(232, 192, 112, 0.35);
  font-style: italic;
}
.team-card-body { padding: 28px 28px 32px; }
.team-card h3 { font-size: 1.5rem; margin-bottom: 6px; }
.team-role {
  font-family: var(--font-script);
  font-size: 1.1rem;
  color: var(--gold);
  margin-bottom: 16px;
  letter-spacing: 0.04em;
}
.team-card p { color: var(--text-soft); font-size: 1.05rem; margin: 0; line-height: 1.7; }

@media (max-width: 880px) { .team-grid { grid-template-columns: 1fr; } }

/* ============================================
   REAL RESULTS GALLERY
   ============================================ */

.results { padding-bottom: 60px; }

.embed-video {
  margin: 48px auto 0;
  max-width: 880px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 6px solid var(--bronze-deep);
  outline: 1px solid var(--gold);
  outline-offset: -7px;
  box-shadow: 0 24px 60px -22px rgba(20, 12, 4, 0.7);
  background: #000;
}
.embed-video video {
  display: block;
  width: 100%;
  height: auto;
}

.results-marquee {
  position: relative;
  overflow: hidden;
  margin: 56px -24px 0;
  padding: 24px 0;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, black 6%, black 94%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0%, black 6%, black 94%, transparent 100%);
}

.results-track {
  display: flex;
  gap: 32px;
  width: max-content;
  animation: resultsMarquee 80s linear infinite;
  will-change: transform;
}
.results-marquee:hover .results-track,
.results-marquee:focus-within .results-track {
  animation-play-state: paused;
}

@keyframes resultsMarquee {
  from { transform: translateX(0); }
  to   { transform: translateX(calc(-50% - 16px)); }
}

.result-card {
  flex: 0 0 520px;
  width: 520px;
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--cream);
  border: 1px solid var(--hairline);
  box-shadow: 0 24px 50px -20px rgba(0, 0, 0, 0.55);
  display: flex;
  flex-direction: column;
  transition: transform 350ms var(--ease);
}
.result-card:hover {
  transform: scale(1.015);
}
.result-card img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 320 / 360;
  object-fit: cover;
}
.result-label {
  padding: 20px 24px;
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  text-align: center;
  background: var(--cream-warm);
}

.results-fine {
  text-align: center;
  font-size: 0.92rem;
  color: var(--text-soft);
  margin: 20px 0 0;
  letter-spacing: 1px;
}

.results-disclaimer {
  text-align: center;
  font-size: 0.85rem;
  font-style: italic;
  color: var(--text-soft);
  letter-spacing: 0.5px;
  margin: 12px auto 0;
  max-width: 600px;
}

@media (max-width: 720px) {
  .result-card { flex: 0 0 320px; width: 320px; }
  .results-track { gap: 20px; }
  @keyframes resultsMarquee {
    from { transform: translateX(0); }
    to   { transform: translateX(calc(-50% - 10px)); }
  }
}

@media (prefers-reduced-motion: reduce) {
  .results-track { animation: none; }
  .results-marquee {
    overflow-x: auto;
    -webkit-mask-image: none;
    mask-image: none;
  }
}

/* ============================================
   TESTIMONIALS
   ============================================ */

.quote-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.quote-card {
  background: var(--cream-warm);
  margin: 0;
  padding: 36px 28px;
  border-radius: var(--radius);
  position: relative;
}
.quote-card::before {
  content: '"';
  position: absolute;
  top: 8px; left: 18px;
  font-family: var(--font-serif);
  font-size: 4rem;
  color: var(--gold);
  line-height: 1;
  opacity: 0.4;
}
.quote-card p {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-style: italic;
  line-height: 1.6;
  color: var(--paper);
  margin: 0 0 20px;
  position: relative;
  z-index: 1;
}
.quote-card cite {
  font-style: normal;
  font-size: 0.95rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold);
}
@media (max-width: 880px) { .quote-grid { grid-template-columns: 1fr; } }

/* ============================================
   FAQ
   ============================================ */

.faq-list { margin-top: 48px; }
.faq-item {
  border-bottom: 1px solid var(--hairline);
  padding: 0;
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-serif);
  font-size: 1.45rem;
  color: var(--paper);
  transition: color 250ms var(--ease);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-family: var(--font-sans);
  font-size: 1.5rem;
  color: var(--gold);
  transition: transform 300ms var(--ease);
  font-weight: 300;
  margin-left: 16px;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item summary:hover { color: var(--gold); }

.faq-content {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 350ms var(--ease);
  overflow: hidden;
}
.faq-item[open] .faq-content { grid-template-rows: 1fr; }
.faq-content > p {
  min-height: 0;
  overflow: hidden;
  padding: 0 0 22px;
  color: var(--text-soft);
  margin: 0;
}

/* ============================================
   BOOK / LOCATION
   ============================================ */

.locations-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-top: 56px;
}

.location-card {
  background: var(--cream);
  border-radius: var(--radius);
  border-top: 2px solid var(--gold);
  padding: 32px 28px 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  transition: transform 300ms var(--ease), box-shadow 300ms var(--ease);
}
.location-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 48px -18px rgba(20, 12, 4, 0.55);
}

.location-tag {
  font-size: 11px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 8px;
  font-weight: 500;
}

.location-card h3 {
  font-size: 1.7rem;
  margin: 0 0 14px;
}
.location-card .address { font-size: 1.05rem; color: var(--text-soft); margin-bottom: 14px; line-height: 1.55; }
.location-card .phone {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  color: var(--paper);
  font-weight: 500;
}
.location-card .phone:hover { color: var(--gold); }

.location-map {
  margin: 24px -28px 0;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  border-top: 1px solid var(--hairline);
}
.location-map iframe { width: 100%; height: 100%; border: 0; filter: sepia(0.35) saturate(0.9) contrast(0.96); display: block; }

.book-cta-wrap {
  text-align: center;
  margin-top: 56px;
}
.book-cta-wrap .btn { margin-bottom: 16px; }

@media (max-width: 880px) {
  .locations-grid { grid-template-columns: 1fr; gap: 28px; }
}

/* ============================================
   DOCTOR ENDORSEMENT CARD
   ============================================ */

.endorsement { text-align: center; }
.endorsement-card {
  margin: 48px auto 0;
  max-width: 1100px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 10px solid var(--bronze-deep);
  outline: 1px solid var(--gold);
  outline-offset: -11px;
  box-shadow: 0 28px 70px -24px rgba(20, 12, 4, 0.75);
  background: var(--bronze-deep);
  transition: transform 400ms var(--ease), box-shadow 400ms var(--ease);
}
.endorsement-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 36px 84px -22px rgba(20, 12, 4, 0.8);
}
.endorsement-card img {
  display: block;
  width: 100%;
  height: auto;
}

/* ============================================
   INTAKE FORM
   ============================================ */

.intake { background: linear-gradient(180deg, var(--beige) 0%, var(--cream-warm) 100%); }

.intake-form {
  margin: 48px auto 0;
  display: grid;
  gap: 22px;
  max-width: 640px;
}

.field { display: flex; flex-direction: column; gap: 8px; }

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}
@media (max-width: 600px) { .field-row { grid-template-columns: 1fr; gap: 22px; } }

.intake-form label {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold-soft);
}

.intake-form input,
.intake-form select,
.intake-form textarea {
  font-family: var(--font-sans);
  font-size: 1.05rem;
  color: var(--text-on-light);
  background: var(--paper);
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
  padding: 16px 18px;
  width: 100%;
  font-weight: 400;
  transition: border-color 250ms var(--ease), background 250ms var(--ease), box-shadow 250ms var(--ease);
}
.intake-form input:hover,
.intake-form select:hover,
.intake-form textarea:hover { border-color: var(--gold); }

.intake-form input:focus,
.intake-form select:focus,
.intake-form textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: #FCF2D2;
  box-shadow: 0 0 0 3px rgba(232, 192, 112, 0.25);
}

.intake-form input::placeholder,
.intake-form textarea::placeholder { color: rgba(26, 15, 6, 0.4); }

.intake-form select { appearance: none; -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%231A0F06' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 18px center;
  padding-right: 44px;
}

.intake-form textarea { resize: vertical; min-height: 130px; line-height: 1.6; }

.intake-form .btn { width: 100%; margin-top: 8px; }

.form-fine {
  font-size: 0.92rem;
  color: var(--text-soft);
  text-align: center;
  margin: 16px 0 0;
  line-height: 1.6;
}

/* Honeypot — hidden from real users, visible to bots */
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

/* Success / error banners */
.form-banner {
  display: none;
  margin: 48px auto 0;
  max-width: 640px;
  padding: 40px 32px;
  text-align: center;
  border-radius: var(--radius);
}
.form-banner.is-shown { display: block; }
.form-banner.is-shown ~ .intake-form { display: none; }
.form-banner h3 { font-size: 1.8rem; margin: 8px 0 16px; }

.form-success {
  background: var(--cream);
  border: 1px solid var(--gold);
  box-shadow: 0 12px 40px -16px rgba(107, 79, 46, 0.3);
}
.form-error {
  background: #F4E4BB;
  border: 1px solid #B85C2E;
  color: var(--bronze-deep);
}
.form-error h3 { color: #8B3A1A; }

/* ============================================
   FOOTER
   ============================================ */

.site-footer {
  background: var(--black);
  color: var(--paper);
  padding: 64px 0 32px;
  margin-top: 80px;
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  margin-bottom: 48px;
}
.footer-grid p { margin: 0 0 6px; line-height: 1.65; font-size: 1rem; color: rgba(247, 233, 197, 0.92); }
.footer-grid a { color: var(--gold); }
.footer-grid a:hover { color: var(--gold-soft); }
.footer-brand {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  color: var(--paper);
  letter-spacing: 0.08em;
  font-weight: 500;
  margin-bottom: 4px !important;
}
.footer-brand sup { font-size: 0.5em; }
.footer-label {
  font-size: 12px !important;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold) !important;
  margin-bottom: 10px !important;
}
.footer-fine {
  text-align: center;
  font-size: 0.88rem;
  color: rgba(247, 233, 197, 0.6);
  border-top: 1px solid rgba(232, 192, 112, 0.25);
  padding-top: 28px;
  margin: 0;
}
@media (max-width: 720px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

/* ============================================
   MUSIC TOGGLE
   ============================================ */

.music-toggle {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 60;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--black);
  color: var(--gold);
  border: 1px solid var(--gold);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 300ms var(--ease);
  box-shadow: 0 8px 24px -10px rgba(15, 14, 12, 0.5);
}
.music-toggle:hover {
  transform: scale(1.06);
  background: var(--gold);
  color: var(--black);
}
.music-toggle .icon-note { transition: opacity 250ms var(--ease); }
.music-toggle .eq {
  position: absolute;
  display: none;
  gap: 3px;
  align-items: flex-end;
  height: 16px;
}
.music-toggle .eq i {
  display: block;
  width: 3px;
  background: currentColor;
  border-radius: 1px;
  animation: eqBounce 0.9s ease-in-out infinite;
}
.music-toggle .eq i:nth-child(1) { animation-delay: 0s; height: 60%; }
.music-toggle .eq i:nth-child(2) { animation-delay: 0.15s; height: 100%; }
.music-toggle .eq i:nth-child(3) { animation-delay: 0.3s; height: 75%; }

.music-toggle.is-playing .icon-note { display: none; }
.music-toggle.is-playing .eq { display: flex; }

@keyframes eqBounce {
  0%, 100% { transform: scaleY(0.4); }
  50% { transform: scaleY(1); }
}

/* ============================================
   REDUCED MOTION
   ============================================ */

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
  .reveal > .container > * { opacity: 1; transform: none; }
  .hero-headline span, .hero-headline em, .hero-sub, .hero-ctas, .hero-meta { opacity: 1; transform: none; }
  .shimmer { background: none; color: var(--paper); -webkit-text-fill-color: var(--paper); -webkit-background-clip: initial; background-clip: initial; }
  .shimmer em { background: none; color: var(--gold); -webkit-text-fill-color: var(--gold); -webkit-background-clip: initial; background-clip: initial; }
  .pulse-ring { display: none; }
}
