/* ============================================================
   Tracy Jensen Coaching — style.css
   Fonts: Pacifico (headings) + Nunito (body)
   ============================================================ */

@import url('https://cdn.jsdelivr.net/npm/@fontsource/pacifico@5.0.8/index.css');
@import url('https://cdn.jsdelivr.net/npm/@fontsource/nunito@5.0.18/index.css');

/* ── RESET & BASE ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Nunito', sans-serif;
  background: #fff0f5;
  color: #1a0010;
  -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }

/* ── CSS VARIABLES ── */
:root {
  --pink:        #e8197a;
  --pink-dark:   #c4005e;
  --pink-light:  #ff8fc8;
  --blue:        #58c4e8;
  --blue-mid:    #3ab0d8;
  --blue-light:  #7fd4ed;
  --blue-grad-a: #a8e4f5;
  --blue-grad-b: #1a9fbf;
  --blue-grad-c: #0d7a99;
  --black:       #1a0010;
  --maroon:      #9b1a55;
  --maroon-dark: #6b0030;
  --footer-bg:   #0d0d0d;
  --white:       #ffffff;
  --blush:       #fff0f5;
  --border-pink: #ffd6e8;
  --grad-pink:   linear-gradient(160deg, #ff8fc8 0%, #e8197a 55%, #c4005e 100%);
  --grad-blue:   linear-gradient(135deg, #a8e4f5 0%, #58c4e8 50%, #1a9fbf 100%);
}

/* ── TYPOGRAPHY ── */
.pacifico { font-family: 'Pacifico', cursive; }

/* ── BUTTONS ── */
.btn {
  display: inline-block;
  border-radius: 50px;
  padding: 11px 22px;
  font-size: 14px;
  font-weight: 800;
  font-family: 'Nunito', sans-serif;
  cursor: pointer;
  line-height: 1;
  transition: opacity .2s, transform .15s;
  border: 2.5px solid transparent;
  white-space: nowrap;
}
.btn:hover { opacity: .88; transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn-blue     { background: var(--blue);  color: #fff; border-color: var(--blue); }
.btn-blue-ol  { background: transparent;  color: #fff; border-color: var(--blue); }
.btn-pink     { background: var(--pink);  color: #fff; border-color: var(--pink); }
.btn-white    { background: #fff; color: var(--pink); border-color: #fff; }
.btn-white-ol { background: transparent; color: #fff; border-color: rgba(255,255,255,.7); }
.btn-white-blk{ background: #fff; color: var(--black); border-color: #fff; }
.btn-blue-ol-blk { background: transparent; color: var(--black); border-color: var(--blue); }
.btn-sm { padding: 8px 16px; font-size: 12px; }
.btn-lg { padding: 14px 30px; font-size: 16px; }

/* ── NAV ── */
.nav {
  background: #fff;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 32px;
  border-bottom: 2px solid var(--border-pink);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 12px rgba(232,25,122,.06);
}
.nav-logo {
  height: 46px;
  object-fit: contain;
  background: transparent;
  mix-blend-mode: multiply; /* removes white bg on light surfaces */
}
.nav-links {
  display: flex;
  gap: 24px;
  align-items: center;
  margin-left: auto;
}
.nav-links a, .nav-links span {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--black);
  cursor: pointer;
  transition: color .15s;
  text-decoration: none;
}
.nav-links a:hover, .nav-links span:hover { color: var(--pink); }
.nav-links a.active, .nav-links span.active { color: var(--pink); }
.nav-cta {
  background: var(--blue);
  color: var(--pink) !important;
  padding: 8px 18px;
  border-radius: 50px;
  font-family: 'Pacifico', cursive !important;
  font-size: 13px !important;
  text-transform: none !important;
  letter-spacing: .01em !important;
  cursor: pointer;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
  margin-left: auto;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--black);
  border-radius: 2px;
  transition: all .3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: 64px; left: 0; right: 0;
  background: #fff;
  border-bottom: 2px solid var(--border-pink);
  box-shadow: 0 8px 24px rgba(0,0,0,.12);
  z-index: 99;
  flex-direction: column;
  padding: 8px 0 16px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a, .mobile-menu span {
  font-size: 14px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--black);
  cursor: pointer;
  padding: 14px 28px;
  border-bottom: 1px solid var(--border-pink);
  text-decoration: none;
  transition: background .15s, color .15s;
  display: block;
}
.mobile-menu a:last-child, .mobile-menu span:last-child { border-bottom: none; }
.mobile-menu a:hover, .mobile-menu span:hover { background: var(--blush); color: var(--pink); }
.mobile-menu a.active, .mobile-menu span.active { color: var(--pink); }
.mobile-menu .mob-cta {
  background: var(--blue);
  color: var(--pink) !important;
  font-family: 'Pacifico', cursive;
  font-size: 16px !important;
  text-transform: none !important;
  letter-spacing: .01em !important;
  margin: 12px 20px 0;
  border-radius: 50px;
  text-align: center;
  border: none !important;
  padding: 13px 20px !important;
}

/* ── SECTIONS ── */
.section-pink  { background: var(--grad-pink); }
.section-blue  { background: var(--grad-blue); }
.section-white { background: #fff; }
.section-blush { background: var(--blush); }

/* ── HERO ── */
.hero {
  background: var(--grad-pink);
  display: flex;
  align-items: stretch;
  height: calc(100vh - 64px);
  max-height: 580px;
  min-height: 380px;
}
.hero-left {
  flex: 1;
  padding: 20px 32px 20px 44px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.hero-cred {
  font-size: 12px;
  font-weight: 800;
  color: rgba(255,255,255,.8);
  letter-spacing: .12em;
  margin-bottom: 8px;
  line-height: 1.6;
}
.hero-cred .dot { color: rgba(255,255,255,.4); margin: 0 6px; }
.hero-h1 {
  font-family: 'Pacifico', cursive;
  font-size: 28px;
  color: #fff;
  line-height: 1.4;
  margin-bottom: 8px;
}
.hero-sub {
  font-size: 13px;
  font-weight: 700;
  color: rgba(255,255,255,.92);
  margin-bottom: 14px;
  line-height: 1.4;
}
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; }

/* Hero media panel */
.hero-media {
  flex: 0 0 44%;
  position: relative;
  overflow: hidden;
  border-left: 2px solid rgba(255,255,255,.2);
  cursor: pointer;
  background: linear-gradient(160deg, #ff8fc8 0%, #e8197a 55%, #c4005e 100%);
}
.hero-media .poster {
  width: 100%; height: 100%;
  object-fit: contain;
  object-position: center top;
  display: block;
  transition: opacity .4s;
  background: linear-gradient(160deg, #ff8fc8 0%, #e8197a 55%, #c4005e 100%);
}
.hero-media video {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  object-fit: contain;
  background: linear-gradient(160deg, #ff8fc8 0%, #e8197a 55%, #c4005e 100%);
  opacity: 0;
  transition: opacity .4s;
  pointer-events: none;
}
.hero-media video.playing { opacity: 1; pointer-events: auto; }
.hero-media .poster.hidden { opacity: 0; }
.play-btn {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 72px; height: 72px;
  background: rgba(255,255,255,.85);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: all .2s;
  box-shadow: 0 6px 28px rgba(0,0,0,.22);
}
.play-btn:hover { background: #fff; transform: translate(-50%,-50%) scale(1.08); }
.play-btn svg { margin-left: 5px; }
.play-btn.hidden { display: none; }

/* ── DEFINITIONS ── */
.def-section { background: #fff; padding: 22px 48px 16px; }
.def-row { display: flex; gap: 24px; max-width: 900px; margin: 0 auto; }
.def-item {
  flex: 1;
  text-align: center;
  padding: 14px 20px;
  border-top: 4px solid var(--blue);
}
.def-item:nth-child(2) { border-top-color: var(--blue-mid); }
.def-heart { display: block; margin: 0 auto 12px; }
.def-term {
  font-family: 'Pacifico', cursive;
  font-size: 18px;
  color: var(--black);
  display: block;
  margin-bottom: 8px;
  line-height: 1.3;
}
.def-body {
  font-size: 13px;
  color: var(--pink);
  font-weight: 600;
  line-height: 1.6;
  display: block;
}

/* ── WELCOME / INTRO ── */
.intro-section {
  background: var(--grad-blue);
  padding: 56px 48px;
  text-align: center;
}
.intro-eyebrow {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 10px;
  display: block;
}
.intro-section h2 {
  font-family: 'Pacifico', cursive;
  font-size: 28px;
  color: var(--black);
  margin-bottom: 14px;
  line-height: 1.4;
}
.intro-section p {
  font-size: 14px;
  color: #fff;
  line-height: 1.8;
  max-width: 620px;
  margin: 0 auto 24px;
  font-weight: 600;
}

/* ── REVIEWS PREVIEW ── */
.rev-preview-section { background: var(--grad-pink); padding: 52px 48px; }
.rev-section-title {
  font-family: 'Pacifico', cursive;
  font-size: 32px;
  color: #fff;
  text-align: center;
  margin-bottom: 6px;
}
.rev-eyebrow {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(255,255,255,.78);
  text-align: center;
  display: block;
  margin-bottom: 28px;
}
.rev-preview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 1000px;
  margin: 0 auto 28px;
}

/* ── REVIEW CARDS (shared) ── */
.rev-card {
  background: var(--blue);
  border: 2px solid rgba(255,255,255,.45);
  border-radius: 18px;
  padding: 18px 18px 14px;
  display: flex;
  flex-direction: column;
}
.rev-card.c2 { grid-column: span 2; }
.rev-card.c3 { grid-column: span 3; }
.rev-card.r2 { grid-row: span 2; }
.rev-carrots { font-size: 13px; margin-bottom: 10px; letter-spacing: 2px; }
.rev-quote {
  color: var(--black);
  font-weight: 700;
  line-height: 1.65;
  margin-bottom: 14px;
  font-style: italic;
  flex: 1;
  font-size: 13px;
}
.rev-quote.lg { font-size: 15px; }
.rev-quote.md { font-size: 14px; }
.rev-quote::before {
  content: '\201C';
  font-family: 'Pacifico', cursive;
  font-size: 22px;
  color: rgba(0,0,0,.18);
  display: block;
  line-height: .7;
  margin-bottom: 6px;
}
.rev-footer { border-top: 1px solid rgba(255,255,255,.35); padding-top: 10px; margin-top: auto; }
.rev-name { font-size: 13px; font-weight: 900; color: #fff; display: block; }
.rev-meta { font-size: 11px; color: rgba(255,255,255,.8); font-weight: 600; display: block; margin-top: 2px; }

/* ── PILLARS ── */
.pillars-section { background: #fff; padding: 28px 48px; }
.pillars-row { display: flex; gap: 24px; max-width: 1000px; margin: 0 auto; }
.pillar {
  flex: 1;
  text-align: center;
  padding: 24px 16px;
  border-top: 4px solid var(--blue);
}
.pillar:nth-child(2) { border-top-color: var(--blue-mid); }
.pillar:nth-child(3) { border-top-color: var(--blue-light); }
.pillar-icon { display: block; margin: 0 auto 12px; }
.pillar h3 {
  font-family: 'Pacifico', cursive;
  font-size: 16px;
  color: var(--black);
  margin-bottom: 8px;
  line-height: 1.4;
}
.pillar p { font-size: 13px; color: var(--pink-light); line-height: 1.6; font-weight: 700; }

/* ── ABOUT STRIP ── */
.about-strip {
  background: var(--grad-pink);
  padding: 48px;
  display: flex;
  gap: 36px;
  align-items: center;
}
.about-strip-photo {
  flex: 0 0 38%;
  border-radius: 18px;
  overflow: hidden;
  height: 280px;
}
.about-strip-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 20%;
  display: block;
}
.about-strip-text h2 {
  font-family: 'Pacifico', cursive;
  font-size: 18px;
  color: #fff;
  margin-bottom: 14px;
  line-height: 1.4;
}
.about-strip-text p {
  font-size: 15px;
  color: rgba(255,255,255,.92);
  line-height: 1.75;
  margin-bottom: 18px;
  font-weight: 600;
}

/* ── COACHING SERVICES PREVIEW ── */
.svc-preview {
  background: var(--grad-blue);
  padding: 44px 48px;
}
.svc-preview-title {
  font-family: 'Pacifico', cursive;
  font-size: 26px;
  color: var(--black);
  text-align: center;
  margin-bottom: 28px;
}
.svc-preview-row {
  display: flex;
  gap: 24px;
  max-width: 500px;
  margin: 0 auto;
}
.svc-preview-item {
  flex: 1;
  text-align: center;
  padding: 22px 16px;
  border-top: 3px solid rgba(255,255,255,.7);
}
.svc-preview-heart { display: block; margin: 0 auto 12px; }
.svc-preview-pill {
  display: inline-block;
  background: #fff;
  color: var(--black);
  border: 2px solid #fff;
  border-radius: 50px;
  padding: 10px 24px;
  font-family: 'Pacifico', cursive;
  font-size: 16px;
  line-height: 1;
  cursor: pointer;
  transition: opacity .2s;
}
.svc-preview-pill:hover { opacity: .85; }

/* ── QUOTE ── */
.quote-section {
  background: #fff;
  padding: 40px 48px;
  text-align: center;
  border-top: 2px solid var(--border-pink);
  border-bottom: 2px solid var(--border-pink);
}
.quote-text {
  font-family: 'Pacifico', cursive;
  font-size: 22px;
  color: var(--pink);
  line-height: 1.5;
  margin-bottom: 10px;
}
.quote-attr {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--black);
}
.quote-hearts { display: flex; align-items: center; justify-content: center; gap: 16px; margin-bottom: 8px; }

/* ── BOTTOM CTA ── */
.cta-section {
  background: var(--grad-pink);
  padding: 56px 48px;
  text-align: center;
}
.cta-section .eyebrow {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: rgba(255,255,255,.75);
  margin-bottom: 10px;
  display: block;
}
.cta-section h2 {
  font-family: 'Pacifico', cursive;
  font-size: 30px;
  color: var(--blue);
  margin-bottom: 10px;
  line-height: 1.4;
  text-shadow: 0 1px 8px rgba(0,0,0,.12);
}
.cta-section p {
  font-size: 14px;
  color: rgba(255,255,255,.88);
  line-height: 1.75;
  max-width: 480px;
  margin: 0 auto 28px;
  font-weight: 600;
}
.cta-blue-section {
  background: var(--grad-blue);
  padding: 52px 48px;
  text-align: center;
}
.cta-blue-section .eyebrow {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 10px;
  display: block;
}
.cta-blue-section h2 {
  font-family: 'Pacifico', cursive;
  font-size: 26px;
  color: var(--black);
  margin-bottom: 10px;
  line-height: 1.4;
}
.cta-blue-section p {
  font-size: 14px;
  color: #fff;
  line-height: 1.75;
  max-width: 440px;
  margin: 0 auto 24px;
  font-weight: 600;
}
.btn-row { display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; }

/* ── FOOTER ── */
.footer {
  background: var(--footer-bg);
  padding: 44px 48px 32px;
  text-align: center;
}
/* Footer logo — transparent PNG shows real brand colors on dark bg */
.footer-logo {
  height: 52px;
  object-fit: contain;
  display: block;
  margin: 0 auto 16px;
  mix-blend-mode: normal;
}
.footer-brand {
  font-family: 'Pacifico', cursive;
  font-size: 20px;
  color: var(--pink-light);
  display: block;
  margin-bottom: 16px;
}
.footer-links {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-bottom: 16px;
  flex-wrap: wrap;
}
.footer-links a, .footer-links span {
  font-size: 11px;
  color: var(--pink-light);
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: color .15s;
}
.footer-links a:hover, .footer-links span:hover { color: #fff; }
.footer-tagline {
  font-family: 'Pacifico', cursive;
  font-size: 16px;
  color: #fff;
  letter-spacing: .02em;
  display: block;
  margin-bottom: 8px;
}
.footer-copy { font-size: 11px; color: var(--pink-light); }

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  background: var(--grad-pink);
  padding: 72px 48px 56px;
  text-align: center;
}
.page-hero h1 {
  font-family: 'Pacifico', cursive;
  font-size: 44px;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 14px;
}
.page-hero p {
  font-size: 14px;
  color: rgba(255,255,255,.9);
  font-weight: 600;
  line-height: 1.7;
  max-width: 520px;
  margin: 0 auto;
}
.page-hero .subhead {
  font-size: 14px;
  font-weight: 800;
  color: rgba(255,255,255,.88);
  letter-spacing: .1em;
  margin-top: 4px;
}
.page-hero .sub-dot { color: rgba(255,255,255,.45); margin: 0 8px; }

/* ── ABOUT PAGE ── */
.bio-body {
  background: #fff;
  padding: 56px 80px;
  text-align: center;
}
.bio-greet {
  font-family: 'Pacifico', cursive;
  font-size: 28px;
  color: var(--pink);
  margin-bottom: 28px;
  line-height: 1.3;
}
.bio-p {
  font-size: 15px;
  color: var(--black);
  line-height: 1.9;
  margin-bottom: 18px;
  font-weight: 600;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}
.bio-sign { padding-top: 28px; text-align: center; }
.bio-xoxo {
  font-family: 'Pacifico', cursive;
  font-size: 22px;
  color: var(--pink);
  display: block;
  margin-bottom: 4px;
}
.bio-name {
  font-family: 'Pacifico', cursive;
  font-size: 22px;
  color: var(--pink);
  display: block;
}

/* ── SERVICES PAGE ── */
.alc-section { background: #fff; padding: 48px; }
.alc-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 20px;
}
.alc-title {
  font-family: 'Pacifico', cursive;
  font-size: 34px;
  color: var(--pink);
  line-height: 1.3;
}
.alc-pills {
  display: flex;
  gap: 12px;
  max-width: 900px;
  margin: 0 auto;
}
.alc-pill {
  flex: 1;
  background: var(--grad-pink);
  border-radius: 50px;
  padding: 14px 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
  transition: opacity .2s, transform .15s;
}
.alc-pill:hover { opacity: .88; transform: translateY(-2px); }
.alc-pill span {
  font-size: 15px;
  font-weight: 800;
  color: #fff;
  font-family: 'Nunito', sans-serif;
  text-align: center;
  line-height: 1.2;
  white-space: nowrap;
}

.bundles-section { background: var(--grad-blue); padding: 48px; }
.bundles-title {
  font-family: 'Pacifico', cursive;
  font-size: 34px;
  color: var(--black);
  text-align: center;
  margin-bottom: 6px;
}
.bundles-sub {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: #fff;
  text-align: center;
  display: block;
  margin-bottom: 28px;
}
.bundles-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; max-width: 900px; margin: 0 auto; }
.bundle-card {
  background: var(--grad-pink);
  border-radius: 18px;
  padding: 24px 20px;
  position: relative;
  display: flex;
  flex-direction: column;
}
.bundle-name {
  font-family: 'Pacifico', cursive;
  font-size: 22px;
  color: #fff;
  margin-bottom: 16px;
  text-align: center;
  line-height: 1.3;
}
.bundle-features { list-style: none; flex: 1; margin-bottom: 18px; }
.bundle-features li {
  font-size: 14px;
  color: rgba(255,255,255,.95);
  padding: 5px 0;
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  border-bottom: 1px solid rgba(255,255,255,.2);
}
.bundle-features li:last-child { border-bottom: none; }
.bundle-heart { flex-shrink: 0; font-size: 13px; color: #fff; }
.bundle-btn { text-align: center; margin-top: auto; }
.popular-badge {
  position: absolute;
  top: 12px; right: 12px;
  background: #fff;
  color: var(--pink);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 50px;
}

.fine-print { background: #fff; padding: 32px 48px; }
.fine-print h4 {
  font-family: 'Pacifico', cursive;
  font-size: 22px;
  color: var(--pink);
  margin-bottom: 14px;
}
.fine-print ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.fine-print ul li {
  font-size: 13px;
  color: var(--black);
  padding: 0 0 0 22px;
  position: relative;
  line-height: 1.65;
  font-weight: 600;
}
.fine-print ul li::before {
  content: '';
  position: absolute;
  left: 0; top: 4px;
  width: 14px; height: 12px;
  background-color: var(--blue);
  clip-path: path('M7 12C7 12 0 7.5 0 3.2C0 1.4 1.4 0 3.2 0C4.3 0 5.2 0.6 7 2C8.8 0.6 9.7 0 10.8 0C12.6 0 14 1.4 14 3.2C14 7.5 7 12 7 12Z');
}

.svc-bottom { background: var(--grad-pink); padding: 48px; text-align: center; }
.svc-bottom h2 {
  font-family: 'Pacifico', cursive;
  font-size: 28px;
  color: var(--black);
  margin-bottom: 8px;
  line-height: 1.4;
}
.svc-bottom p {
  font-size: 14px;
  color: rgba(255,255,255,.88);
  margin-bottom: 24px;
  line-height: 1.6;
  font-weight: 600;
}

/* ── REVIEWS PAGE ── */
.reviews-page-hero {
  background: var(--grad-pink);
  padding: 64px 48px 44px;
  text-align: center;
}
.reviews-page-hero h1 {
  font-family: 'Pacifico', cursive;
  font-size: 44px;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 10px;
}
.reviews-page-hero p {
  font-size: 12px;
  color: rgba(255,255,255,.88);
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.reviews-body { background: var(--grad-pink); padding: 36px 48px 48px; }
.reviews-full-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  grid-auto-rows: auto;
  gap: 14px;
  max-width: 1100px;
  margin: 0 auto;
}
.reviews-cta {
  background: #fff;
  padding: 44px 48px;
  text-align: center;
  border-top: 3px solid var(--border-pink);
}
.reviews-cta h2 {
  font-family: 'Pacifico', cursive;
  font-size: 26px;
  color: var(--pink);
  margin-bottom: 10px;
  line-height: 1.3;
}
.reviews-cta p {
  font-size: 14px;
  color: var(--black);
  font-weight: 600;
  margin-bottom: 20px;
  line-height: 1.7;
}

/* ── MODAL ── */
.modal-overlay {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,.58);
  z-index: 200;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.modal-overlay.open { display: flex; }
.modal {
  background: #fff;
  border-radius: 22px;
  padding: 32px 28px 28px;
  max-width: 420px;
  width: 100%;
  position: relative;
  box-shadow: 0 16px 56px rgba(0,0,0,.22);
  max-height: 90vh;
  overflow-y: auto;
}
.modal-close {
  position: absolute;
  top: 14px; right: 18px;
  font-size: 20px;
  cursor: pointer;
  color: var(--maroon);
  font-weight: 900;
  background: none;
  border: none;
  line-height: 1;
}
.modal h3 {
  font-family: 'Pacifico', cursive;
  font-size: 22px;
  color: var(--pink);
  margin-bottom: 4px;
  line-height: 1.3;
}
.modal-sub {
  font-size: 12px;
  color: var(--maroon);
  font-weight: 600;
  margin-bottom: 18px;
  display: block;
  line-height: 1.5;
}
.modal-service {
  font-size: 13px;
  font-weight: 800;
  color: var(--blue);
  margin-bottom: 18px;
  display: block;
}
.modal label {
  font-size: 11px;
  font-weight: 800;
  color: var(--maroon);
  letter-spacing: .08em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 4px;
  margin-top: 10px;
}
.modal input, .modal textarea, .modal select {
  width: 100%;
  border: 1.5px solid var(--border-pink);
  border-radius: 12px;
  padding: 11px 14px;
  font-size: 14px;
  font-family: 'Nunito', sans-serif;
  color: var(--black);
  outline: none;
  transition: border-color .2s;
  background: #fff;
}
.modal input:focus, .modal textarea:focus { border-color: var(--blue); }
.modal textarea { resize: none; height: 88px; }
.modal-req {
  font-size: 11px;
  color: var(--maroon);
  margin: 12px 0 16px;
  display: block;
  font-weight: 600;
}
.modal-send {
  display: block;
  width: 100%;
  background: var(--pink);
  color: #fff;
  border: none;
  border-radius: 50px;
  padding: 14px;
  font-size: 15px;
  font-weight: 800;
  cursor: pointer;
  font-family: 'Nunito', sans-serif;
  transition: background .2s;
}
.modal-send:hover { background: var(--pink-dark); }
.modal-success { display: none; text-align: center; padding: 20px 0; }
.modal-success .s-icon { font-size: 52px; display: block; margin-bottom: 14px; }
.modal-success p {
  font-family: 'Pacifico', cursive;
  font-size: 20px;
  color: var(--pink);
  margin-bottom: 8px;
}
.modal-success span {
  font-size: 13px;
  color: var(--maroon-dark);
  font-weight: 600;
  line-height: 1.6;
  display: block;
}

/* Carrot rating */
.rating-row { display: flex; gap: 10px; margin: 14px 0 16px; justify-content: center; }
.carrot-star { font-size: 28px; cursor: pointer; opacity: .3; transition: opacity .15s; user-select: none; }
.carrot-star.active { opacity: 1; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .hero { flex-direction: column; min-height: auto; }
  .hero-left { padding: 44px 28px 36px; }
  .hero-h1 { font-size: 32px; }
  .hero-media { flex: none; height: 420px; border-left: none; border-top: 2px solid rgba(255,255,255,.2); }
  .def-row, .pillars-row, .svc-preview-row { flex-direction: column; gap: 16px; }
  .about-strip { flex-direction: column; padding: 36px 28px; }
  .about-strip-photo { flex: none; width: 100%; height: 240px; }
  .alc-pills { flex-wrap: wrap; }
  .bundles-grid { grid-template-columns: 1fr; }
  .rev-preview-grid { grid-template-columns: 1fr; }
  .reviews-full-grid { grid-template-columns: 1fr; }
  .rev-card.c2, .rev-card.c3, .rev-card.r2 { grid-column: span 1; grid-row: span 1; }
  .bio-body { padding: 44px 28px; }
  .page-hero { padding: 52px 28px 40px; }
  .page-hero h1 { font-size: 32px; }
  .reviews-page-hero { padding: 48px 28px 32px; }
  .reviews-page-hero h1 { font-size: 32px; }
  .reviews-body { padding: 28px; }
  .alc-section, .bundles-section, .fine-print, .svc-bottom,
  .def-section, .intro-section, .rev-preview-section, .pillars-section,
  .about-strip, .svc-preview, .quote-section, .cta-section, .cta-blue-section,
  .footer, .reviews-cta { padding-left: 28px; padding-right: 28px; }
}

@media (max-width: 600px) {
  .nav { padding: 0 16px; }
  .nav-links { display: none; }
  .hamburger { display: flex; }

  /* Hero — stack vertically, photo on top */
  .hero-media img, .hero-media .poster { object-fit: contain; object-position: center top; background: linear-gradient(160deg, #ff8fc8 0%, #e8197a 55%, #c4005e 100%); }
  .hero {
    flex-direction: column;
    height: auto;
    min-height: auto;
  }
  /* Photo/video panel comes AFTER text on mobile */
  .hero-media {
    order: 1;
    flex: none;
    height: 110vw;
    min-height: 320px;
    max-height: 560px;
    border-left: none;
    border-bottom: 2px solid rgba(255,255,255,.2);
    width: 100%;
  }
  .hero-left {
    order: -1;
    padding: 24px 20px 20px;
  }
  .hero-h1 { font-size: 24px; line-height: 1.45; margin-bottom: 8px; }
  .hero-cred { font-size: 9px; margin-bottom: 8px; }
  .hero-sub { font-size: 12px; margin-bottom: 14px; }
  /* Smaller buttons on mobile */
  .hero-btns { flex-direction: row; gap: 8px; justify-content: center; }
  .hero-btns .btn { font-size: 11px; padding: 7px 13px; }

  /* Definitions — tighter on mobile */
  .def-section { padding: 14px 16px 10px; }
  .def-item { padding: 10px 8px; }
  .def-term { font-size: 13px; }
  .def-body { font-size: 11px; }

  /* Pillars — tighter on mobile */
  .pillars-section { padding: 16px; }
  .pillars-row { flex-direction: row; gap: 8px; }
  .pillar { padding: 10px 6px; }
  .pillar h3 { font-size: 9px; }
  .pillar p { font-size: 8px; }

  /* About strip — Athlete title wraps gracefully */
  .about-strip { flex-direction: column; padding: 24px 16px; gap: 16px; }
  .about-strip-photo { flex: none; width: 100%; height: 200px; }
  .about-strip-text h2 { font-size: 13px; line-height: 1.5; text-align: center; }
  .about-strip-text { text-align: center; }

  /* Coaching services preview — A La Carrot + Bundles on one line */
  .svc-preview { padding: 18px 16px; }
  .svc-preview-row { flex-direction: row; gap: 12px; }
  .svc-preview-item { padding: 10px 6px; }
  .svc-preview-pill { font-size: 11px; padding: 7px 12px; }

  /* A La Carrot pills — 2x2 grid on mobile */
  .alc-pills { flex-wrap: wrap; }
  .alc-pill { flex: 1 1 45%; }
  .alc-pill span { white-space: normal; font-size: 10px; }

  .bundles-grid { grid-template-columns: 1fr; }
  .btn-row { flex-direction: column; align-items: center; }
}
