/* ==========================================================
   DESIGN SYSTEM
   ========================================================== */
:root {
  --cream:         #F5F0E8;
  --cream-deep:    #EBE4D6;
  --plum:          #2B1C4A;
  --plum-deep:     #1A1032;
  --plum-soft:     #4A3670;
  --peach:         #FF8A65;
  --peach-deep:    #E56B47;
  --sage:          #D6DBC9;
  --ink:           #1A1614;
  --ink-soft:      #5C5854;
  --ink-faint:     #9A958F;
  --line:          rgba(26,22,20,0.10);
  --line-strong:   rgba(26,22,20,0.20);

  --display: "Fraunces", "Times New Roman", serif;
  --sans:    "DM Sans", -apple-system, BlinkMacSystemFont, sans-serif;

  --radius-sm: 6px;
  --radius:    14px;
  --radius-lg: 24px;

  --shadow-soft: 0 2px 8px rgba(26,22,20,0.04), 0 12px 32px rgba(26,22,20,0.06);
  --shadow-card: 0 1px 2px rgba(26,22,20,0.04), 0 8px 24px rgba(26,22,20,0.08);
  --shadow-lift: 0 4px 12px rgba(26,22,20,0.06), 0 24px 48px rgba(26,22,20,0.12);

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

/* ==========================================================
   RESET
   ========================================================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  font-feature-settings: "ss01", "cv11";
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; }

/* Grain texture overlay — adds warmth */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0.035;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' /%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' /%3E%3C/svg%3E");
}

/* ==========================================================
   UTILITIES
   ========================================================== */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
  position: relative;
  z-index: 2;
}
.eyebrow {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-soft);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: "";
  width: 24px;
  height: 1px;
  background: currentColor;
}

h1, h2, h3, h4 {
  font-family: var(--display);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.05;
  color: var(--plum);
}
h2 { font-size: clamp(36px, 5vw, 64px); }
h3 { font-size: clamp(24px, 3vw, 36px); }

.italic-accent { font-style: italic; font-weight: 300; color: var(--plum-soft); }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 28px;
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: -0.005em;
  border-radius: 999px;
  transition: all 0.3s var(--ease);
  position: relative;
  white-space: nowrap;
  border: 1px solid transparent;
}
.btn-primary {
  background: var(--plum);
  color: var(--cream);
}
.btn-primary:hover {
  background: var(--plum-deep);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(43,28,74,0.25);
}
.btn-peach {
  background: var(--peach);
  color: var(--plum-deep);
}
.btn-peach:hover {
  background: var(--peach-deep);
  color: var(--cream);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(229,107,71,0.3);
}
.btn-ghost {
  background: transparent;
  color: var(--plum);
  border-color: var(--line-strong);
}
.btn-ghost:hover {
  background: var(--plum);
  color: var(--cream);
  border-color: var(--plum);
}
.btn .arrow {
  transition: transform 0.3s var(--ease);
}
.btn:hover .arrow { transform: translateX(4px); }

/* ==========================================================
   ANNOUNCEMENT BAR
   ========================================================== */
.announce {
  background: var(--plum-deep);
  color: var(--cream);
  padding: 10px 0;
  font-size: 13px;
  text-align: center;
  position: relative;
  z-index: 10;
}
.announce-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  letter-spacing: 0.01em;
}
.announce .dot {
  width: 4px; height: 4px; border-radius: 50%;
  background: var(--peach);
  animation: pulse 2s ease-in-out infinite;
}
.announce strong { color: var(--peach); font-weight: 500; }
.announce a {
  border-bottom: 1px solid rgba(255,138,101,0.4);
  padding-bottom: 1px;
  transition: border-color 0.2s;
}
.announce a:hover { border-color: var(--peach); }

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

/* ==========================================================
   NAVIGATION
   ========================================================== */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(245,240,232,0.95);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid var(--line);
  padding: 18px 0;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.logo {
  font-family: var(--display);
  font-size: 24px;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--plum);
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
  text-decoration: none;
  position: relative;
  z-index: 62;
}
.logo .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--peach);
  display: inline-block;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-links a {
  font-size: 14px;
  color: var(--ink);
  transition: color 0.2s;
  position: relative;
  text-decoration: none;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -4px;
  height: 1px;
  background: var(--plum);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease);
}
.nav-links a:hover::after { transform: scaleX(1); }
.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}
.nav-login {
  font-size: 14px;
  color: var(--ink-soft);
  text-decoration: none;
}
.nav-login:hover { color: var(--plum); }

/* ---- HAMBURGER BUTTON (mobile only) ---- */
.nav-toggle {
  display: none;
  position: relative;
  width: 48px;
  height: 48px;
  background: transparent;
  border: none;
  padding: 0;
  cursor: pointer;
  z-index: 62;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}
.nav-toggle-box {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 24px;
  height: 16px;
}
.nav-toggle-box span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--plum);
  border-radius: 2px;
  transition: transform 0.3s var(--ease), opacity 0.2s var(--ease), top 0.3s var(--ease);
}
.nav-toggle-box span:nth-child(1) { top: 0; }
.nav-toggle-box span:nth-child(2) { top: 7px; }
.nav-toggle-box span:nth-child(3) { top: 14px; }

.nav-toggle[aria-expanded="true"] .nav-toggle-box span:nth-child(1) {
  top: 7px;
  transform: rotate(45deg);
}
.nav-toggle[aria-expanded="true"] .nav-toggle-box span:nth-child(2) {
  opacity: 0;
}
.nav-toggle[aria-expanded="true"] .nav-toggle-box span:nth-child(3) {
  top: 7px;
  transform: rotate(-45deg);
}

/* ---- MOBILE MENU (slide in from right, GPU-accelerated) ---- */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  background: #F5F0E8;
  z-index: 999;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  transform: translateX(100%);
  transition: transform 0.35s var(--ease);
  will-change: transform;
}
.mobile-menu.open {
  transform: translateX(0);
}

.mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  border-bottom: 1px solid var(--line);
  background: #F5F0E8;
  position: sticky;
  top: 0;
  z-index: 2;
}
.mobile-menu-logo {
  font-family: var(--display);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--plum);
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}
.mobile-menu-logo .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--peach);
}
.mobile-menu-logo em { font-style: italic; font-weight: 300; }

.mobile-menu-close {
  width: 48px;
  height: 48px;
  background: transparent;
  border: none;
  padding: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--plum);
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}
.mobile-menu-close svg {
  width: 22px;
  height: 22px;
}

.mobile-menu-inner {
  display: flex;
  flex-direction: column;
  max-width: 560px;
  margin: 0 auto;
  padding: 24px;
}
.mobile-menu-inner a {
  font-family: var(--display);
  font-size: 28px;
  font-weight: 400;
  color: var(--plum);
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
  letter-spacing: -0.015em;
  text-decoration: none;
  display: block;
  transition: color 0.2s;
}
.mobile-menu-inner a:active,
.mobile-menu-inner a:hover {
  color: var(--peach-deep);
}
.mobile-menu-inner a.mobile-menu-login {
  font-family: var(--sans);
  font-size: 15px;
  color: var(--ink-soft);
  margin-top: 28px;
  border-bottom: none;
  text-align: center;
  padding: 14px 0;
}
.mobile-menu-inner a.mobile-menu-cta {
  margin-top: 16px;
  font-family: var(--sans);
  font-size: 15px;
  padding: 18px 28px;
  border-bottom: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-align: center;
  border-radius: 999px;
  background: var(--peach);
  color: var(--plum-deep);
  font-weight: 500;
  transition: background 0.2s;
}
.mobile-menu-inner a.mobile-menu-cta:active {
  background: var(--peach-deep);
  color: var(--cream);
}

/* Lock body scroll when menu open — use simple overflow hidden, no position tricks */
body.menu-open {
  overflow: hidden;
}

/* ---- SHOW HAMBURGER, HIDE DESKTOP NAV ON SMALL SCREENS ---- */
@media (max-width: 960px) {
  .nav-links { display: none; }
  .nav-cta-desktop { display: none; }
  .nav-login { display: none; }
  .nav-toggle { display: block; }
}

/* ==========================================================
   HERO
   ========================================================== */
.hero {
  padding: 80px 0 120px;
  position: relative;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: center;
}
.hero-content {
  position: relative;
  z-index: 2;
}
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  background: var(--cream-deep);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 13px;
  color: var(--ink-soft);
  margin-bottom: 24px;
}
.hero-tag .badge {
  background: var(--plum);
  color: var(--cream);
  padding: 2px 8px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.04em;
}
.hero h1 {
  font-size: clamp(48px, 7vw, 92px);
  line-height: 0.98;
  letter-spacing: -0.035em;
  margin-bottom: 28px;
}
.hero h1 em {
  font-style: italic;
  font-weight: 300;
  color: var(--plum-soft);
}
.hero-sub {
  font-size: 19px;
  line-height: 1.55;
  color: var(--ink-soft);
  max-width: 520px;
  margin-bottom: 36px;
}
.hero-ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.hero-trust {
  display: flex;
  gap: 40px;
  align-items: flex-start;
  padding-top: 32px;
  border-top: 1px solid var(--line);
}
.trust-stat .num {
  font-family: var(--display);
  font-size: 28px;
  font-weight: 400;
  color: var(--plum);
  letter-spacing: -0.02em;
  line-height: 1;
}
.trust-stat .label {
  font-size: 12px;
  color: var(--ink-soft);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 6px;
}
.trust-stat .stars {
  color: var(--peach);
  font-size: 16px;
  letter-spacing: 2px;
  margin-bottom: 4px;
  line-height: 1;
}

/* HERO VISUAL */
.hero-visual {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: var(--radius-lg);
  overflow: visible;
}
.hero-visual .main-img {
  width: 100%;
  height: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--plum);
  position: relative;
  box-shadow: var(--shadow-lift);
}
.hero-visual .main-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Floating cards */
.float-card {
  position: absolute;
  background: var(--cream);
  border-radius: var(--radius);
  padding: 16px 18px;
  box-shadow: var(--shadow-card);
  display: flex;
  gap: 12px;
  align-items: center;
  animation: floaty 6s ease-in-out infinite;
}
.float-card-1 {
  top: 40px;
  left: -50px;
  animation-delay: 0s;
}
.float-card-2 {
  bottom: 60px;
  right: -40px;
  animation-delay: 2s;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  padding: 18px 20px;
  background: var(--plum);
  color: var(--cream);
}

@keyframes floaty {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.float-card .icon {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--sage);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.float-card-2 .icon {
  background: var(--peach);
}
.float-card .ft-label {
  font-size: 11px;
  color: var(--ink-faint);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 2px;
}
.float-card-2 .ft-label {
  color: rgba(245,240,232,0.6);
}
.float-card .ft-value {
  font-size: 15px;
  font-weight: 500;
  color: var(--plum);
  font-family: var(--display);
}
.float-card-2 .ft-value {
  color: var(--cream);
  font-size: 16px;
}
.float-card-2 .ft-big {
  font-family: var(--display);
  font-size: 32px;
  font-weight: 400;
  letter-spacing: -0.02em;
  color: var(--peach);
  line-height: 1;
}

/* Decorative elements behind hero */
.hero-deco {
  position: absolute;
  z-index: 0;
}
.hero-deco-1 {
  top: -120px;
  right: -200px;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(255,138,101,0.12), transparent 60%);
  pointer-events: none;
}
.hero-deco-2 {
  bottom: -100px;
  left: -200px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(43,28,74,0.08), transparent 60%);
  pointer-events: none;
}

@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 60px; }
  .hero-trust { gap: 24px; flex-wrap: wrap; }
  .float-card-1 { left: 10px; }
  .float-card-2 { right: 10px; }
}

/* ==========================================================
   TRUST STRIP
   ========================================================== */
.trust-strip {
  padding: 40px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--cream);
}
.trust-strip-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.trust-strip .label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--ink-faint);
}
.trust-items {
  display: flex;
  gap: 48px;
  align-items: center;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--ink-soft);
  letter-spacing: -0.005em;
}
.trust-item svg { color: var(--plum); flex-shrink: 0; }

/* ==========================================================
   SECTION — THE SMILE SHOULDN'T BE COMPLICATED
   ========================================================== */
.section-intro {
  padding: 140px 0 100px;
  position: relative;
}
.section-intro-head {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
  margin-bottom: 100px;
}
.section-intro h2 {
  font-size: clamp(40px, 5.5vw, 72px);
}
.section-intro-copy {
  font-size: 17px;
  line-height: 1.7;
  color: var(--ink-soft);
  max-width: 480px;
}
.section-intro-copy p + p { margin-top: 16px; }

.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.pillar {
  background: var(--cream);
  padding: 48px 40px 56px;
  transition: background 0.4s var(--ease);
  position: relative;
}
.pillar:hover { background: var(--cream-deep); }
.pillar .num {
  font-family: var(--display);
  font-size: 14px;
  color: var(--peach-deep);
  letter-spacing: 0.08em;
  margin-bottom: 32px;
  display: block;
}
.pillar h3 {
  font-size: 26px;
  line-height: 1.15;
  margin-bottom: 14px;
}
.pillar p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink-soft);
}
.pillar .icon-lg {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--sage);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
  color: var(--plum);
}
.pillar:nth-child(2) .icon-lg { background: var(--cream-deep); }
.pillar:nth-child(3) .icon-lg { background: rgba(255,138,101,0.25); }

@media (max-width: 900px) {
  .section-intro-head { grid-template-columns: 1fr; gap: 32px; margin-bottom: 60px; }
  .pillars { grid-template-columns: 1fr; }
}

/* ==========================================================
   PRICING / PLANS
   ========================================================== */
.pricing {
  padding: 140px 0;
  background: var(--plum);
  color: var(--cream);
  position: relative;
  overflow: hidden;
}
.pricing::before {
  content: "";
  position: absolute;
  top: -200px; right: -200px;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,138,101,0.1), transparent 70%);
  pointer-events: none;
}
.pricing h2, .pricing h3 { color: var(--cream); }
.pricing .eyebrow { color: var(--peach); }
.pricing-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: flex-end;
  margin-bottom: 80px;
}
.pricing-head h2 {
  font-size: clamp(40px, 5.5vw, 72px);
  letter-spacing: -0.035em;
}
.pricing-head-right p {
  font-size: 16px;
  color: rgba(245,240,232,0.7);
  line-height: 1.65;
}

.plans {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  position: relative;
  z-index: 2;
}
.plan {
  background: rgba(245,240,232,0.04);
  border: 1px solid rgba(245,240,232,0.1);
  border-radius: var(--radius-lg);
  padding: 40px 36px 36px;
  display: flex;
  flex-direction: column;
  transition: all 0.4s var(--ease);
  position: relative;
}
.plan:hover {
  background: rgba(245,240,232,0.06);
  transform: translateY(-4px);
}
.plan.featured {
  background: var(--cream);
  color: var(--ink);
  border-color: var(--cream);
  box-shadow: 0 24px 48px rgba(0,0,0,0.25);
}
.plan.featured h3 { color: var(--plum); }
.plan.featured .plan-hours,
.plan.featured .plan-months { color: var(--ink-soft); }
.plan.featured .plan-features li { color: var(--ink); }
.plan.featured .plan-from { color: var(--ink-faint); }
.plan.featured .plan-price { color: var(--plum); }
.plan.featured .plan-original { color: var(--ink-faint); }
.plan.featured .plan-mo { color: var(--ink-soft); }

.plan-tag {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--peach);
  color: var(--plum-deep);
  padding: 6px 16px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.plan h3 {
  font-size: 28px;
  margin-bottom: 8px;
}
.plan-hours {
  font-size: 13px;
  color: rgba(245,240,232,0.6);
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.plan-hours::before {
  content: "";
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--peach);
}
.plan-price-row {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 6px;
}
.plan-from {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(245,240,232,0.5);
  display: block;
  margin-bottom: 8px;
}
.plan-price {
  font-family: var(--display);
  font-size: 56px;
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 1;
  color: var(--cream);
}
.plan-original {
  font-size: 18px;
  color: rgba(245,240,232,0.4);
  text-decoration: line-through;
}
.plan-mo {
  font-size: 14px;
  color: rgba(245,240,232,0.6);
  margin-bottom: 28px;
}
.plan-mo strong {
  color: var(--peach);
  font-weight: 500;
}
.plan.featured .plan-mo strong { color: var(--peach-deep); }
.plan-months {
  font-size: 13px;
  color: rgba(245,240,232,0.7);
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.plan-features {
  margin-bottom: 32px;
  flex-grow: 1;
}
.plan-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 10px 0;
  font-size: 14px;
  border-bottom: 1px solid rgba(245,240,232,0.08);
}
.plan.featured .plan-features li {
  border-bottom-color: var(--line);
}
.plan-features li:last-child { border-bottom: none; }
.plan-features li svg {
  color: var(--peach);
  flex-shrink: 0;
  margin-top: 2px;
}
.plan.featured .plan-features li svg { color: var(--peach-deep); }

.plan .btn {
  width: 100%;
}
.plan:not(.featured) .btn {
  background: var(--cream);
  color: var(--plum);
}
.plan:not(.featured) .btn:hover {
  background: var(--peach);
  color: var(--plum-deep);
}

.pricing-assurance {
  margin-top: 48px;
  text-align: center;
  font-size: 14px;
  color: rgba(245,240,232,0.6);
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}
.pricing-assurance div {
  display: flex;
  align-items: center;
  gap: 8px;
}
.pricing-assurance svg { color: var(--peach); }

@media (max-width: 900px) {
  .pricing-head { grid-template-columns: 1fr; gap: 32px; margin-bottom: 48px; }
  .plans { grid-template-columns: 1fr; gap: 16px; }
}

/* ==========================================================
   RESULTS / CUSTOMER GALLERY
   ========================================================== */
.results {
  padding: 140px 0;
  position: relative;
}
.results-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: flex-end;
  margin-bottom: 80px;
}
.results-head h2 {
  font-size: clamp(40px, 5.5vw, 72px);
}
.results-head p {
  font-size: 16px;
  color: var(--ink-soft);
  line-height: 1.7;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 280px);
  gap: 16px;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--cream-deep);
  cursor: pointer;
  transition: transform 0.5s var(--ease);
}
.gallery-item:hover { transform: translateY(-4px); }
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item .caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 32px 20px 16px;
  background: linear-gradient(to top, rgba(26,16,50,0.85), transparent);
  color: var(--cream);
}
.gallery-item .caption .name {
  font-family: var(--display);
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 2px;
}
.gallery-item .caption .time {
  font-size: 12px;
  color: rgba(245,240,232,0.7);
  letter-spacing: 0.04em;
}
.gallery-item.tall { grid-row: span 2; }
.gallery-item.wide { grid-column: span 2; }

@media (max-width: 900px) {
  .results-head { grid-template-columns: 1fr; gap: 24px; margin-bottom: 48px; }
  .gallery { grid-template-columns: repeat(2, 1fr); grid-template-rows: auto; }
  .gallery-item { aspect-ratio: 1; height: auto; }
  .gallery-item.tall, .gallery-item.wide { grid-column: auto; grid-row: auto; }
}

/* ==========================================================
   PROCESS / HOW IT WORKS
   ========================================================== */
.process {
  padding: 140px 0;
  background: var(--cream-deep);
  position: relative;
}
.process-head {
  text-align: center;
  margin-bottom: 80px;
}
.process-head h2 {
  max-width: 800px;
  margin: 16px auto 0;
}
.process-head .eyebrow { justify-content: center; }
.process-head .eyebrow::before { display: none; }

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  position: relative;
}
.steps::before {
  content: "";
  position: absolute;
  top: 40px;
  left: 10%;
  right: 10%;
  height: 1px;
  border-top: 1px dashed var(--line-strong);
  z-index: 0;
}
.step {
  position: relative;
  z-index: 2;
  text-align: center;
}
.step-num {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--cream);
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-family: var(--display);
  font-size: 32px;
  color: var(--plum);
  transition: all 0.4s var(--ease);
}
.step:hover .step-num {
  background: var(--plum);
  color: var(--cream);
  transform: scale(1.05);
}
.step h4 {
  font-size: 20px;
  margin-bottom: 10px;
}
.step p {
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.6;
  max-width: 220px;
  margin: 0 auto;
}

@media (max-width: 900px) {
  .steps { grid-template-columns: 1fr 1fr; gap: 40px; }
  .steps::before { display: none; }
}

/* ==========================================================
   DOCTORS / EXPERT CARE
   ========================================================== */
.doctors {
  padding: 140px 0;
  position: relative;
}
.doctors-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: center;
}
.doctors-copy h2 {
  margin-bottom: 24px;
}
.doctors-copy p {
  font-size: 17px;
  line-height: 1.7;
  color: var(--ink-soft);
  margin-bottom: 16px;
  max-width: 480px;
}
.doctors-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
  padding-top: 40px;
  border-top: 1px solid var(--line);
}
.doctors-stats .trust-stat .num { font-size: 36px; }

.doctors-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.doctor-card {
  background: var(--cream-deep);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: transform 0.4s var(--ease);
}
.doctor-card:hover { transform: translateY(-6px); }
.doctor-card:first-child { margin-top: 40px; }
.doctor-photo {
  aspect-ratio: 1;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--sage);
  margin-bottom: 20px;
  position: relative;
}
.doctor-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.doctor-card h4 {
  font-size: 22px;
  margin-bottom: 4px;
}
.doctor-title {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--peach-deep);
  margin-bottom: 16px;
}
.doctor-card p {
  font-size: 13px;
  line-height: 1.6;
  color: var(--ink-soft);
}
.doctor-licenses {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.doctor-licenses span {
  font-size: 11px;
  background: var(--cream);
  padding: 4px 10px;
  border-radius: 999px;
  color: var(--ink-soft);
  letter-spacing: 0.04em;
}

@media (max-width: 900px) {
  .doctors-grid { grid-template-columns: 1fr; gap: 48px; }
  .doctor-card:first-child { margin-top: 0; }
}

/* ==========================================================
   TESTIMONIALS
   ========================================================== */
.testimonials {
  padding: 140px 0;
  background: var(--sage);
  position: relative;
}
.testimonials-head {
  max-width: 700px;
  margin: 0 auto 80px;
  text-align: center;
}
.testimonials-head h2 { margin-top: 16px; }
.testimonials-head .eyebrow { justify-content: center; }
.testimonials-head .eyebrow::before { display: none; }

.tests-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.test-card {
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  transition: transform 0.4s var(--ease);
}
.test-card:hover { transform: translateY(-4px); }
.test-card:nth-child(2) { transform: translateY(30px); }
.test-card:nth-child(2):hover { transform: translateY(26px); }
.test-stars {
  color: var(--peach-deep);
  font-size: 14px;
  letter-spacing: 3px;
  margin-bottom: 20px;
}
.test-quote {
  font-family: var(--display);
  font-size: 20px;
  line-height: 1.45;
  color: var(--plum);
  letter-spacing: -0.015em;
  margin-bottom: 32px;
  flex-grow: 1;
}
.test-author {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}
.test-author .avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--sage);
  font-family: var(--display);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: var(--plum);
  font-weight: 500;
}
.test-author .author-info .name {
  font-size: 15px;
  font-weight: 500;
  color: var(--ink);
}
.test-author .author-info .meta {
  font-size: 12px;
  color: var(--ink-soft);
  margin-top: 2px;
}

@media (max-width: 900px) {
  .tests-grid { grid-template-columns: 1fr; }
  .test-card:nth-child(2) { transform: none; }
  .test-card:nth-child(2):hover { transform: translateY(-4px); }
}

/* ==========================================================
   FAQ
   ========================================================== */
.faq {
  padding: 140px 0;
  position: relative;
}
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 80px;
  align-items: start;
}
.faq-head h2 { margin-bottom: 24px; }
.faq-head p {
  font-size: 15px;
  color: var(--ink-soft);
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 360px;
}
.faq-contact {
  padding: 24px;
  background: var(--cream-deep);
  border-radius: var(--radius);
  border: 1px solid var(--line);
}
.faq-contact .lbl {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin-bottom: 10px;
}
.faq-contact a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  font-size: 15px;
  color: var(--plum);
  font-weight: 500;
  transition: color 0.2s;
}
.faq-contact a:hover { color: var(--peach-deep); }
.faq-contact svg { color: var(--plum-soft); }

.faq-list { border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-question {
  width: 100%;
  padding: 28px 0;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  transition: color 0.2s;
}
.faq-question:hover { color: var(--peach-deep); }
.faq-question-text {
  font-family: var(--display);
  font-size: 22px;
  font-weight: 400;
  color: var(--plum);
  letter-spacing: -0.015em;
}
.faq-toggle {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--cream-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s var(--ease);
}
.faq-item.open .faq-toggle {
  background: var(--plum);
  color: var(--cream);
  transform: rotate(45deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease);
}
.faq-item.open .faq-answer { max-height: 400px; }
.faq-answer-inner {
  padding: 0 0 28px;
  max-width: 620px;
  font-size: 15px;
  line-height: 1.7;
  color: var(--ink-soft);
}

@media (max-width: 900px) {
  .faq-grid { grid-template-columns: 1fr; gap: 48px; }
  .faq-question-text { font-size: 18px; }
}

/* ==========================================================
   FINAL CTA
   ========================================================== */
.final-cta {
  padding: 120px 0;
  position: relative;
}
.final-cta-inner {
  background: var(--plum);
  color: var(--cream);
  border-radius: var(--radius-lg);
  padding: 80px 60px;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.final-cta-inner::before {
  content: "";
  position: absolute;
  top: -100px; right: -100px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,138,101,0.2), transparent 70%);
  pointer-events: none;
}
.final-cta h2 {
  color: var(--cream);
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1;
  margin-bottom: 24px;
}
.final-cta h2 em { color: var(--peach); font-style: italic; font-weight: 300; }
.final-cta p {
  font-size: 17px;
  line-height: 1.6;
  color: rgba(245,240,232,0.75);
  margin-bottom: 36px;
  max-width: 460px;
}
.final-cta-ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.final-cta-ctas .btn-primary {
  background: var(--peach);
  color: var(--plum-deep);
}
.final-cta-ctas .btn-primary:hover {
  background: var(--cream);
  color: var(--plum);
}
.final-cta-ctas .btn-ghost {
  color: var(--cream);
  border-color: rgba(245,240,232,0.3);
}
.final-cta-ctas .btn-ghost:hover {
  background: rgba(245,240,232,0.1);
  border-color: var(--cream);
  color: var(--cream);
}
.final-cta-visual {
  aspect-ratio: 4/5;
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  z-index: 2;
}
.final-cta-visual img {
  width: 100%; height: 100%;
  object-fit: cover;
}

@media (max-width: 900px) {
  .final-cta-inner { grid-template-columns: 1fr; padding: 48px 32px; }
}

/* ==========================================================
   FOOTER
   ========================================================== */
.footer {
  background: var(--plum-deep);
  color: rgba(245,240,232,0.7);
  padding: 80px 0 40px;
  position: relative;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 60px;
}
.footer-brand .logo { color: var(--cream); margin-bottom: 20px; }
.footer-brand p {
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 24px;
  max-width: 340px;
}
.footer-socials {
  display: flex;
  gap: 10px;
}
.footer-socials a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(245,240,232,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s var(--ease);
  color: var(--cream);
}
.footer-socials a:hover {
  background: var(--peach);
  color: var(--plum-deep);
}

.footer-col h5 {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cream);
  margin-bottom: 20px;
}
.footer-col ul li {
  margin-bottom: 10px;
}
.footer-col a {
  font-size: 14px;
  color: rgba(245,240,232,0.6);
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--peach); }

.footer-bottom {
  padding-top: 32px;
  border-top: 1px solid rgba(245,240,232,0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 12px;
  color: rgba(245,240,232,0.45);
}

@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

/* ==========================================================
   CANDIDATE ASSESSMENT
   ========================================================== */
.assessment {
  padding: 140px 0;
  position: relative;
  background: var(--cream);
}
.assessment::before {
  content: "";
  position: absolute;
  top: 80px; right: -150px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,138,101,0.1), transparent 70%);
  pointer-events: none;
}
.assessment-head {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 60px;
  position: relative;
  z-index: 2;
}
.assessment-head .eyebrow { justify-content: center; }
.assessment-head .eyebrow::before { display: none; }
.assessment-head h2 {
  font-size: clamp(40px, 5vw, 64px);
  margin: 16px 0 20px;
}
.assessment-intro {
  font-size: 17px;
  color: var(--ink-soft);
  line-height: 1.65;
}

.assessment-card {
  max-width: 820px;
  margin: 0 auto;
  background: var(--cream-deep);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 56px 56px 48px;
  box-shadow: var(--shadow-lift);
  position: relative;
  z-index: 2;
}

.assessment-progress { margin-bottom: 48px; }
.progress-stats {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-faint);
}
.progress-stats .progress-percent {
  color: var(--plum);
  font-family: var(--display);
  font-size: 14px;
  font-weight: 500;
}
.progress-bar {
  height: 4px;
  background: var(--line);
  border-radius: 999px;
  overflow: hidden;
}
.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--plum), var(--peach));
  border-radius: 999px;
  width: 16.66%;
  transition: width 0.6s var(--ease);
}

.questions {
  position: relative;
  min-height: 280px;
}
.question {
  position: absolute;
  top: 0; left: 0; right: 0;
  opacity: 0;
  pointer-events: none;
  transform: translateX(24px);
  transition: opacity 0.4s var(--ease), transform 0.4s var(--ease);
}
.question.active {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0);
  position: relative;
}
.q-num {
  font-family: var(--display);
  font-size: 14px;
  color: var(--peach-deep);
  letter-spacing: 0.08em;
  margin-bottom: 18px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.q-num::before {
  content: "";
  width: 20px;
  height: 1px;
  background: var(--peach-deep);
}
.q-text {
  font-family: var(--display);
  font-size: clamp(22px, 2.6vw, 32px);
  line-height: 1.18;
  color: var(--plum);
  letter-spacing: -0.02em;
  margin-bottom: 12px;
  font-weight: 400;
}
.q-help {
  font-size: 14px;
  color: var(--ink-soft);
  margin-bottom: 32px;
  line-height: 1.55;
  max-width: 560px;
}
.q-options {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.q-opt {
  padding: 14px 26px;
  background: var(--cream);
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 500;
  color: var(--plum);
  letter-spacing: -0.005em;
  transition: all 0.25s var(--ease);
  cursor: pointer;
}
.q-opt:hover {
  background: var(--plum);
  color: var(--cream);
  border-color: var(--plum);
  transform: translateY(-2px);
}
.q-opt.selected {
  background: var(--plum);
  color: var(--cream);
  border-color: var(--plum);
}

.assessment-result {
  text-align: center;
  padding: 8px 0;
  animation: resultIn 0.6s var(--ease);
}
@keyframes resultIn {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}
.result-badge {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--sage);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  font-size: 30px;
}
.result-badge.excellent { background: var(--peach); }
.result-badge.likely    { background: var(--sage); }
.result-badge.consult   { background: var(--cream); border: 1px solid var(--line-strong); }
.result-title {
  font-family: var(--display);
  font-size: clamp(28px, 4vw, 42px);
  color: var(--plum);
  letter-spacing: -0.025em;
  margin-bottom: 16px;
  line-height: 1.1;
  font-weight: 400;
}
.result-desc {
  font-size: 16px;
  color: var(--ink-soft);
  line-height: 1.6;
  max-width: 520px;
  margin: 0 auto 32px;
}
.result-ctas {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}
.result-restart {
  background: transparent;
  color: var(--ink-soft);
  font-size: 13px;
  border: 1px solid var(--line-strong);
  padding: 14px 24px;
  border-radius: 999px;
  transition: all 0.25s var(--ease);
}
.result-restart:hover { background: var(--cream); color: var(--plum); }

@media (max-width: 700px) {
  .assessment-card { padding: 36px 24px 32px; }
  .q-options { flex-direction: column; width: 100%; }
  .q-opt { width: 100%; text-align: center; }
}

/* ==========================================================
   STICKY MOBILE CTA
   ========================================================== */
.sticky-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 40;
  background: rgba(245,240,232,0.96);
  backdrop-filter: saturate(180%) blur(16px);
  -webkit-backdrop-filter: saturate(180%) blur(16px);
  border-top: 1px solid var(--line);
  padding: 12px 16px calc(12px + env(safe-area-inset-bottom, 0px));
  transform: translateY(100%);
  transition: transform 0.4s var(--ease);
  display: none;
}
.sticky-cta.visible { transform: translateY(0); }
.sticky-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  max-width: 560px;
  margin: 0 auto;
}
.sticky-cta-price {
  display: flex;
  flex-direction: column;
  line-height: 1;
  flex-shrink: 0;
}
.sticky-label {
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin-bottom: 4px;
}
.sticky-amt {
  font-family: var(--display);
  font-size: 22px;
  color: var(--plum);
  letter-spacing: -0.02em;
}
.sticky-btn {
  flex-grow: 1;
  padding: 14px 18px;
  font-size: 14px;
  white-space: nowrap;
}

@media (max-width: 960px) {
  .sticky-cta { display: block; }
}

/* ==========================================================
   MOBILE OPTIMIZATIONS (consolidated)
   ========================================================== */

/* --- Tablet & below --- */
@media (max-width: 900px) {
  .container {
    padding: 0 24px;
  }

  /* Reduce excessive vertical padding */
  .hero { padding: 56px 0 72px; }
  .section-intro { padding: 80px 0 64px; }
  .assessment { padding: 72px 0; }
  .pricing { padding: 80px 0; }
  .results { padding: 80px 0; }
  .process { padding: 80px 0; }
  .doctors { padding: 80px 0; }
  .testimonials { padding: 80px 0; }
  .faq { padding: 80px 0; }
  .final-cta { padding: 72px 0 120px; } /* extra bottom padding for sticky CTA */

  /* Hide decorative background blobs to prevent horizontal scroll */
  .hero-deco-1 { right: -300px; opacity: 0.6; }
  .hero-deco-2 { left: -300px; opacity: 0.6; }
}

/* --- Phones --- */
@media (max-width: 640px) {
  .container {
    padding: 0 20px;
  }

  /* Announcement bar — more compact */
  .announce {
    padding: 8px 0;
    font-size: 12px;
  }
  .announce-inner {
    flex-wrap: wrap;
    gap: 8px;
    line-height: 1.3;
  }

  /* Nav padding tighter */
  .nav { padding: 14px 0; }
  .logo { font-size: 20px; }

  /* Mobile menu tighter type on small screens */
  .mobile-menu { padding-top: 88px; }
  .mobile-menu-inner a { font-size: 24px; padding: 18px 0; }

  /* HERO — more breathing room, smaller H1 */
  .hero { padding: 40px 0 56px; }
  .hero-grid { gap: 48px; }
  .hero h1 {
    font-size: clamp(40px, 11vw, 56px);
    line-height: 1.02;
    letter-spacing: -0.03em;
  }
  .hero-sub { font-size: 16px; margin-bottom: 28px; }
  .hero-tag {
    font-size: 12px;
    padding: 6px 12px;
    gap: 8px;
  }
  .hero-tag .badge { font-size: 10px; }
  .hero-ctas {
    flex-direction: column;
    gap: 10px;
    width: 100%;
  }
  .hero-ctas .btn {
    width: 100%;
    padding: 16px 24px;
    justify-content: center;
  }
  .hero-trust {
    gap: 20px;
    padding-top: 24px;
  }
  .trust-stat .num { font-size: 22px; }
  .trust-stat .label { font-size: 11px; }

  /* Hero visual — tame float cards */
  .hero-visual {
    aspect-ratio: 1;
    max-width: 100%;
  }
  .float-card {
    padding: 12px 14px;
    font-size: 12px;
    max-width: 200px;
  }
  .float-card-1 { top: 20px; left: 0; }
  .float-card-2 {
    bottom: 20px; right: 0;
    padding: 14px 16px;
  }
  .float-card .icon { width: 32px; height: 32px; }
  .float-card-2 .ft-big { font-size: 24px; }
  .float-card .ft-label { font-size: 10px; }
  .float-card .ft-value { font-size: 13px; }
  .float-card-2 .ft-value { font-size: 13px; }

  /* Trust strip — collapse to compact grid */
  .trust-strip { padding: 28px 0; }
  .trust-strip-inner { gap: 20px; }
  .trust-strip .label {
    width: 100%;
    text-align: center;
    font-size: 11px;
  }
  .trust-items {
    gap: 20px 28px;
    justify-content: center;
    width: 100%;
  }
  .trust-item { font-size: 13px; }

  /* Section intro */
  .section-intro h2 { font-size: clamp(32px, 8vw, 44px); }
  .section-intro-copy { font-size: 15px; }
  .section-intro-head { margin-bottom: 48px; }

  /* Pillars — tighter padding */
  .pillar { padding: 32px 24px 36px; }
  .pillar h3 { font-size: 22px; }
  .pillar p { font-size: 14px; }
  .pillar .icon-lg { width: 48px; height: 48px; margin-bottom: 20px; }

  /* ASSESSMENT FORM — mobile critical */
  .assessment-card {
    padding: 28px 20px 24px;
    border-radius: 16px;
  }
  .assessment-head h2 { font-size: clamp(30px, 7.5vw, 42px); }
  .assessment-intro { font-size: 15px; }
  .q-num { font-size: 12px; }
  .q-text { font-size: clamp(19px, 5vw, 24px); }
  .q-help { font-size: 13px; margin-bottom: 24px; }
  .q-options {
    flex-direction: column;
    width: 100%;
    gap: 10px;
  }
  .q-opt {
    width: 100%;
    text-align: center;
    padding: 16px 20px;
    font-size: 14px;
  }
  .questions { min-height: 240px; }
  .progress-stats { font-size: 10px; }
  .result-badge { width: 60px; height: 60px; font-size: 24px; }
  .result-title { font-size: clamp(24px, 6vw, 32px); }
  .result-desc { font-size: 14px; margin-bottom: 24px; }
  .result-ctas { flex-direction: column; gap: 10px; }
  .result-ctas .btn { width: 100%; justify-content: center; }
  .result-restart { width: 100%; }

  /* Pricing */
  .pricing-head h2 { font-size: clamp(32px, 8vw, 44px); }
  .plan { padding: 32px 24px 28px; }
  .plan h3 { font-size: 24px; }
  .plan-price { font-size: 44px; }
  .pricing-assurance {
    flex-direction: column;
    gap: 12px;
    align-items: center;
  }

  /* Results gallery — 1 col on very small, 2 col on larger phones */
  .results-head h2 { font-size: clamp(32px, 8vw, 44px); }
  .gallery {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
  .gallery-item.tall, .gallery-item.wide {
    grid-column: auto;
    grid-row: auto;
  }
  .gallery-item { aspect-ratio: 1; height: auto; }
  .gallery-item .caption { padding: 24px 14px 12px; }
  .gallery-item .caption .name { font-size: 14px; }
  .gallery-item .caption .time { font-size: 11px; }

  /* Process steps */
  .steps { gap: 32px; }
  .step-num { width: 64px; height: 64px; font-size: 26px; margin-bottom: 18px; }
  .step h4 { font-size: 18px; }
  .step p { font-size: 13px; max-width: 180px; }
  .process-head { margin-bottom: 48px; }
  .process-head h2 { font-size: clamp(28px, 7.5vw, 40px); }

  /* Doctors */
  .doctors-copy h2 { font-size: clamp(32px, 8vw, 44px); }
  .doctors-copy p { font-size: 15px; }
  .doctors-stats { margin-top: 32px; padding-top: 28px; gap: 16px; }
  .doctors-stats .trust-stat .num { font-size: 26px; }
  .doctor-card { padding: 22px; }
  .doctor-card h4 { font-size: 20px; }
  .doctor-card p { font-size: 13px; }

  /* Testimonials */
  .testimonials-head h2 { font-size: clamp(30px, 7.5vw, 42px); }
  .test-card { padding: 28px 24px; }
  .test-quote { font-size: 17px; }

  /* FAQ */
  .faq-head h2 { font-size: clamp(32px, 8vw, 44px); }
  .faq-question { padding: 22px 0; gap: 16px; }
  .faq-question-text { font-size: 17px; }
  .faq-toggle { width: 32px; height: 32px; }
  .faq-answer-inner { font-size: 14px; padding-bottom: 22px; }
  .faq-contact { padding: 20px; }

  /* Final CTA */
  .final-cta { padding: 56px 0 100px; }
  .final-cta-inner {
    padding: 40px 24px;
    gap: 32px;
    border-radius: 20px;
  }
  .final-cta h2 { font-size: clamp(30px, 7.5vw, 42px); }
  .final-cta p { font-size: 15px; margin-bottom: 28px; }
  .final-cta-ctas {
    flex-direction: column;
    gap: 10px;
  }
  .final-cta-ctas .btn {
    width: 100%;
    justify-content: center;
  }
  .final-cta-visual { aspect-ratio: 1; }

  /* Footer */
  .footer { padding: 56px 0 120px; } /* extra bottom padding for sticky CTA */
  .footer-grid { gap: 36px; margin-bottom: 40px; }
  .footer-brand p { font-size: 13px; }
  .footer-col h5 { font-size: 11px; margin-bottom: 14px; }
  .footer-col a { font-size: 13px; }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    text-align: left;
  }
}

/* --- Small phones (iPhone SE, older Androids) --- */
@media (max-width: 400px) {
  .container { padding: 0 16px; }
  .hero h1 { font-size: 38px; }
  .hero-sub { font-size: 15px; }
  .section-intro h2,
  .pricing-head h2,
  .results-head h2,
  .testimonials-head h2,
  .faq-head h2,
  .final-cta h2,
  .doctors-copy h2,
  .assessment-head h2,
  .process-head h2 {
    font-size: 30px;
  }
  .announce { font-size: 11px; }
  .plan-price { font-size: 38px; }
  .btn { padding: 14px 22px; font-size: 14px; }
  .sticky-btn { font-size: 13px; padding: 13px 14px; }
  .sticky-amt { font-size: 20px; }
  .gallery-item .caption { padding: 20px 12px 10px; }
}

/* --- Tiny screens fallback --- */
@media (max-width: 340px) {
  .hero h1 { font-size: 34px; }
  .sticky-cta-price { display: none; }
  .sticky-btn { padding: 14px 16px; }
}

/* --- Respect user motion preferences --- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .float-card { animation: none; }
  .announce .dot { animation: none; }
}

/* --- iOS Safari: prevent zoom on input focus --- */
@supports (-webkit-touch-callout: none) {
  input, select, textarea, button {
    font-size: 16px;
  }
}

/* --- Improve tap targets on touch devices --- */
@media (hover: none) and (pointer: coarse) {
  .nav-links a::after { display: none; }
  .btn { min-height: 48px; }
  .q-opt { min-height: 48px; }
  .faq-question { min-height: 56px; }
  /* Disable hover transforms on touch to prevent sticky states */
  .gallery-item:hover { transform: none; }
  .pillar:hover { background: var(--cream); }
  .test-card:hover { transform: none; }
  .test-card:nth-child(2):hover { transform: translateY(30px); }
  .plan:hover { transform: none; }
  .doctor-card:hover { transform: none; }
}

/* --- Prevent horizontal scroll globally --- */
html, body { overflow-x: hidden; max-width: 100%; }

/* ==========================================================
   REVEAL ANIMATIONS
   ========================================================== */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}
.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; }
/* ==========================================================
   INTERNAL PAGE STYLES (added for subpages)
   ========================================================== */

/* Page hero — smaller than homepage hero, centered */
.page-hero {
  padding: 100px 0 80px;
  position: relative;
  overflow: hidden;
  background: var(--cream);
}
.page-hero.dark {
  background: var(--plum);
  color: var(--cream);
}
.page-hero.dark h1,
.page-hero.dark .eyebrow { color: var(--cream); }
.page-hero.dark .page-hero-sub { color: rgba(245,240,232,0.75); }

.page-hero-inner {
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 2;
}
.page-hero-inner .eyebrow {
  justify-content: center;
  margin-bottom: 20px;
}
.page-hero-inner .eyebrow::before { display: none; }
.page-hero h1 {
  font-size: clamp(42px, 6.5vw, 84px);
  line-height: 1.02;
  letter-spacing: -0.03em;
  margin-bottom: 28px;
}
.page-hero h1 em {
  font-style: italic;
  font-weight: 300;
  color: var(--plum-soft);
}
.page-hero-sub {
  font-size: clamp(16px, 1.4vw, 19px);
  line-height: 1.55;
  color: var(--ink-soft);
  max-width: 620px;
  margin: 0 auto 36px;
}
.page-hero-ctas {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Active nav state */
.nav-links a.active {
  color: var(--plum);
  font-weight: 500;
}
.nav-links a.active::after {
  transform: scaleX(1);
}

/* Blog grid */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.blog-card {
  background: var(--cream-deep);
  padding: 36px 32px 40px;
  border-radius: var(--radius-lg);
  cursor: pointer;
  transition: transform 0.4s var(--ease), background 0.4s var(--ease);
  display: flex;
  flex-direction: column;
}
.blog-card:hover {
  background: var(--plum);
  color: var(--cream);
  transform: translateY(-6px);
}
.blog-card:hover .blog-title { color: var(--cream); }
.blog-card:hover .blog-excerpt { color: rgba(245,240,232,0.75); }
.blog-card:hover .blog-meta { color: var(--peach); }
.blog-card:hover .blog-read { color: var(--peach); }
.blog-meta {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--peach-deep);
  margin-bottom: 24px;
  transition: color 0.4s var(--ease);
}
.blog-title {
  font-family: var(--display);
  font-size: 22px;
  line-height: 1.2;
  color: var(--plum);
  letter-spacing: -0.015em;
  margin-bottom: 16px;
  transition: color 0.4s var(--ease);
  font-weight: 400;
}
.blog-excerpt {
  font-size: 14px;
  line-height: 1.55;
  color: var(--ink-soft);
  margin-bottom: 28px;
  flex-grow: 1;
  transition: color 0.4s var(--ease);
}
.blog-read {
  font-size: 13px;
  font-weight: 500;
  color: var(--plum);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color 0.4s var(--ease);
}

@media (max-width: 900px) {
  .blog-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
}
@media (max-width: 640px) {
  .blog-grid { grid-template-columns: 1fr; }
  .blog-card { padding: 28px 24px 32px; }
  .blog-title { font-size: 20px; }
}

/* Legal page styling */
.legal-page {
  padding: 80px 0 120px;
}
.legal-container {
  max-width: 780px;
}
.legal-page h2 {
  font-family: var(--display);
  font-size: 26px;
  font-weight: 400;
  color: var(--plum);
  letter-spacing: -0.015em;
  margin-top: 48px;
  margin-bottom: 16px;
  line-height: 1.2;
}
.legal-page h2:first-child { margin-top: 0; }
.legal-page p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink-soft);
  margin-bottom: 16px;
}
.legal-page a {
  color: var(--peach-deep);
  border-bottom: 1px solid rgba(229,107,71,0.3);
  transition: border-color 0.2s;
}
.legal-page a:hover { border-color: var(--peach-deep); }

@media (max-width: 640px) {
  .legal-page { padding: 48px 0 80px; }
  .legal-page h2 { font-size: 22px; margin-top: 36px; }
  .legal-page p { font-size: 15px; }
}

/* Contact form */
.contact-form {
  margin-top: 24px;
  max-width: 520px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}
.form-field {
  margin-bottom: 16px;
  display: flex;
  flex-direction: column;
}
.form-row .form-field { margin-bottom: 0; }
.form-field label {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(245,240,232,0.6);
  margin-bottom: 8px;
}
.form-field input,
.form-field textarea {
  font-family: var(--sans);
  font-size: 16px;
  color: var(--cream);
  background: rgba(245,240,232,0.08);
  border: 1px solid rgba(245,240,232,0.15);
  border-radius: var(--radius);
  padding: 14px 16px;
  transition: border-color 0.2s, background 0.2s;
  -webkit-appearance: none;
}
.form-field input:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--peach);
  background: rgba(245,240,232,0.12);
}
.form-field textarea {
  resize: vertical;
  min-height: 120px;
  font-family: var(--sans);
}
.contact-form button {
  margin-top: 8px;
}

@media (max-width: 640px) {
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .form-row .form-field { margin-bottom: 16px; }
  .contact-form button { width: 100%; }
}

/* Page-hero mobile adjustments */
@media (max-width: 640px) {
  .page-hero { padding: 56px 0 48px; }
  .page-hero h1 { font-size: clamp(34px, 9vw, 48px); }
  .page-hero-ctas { flex-direction: column; width: 100%; }
  .page-hero-ctas .btn { width: 100%; justify-content: center; }
}

/* ==========================================================
   BLOG POST (article) STYLES
   ========================================================== */

.blog-post-header {
  padding: 64px 0 48px;
  border-bottom: 1px solid var(--line);
  background: var(--cream);
}
.blog-post-container {
  max-width: 1100px;
}
.blog-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--ink-soft);
  letter-spacing: 0.02em;
  margin-bottom: 32px;
  transition: color 0.2s;
  text-decoration: none;
}
.blog-back:hover { color: var(--peach-deep); }

.blog-post-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  font-size: 12px;
  color: var(--ink-faint);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.blog-post-category {
  color: var(--peach-deep);
  font-weight: 500;
}
.blog-post-dot {
  color: var(--line-strong);
}

.blog-post-header h1 {
  font-family: var(--display);
  font-size: clamp(36px, 5.5vw, 60px);
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--plum);
  max-width: 860px;
  font-weight: 400;
}

.blog-post-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 80px;
  padding: 64px 0 80px;
  align-items: start;
}

.blog-toc {
  position: sticky;
  top: 100px;
  align-self: start;
}
.toc-inner {
  padding: 24px;
  background: var(--cream-deep);
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
}
.toc-label {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin-bottom: 16px;
  font-weight: 500;
}
.blog-toc ol {
  list-style: none;
  padding: 0;
  margin: 0;
  counter-reset: toc-counter;
}
.blog-toc li {
  counter-increment: toc-counter;
  padding: 8px 0;
  border-bottom: 1px solid var(--line);
  font-size: 14px;
  line-height: 1.4;
  position: relative;
  padding-left: 28px;
}
.blog-toc li:last-child { border-bottom: none; padding-bottom: 0; }
.blog-toc li::before {
  content: counter(toc-counter, decimal-leading-zero);
  position: absolute;
  left: 0;
  top: 8px;
  font-family: var(--display);
  font-size: 12px;
  color: var(--peach-deep);
  font-weight: 500;
  letter-spacing: 0.02em;
}
.blog-toc a {
  color: var(--ink-soft);
  transition: color 0.2s;
  text-decoration: none;
}
.blog-toc a:hover { color: var(--plum); }

.toc-cta {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}
.toc-cta .btn {
  width: 100%;
  justify-content: center;
  font-size: 13px;
  padding: 12px 20px;
}

/* Article body */
.blog-post-body {
  max-width: 680px;
  font-size: 17px;
  line-height: 1.75;
  color: var(--ink);
}
.blog-post-body p {
  margin-bottom: 24px;
  color: var(--ink-soft);
}
.blog-post-body p.blog-lede {
  font-family: var(--display);
  font-size: 22px;
  line-height: 1.5;
  font-weight: 400;
  color: var(--plum);
  letter-spacing: -0.01em;
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--line);
}
.blog-post-body p strong {
  color: var(--ink);
  font-weight: 500;
}
.blog-post-body h2 {
  font-family: var(--display);
  font-size: clamp(26px, 3.2vw, 34px);
  line-height: 1.15;
  color: var(--plum);
  letter-spacing: -0.02em;
  margin-top: 56px;
  margin-bottom: 20px;
  font-weight: 400;
  scroll-margin-top: 96px;
}
.blog-post-body h3 {
  font-family: var(--display);
  font-size: 22px;
  color: var(--plum);
  letter-spacing: -0.015em;
  margin-top: 32px;
  margin-bottom: 12px;
  font-weight: 400;
  line-height: 1.2;
}
.blog-post-body a {
  color: var(--peach-deep);
  border-bottom: 1px solid rgba(229,107,71,0.35);
  transition: border-color 0.2s;
  text-decoration: none;
}
.blog-post-body a:hover {
  border-color: var(--peach-deep);
}
.blog-post-body ul.blog-bullets,
.blog-post-body ol.blog-bullets {
  margin: 0 0 28px 0;
  padding-left: 24px;
}
.blog-post-body ul.blog-bullets li,
.blog-post-body ol.blog-bullets li {
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink-soft);
  margin-bottom: 10px;
  padding-left: 8px;
}
.blog-post-body ul.blog-bullets li::marker {
  color: var(--peach-deep);
}
.blog-post-body ol.blog-bullets li::marker {
  color: var(--peach-deep);
  font-weight: 500;
}

/* Mid-post CTA */
.blog-post-cta {
  margin-top: 64px;
  padding: 40px 36px;
  background: var(--cream-deep);
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  text-align: center;
}
.blog-post-cta h3 {
  font-family: var(--display);
  font-size: 28px;
  color: var(--plum);
  letter-spacing: -0.02em;
  margin-bottom: 12px;
  font-weight: 400;
  line-height: 1.2;
}
.blog-post-cta p {
  font-size: 15px;
  color: var(--ink-soft);
  margin-bottom: 24px;
  max-width: 460px;
  margin-left: auto;
  margin-right: auto;
}
.blog-post-cta .result-ctas {
  justify-content: center;
  flex-wrap: wrap;
}

/* Related posts section */
.related-posts {
  padding: 80px 0 120px;
  background: var(--plum);
  color: var(--cream);
}
.related-posts .eyebrow { color: var(--peach); }
.related-head {
  text-align: center;
  margin-bottom: 56px;
}
.related-head .eyebrow { justify-content: center; }
.related-head .eyebrow::before { display: none; }
.related-head h2 {
  color: var(--cream);
  font-size: clamp(32px, 4.5vw, 48px);
  margin-top: 16px;
  font-weight: 400;
  line-height: 1.1;
}
.related-head h2 em { color: var(--peach); }

.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.related-card {
  background: rgba(245,240,232,0.06);
  border: 1px solid rgba(245,240,232,0.1);
  padding: 28px 28px 32px;
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  transition: all 0.3s var(--ease);
  color: inherit;
  text-decoration: none;
}
.related-card:hover {
  background: rgba(245,240,232,0.1);
  transform: translateY(-4px);
}
.related-category {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--peach);
  margin-bottom: 20px;
  font-weight: 500;
}
.related-card h4 {
  font-family: var(--display);
  font-size: 19px;
  line-height: 1.25;
  letter-spacing: -0.015em;
  color: var(--cream);
  margin-bottom: 24px;
  flex-grow: 1;
  font-weight: 400;
}
.related-read {
  font-size: 13px;
  color: var(--peach);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

@media (max-width: 900px) {
  .blog-post-layout {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 40px 0 60px;
  }
  .blog-toc {
    position: static;
    order: -1;
  }
  .blog-post-body {
    max-width: 100%;
  }
  .related-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 640px) {
  .blog-post-header { padding: 40px 0 32px; }
  .blog-back { margin-bottom: 20px; }
  .blog-post-body { font-size: 16px; }
  .blog-post-body p.blog-lede { font-size: 19px; margin-bottom: 32px; padding-bottom: 32px; }
  .blog-post-body h2 { margin-top: 40px; }
  .blog-post-cta { padding: 32px 24px; margin-top: 48px; }
  .blog-post-cta h3 { font-size: 24px; }
  .related-posts { padding: 56px 0 100px; }
  .related-card { padding: 24px 24px 28px; }
}

/* ==========================================================
   EDITORIAL IMAGES — blog hero, page banner, content break
   ========================================================== */

/* Blog post hero image — sits between the H1 and body */
.blog-hero-image {
  max-width: 100%;
  margin: 0 auto 0;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--cream-deep);
  position: relative;
}
.blog-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.blog-hero-image-caption {
  max-width: 1100px;
  margin: 10px auto 0;
  padding: 0 24px;
  font-size: 12px;
  letter-spacing: 0.08em;
  color: var(--ink-faint);
  text-transform: uppercase;
}

/* Page banner image — full width below page hero */
.page-banner {
  width: 100%;
  aspect-ratio: 21 / 9;
  overflow: hidden;
  background: var(--cream-deep);
  position: relative;
}
.page-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (max-width: 640px) {
  .page-banner { aspect-ratio: 4 / 3; }
  .blog-hero-image { aspect-ratio: 4 / 3; }
}

/* Content break section — homepage editorial moment */
.content-break {
  position: relative;
  overflow: hidden;
  background: var(--plum-deep);
  padding: 0;
  margin: 0;
}
.content-break-inner {
  position: relative;
  aspect-ratio: 21 / 7;
  overflow: hidden;
}
.content-break img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: 0.85;
}
.content-break-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 24px;
  background: linear-gradient(135deg, rgba(26,16,50,0.35) 0%, rgba(26,16,50,0.1) 40%, rgba(26,16,50,0) 70%);
}
.content-break-text {
  color: var(--cream);
  max-width: 640px;
}
.content-break-text .quote-mark {
  font-family: var(--display);
  font-style: italic;
  font-size: 80px;
  line-height: 0.8;
  color: var(--peach);
  display: block;
  margin-bottom: 8px;
}
.content-break-text blockquote {
  font-family: var(--display);
  font-size: clamp(22px, 3vw, 32px);
  line-height: 1.3;
  letter-spacing: -0.015em;
  color: var(--cream);
  font-weight: 400;
  margin: 0 0 20px 0;
  font-style: normal;
}
.content-break-text cite {
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(245,240,232,0.8);
  font-style: normal;
  display: block;
}

@media (max-width: 900px) {
  .content-break-inner { aspect-ratio: 16 / 10; }
  .content-break-overlay {
    background: linear-gradient(180deg, rgba(26,16,50,0.2) 0%, rgba(26,16,50,0.7) 70%, rgba(26,16,50,0.9) 100%);
    align-items: flex-end;
    justify-content: flex-start;
    padding: 32px 24px;
  }
}
@media (max-width: 640px) {
  .content-break-inner { aspect-ratio: 4 / 5; }
  .content-break-text .quote-mark { font-size: 60px; }
}

/* -- Split layout: text above, image below -- */
.content-break--split {
  display: flex;
  flex-direction: column;
  background: var(--cream);
  padding: 0;
  margin: 0;
}
.content-break-quote-block {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 72px 40px;
  background: var(--cream);
  text-align: center;
}
.content-break--split .content-break-text {
  max-width: 640px;
  margin: 0 auto;
  color: var(--plum);
}
.content-break--split .content-break-text .quote-mark {
  font-family: var(--display);
  font-style: italic;
  font-size: 72px;
  line-height: 0.6;
  color: var(--peach);
  display: block;
  margin-bottom: 16px;
  text-align: center;
}
.content-break--split .content-break-text blockquote {
  font-family: var(--display);
  font-size: clamp(20px, 4vw, 32px);
  line-height: 1.35;
  letter-spacing: -0.015em;
  color: var(--plum);
  font-weight: 400;
  margin: 0 0 16px 0;
  font-style: normal;
  text-align: center;
}
.content-break--split .content-break-text cite {
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--plum-soft);
  font-style: normal;
  display: block;
  text-align: center;
}
.content-break-img-block {
  width: 100%;
  overflow: hidden;
  line-height: 0;
}
.content-break-img-block img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  max-height: 500px;
}
@media (max-width: 640px) {
  .content-break-quote-block {
    padding: 40px 24px;
  }
  .content-break--split .content-break-text .quote-mark {
    font-size: 52px;
    margin-bottom: 12px;
  }
  .content-break--split .content-break-text blockquote {
    font-size: 20px;
    line-height: 1.4;
    margin-bottom: 12px;
  }
  .content-break--split .content-break-text cite {
    font-size: 11px;
  }
  .content-break-img-block img {
    max-height: 350px;
  }
}

/* ==========================================================
   HERO / EDITORIAL IMAGE PLACEMENTS
   ========================================================== */

/* Blog post hero image — sits between header and body */
.blog-hero-image {
  width: 100%;
  margin: 0;
  padding: 0 0 40px 0;
  background: var(--cream);
}
.blog-hero-image-inner {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px;
}
.blog-hero-image img {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: var(--radius-lg);
  display: block;
}

@media (max-width: 900px) {
  .blog-hero-image-inner { padding: 0 20px; }
  .blog-hero-image img { aspect-ratio: 4 / 3; border-radius: var(--radius); }
}
@media (max-width: 640px) {
  .blog-hero-image { padding: 0 0 24px 0; }
  .blog-hero-image-inner { padding: 0 16px; }
}

/* Page hero banner image — sits between page hero and first section */
.page-banner {
  width: 100%;
  margin: 0;
  padding: 0;
  background: var(--cream);
}
.page-banner-inner {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 32px 80px;
}
.page-banner img {
  width: 100%;
  height: auto;
  aspect-ratio: 21 / 9;
  object-fit: cover;
  border-radius: var(--radius-lg);
  display: block;
}

@media (max-width: 900px) {
  .page-banner-inner { padding: 0 20px 60px; }
  .page-banner img { aspect-ratio: 16 / 9; border-radius: var(--radius); }
}
@media (max-width: 640px) {
  .page-banner-inner { padding: 0 16px 48px; }
  .page-banner img { aspect-ratio: 3 / 2; }
}

/* Homepage content break — full-width editorial moment */
.content-break {
  width: 100%;
  padding: 80px 0;
  background: var(--cream);
  position: relative;
}
.content-break-inner {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 32px;
  position: relative;
}
.content-break img {
  width: 100%;
  height: auto;
  aspect-ratio: 21 / 8;
  object-fit: cover;
  border-radius: var(--radius-lg);
  display: block;
}
.content-break-quote {
  position: absolute;
  left: 80px;
  bottom: 60px;
  max-width: 420px;
  color: var(--cream);
  font-family: var(--display);
  font-size: clamp(24px, 3vw, 36px);
  line-height: 1.15;
  letter-spacing: -0.02em;
  font-weight: 400;
  text-shadow: 0 2px 24px rgba(43,28,74,0.4);
  z-index: 2;
}
.content-break-quote em {
  font-style: italic;
  font-weight: 300;
  color: var(--peach);
}
.content-break-cite {
  display: block;
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(245,240,232,0.8);
  margin-top: 16px;
  text-shadow: 0 1px 8px rgba(43,28,74,0.5);
}

@media (max-width: 900px) {
  .content-break { padding: 60px 0; }
  .content-break-inner { padding: 0 20px; }
  .content-break img { aspect-ratio: 16 / 10; }
  .content-break-quote { left: 32px; bottom: 40px; max-width: 320px; }
}
@media (max-width: 640px) {
  .content-break { padding: 48px 0; }
  .content-break-inner { padding: 0 16px; }
  .content-break img { aspect-ratio: 4 / 5; }
  .content-break-quote { left: 24px; bottom: 24px; right: 24px; max-width: 100%; }
}
