<style>
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --ink:        #1c2419;
  --forest:     #2b3d2e;
  --sage:       #4a6350;
  --gold:       #b89a5a;
  --gold-lt:    #d4b87a;
  --linen:      #f7f3ed;
  --linen-dk:   #ede8e0;
  --warm-white: #fdfbf8;
  --mist:       #e2ddd5;
  --text:       #2e2e2e;
  --text-sm:    #6b6560;
  --white:      #ffffff;
}
html { scroll-behavior: smooth; }
body {
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  color: var(--text);
  background: var(--warm-white);
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }

/* NAV */
nav {
  position: sticky; top: 0; z-index: 200;
  background: var(--warm-white);
  border-bottom: 1px solid var(--mist);
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px; padding: 0 48px; height: 68px;
}
.nav-logo { display: flex; align-items: center; gap: 11px; text-decoration: none; flex-shrink: 0; }
.nav-logo svg { width: 36px; height: 36px; }
.nav-logo-text strong {
  display: block; font-family: 'Cormorant Garamond', serif;
  font-size: 15px; font-weight: 600; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--ink);
}
.nav-logo-text span { font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-sm); }
.nav-links { display: flex; gap: 32px; list-style: none; }
.nav-links a {
  font-size: 12px; font-weight: 500; letter-spacing: 0.1em;
  text-transform: uppercase; text-decoration: none; color: var(--text-sm); transition: color 0.2s;
}
.nav-links a:hover { color: var(--ink); }
.nav-right { display: flex; align-items: center; gap: 20px; flex-shrink: 0; }
.nav-phone { font-size: 13.5px; font-weight: 500; color: var(--ink); text-decoration: none; line-height: 1.3; }
.nav-phone small { display: block; font-size: 10px; color: var(--text-sm); font-weight: 300; letter-spacing: 0.08em; }
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  text-decoration: none; font-family: 'Jost', sans-serif; font-weight: 500;
  letter-spacing: 0.1em; text-transform: uppercase; cursor: pointer; border: none;
  transition: all 0.22s ease; white-space: nowrap;
}
.btn-dark { background: var(--ink); color: var(--white); padding: 12px 22px; font-size: 12px; }
.btn-dark:hover { background: var(--forest); }
.btn-dark-lg { background: var(--ink); color: var(--white); padding: 17px 32px; font-size: 13px; }
.btn-dark-lg:hover { background: var(--forest); }
.btn-outline { background: transparent; color: var(--ink); border: 1px solid rgba(28,36,25,0.5); padding: 16px 28px; font-size: 13px; }
.btn-outline:hover { background: var(--ink); color: var(--white); border-color: var(--ink); }
.btn-ghost { background: transparent; color: var(--text-sm); border: 1px solid var(--mist); padding: 13px 22px; font-size: 12px; }
.btn-ghost:hover { border-color: var(--ink); color: var(--ink); }
.btn-gold { background: var(--gold); color: var(--white); padding: 17px 34px; font-size: 13px; }
.btn-gold:hover { background: var(--gold-lt); }

/* HERO */
.hero { display: grid; grid-template-columns: 52% 48%; height: 88vh; max-height: 720px; overflow: hidden; }
.hero-left {
  background: var(--linen); padding: 88px 64px 80px 52px;
  display: flex; flex-direction: column; justify-content: center;
  position: relative; overflow: hidden;
}
.hero-left::before {
  content: ''; position: absolute; top: -100px; right: -100px;
  width: 360px; height: 360px; border-radius: 50%; border: 1px solid var(--mist); pointer-events: none;
}
/* The circle decorative ring — button sits above it via z-index */
.hero-left::after {
  content: ''; position: absolute; bottom: -70px; left: -70px;
  width: 240px; height: 240px; border-radius: 50%; border: 1px solid var(--mist); pointer-events: none;
}
.hero-eyebrow {
  display: flex; align-items: center; gap: 12px; font-size: 11px; font-weight: 500;
  letter-spacing: 0.22em; text-transform: uppercase; color: var(--sage); margin-bottom: 26px;
}
.hero-eyebrow::before { content: ''; width: 28px; height: 1px; background: var(--sage); }
.hero-title {
  font-family: 'Cormorant Garamond', serif; font-size: 58px; font-weight: 400;
  line-height: 1.1; color: var(--ink); margin-bottom: 28px;
}
.hero-title em { font-style: italic; font-weight: 400; }
.hero-body {
  font-size: 16px; color: var(--text-sm); line-height: 1.8;
  max-width: 420px; margin-bottom: 44px; font-weight: 300;
}
.hero-ctas {
  display: flex; gap: 16px; align-items: center; flex-wrap: wrap;
  position: relative; z-index: 2;
}
.hero-play {
  display: flex; align-items: center; gap: 11px; font-size: 12px; font-weight: 500;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-sm);
  text-decoration: none; cursor: pointer; transition: color 0.2s; position: relative; z-index: 2;
}
.hero-play:hover { color: var(--ink); }
.play-circle {
  width: 46px; height: 46px; border-radius: 50%; border: 1px solid var(--mist);
  display: flex; align-items: center; justify-content: center; font-size: 14px;
  color: var(--ink); flex-shrink: 0; transition: all 0.2s;
}
.hero-play:hover .play-circle { background: var(--ink); color: var(--white); border-color: var(--ink); }
.hero-right { position: relative; overflow: hidden; }
.hero-right img { width: 100%; height: 100%; object-fit: cover; object-position: center; transition: transform 8s ease; }
.hero-right:hover img { transform: scale(1.03); }
.hero-right::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(247,243,237,0.15) 0%, transparent 35%);
  pointer-events: none;
}



/* SOCIAL PROOF */
.social-section { display: grid; grid-template-columns: 1fr 1fr; align-items: stretch; }
.social-left { padding: 56px 56px; background: var(--warm-white); display: flex; flex-direction: column; justify-content: center; }
.social-video {
  position: relative; border-radius: 4px; overflow: hidden;
  aspect-ratio: 16/9; background: var(--ink); cursor: pointer; margin-bottom: 20px;
}
.social-video img { width: 100%; height: 100%; object-fit: cover; transition: opacity 0.3s, transform 0.5s; }
.social-video:hover img { opacity: 0.85; transform: scale(1.02); }
.social-video-play {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 72px; height: 72px; border-radius: 50%;
  background: rgba(255,255,255,0.93); display: flex; align-items: center; justify-content: center;
  font-size: 22px; color: var(--ink); box-shadow: 0 8px 40px rgba(0,0,0,0.22); transition: transform 0.2s;
}
.social-video:hover .social-video-play { transform: translate(-50%,-50%) scale(1.08); }
.social-caption { font-size: 15px; color: var(--text-sm); line-height: 1.8; font-weight: 300; }
.social-right { background: var(--linen); padding: 56px 56px; display: flex; flex-direction: column; justify-content: center; }
.rating-meta { font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--text-sm); font-weight: 500; margin-bottom: 10px; }
.rating-row { display: flex; align-items: baseline; gap: 18px; margin-bottom: 6px; }
.rating-num { font-family: 'Cormorant Garamond', serif; font-size: 64px; font-weight: 400; color: var(--ink); line-height: 1; }
.stars { color: #c4974a; font-size: 22px; letter-spacing: 3px; }
.rating-count { font-size: 14px; color: var(--text-sm); font-weight: 300; display: flex; align-items: center; gap: 7px; margin-bottom: 20px; }
.g-badge { width: 22px; height: 22px; border-radius: 50%; background: var(--white); display: inline-flex; align-items: center; justify-content: center; font-size: 12px; font-weight: 700; color: #4285f4; box-shadow: 0 1px 4px rgba(0,0,0,0.12); }
.review-cards { display: grid; grid-template-columns: repeat(3,1fr); gap: 12px; margin-bottom: 24px; }
.review-card { background: var(--white); padding: 20px 18px; border-radius: 2px; }
.review-card-stars { color: #c4974a; font-size: 13px; margin-bottom: 10px; letter-spacing: 2px; }
.review-card-text { font-size: 15px; color: var(--text); line-height: 1.7; font-style: italic; font-family: 'Cormorant Garamond', serif; font-weight: 400; margin-bottom: 12px; }
.review-card-author { font-size: 12px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-sm); }

/* PROCESS */
.process-section { background: var(--linen); padding: 96px 52px; text-align: center; }
.section-label {
  font-size: 11px; font-weight: 500; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--sage); display: flex; align-items: center; justify-content: center;
  gap: 10px; margin-bottom: 14px;
}
.section-label::before, .section-label::after { content: ''; width: 22px; height: 1px; background: var(--sage); }
.section-h2 { font-family: 'Cormorant Garamond', serif; font-size: 46px; font-weight: 400; line-height: 1.15; color: var(--ink); margin-bottom: 10px; }
.section-h2 em { font-style: italic; }
.section-sub { font-size: 15px; font-weight: 500; letter-spacing: 0.05em; color: var(--text-sm); text-transform: uppercase; margin-bottom: 18px; }
.section-body { font-size: 16px; color: var(--text-sm); line-height: 1.85; font-weight: 300; max-width: 620px; margin: 0 auto 64px; }
.steps { display: grid; grid-template-columns: repeat(5,1fr); gap: 2px; margin-bottom: 56px; }
.step { background: var(--warm-white); padding: 36px 22px 30px; text-align: left; transition: background 0.22s; }
.step:hover { background: var(--white); }
.step-num { font-family: 'Cormorant Garamond', serif; font-size: 52px; font-weight: 400; color: var(--mist); line-height: 1; margin-bottom: 14px; }
.step-name { font-size: 15px; font-weight: 600; color: var(--ink); line-height: 1.35; margin-bottom: 12px; }
.step-desc { font-size: 13.5px; color: var(--text-sm); line-height: 1.7; font-weight: 300; margin-bottom: 22px; }
.step-value-tag { font-size: 11px; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase; color: var(--text-sm); margin-bottom: 4px; }
.step-price { font-family: 'Cormorant Garamond', serif; font-size: 30px; font-weight: 400; color: var(--ink); }
.pricing-strip { display: grid; grid-template-columns: 1fr auto 1fr; align-items: stretch; max-width: 700px; margin: 0 auto 20px; border: 1px solid var(--mist); overflow: hidden; }
.price-cell { padding: 28px 36px; text-align: center; }
.price-cell-label { font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--text-sm); font-weight: 500; margin-bottom: 8px; }
.price-cell-num { font-family: 'Cormorant Garamond', serif; font-size: 40px; font-weight: 400; color: var(--text-sm); }
.price-cell-num.strikethrough { text-decoration: line-through; text-decoration-color: var(--mist); }
.price-cell-num.save { color: var(--sage); }
.price-cell-center { background: var(--ink); padding: 28px 44px; text-align: center; }
.price-cell-center-label { font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(255,255,255,0.5); font-weight: 400; margin-bottom: 8px; }
.price-cell-center-num { font-family: 'Cormorant Garamond', serif; font-size: 48px; font-weight: 400; color: var(--white); white-space: nowrap; }
.price-footnote { font-size: 12.5px; color: var(--text-sm); font-weight: 300; }

/* ABOUT */
.about-section { display: grid; grid-template-columns: 340px 1fr 300px; min-height: 560px; overflow: hidden; }
.about-photo { position: relative; overflow: hidden; }
.about-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.about-content { padding: 80px 56px; background: var(--warm-white); display: flex; flex-direction: column; justify-content: center; }
.about-label { font-size: 11px; font-weight: 500; letter-spacing: 0.22em; text-transform: uppercase; color: var(--sage); display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.about-label::before { content: ''; width: 22px; height: 1px; background: var(--sage); }
.about-title { font-family: 'Cormorant Garamond', serif; font-size: 40px; font-weight: 400; color: var(--ink); line-height: 1.2; margin-bottom: 24px; }
.about-title em { font-style: italic; }
.about-body { font-size: 16px; color: var(--text-sm); line-height: 1.85; font-weight: 300; margin-bottom: 18px; }
.about-creds { display: grid; grid-template-columns: 1fr 1fr; gap: 11px 28px; margin-top: 28px; }
.about-cred { display: flex; align-items: center; gap: 10px; font-size: 14px; color: var(--text); font-weight: 400; }
.about-cred::before { content: ''; width: 18px; height: 1px; background: var(--gold); flex-shrink: 0; }
.about-offer { background: var(--linen); padding: 56px 32px; display: flex; flex-direction: column; justify-content: center; border-left: 1px solid var(--mist); }
.offer-heading { font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--text-sm); font-weight: 500; margin-bottom: 10px; }
.offer-price { font-family: 'Cormorant Garamond', serif; font-size: 52px; font-weight: 400; color: var(--ink); line-height: 1; margin-bottom: 5px; }
.offer-was { font-size: 13px; color: var(--text-sm); font-weight: 300; margin-bottom: 24px; }
.offer-divider { width: 28px; height: 1px; background: var(--gold); margin-bottom: 20px; }
.offer-includes-label { font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--text-sm); font-weight: 500; margin-bottom: 14px; }
.offer-list { list-style: none; margin-bottom: 24px; }
.offer-list li { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; color: var(--text); font-weight: 300; padding: 7px 0; border-bottom: 1px solid var(--mist); line-height: 1.5; }
.offer-list li:last-child { border-bottom: none; }
.offer-list li::before { content: '✓'; color: var(--sage); font-size: 13px; font-weight: 600; flex-shrink: 0; margin-top: 1px; }
.offer-notes { font-size: 12px; color: var(--text-sm); font-weight: 300; line-height: 1.7; margin-top: 14px; }

/* QUALS */
.quals-section { padding: 64px 52px; border-top: 1px solid var(--mist); border-bottom: 1px solid var(--mist); background: var(--warm-white); }
.quals-label { font-size: 13px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--text-sm); font-weight: 500; text-align: center; margin-bottom: 44px; }
.quals-row { display: flex; justify-content: center; align-items: flex-start; gap: 44px; flex-wrap: wrap; }
.qual { text-align: center; }
.qual-icon { width: 68px; height: 68px; border-radius: 50%; border: 1px solid var(--mist); display: flex; align-items: center; justify-content: center; margin: 0 auto 12px; font-size: 28px; background: var(--linen); }
.qual-name { font-size: 14px; color: var(--text-sm); font-weight: 400; max-width: 110px; line-height: 1.55; }

/* FAQ */
.faq-section { background: var(--linen); padding: 88px 52px; text-align: center; }
.faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; max-width: 920px; margin: 52px auto 0; text-align: left; }
.faq-item { background: var(--warm-white); padding: 22px 28px; display: flex; justify-content: space-between; align-items: center; cursor: pointer; transition: background 0.2s; }
.faq-item:hover { background: var(--white); }
.faq-q { font-size: 15px; font-weight: 400; color: var(--text); line-height: 1.4; }
.faq-arrow { font-size: 20px; color: var(--text-sm); font-weight: 300; flex-shrink: 0; margin-left: 16px; }

/* FOOTER CTA — horizontal compact strip with practice photo */
.footer-cta {
  display: grid;
  grid-template-columns: 380px 1fr;
  background: var(--ink);
  min-height: 220px;
  overflow: hidden;
}
.footer-cta-image { position: relative; overflow: hidden; }
.footer-cta-image img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  display: block;
  filter: brightness(0.75) saturate(0.9);
}
.footer-cta-image::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to right, transparent 60%, var(--ink) 100%);
  pointer-events: none;
}
.footer-cta-content {
  padding: 40px 56px;
  display: flex;
  align-items: center;
  gap: 48px;
  flex-wrap: wrap;
}
.footer-cta-text { flex: 1; min-width: 220px; }
.footer-cta-eyebrow {
  font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--gold); font-weight: 500; margin-bottom: 10px;
  display: flex; align-items: center; gap: 8px;
}
.footer-cta-eyebrow::before { content: ''; width: 18px; height: 1px; background: var(--gold); }
.footer-cta-title {
  font-family: 'Cormorant Garamond', serif; font-size: 30px; font-weight: 400;
  color: var(--white); line-height: 1.25; margin-bottom: 8px;
}
.footer-cta-title em { font-style: italic; }
.footer-cta-sub { font-size: 14px; color: rgba(255,255,255,0.5); line-height: 1.7; font-weight: 300; }
.footer-cta-buttons { display: flex; flex-direction: column; gap: 10px; min-width: 240px; }
.btn-phone-line {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  border: 1px solid rgba(255,255,255,0.2); color: rgba(255,255,255,0.75);
  background: transparent; padding: 14px 24px; font-family: 'Jost', sans-serif;
  font-size: 13px; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase;
  cursor: pointer; text-decoration: none; transition: all 0.22s;
}
.btn-phone-line:hover { border-color: rgba(255,255,255,0.5); color: var(--white); }

.footer-info {
  background: #111a10; padding: 18px 52px;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px;
}
.footer-detail { display: flex; align-items: center; gap: 8px; font-size: 12.5px; color: rgba(255,255,255,0.4); font-weight: 300; }
.footer-detail strong { color: rgba(255,255,255,0.65); font-weight: 400; }

/* MOBILE */
@media (max-width: 900px) {
  nav { padding: 0 20px; height: auto; flex-wrap: wrap; padding-top: 14px; padding-bottom: 14px; gap: 12px; }
  .nav-links { display: none; }
  .nav-phone small { display: none; }
  .hero { grid-template-columns: 1fr; height: auto; max-height: none; }
  .hero-left { padding: 56px 24px 52px; order: 1; }
  .hero-left::before, .hero-left::after { display: none; }
  .hero-title { font-size: 40px; }
  .hero-body { font-size: 15px; max-width: 100%; }
  .hero-right { order: 0; min-height: 260px; max-height: 320px; }
  
  
  
  
  .social-section { grid-template-columns: 1fr; }
  .social-left { padding: 48px 24px 32px; }
  .social-right { padding: 36px 24px 48px; }
  .rating-num { font-size: 56px; }
  .review-cards { grid-template-columns: 1fr; gap: 8px; }
  .process-section { padding: 60px 24px; }
  .section-h2 { font-size: 36px; }
  .section-body { font-size: 15px; margin-bottom: 40px; }
  .steps { grid-template-columns: 1fr; gap: 2px; }
  .pricing-strip { grid-template-columns: 1fr; max-width: 100%; }
  .price-cell { padding: 18px 24px; }
  .price-cell-center { padding: 20px 24px; }
  .about-section { grid-template-columns: 1fr; }
  .about-photo { height: 320px; }
  .about-content { padding: 48px 24px; }
  .about-title { font-size: 34px; }
  .about-creds { grid-template-columns: 1fr; }
  .about-offer { border-left: none; border-top: 1px solid var(--mist); padding: 40px 24px; }
  .quals-section { padding: 48px 24px; }
  .quals-row { gap: 24px; }
  .faq-section { padding: 60px 24px; }
  .faq-grid { grid-template-columns: 1fr; max-width: 100%; }
  .footer-cta { grid-template-columns: 1fr; }
  .footer-cta-image { height: 180px; }
  .footer-cta-content { padding: 36px 24px; gap: 28px; }
  .footer-cta-title { font-size: 26px; }
  .footer-cta-buttons { min-width: 100%; }
  .footer-info { padding: 16px 24px; flex-direction: column; align-items: flex-start; }
}
@media (max-width: 540px) {
  .hero-title { font-size: 34px; }
  
  .pricing-strip { gap: 2px; }
}

/* ANIMATIONS */
@keyframes fadeUp { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: translateY(0); } }
.hero-eyebrow { animation: fadeUp 0.65s ease 0.1s both; }
.hero-title   { animation: fadeUp 0.65s ease 0.22s both; }
.hero-body    { animation: fadeUp 0.65s ease 0.34s both; }
.hero-ctas    { animation: fadeUp 0.65s ease 0.46s both; }

/* NAV BOOK BUTTON — matches footer green */
.btn-nav-book {
  background: var(--forest);
  color: var(--white);
  padding: 12px 22px;
  font-size: 12px;
}
.btn-nav-book:hover { background: var(--sage); }

/* SECTION DIVIDER */
.section-divider {
  display: flex;
  justify-content: center;
  padding: 36px 0;
  background: var(--warm-white);
}
.section-divider span {
  display: block;
  width: 80%;
  height: 3px;
  background: var(--forest);
  border-radius: 999px;
}

/* TRUSTED BY PATIENTS — Cormorant Garamond, larger */
.rating-meta {
  font-family: 'Cormorant Garamond', serif !important;
  font-size: 22px !important;
  font-weight: 400 !important;
  font-style: italic !important;
  letter-spacing: 0.04em !important;
  text-transform: none !important;
  color: var(--ink) !important;
  margin-bottom: 14px !important;
}

/* QUALS — double font sizes */
.quals-label { font-size: 20px !important; letter-spacing: 0.12em !important; margin-bottom: 48px !important; }
.qual-icon { width: 80px !important; height: 80px !important; font-size: 34px !important; margin-bottom: 14px !important; }
.qual-name { font-size: 16px !important; max-width: 130px !important; line-height: 1.5 !important; }
.quals-row { gap: 48px !important; }

</style>
