/* ============================================================
   DESIGN TOKENS
============================================================ */
:root {
  --ivory:       #F7F2EC;
  --sand:        #E8DDD2;
  --sand-dark:   #D4C5B5;
  --sage:        #A8B5A2;
  --sage-dark:   #7A8F74;
  --terracotta:  #D98C73;
  --terra-dark:  #C0724F;
  --charcoal:    #2E2A27;
  --charcoal-2:  #4A4540;
  --charcoal-3:  #6B6460;
  --white:       #FFFFFF;

  --font-serif:  'Cormorant Garamond', Georgia, serif;
  --font-sans:   'DM Sans', system-ui, sans-serif;

  --radius-sm:   6px;
  --radius-md:   14px;
  --radius-lg:   24px;
  --radius-xl:   40px;

  --shadow-sm:   0 2px 8px rgba(46,42,39,0.06);
  --shadow-md:   0 8px 32px rgba(46,42,39,0.10);
  --shadow-lg:   0 20px 60px rgba(46,42,39,0.14);

  --transition:  0.3s cubic-bezier(0.4,0,0.2,1);

  --max-w:       1200px;
  --section-pad: 100px;
}

/* ============================================================
   RESET & BASE
============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-sans);
  color: var(--charcoal);
  background: var(--ivory);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

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

a { color: inherit; text-decoration: none; }

ul { list-style: none; }

/* ============================================================
   UTILITY
============================================================ */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 32px;
}

.section-eyebrow {
  display: block;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 14px;
}
.section-eyebrow.light { color: rgba(247,242,236,0.75); }

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  line-height: 1.18;
  color: var(--charcoal);
  letter-spacing: -0.01em;
}
.section-title em { font-style: italic; color: var(--terracotta); }
.section-title.light { color: var(--ivory); }
.section-title.light em { color: rgba(247,242,236,0.85); }

.section-subtitle {
  margin-top: 18px;
  font-size: 1.05rem;
  color: var(--charcoal-3);
  max-width: 540px;
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}
.section-header .section-subtitle { margin-left: auto; margin-right: auto; }

/* ============================================================
   BUTTONS
============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  padding: 14px 30px;
  border-radius: var(--radius-xl);
  border: none;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--terracotta);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(217,140,115,0.35);
}
.btn-primary:hover {
  background: var(--terra-dark);
  box-shadow: 0 8px 30px rgba(217,140,115,0.45);
  transform: translateY(-2px);
}

.btn-ghost {
  background: transparent;
  color: var(--charcoal);
  border: 1.5px solid rgba(46,42,39,0.25);
}
.btn-ghost:hover {
  background: rgba(46,42,39,0.06);
  border-color: var(--charcoal);
  transform: translateY(-2px);
}

.btn-ghost-light {
  background: transparent;
  color: var(--ivory);
  border: 1.5px solid rgba(247,242,236,0.45);
}
.btn-ghost-light:hover {
  background: rgba(247,242,236,0.12);
  border-color: var(--ivory);
  transform: translateY(-2px);
}

.btn-ivory {
  background: var(--ivory);
  color: var(--charcoal);
}
.btn-ivory:hover {
  background: var(--sand);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* ============================================================
   NAV
============================================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: background var(--transition), box-shadow var(--transition);
  padding: 0;
}
.site-header.scrolled {
  background: rgba(247,242,236,0.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(46,42,39,0.08);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.logo-text {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--charcoal);
  letter-spacing: 0.01em;
  line-height: 1;
}
.logo-text em {
  font-style: italic;
  color: var(--terracotta);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--charcoal-2);
  transition: color var(--transition);
}
.nav-links a:hover { color: var(--terracotta); }
.nav-links .nav-cta {
  background: var(--terracotta);
  color: var(--white);
  padding: 10px 22px;
  border-radius: var(--radius-xl);
  font-size: 0.85rem;
  box-shadow: 0 4px 16px rgba(217,140,115,0.3);
}
.nav-links .nav-cta:hover {
  background: var(--terra-dark);
  color: var(--white);
  transform: translateY(-1px);
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--charcoal);
  border-radius: 2px;
  transform-origin: center;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

/* ============================================================
   HERO
============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.05);
  animation: heroZoom 12s ease-out forwards;
}
@keyframes heroZoom {
  to { transform: scale(1); }
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(247,242,236,0.97) 0%,
    rgba(247,242,236,0.88) 45%,
    rgba(247,242,236,0.3) 100%
  );
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding-top: 100px;
  padding-bottom: 80px;
  min-height: 100vh;
}

.hero-content {
  animation: fadeUp 0.9s ease both;
}

.hero-eyebrow {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 18px;
}

.hero-headline {
  font-family: var(--font-serif);
  font-size: clamp(2.6rem, 5vw, 4.2rem);
  font-weight: 400;
  line-height: 1.12;
  color: var(--charcoal);
  letter-spacing: -0.02em;
  margin-bottom: 22px;
}
.hero-headline em { font-style: italic; color: var(--terracotta); }

.hero-subtext {
  font-size: 1.05rem;
  color: var(--charcoal-2);
  line-height: 1.7;
  max-width: 480px;
  margin-bottom: 36px;
}

.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 44px;
}

.hero-trust-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.hero-trust-bar span {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--charcoal-2);
}
.hero-trust-bar span svg {
  width: 16px;
  height: 16px;
  color: var(--sage-dark);
  flex-shrink: 0;
}

.hero-portrait {
  display: flex;
  justify-content: flex-end;
  animation: fadeUp 0.9s 0.2s ease both;
}

.portrait-frame {
  position: relative;
  width: 100%;
  max-width: 480px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/5;
  background: var(--sand);
}
.portrait-frame::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: calc(var(--radius-lg) + 2px);
  background: linear-gradient(135deg, var(--terracotta), var(--sage), transparent);
  z-index: -1;
}
.portrait-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--charcoal-3);
  z-index: 1;
}
.scroll-arrow {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--charcoal-3), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50%       { opacity: 0.9; transform: scaleY(1.15); }
}

/* ============================================================
   TRUST STRIP
============================================================ */
.trust-strip {
  background: var(--charcoal);
  padding: 44px 0;
}
.trust-strip-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}
.trust-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 10px 44px;
  flex: 1;
  min-width: 160px;
}
.trust-number {
  font-family: var(--font-serif);
  font-size: 2.4rem;
  font-weight: 400;
  color: var(--ivory);
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: 6px;
}
.trust-label {
  font-size: 0.78rem;
  font-weight: 500;
  color: rgba(247,242,236,0.55);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.trust-divider {
  width: 1px;
  height: 50px;
  background: rgba(247,242,236,0.12);
  flex-shrink: 0;
}

/* ============================================================
   CONDITIONS / HOW I HELP
============================================================ */
.conditions {
  padding: var(--section-pad) 0;
  background: var(--ivory);
}

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

.condition-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition), transform var(--transition);
  display: flex;
  flex-direction: column;
}
.condition-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-6px);
}

.condition-icon {
  padding: 22px 22px 0;
  display: flex;
}
.condition-icon svg {
  width: 36px;
  height: 36px;
  color: var(--terracotta);
  flex-shrink: 0;
}

.condition-img-wrap {
  overflow: hidden;
  height: 180px;
  margin: 14px 0 0;
  background: var(--sand);
}
.condition-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.condition-card:hover .condition-img-wrap img {
  transform: scale(1.06);
}

.condition-card h3 {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--charcoal);
  padding: 16px 22px 8px;
}
.condition-card p {
  font-size: 0.88rem;
  color: var(--charcoal-3);
  padding: 0 22px;
  line-height: 1.65;
  flex: 1;
}
.card-link {
  display: inline-block;
  margin: 18px 22px 22px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--terracotta);
  letter-spacing: 0.02em;
  transition: gap var(--transition), color var(--transition);
}
.card-link:hover { color: var(--terra-dark); }

/* ============================================================
   WHY CHOOSE DEBORAH
============================================================ */
.why-deborah {
  background: var(--sand);
  padding: var(--section-pad) 0;
}
.why-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.why-image { position: relative; }
.why-img-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 3/4;
  box-shadow: var(--shadow-lg);
  background: var(--sand-dark);
}
.why-img-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
.why-img-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--terracotta);
  color: var(--white);
  border-radius: var(--radius-md);
  padding: 18px 24px;
  text-align: center;
  box-shadow: var(--shadow-md);
}
.badge-number {
  display: block;
  font-family: var(--font-serif);
  font-size: 2.2rem;
  line-height: 1;
  font-weight: 400;
}
.badge-text {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  opacity: 0.9;
}

.why-content { }
.why-content .section-title { margin-bottom: 32px; }

.why-list {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin-bottom: 36px;
}
.why-list li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.why-check {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--sage);
  flex-shrink: 0;
  margin-top: 2px;
  position: relative;
}
.why-check::after {
  content: '';
  position: absolute;
  left: 6px;
  top: 4px;
  width: 10px;
  height: 6px;
  border-left: 2px solid var(--white);
  border-bottom: 2px solid var(--white);
  transform: rotate(-45deg);
}
.why-list li strong {
  display: block;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 3px;
  font-size: 0.95rem;
}
.why-list li p {
  font-size: 0.88rem;
  color: var(--charcoal-3);
  margin: 0;
}

.why-quote {
  border-left: 3px solid var(--terracotta);
  padding: 14px 0 14px 20px;
  margin: 32px 0;
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-style: italic;
  color: var(--charcoal-2);
  line-height: 1.6;
}
.why-quote cite {
  display: block;
  font-family: var(--font-sans);
  font-style: normal;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--charcoal-3);
  margin-top: 10px;
  letter-spacing: 0.05em;
}

/* ============================================================
   PROCESS
============================================================ */
.process {
  padding: var(--section-pad) 0;
  background: var(--ivory);
}
.process-steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
}
.process-step {
  flex: 1;
  text-align: center;
  padding: 0 30px;
  position: relative;
}
.step-number {
  font-family: var(--font-serif);
  font-size: 4rem;
  font-weight: 300;
  color: var(--sand-dark);
  line-height: 1;
  margin-bottom: 16px;
}
.step-icon {
  width: 64px;
  height: 64px;
  background: var(--sand);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}
.step-icon svg {
  width: 28px;
  height: 28px;
  color: var(--terracotta);
}
.process-step h3 {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--charcoal);
  margin-bottom: 12px;
}
.process-step p {
  font-size: 0.9rem;
  color: var(--charcoal-3);
  line-height: 1.7;
  max-width: 260px;
  margin: 0 auto;
}
.process-connector {
  display: flex;
  align-items: center;
  padding-top: 90px;
  flex-shrink: 0;
  width: 60px;
}
.connector-line {
  width: 100%;
  height: 1px;
  background: linear-gradient(to right, var(--sand-dark), var(--sage));
  position: relative;
}
.connector-line::after {
  content: '';
  position: absolute;
  right: 0;
  top: -4px;
  width: 8px;
  height: 8px;
  border-top: 1px solid var(--sage);
  border-right: 1px solid var(--sage);
  transform: rotate(45deg);
}

/* ============================================================
   TESTIMONIALS
============================================================ */
.testimonials {
  background: var(--charcoal);
  padding: var(--section-pad) 0;
}
.testimonials .section-eyebrow { color: var(--terracotta); }
.testimonials .section-title { color: var(--ivory); }
.testimonials .section-title em { color: rgba(247,242,236,0.7); }

.testimonial-featured {
  background: rgba(247,242,236,0.05);
  border: 1px solid rgba(247,242,236,0.1);
  border-radius: var(--radius-lg);
  padding: 48px 56px;
  text-align: center;
  margin-bottom: 48px;
}
.stars {
  color: var(--terracotta);
  font-size: 1.1rem;
  letter-spacing: 4px;
  margin-bottom: 24px;
}
.featured-quote {
  font-family: var(--font-serif);
  font-size: clamp(1.3rem, 2.5vw, 1.7rem);
  font-style: italic;
  color: var(--ivory);
  line-height: 1.55;
  max-width: 700px;
  margin: 0 auto 28px;
}
.featured-author {
  display: flex;
  justify-content: center;
}
.author-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.author-info strong {
  color: var(--ivory);
  font-size: 0.95rem;
}
.author-info span {
  font-size: 0.8rem;
  color: rgba(247,242,236,0.5);
  letter-spacing: 0.05em;
}

.testimonial-carousel {
  overflow: hidden;
  border-radius: var(--radius-md);
  margin-bottom: 28px;
}
.testimonial-track {
  display: flex;
  gap: 24px;
  transition: transform 0.5s cubic-bezier(0.4,0,0.2,1);
}
.testimonial-card {
  flex: 0 0 calc(33.333% - 16px);
  background: rgba(247,242,236,0.05);
  border: 1px solid rgba(247,242,236,0.1);
  border-radius: var(--radius-md);
  padding: 30px;
  transition: background var(--transition);
}
.testimonial-card:hover {
  background: rgba(247,242,236,0.09);
}
.testimonial-card .stars {
  font-size: 0.85rem;
  margin-bottom: 14px;
}
.testimonial-card p {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-style: italic;
  color: rgba(247,242,236,0.85);
  line-height: 1.65;
  margin-bottom: 20px;
}
.t-author {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.t-author strong { color: var(--ivory); font-size: 0.88rem; }
.t-author span { font-size: 0.76rem; color: rgba(247,242,236,0.45); letter-spacing: 0.04em; }

.carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}
.carousel-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(247,242,236,0.08);
  border: 1px solid rgba(247,242,236,0.15);
  color: var(--ivory);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.carousel-btn:hover { background: rgba(247,242,236,0.16); }
.carousel-btn svg { width: 18px; height: 18px; }
.carousel-dots {
  display: flex;
  gap: 8px;
}
.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(247,242,236,0.25);
  cursor: pointer;
  transition: var(--transition);
  border: none;
}
.carousel-dot.active {
  background: var(--terracotta);
  width: 24px;
  border-radius: 4px;
}

/* ============================================================
   ABOUT
============================================================ */
.about {
  padding: var(--section-pad) 0;
  background: var(--ivory);
}
.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-content { order: 1; }
.about-image { order: 2; }
.about-content .section-title { margin-bottom: 24px; }
.about-lead {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: var(--charcoal-2);
  line-height: 1.65;
  margin-bottom: 18px;
  font-style: italic;
}
.about-content p {
  font-size: 0.95rem;
  color: var(--charcoal-3);
  line-height: 1.75;
  margin-bottom: 16px;
}
.about-credentials {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 30px 0;
}
.credential {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--sand);
  border-radius: var(--radius-xl);
  padding: 8px 16px;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--charcoal-2);
}
.credential svg {
  width: 14px;
  height: 14px;
  color: var(--terracotta);
  flex-shrink: 0;
}
.about-img-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 3/4;
  box-shadow: var(--shadow-lg);
  background: var(--sand);
}
.about-img-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

/* ============================================================
   WOMEN'S HEALTH
============================================================ */
.womens-health {
  position: relative;
  padding: var(--section-pad) 0;
  overflow: hidden;
}
.wh-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.wh-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.wh-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(46,42,39,0.92) 0%,
    rgba(46,42,39,0.85) 50%,
    rgba(120,100,80,0.75) 100%
  );
}
.wh-inner {
  position: relative;
  z-index: 1;
  max-width: 860px;
}
.wh-lead {
  font-size: 1.05rem;
  color: rgba(247,242,236,0.8);
  line-height: 1.75;
  max-width: 640px;
  margin: 22px 0 40px;
}
.wh-areas {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 40px;
}
.wh-area {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.wh-icon {
  width: 40px;
  height: 40px;
  background: rgba(217,140,115,0.15);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.wh-icon svg {
  width: 18px;
  height: 18px;
  color: var(--terracotta);
}
.wh-area strong {
  display: block;
  color: var(--ivory);
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 4px;
}
.wh-area p {
  font-size: 0.85rem;
  color: rgba(247,242,236,0.6);
  line-height: 1.55;
}

/* ============================================================
   FAQ
============================================================ */
.faq {
  padding: var(--section-pad) 0;
  background: var(--sand);
}
.faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.faq-item {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.faq-question {
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  padding: 22px 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 500;
  color: var(--charcoal);
  text-align: left;
  transition: var(--transition);
}
.faq-question:hover { background: rgba(232,221,210,0.3); }
.faq-question[aria-expanded="true"] { color: var(--terracotta); }
.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--sand);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform var(--transition), background var(--transition);
}
.faq-icon svg { width: 16px; height: 16px; color: var(--charcoal-3); }
.faq-question[aria-expanded="true"] .faq-icon {
  transform: rotate(180deg);
  background: var(--terracotta);
}
.faq-question[aria-expanded="true"] .faq-icon svg { color: var(--white); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s cubic-bezier(0.4,0,0.2,1);
}
.faq-answer.open { max-height: 400px; }
.faq-answer-inner {
  padding: 0 28px 24px;
  font-size: 0.93rem;
  color: var(--charcoal-3);
  line-height: 1.75;
}

/* ============================================================
   FINAL CTA
============================================================ */
.final-cta {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
  text-align: center;
}
.cta-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.cta-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(46,42,39,0.82),
    rgba(168,181,162,0.5)
  );
}
.cta-inner {
  position: relative;
  z-index: 1;
}
.cta-headline {
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 400;
  color: var(--ivory);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 14px 0 22px;
}
.cta-headline em { font-style: italic; color: rgba(247,242,236,0.8); }
.cta-subtext {
  font-size: 1.05rem;
  color: rgba(247,242,236,0.75);
  max-width: 520px;
  margin: 0 auto 40px;
  line-height: 1.7;
}
.cta-buttons {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.cta-contact-details {
  display: flex;
  gap: 32px;
  justify-content: center;
  flex-wrap: wrap;
}
.cta-contact-details a {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  color: rgba(247,242,236,0.7);
  transition: color var(--transition);
}
.cta-contact-details a:hover { color: var(--ivory); }
.cta-contact-details svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

/* ============================================================
   FOOTER
============================================================ */
.site-footer {
  background: var(--charcoal);
  padding-top: 72px;
}
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(247,242,236,0.08);
}
.footer-logo-text {
  display: block;
  font-size: 1.3rem;
  color: var(--ivory);
  margin-bottom: 14px;
  opacity: 0.9;
}
.footer-logo-text em { color: var(--terracotta); }
.footer-brand p {
  font-size: 0.85rem;
  color: rgba(247,242,236,0.5);
  line-height: 1.65;
  max-width: 240px;
  margin-bottom: 20px;
}
.footer-social {
  display: flex;
  gap: 12px;
}
.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(247,242,236,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(247,242,236,0.6);
  transition: var(--transition);
}
.footer-social a:hover {
  background: var(--terracotta);
  color: var(--white);
}
.footer-social svg { width: 16px; height: 16px; }

.footer-nav h4 {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(247,242,236,0.4);
  margin-bottom: 18px;
}
.footer-nav ul li { margin-bottom: 10px; }
.footer-nav ul li a {
  font-size: 0.88rem;
  color: rgba(247,242,236,0.6);
  transition: color var(--transition);
}
.footer-nav ul li a:hover { color: var(--ivory); }

.footer-contact h4 {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(247,242,236,0.4);
  margin-bottom: 18px;
}
.footer-contact p {
  font-size: 0.88rem;
  color: rgba(247,242,236,0.6);
  margin-bottom: 8px;
}
.footer-contact a { color: rgba(247,242,236,0.6); transition: color var(--transition); }
.footer-contact a:hover { color: var(--ivory); }
.footer-cert {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin: 20px 0;
}
.cert-badge {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: rgba(168,181,162,0.15);
  color: var(--sage);
  border: 1px solid rgba(168,181,162,0.3);
  border-radius: var(--radius-xl);
  padding: 5px 12px;
}
.footer-cta-btn {
  margin-top: 8px;
  font-size: 0.85rem;
  padding: 11px 24px;
}

.footer-bottom {
  padding: 20px 0;
}
.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.footer-bottom p {
  font-size: 0.78rem;
  color: rgba(247,242,236,0.3);
}
.footer-bottom a { color: rgba(247,242,236,0.45); }
.footer-bottom a:hover { color: var(--ivory); }

/* ============================================================
   SCROLL ANIMATIONS
============================================================ */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ============================================================
   RESPONSIVE
============================================================ */

/* ── Tablet landscape ───────────────────────────────────────── */
@media (max-width: 1100px) {
  .conditions-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-inner    { grid-template-columns: 1fr 1fr; }
}

/* ── Tablet portrait / large mobile ────────────────────────── */
@media (max-width: 900px) {
  :root { --section-pad: 68px; }

  /* --- Nav -------------------------------------------------- */
  .nav-links { display: none; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    background: rgba(247,242,236,0.98);
    backdrop-filter: blur(12px);
    padding: 16px 24px 24px;
    gap: 4px;
    box-shadow: var(--shadow-md);
    border-top: 1px solid var(--sand);
    z-index: 999;
  }
  .nav-links.open a {
    padding: 12px 4px;
    font-size: 1rem;
    border-bottom: 1px solid var(--sand);
  }
  .nav-links.open a:last-child { border-bottom: none; }
  .nav-links.open .nav-cta {
    margin-top: 8px;
    text-align: center;
    justify-content: center;
    border-radius: var(--radius-xl);
    border-bottom: none;
  }
  .nav-hamburger { display: flex; }
  /* Hamburger → X animation */
  .nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
  .nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .nav-inner { height: 70px; }

  /* --- Hero ------------------------------------------------- */
  .hero-inner {
    grid-template-columns: 1fr;
    padding-top: 100px;
    padding-bottom: 56px;
    min-height: unset;
    gap: 36px;
  }
  /* Portrait first on mobile */
  .hero-content { order: 2; }
  .hero-portrait { order: 1; justify-content: center; }
  .portrait-frame { max-width: 340px; aspect-ratio: 3/4; }
  .hero-scroll-hint { display: none; }
  .hero-overlay {
    background: linear-gradient(
      to bottom,
      rgba(247,242,236,0.97) 0%,
      rgba(247,242,236,0.92) 60%,
      rgba(247,242,236,0.75) 100%
    );
  }

  /* --- Trust strip ------------------------------------------ */
  .trust-strip-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
  }
  .trust-card { padding: 20px 16px; border-bottom: 1px solid rgba(247,242,236,0.06); }
  .trust-card:nth-child(1),
  .trust-card:nth-child(3) { border-right: 1px solid rgba(247,242,236,0.06); }
  .trust-divider { display: none; }

  /* --- Conditions ------------------------------------------- */
  .conditions-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .section-header { margin-bottom: 44px; }

  /* --- Why Deborah ------------------------------------------ */
  .why-inner { grid-template-columns: 1fr; gap: 40px; }
  .why-image { max-width: 400px; margin: 0 auto; width: 100%; }
  .why-img-badge { right: 0; bottom: -16px; }
  .why-img-frame { aspect-ratio: 4/3; }

  /* --- Process ---------------------------------------------- */
  .process-steps  { flex-direction: column; align-items: center; gap: 0; }
  .process-connector { width: 2px; height: 36px; padding: 0; }
  .connector-line {
    width: 2px; height: 100%;
    background: linear-gradient(to bottom, var(--sand-dark), var(--sage));
  }
  .connector-line::after { display: none; }
  .process-step { width: 100%; max-width: 380px; }

  /* --- Testimonials ----------------------------------------- */
  .testimonial-card { flex: 0 0 100%; }
  .featured-quote { font-size: 1.25rem; }

  /* --- About ------------------------------------------------ */
  .about-inner { grid-template-columns: 1fr; gap: 40px; }
  .about-content { order: 1; }
  .about-image  { order: 2; max-width: 380px; margin: 0 auto; width: 100%; }
  .about-img-frame { aspect-ratio: 3/4; }

  /* --- Women's Health --------------------------------------- */
  .wh-areas { grid-template-columns: 1fr; gap: 18px; }
  .wh-inner { max-width: 100%; }

  /* --- Footer ----------------------------------------------- */
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 36px; }
  .footer-brand { grid-column: 1 / -1; }
}

/* ── Mobile ─────────────────────────────────────────────────── */
@media (max-width: 600px) {
  :root { --section-pad: 52px; }
  .container { padding: 0 18px; }

  /* --- Buttons: full-width on mobile where stacked ---------- */
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn { width: 100%; justify-content: center; }
  .cta-buttons { flex-direction: column; align-items: stretch; max-width: 320px; margin-left: auto; margin-right: auto; }
  .cta-buttons .btn { justify-content: center; }
  /* Ensure no button text overflows */
  .btn { white-space: normal; text-align: center; }

  /* --- Hero ------------------------------------------------- */
  .hero-inner { padding-top: 90px; gap: 28px; }
  .portrait-frame { max-width: 100%; aspect-ratio: 3/4; max-height: 380px; }
  .hero-trust-bar {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
  .hero-trust-bar span { font-size: 0.75rem; }

  /* --- Trust strip ------------------------------------------ */
  .trust-number { font-size: 2rem; }
  .trust-label  { font-size: 0.7rem; }
  .trust-card   { padding: 18px 12px; }

  /* --- Section typography ----------------------------------- */
  .section-header { margin-bottom: 32px; }
  .section-subtitle { font-size: 0.95rem; }

  /* --- Conditions ------------------------------------------- */
  .conditions-grid { grid-template-columns: 1fr; gap: 14px; }
  .condition-img-wrap { height: 200px; }

  /* --- Why Deborah ------------------------------------------ */
  .why-img-frame { aspect-ratio: 4/3; max-height: 300px; }
  .why-img-badge { right: 8px; bottom: 8px; padding: 14px 18px; }
  .badge-number { font-size: 1.8rem; }
  .why-quote { font-size: 1rem; }

  /* --- Process ---------------------------------------------- */
  .step-number { font-size: 3rem; }

  /* --- Testimonials ----------------------------------------- */
  .testimonial-featured { padding: 24px 20px; }
  .featured-quote { font-size: 1.1rem; }

  /* --- About ------------------------------------------------ */
  .about-credentials { gap: 8px; }
  .credential { font-size: 0.75rem; padding: 7px 12px; }

  /* --- Women's Health --------------------------------------- */
  .wh-lead { font-size: 0.95rem; }

  /* --- FAQ -------------------------------------------------- */
  .faq-question { padding: 18px 20px; font-size: 0.92rem; }
  .faq-answer-inner { padding: 0 20px 20px; }

  /* --- Final CTA -------------------------------------------- */
  .final-cta { padding: 80px 0; }
  .cta-headline { font-size: clamp(2rem, 8vw, 2.8rem); }
  .cta-contact-details { flex-direction: column; align-items: center; gap: 14px; }

  /* --- Footer ----------------------------------------------- */
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom .container { flex-direction: column; align-items: flex-start; gap: 6px; }
  .footer-brand { grid-column: unset; }
}

/* ── Small phones (≤380px) ──────────────────────────────────── */
@media (max-width: 380px) {
  :root { --section-pad: 44px; }
  .container { padding: 0 14px; }

  .hero-headline { font-size: 2.2rem; }
  .hero-trust-bar { grid-template-columns: 1fr; }
  .trust-strip-inner { grid-template-columns: 1fr; }
  .trust-card { border-right: none !important; padding: 14px 16px; }
  .trust-card + .trust-card { border-top: 1px solid rgba(247,242,236,0.06); }
  .modal-right { padding: 24px 16px; }
  .form-row { grid-template-columns: 1fr; }
}

/* ── iOS safe-area support ──────────────────────────────────── */
@supports (padding: env(safe-area-inset-bottom)) {
  .site-footer { padding-bottom: env(safe-area-inset-bottom); }
  .modal-overlay { padding-bottom: env(safe-area-inset-bottom); }
}

/* ── Suppress hover lift on touch devices ───────────────────── */
@media (hover: none) {
  .btn:hover            { transform: none; }
  .condition-card:hover { transform: none; box-shadow: var(--shadow-sm); }
  .condition-card:hover .condition-img-wrap img { transform: none; }
  .btn-primary:hover    { box-shadow: 0 4px 20px rgba(217,140,115,0.35); }
}

/* ── Reduce motion ───────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

/* ============================================================
   PASSWORD GATE
============================================================ */
.gate-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--ivory);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}
.gate-overlay.unlocked {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.gate-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  width: 100%;
  max-width: 360px;
  text-align: center;
}

.gate-logo {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--charcoal);
  letter-spacing: 0.01em;
  margin-bottom: 4px;
}
.gate-logo em { font-style: italic; color: var(--terracotta); }

.gate-hint {
  font-size: 0.88rem;
  color: var(--charcoal-3);
}

.gate-form { width: 100%; }

.gate-field {
  display: flex;
  align-items: stretch;
  border: 1.5px solid var(--sand-dark);
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
}
.gate-field:focus-within {
  border-color: var(--terracotta);
  box-shadow: 0 0 0 3px rgba(217,140,115,0.15);
}
.gate-field.shake {
  animation: gateShake 0.4s ease;
  border-color: #c0392b;
}
@keyframes gateShake {
  0%, 100% { transform: translateX(0); }
  20%       { transform: translateX(-8px); }
  40%       { transform: translateX(8px); }
  60%       { transform: translateX(-5px); }
  80%       { transform: translateX(5px); }
}

.gate-field input[type="password"] {
  flex: 1;
  border: none;
  outline: none;
  background: transparent;
  font-family: var(--font-sans);
  font-size: 1rem;
  color: var(--charcoal);
  padding: 14px 20px;
  letter-spacing: 0.08em;
}
.gate-field input[type="password"]::placeholder {
  letter-spacing: 0;
  color: rgba(107,100,96,0.5);
}

.gate-btn {
  background: var(--terracotta);
  border: none;
  cursor: pointer;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: background var(--transition);
  flex-shrink: 0;
}
.gate-btn:hover { background: var(--terra-dark); }
.gate-btn svg { width: 20px; height: 20px; }

.gate-error {
  font-size: 0.8rem;
  color: #c0392b;
  margin-top: 10px;
  min-height: 1.2em;
  opacity: 0;
  transform: translateY(-4px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}
.gate-error.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   MODAL
============================================================ */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(46,42,39,0.65);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}
.modal-overlay.open {
  opacity: 1;
  visibility: visible;
}

.modal-card {
  background: var(--ivory);
  border-radius: var(--radius-lg);
  width: 100%;
  max-width: 880px;
  max-height: 92vh;
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(46,42,39,0.3);
  position: relative;
  transform: translateY(24px) scale(0.98);
  transition: transform 0.4s cubic-bezier(0.34,1.56,0.64,1);
}
.modal-overlay.open .modal-card {
  transform: translateY(0) scale(1);
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 10;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(46,42,39,0.12);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--charcoal);
  transition: background var(--transition), transform var(--transition);
}
.modal-close:hover {
  background: rgba(46,42,39,0.22);
  transform: rotate(90deg);
}
.modal-close svg { width: 16px; height: 16px; }

.modal-body {
  display: grid;
  grid-template-columns: 2fr 3fr;
  min-height: 560px;
  max-height: 92vh;
}

/* LEFT PANEL */
.modal-left {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg) 0 0 var(--radius-lg);
}
.modal-left img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
.modal-left-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    170deg,
    rgba(46,42,39,0.3) 0%,
    rgba(46,42,39,0.88) 100%
  );
}
.modal-left-content {
  position: absolute;
  inset: 0;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 20px;
}
.modal-left-quote {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-style: italic;
  color: rgba(247,242,236,0.9);
  line-height: 1.6;
}
.modal-left-details {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.modal-left-details div {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 0.82rem;
  color: rgba(247,242,236,0.75);
}
.modal-left-details svg {
  width: 15px;
  height: 15px;
  color: var(--sage);
  flex-shrink: 0;
}

/* RIGHT PANEL */
.modal-right {
  padding: 40px 36px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}

.modal-header {
  margin-bottom: 28px;
}
.modal-header h2 {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 400;
  color: var(--charcoal);
  margin-bottom: 8px;
  line-height: 1.2;
}
.modal-header p {
  font-size: 0.9rem;
  color: var(--charcoal-3);
  line-height: 1.6;
}

/* FORM */
.contact-form { display: flex; flex-direction: column; gap: 16px; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.form-group label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--charcoal-2);
  letter-spacing: 0.03em;
}
.req { color: var(--terracotta); }
.optional { font-weight: 400; color: var(--charcoal-3); }

.form-group input,
.form-group textarea {
  font-family: var(--font-sans);
  font-size: 0.9rem;
  color: var(--charcoal);
  background: var(--white);
  border: 1.5px solid var(--sand-dark);
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
  width: 100%;
  resize: vertical;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(107,100,96,0.55); }
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--terracotta);
  box-shadow: 0 0 0 3px rgba(217,140,115,0.15);
}
.form-group input.error,
.form-group select.error {
  border-color: #c0392b;
  box-shadow: 0 0 0 3px rgba(192,57,43,0.1);
}
.form-group .field-error {
  font-size: 0.75rem;
  color: #c0392b;
  margin-top: 2px;
}

.select-wrap {
  position: relative;
}
.select-wrap select {
  font-family: var(--font-sans);
  font-size: 0.9rem;
  color: var(--charcoal);
  background: var(--white);
  border: 1.5px solid var(--sand-dark);
  border-radius: var(--radius-sm);
  padding: 10px 36px 10px 14px;
  outline: none;
  width: 100%;
  appearance: none;
  cursor: pointer;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.select-wrap select:focus {
  border-color: var(--terracotta);
  box-shadow: 0 0 0 3px rgba(217,140,115,0.15);
}
.select-arrow {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  color: var(--charcoal-3);
  pointer-events: none;
}

.form-submit {
  width: 100%;
  justify-content: center;
  padding: 14px;
  font-size: 0.95rem;
  margin-top: 4px;
}
.form-submit svg { width: 18px; height: 18px; }

.form-privacy {
  text-align: center;
  font-size: 0.75rem;
  color: var(--charcoal-3);
  line-height: 1.5;
}
.form-privacy a { color: var(--terracotta); text-decoration: underline; }

/* SUCCESS STATE */
.form-success {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 16px;
  flex: 1;
  padding: 20px 0;
}
.form-success.visible { display: flex; }
.contact-form.hidden { display: none; }

.success-icon {
  width: 72px;
  height: 72px;
  background: rgba(168,181,162,0.18);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.success-icon svg {
  width: 48px;
  height: 48px;
  color: var(--sage-dark);
}
.form-success h3 {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--charcoal);
}
.form-success p {
  font-size: 0.9rem;
  color: var(--charcoal-3);
  line-height: 1.7;
  max-width: 340px;
}

/* MODAL RESPONSIVE */
@media (max-width: 760px) {
  .modal-body { grid-template-columns: 1fr; }
  .modal-left { display: none; }
  .modal-right { padding: 32px 24px; }
  .form-row { grid-template-columns: 1fr; }
  .modal-card { max-height: 95vh; border-radius: var(--radius-md); }
}
@media (max-width: 480px) {
  .modal-right { padding: 28px 18px; }
  .modal-overlay { padding: 10px; }
}
