/* ===========================
   TOKENS
   =========================== */
:root {
  --burgundy:  #800020;
  --cherry:    #cd2c40;
  --pink:      #fdaacc;
  --cream:     #fffdd0;
  --butter:    #f7edb9;
  --white:     #ffffff;
  --text:      #1a1a1a;
  --text-mid:  #5a5a5a;

  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans:  'Inter', system-ui, sans-serif;

  --max-w: 1160px;
  --gutter: 24px;
}

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

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

body {
  font-family: var(--font-sans);
  font-size: 17px;
  line-height: 1.7;
  color: var(--text);
  background: var(--cream);
}

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

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

ul { list-style: none; }

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

/* ===========================
   TYPOGRAPHY
   =========================== */
.section-label {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 16px;
  display: block;
}

.section-headline {
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  line-height: 1.25;
  color: var(--burgundy);
  margin-bottom: 40px;
}

/* ===========================
   BUTTONS
   =========================== */
.btn {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.03em;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  text-align: center;
  text-decoration: none;
  padding: 17px 40px;
}

/* Butter button — for dark (burgundy, cherry) backgrounds */
.btn-cta {
  background: var(--butter);
  color: var(--burgundy);
  box-shadow: 0 2px 12px rgba(128, 0, 32, 0.2);
}

.btn-cta:hover,
.btn-cta:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(128, 0, 32, 0.3);
  outline: none;
}

/* Burgundy button — for light (cream, butter) backgrounds */
.btn-cta--on-light {
  background: var(--burgundy);
  color: var(--cream);
  box-shadow: 0 2px 12px rgba(128, 0, 32, 0.25);
}

.btn-cta--on-light:hover,
.btn-cta--on-light:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(128, 0, 32, 0.38);
  outline: none;
}

/* ===========================
   NAV
   =========================== */
.nav {
  background: var(--burgundy);
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav-logo {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.01em;
}

/* ===========================
   HERO
   =========================== */
.hero {
  background: var(--burgundy);
  padding: 80px var(--gutter) 96px;
  text-align: center;
}

.hero-container {
  max-width: 820px;
}

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

.hero-headline {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 5.5vw, 3.25rem);
  font-weight: 700;
  line-height: 1.18;
  color: var(--white);
  margin-bottom: 28px;
}

.hero-sub {
  font-size: clamp(1rem, 2.5vw, 1.15rem);
  color: rgba(255, 255, 255, 0.82);
  max-width: 640px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

.hero-video {
  max-width: 800px;
  margin: 0 auto 44px;
}

.hero-video iframe,
.hero-video-el {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 8px;
  display: block;
}

.hero-video-caption {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
  font-style: italic;
  margin-top: 12px;
}

/* ===========================
   OBJECTION CRUSHER
   =========================== */
.objection {
  background: var(--cherry);
  padding: 80px var(--gutter);
}

.objection-inner {
  max-width: 700px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}

.objection-text {
  font-family: var(--font-sans);
  font-size: clamp(1.2rem, 3vw, 1.65rem);
  color: var(--cream);
  line-height: 1.55;
}

.stars {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.star-icons {
  font-size: 20px;
  letter-spacing: 3px;
}

.star-label {
  font-size: 13px;
  font-weight: 500;
  color: var(--cream);
  letter-spacing: 0.06em;
}

/* ===========================
   FEATURED TESTIMONIALS
   =========================== */
.testimonials-tier1 {
  background: var(--cream);
  padding: 80px var(--gutter) 64px;
}

/* ===========================
   SHARED TESTIMONIAL STYLES
   =========================== */
.testimonials-grid {
  columns: 3;
  column-gap: 20px;
}

.testimonials-grid--tier2 {
  column-gap: 16px;
}

.testimonial-img-wrap {
  break-inside: avoid;
  margin-bottom: 20px;
}

.testimonials-grid--tier2 .testimonial-img-wrap {
  margin-bottom: 16px;
}

.testimonial-img {
  width: 100%;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(128, 0, 32, 0.12);
  display: block;
  transition: transform 0.3s ease;
}

.testimonial-img:hover {
  transform: scale(1.02);
}

.testimonials-see-more {
  text-align: center;
  margin-top: 40px;
}

.see-more-link {
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 600;
  color: var(--cherry);
  text-decoration: none;
}

.see-more-link:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ===========================
   WHO IT'S FOR
   =========================== */
.who {
  background: var(--butter);
  padding: 96px var(--gutter);
}

.who .section-label {
  color: var(--cherry);
}

.who-description {
  font-family: var(--font-sans);
  font-size: 18px;
  color: var(--burgundy);
  max-width: 700px;
  margin: 0 auto 40px;
  text-align: center;
  line-height: 1.8;
}

.who-subheading {
  font-family: var(--font-serif);
  font-size: 32px;
  font-weight: 700;
  color: var(--cherry);
  text-align: center;
  margin-bottom: 40px;
}

.who-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  margin-top: 8px;
}

.who-col-title {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--cherry);
  margin-bottom: 20px;
}

.who-col-title--no {
  color: var(--burgundy);
  opacity: 0.5;
}

.who-list li {
  padding: 14px 0 14px 32px;
  position: relative;
  border-bottom: 1px solid rgba(128, 0, 32, 0.12);
  font-size: 16px;
  line-height: 1.6;
  color: var(--burgundy);
}

.who-list li:last-child { border-bottom: none; }
.who-list li:first-child { border-top: 1px solid rgba(128, 0, 32, 0.12); }

.who-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 14px;
  color: var(--cherry);
  font-weight: 700;
  font-size: 15px;
}

.who-list--no li::before {
  content: '✗';
  color: var(--burgundy);
  opacity: 0.4;
}

/* ===========================
   CTA BREAKS
   =========================== */
.cta-break {
  padding: 64px var(--gutter);
}

.cta-break--cream {
  background: var(--cream);
}

.cta-break--cherry {
  background: var(--cherry);
}

.cta-break-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.cta-break-price {
  font-size: 15px;
  color: rgba(255, 253, 208, 0.85);
  letter-spacing: 0.02em;
}

/* ===========================
   WHAT YOU'LL WALK AWAY WITH
   =========================== */
.whats-inside {
  background: var(--burgundy);
  padding: 96px var(--gutter);
  text-align: center;
}

.outcomes-label {
  color: var(--pink);
}

.outcomes-headline {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  color: var(--cream);
  line-height: 1.25;
  margin-bottom: 56px;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}

.outcomes-list {
  max-width: 640px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}

.outcome-item {
  font-family: var(--font-sans);
  font-size: clamp(1rem, 2vw, 1.1rem);
  color: var(--cream);
  line-height: 1.65;
  padding: 24px 0 24px 40px;
  border-bottom: 1px solid rgba(253, 170, 204, 0.2);
  text-align: left;
  position: relative;
}

.outcome-item:first-child { border-top: 1px solid rgba(253, 170, 204, 0.2); }

.outcome-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--pink);
  flex-shrink: 0;
}

/* ===========================
   ABOUT CLARE
   =========================== */
.about {
  background: var(--butter);
  padding: 96px var(--gutter);
}

.about .section-label {
  color: var(--pink);
}

.about-inner {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 64px;
  align-items: start;
}

.about-photo { position: relative; }

.about-headshot {
  width: 100%;
  min-height: 520px;
  object-fit: cover;
  object-position: center 35%;
  border-radius: 8px;
  display: block;
  margin-top: 16px;
}

.about-headline {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  font-weight: 700;
  color: var(--cherry);
  line-height: 1.3;
  margin-bottom: 28px;
}

.about-text p {
  margin-bottom: 20px;
  font-size: 16px;
  line-height: 1.8;
  color: var(--burgundy);
}

.about-text p em { font-style: italic; }

.about-text .btn {
  margin-top: 8px;
}

/* ===========================
   CREDENTIALS BAR
   =========================== */
.credentials-bar {
  background: var(--burgundy);
  overflow: hidden;
  padding: 20px 0;
}

.credentials-track {
  display: flex;
  width: max-content;
  animation: marquee 30s linear infinite;
}

.credentials-set {
  display: inline-block;
  white-space: nowrap;
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.88);
}

.credentials-set em { font-style: italic; }

.cred-sep {
  color: var(--pink);
  margin: 0 14px;
  font-size: 16px;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ===========================
   MEDIA LOGOS
   =========================== */
.media {
  background: var(--cream);
  padding: 72px var(--gutter);
  text-align: center;
}

.media-label {
  text-align: center;
  font-size: 12px;
  letter-spacing: 0.2em;
  margin-bottom: 48px;
}

.media-logos {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-evenly;
  align-items: center;
  gap: 24px;
}

.media-logo-img {
  height: 55px;
  width: auto;
  max-width: 120px;
  object-fit: contain;
  display: block;
}

/* ===========================
   CREDIBILITY VIDEO
   =========================== */
.credibility {
  background: #fffdd0;
  padding: 96px var(--gutter);
  text-align: center;
}

.credibility-inner {
  max-width: 800px;
}

.credibility-label {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #fdaacc;
  display: block;
  margin-bottom: 20px;
}

.credibility-headline {
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #800020;
  line-height: 1.25;
  margin-bottom: 40px;
}

.credibility-video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 12px;
  margin: 0 auto;
}

/* ===========================
   FAQ
   =========================== */
.faq {
  background: var(--butter);
  padding: 96px var(--gutter);
}

.faq .section-label {
  color: var(--pink);
}

.faq-headline {
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  color: var(--cherry);
  line-height: 1.25;
  margin-bottom: 48px;
}

.faq-list {
  max-width: 760px;
}

.faq-item {
  border-bottom: 1px solid rgba(128, 0, 32, 0.15);
}

.faq-item:first-child { border-top: 1px solid rgba(128, 0, 32, 0.15); }

.faq-q {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--burgundy);
  padding: 22px 48px 22px 0;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  line-height: 1.45;
}

.faq-q::-webkit-details-marker { display: none; }

.faq-q::after {
  content: '+';
  font-family: var(--font-sans);
  font-size: 24px;
  font-weight: 300;
  color: var(--cherry);
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  transition: transform 0.2s;
  line-height: 1;
}

.faq-item[open] .faq-q::after {
  transform: translateY(-50%) rotate(45deg);
}

.faq-a {
  font-size: 15.5px;
  color: var(--burgundy);
  line-height: 1.75;
  padding: 0 48px 24px 0;
}

/* ===========================
   MY PROMISE
   =========================== */
.my-promise {
  background: var(--burgundy);
  padding: 96px var(--gutter);
}

.my-promise-inner {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 80px;
  align-items: center;
}

.my-promise-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.my-promise-label {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--pink);
  display: block;
  margin-bottom: 20px;
}

.my-promise-headline {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  color: #fffdd0;
  line-height: 1.2;
  margin-bottom: 28px;
}

.my-promise-body {
  font-family: var(--font-sans);
  font-size: 18px;
  color: rgba(255, 253, 208, 0.85);
  line-height: 1.8;
}

.my-promise-video-wrap {
  display: flex;
  justify-content: center;
}

.my-promise-video {
  width: 100%;
  max-width: 360px;
  aspect-ratio: 9 / 16;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

/* ===========================
   FULL TESTIMONIAL WALL
   =========================== */

.testimonials-tier2 {
  background: var(--pink);
  padding: 96px var(--gutter);
}

.testimonials-tier2-heading {
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 5vw, 3rem);
  font-weight: 700;
  color: var(--burgundy);
  text-align: center;
  margin: 0 auto 32px;
}

.testimonials-tier2-stats {
  text-align: center;
  margin-bottom: 40px;
}

.testimonials-tier2-stars {
  font-size: 24px;
  margin-bottom: 10px;
}

.testimonials-tier2-count {
  font-family: var(--font-sans);
  font-size: 20px;
  font-weight: 700;
  color: var(--burgundy);
}

.testimonials-tier2-label {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--burgundy);
  display: block;
  margin-bottom: 48px;
}

/* ===========================
   FINAL CTA
   =========================== */
.final-cta {
  background: var(--burgundy);
  padding: 100px var(--gutter);
  text-align: center;
}

.final-cta-inner {
  max-width: 640px;
}

.final-cta-headline {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 5vw, 2.8rem);
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 20px;
  line-height: 1.25;
}

.final-cta-sub {
  font-size: clamp(1rem, 2.5vw, 1.15rem);
  color: rgba(255, 253, 208, 0.82);
  margin-bottom: 40px;
  line-height: 1.7;
}

.final-cta-price {
  margin-top: 20px;
  font-size: 15px;
  color: rgba(255, 253, 208, 0.7);
}

.final-cta-contact {
  margin-top: 16px;
  font-size: 14px;
  color: rgba(255, 253, 208, 0.55);
}

.contact-link {
  color: var(--butter);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ===========================
   FOOTER
   =========================== */
.footer {
  background: #1a0008;
  padding: 36px var(--gutter);
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.footer-copy {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
}

.footer-sep {
  color: rgba(255, 255, 255, 0.25);
  margin: 0 4px;
}

.footer-links,
.footer-social {
  display: flex;
  align-items: center;
  gap: 16px;
}

.footer-links a,
.footer-social a {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  transition: color 0.15s;
}

.footer-links a:hover,
.footer-social a:hover {
  color: var(--pink);
}

/* ===========================
   RESPONSIVE — 900px
   =========================== */
@media (max-width: 900px) {
  .my-promise-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .my-promise-video {
    max-width: 280px;
  }

  .about-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-headshot {
    min-height: 420px;
    max-width: 400px;
    margin: 0 auto;
  }

  .who-columns {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .testimonials-grid {
    columns: 2;
  }

  .media-logos {
    flex-wrap: wrap;
    gap: 20px;
  }

  .media-logo-img {
    max-width: 90px;
    height: 44px;
  }
}

/* ===========================
   RESPONSIVE — 700px
   =========================== */
@media (max-width: 700px) {
  :root { --gutter: 20px; }

  .hero { padding: 64px var(--gutter) 80px; }

  .who,
  .whats-inside,
  .about,
  .faq {
    padding: 72px var(--gutter);
  }

  .footer-inner {
    flex-direction: column;
    text-align: center;
  }

  .footer-links,
  .footer-social {
    justify-content: center;
  }
}

/* ===========================
   RESPONSIVE — 480px
   =========================== */
@media (max-width: 480px) {
  .hero-headline { font-size: 1.85rem; }

  .testimonials-grid {
    columns: 1;
  }

  .testimonials-tier1,
  .testimonials-tier2,
  .cta-break {
    padding: 64px var(--gutter);
  }

  .media-logos {
    gap: 16px;
  }

  .media-logo-img {
    max-width: 72px;
    height: 36px;
  }

  .final-cta { padding: 72px var(--gutter); }
}
