/* ==========================================================================
   DIVINE MARRIAGES COACHING — Design System
   ========================================================================== */

/* ---------- Google Fonts ---------- */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=Inter:wght@300;400;500;600;700&display=swap');

/* ---------- Custom Properties ---------- */
:root {
  /* Colors */
  --cream:        #FAF7F2;
  --cream-dark:   #F0EBE3;
  --white:        #FFFFFF;
  --navy:         #1B2A4A;
  --navy-light:   #2A3D66;
  --charcoal:     #2C2C2C;
  --charcoal-light:#4A4A4A;
  --gold:         #C9A96E;
  --gold-light:   #D4B87A;
  --gold-dark:    #B8944F;
  --warm-gray:    #8A8279;
  --light-border: rgba(27, 42, 74, 0.08);
  --shadow-sm:    0 2px 8px rgba(27, 42, 74, 0.06);
  --shadow-md:    0 8px 30px rgba(27, 42, 74, 0.08);
  --shadow-lg:    0 20px 60px rgba(27, 42, 74, 0.12);
  --shadow-gold:  0 8px 30px rgba(201, 169, 110, 0.15);

  /* Typography */
  --font-serif:   'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-sans:    'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Spacing */
  --section-pad:  clamp(80px, 10vw, 140px);
  --container:    1200px;
  --container-narrow: 800px;

  /* Transitions */
  --ease-smooth:  cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-bounce:  cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ---------- Reset & Base ---------- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  font-family: var(--font-sans);
  color: var(--charcoal);
  background-color: var(--cream);
  line-height: 1.7;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

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

ul, ol {
  list-style: none;
}

/* ---------- Typography ---------- */
h1, h2, h3, h4, h5 {
  font-family: var(--font-serif);
  color: var(--navy);
  line-height: 1.2;
  font-weight: 600;
}

h1 {
  font-size: clamp(2.4rem, 5vw, 4rem);
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: -0.01em;
}

h3 {
  font-size: clamp(1.4rem, 2.5vw, 1.8rem);
}

h4 {
  font-size: clamp(1.1rem, 2vw, 1.3rem);
}

p {
  font-size: clamp(1rem, 1.2vw, 1.125rem);
  color: var(--charcoal-light);
  max-width: 680px;
}

.text-gold {
  color: var(--gold);
}

.text-center {
  text-align: center;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

/* ---------- Container ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 40px);
}

.container--narrow {
  max-width: var(--container-narrow);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 16px 36px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.4s var(--ease-smooth);
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.1);
  transform: translateX(-100%);
  transition: transform 0.5s var(--ease-smooth);
}

.btn:hover::after {
  transform: translateX(0);
}

.btn--primary {
  background: var(--navy);
  color: var(--white);
}

.btn--primary:hover {
  background: var(--navy-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn--gold {
  background: var(--gold);
  color: var(--white);
}

.btn--gold:hover {
  background: var(--gold-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

.btn--outline {
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--navy);
}

.btn--outline:hover {
  background: var(--navy);
  color: var(--white);
  transform: translateY(-2px);
}

.btn--white {
  background: var(--white);
  color: var(--navy);
}

.btn--white:hover {
  background: var(--cream);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn--lg {
  padding: 18px 44px;
  font-size: 1rem;
}

.btn-group {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* ---------- Navigation ---------- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: all 0.4s var(--ease-smooth);
  background: transparent;
}

.nav.scrolled {
  background: rgba(250, 247, 242, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 14px 0;
  box-shadow: var(--shadow-sm);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 40px);
}

.nav__logo {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: -0.01em;
}

.nav__logo span {
  color: var(--gold);
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav__links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--charcoal);
  transition: color 0.3s;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  position: relative;
}

.nav__links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.3s var(--ease-smooth);
}

.nav__links a:hover::after,
.nav__links a.active::after {
  width: 100%;
}

.nav__links a:hover {
  color: var(--navy);
}

.nav__cta {
  font-size: 0.85rem !important;
  text-transform: uppercase !important;
  letter-spacing: 0.05em !important;
  padding: 10px 24px !important;
  background: var(--gold);
  color: var(--white) !important;
  border-radius: 4px;
  transition: all 0.3s var(--ease-smooth) !important;
}

.nav__cta::after {
  display: none !important;
}

.nav__cta:hover {
  background: var(--gold-dark);
  transform: translateY(-1px);
}

.nav__member-login {
  font-size: 0.85rem !important;
  text-transform: uppercase !important;
  letter-spacing: 0.05em !important;
  padding: 9px 20px !important;
  border: 1.5px solid var(--navy) !important;
  border-radius: 4px;
  color: var(--navy) !important;
  transition: all 0.3s var(--ease-smooth) !important;
}

.nav__member-login::after {
  display: none !important;
}

.nav__member-login:hover {
  background: var(--navy);
  color: var(--white) !important;
  transform: translateY(-1px);
}

/* Hamburger */
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}

.nav__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  transition: all 0.3s var(--ease-smooth);
  border-radius: 2px;
}

.nav__hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.nav__hamburger.active span:nth-child(2) {
  opacity: 0;
}
.nav__hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Nav */
.nav__mobile {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(250, 247, 242, 0.98);
  backdrop-filter: blur(20px);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
  z-index: 999;
  opacity: 0;
  transition: opacity 0.4s var(--ease-smooth);
}

.nav__mobile.open {
  display: flex;
  opacity: 1;
}

.nav__mobile a {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  color: var(--navy);
  transition: color 0.3s;
}

.nav__mobile a:hover {
  color: var(--gold);
}

/* ---------- Hero ---------- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 100px;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}

.hero__content {
  position: relative;
  z-index: 2;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
  padding: 8px 16px;
  background: rgba(201, 169, 110, 0.1);
  border-radius: 40px;
  border: 1px solid rgba(201, 169, 110, 0.2);
}

.hero__badge::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  animation: pulse-dot 2s ease-in-out infinite;
}

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

.hero h1 {
  margin-bottom: 24px;
}

.hero h1 em {
  font-style: italic;
  color: var(--gold);
}

.hero__sub {
  font-size: clamp(1.05rem, 1.5vw, 1.2rem);
  line-height: 1.8;
  margin-bottom: 40px;
  max-width: 520px;
}

.hero__image {
  position: relative;
  z-index: 1;
}

.hero__image img {
  border-radius: 8px;
  box-shadow: var(--shadow-lg);
  width: 100%;
  height: auto;
  object-fit: cover;
  aspect-ratio: 4/5;
}

.hero__image::before {
  content: '';
  position: absolute;
  top: -20px;
  right: -20px;
  width: 200px;
  height: 200px;
  border: 2px solid var(--gold);
  border-radius: 8px;
  opacity: 0.3;
  z-index: -1;
}

/* ---------- Sections ---------- */
.section {
  padding: var(--section-pad) 0;
}

.section--cream {
  background: var(--cream);
}

.section--white {
  background: var(--white);
}

.section--navy {
  background: var(--navy);
}

.section--navy h2,
.section--navy h3,
.section--navy h4,
.section--navy p {
  color: var(--white);
}

.section--navy p {
  color: rgba(255,255,255,0.75);
}

.section__header {
  text-align: center;
  margin-bottom: clamp(40px, 6vw, 72px);
}

.section__header p {
  margin: 16px auto 0;
}

.section__tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

/* Gold divider line */
.gold-line {
  width: 60px;
  height: 2px;
  background: var(--gold);
  margin: 24px auto;
}

/* ---------- Problem Section ---------- */
.problem {
  position: relative;
}

.problem__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}

.problem__content h2 {
  margin-bottom: 28px;
}

.problem__intro {
  font-size: 1.1rem;
  font-style: italic;
  color: var(--charcoal);
  margin-bottom: 28px;
}

.problem__list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 28px;
}

.problem__list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 1.05rem;
  color: var(--charcoal-light);
}

.problem__list li::before {
  content: '';
  flex-shrink: 0;
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
  margin-top: 8px;
}

.problem__closing {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--navy);
}

.problem__visual {
  position: relative;
}

.problem__visual-card {
  background: var(--white);
  border-radius: 12px;
  padding: clamp(32px, 4vw, 56px);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--light-border);
}

.problem__stat {
  text-align: center;
  padding: 20px 0;
}

.problem__stat:not(:last-child) {
  border-bottom: 1px solid var(--light-border);
}

.problem__stat-number {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}

.problem__stat-label {
  font-size: 0.9rem;
  color: var(--charcoal-light);
  margin-top: 8px;
}

/* ---------- Philosophy / Pillars ---------- */
.pillars__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 48px;
}

.pillar {
  text-align: center;
  padding: clamp(32px, 4vw, 48px) clamp(20px, 3vw, 32px);
  background: var(--white);
  border-radius: 12px;
  border: 1px solid var(--light-border);
  transition: all 0.5s var(--ease-smooth);
  position: relative;
  overflow: hidden;
}

.pillar::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(0);
  transition: transform 0.5s var(--ease-smooth);
}

.pillar:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.pillar:hover::before {
  transform: scaleX(1);
}

.pillar__icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(201, 169, 110, 0.1);
  border-radius: 50%;
  color: var(--gold);
}

.pillar__icon svg {
  width: 28px;
  height: 28px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.5;
}

.pillar h3 {
  margin-bottom: 12px;
}

.pillar p {
  margin: 0 auto;
  font-size: 0.95rem;
}

/* ---------- Path Cards ---------- */
.path-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.path-card {
  background: var(--white);
  border-radius: 12px;
  padding: clamp(32px, 4vw, 44px);
  border: 1px solid var(--light-border);
  transition: all 0.5s var(--ease-smooth);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.path-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(0);
  transition: transform 0.5s var(--ease-smooth);
}

.path-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.path-card:hover::after {
  transform: scaleX(1);
}

.path-card__step {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.path-card h3 {
  margin-bottom: 16px;
}

.path-card p {
  font-size: 0.95rem;
  flex-grow: 1;
}

.path-card__list {
  margin: 16px 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.path-card__list li {
  font-size: 0.95rem;
  color: var(--charcoal-light);
  display: flex;
  align-items: center;
  gap: 10px;
}

.path-card__list li::before {
  content: '✦';
  color: var(--gold);
  font-size: 0.7rem;
}

.path-card .btn {
  margin-top: 24px;
  align-self: flex-start;
}

/* ---------- About ---------- */
.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}

.about__image {
  border-radius: 8px;
  overflow: hidden;
  position: relative;
}

.about__image img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: 8px;
}

.about__image::after {
  content: '';
  position: absolute;
  bottom: -16px;
  left: -16px;
  width: 120px;
  height: 120px;
  border: 2px solid var(--gold);
  border-radius: 8px;
  opacity: 0.3;
  z-index: -1;
}

.about__content h2 {
  margin-bottom: 24px;
}

.about__content p {
  margin-bottom: 16px;
}

.about__content p:last-of-type {
  margin-bottom: 32px;
}

.about__quote {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-style: italic;
  color: var(--navy);
  border-left: 3px solid var(--gold);
  padding-left: 20px;
  margin: 32px 0;
}

/* ---------- Testimonials ---------- */
.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.testimonial {
  background: var(--white);
  border-radius: 12px;
  padding: clamp(28px, 4vw, 40px);
  border: 1px solid var(--light-border);
  transition: all 0.5s var(--ease-smooth);
}

.testimonial:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.testimonial__stars {
  display: flex;
  gap: 4px;
  margin-bottom: 16px;
  color: var(--gold);
  font-size: 0.85rem;
}

.testimonial__text {
  font-size: 1rem;
  font-style: italic;
  color: var(--charcoal-light);
  margin-bottom: 20px;
  line-height: 1.8;
}

.testimonial__author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(201, 169, 110, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-weight: 600;
  color: var(--gold);
  font-size: 1rem;
}

.testimonial__name {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--navy);
}

.testimonial__info {
  font-size: 0.8rem;
  color: var(--warm-gray);
}

/* ---------- Final CTA ---------- */
.cta-final {
  background: var(--navy);
  padding: var(--section-pad) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-final::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(201, 169, 110, 0.08), transparent 70%);
  pointer-events: none;
}

.cta-final::after {
  content: '';
  position: absolute;
  bottom: -30%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(201, 169, 110, 0.06), transparent 70%);
  pointer-events: none;
}

.cta-final h2 {
  color: var(--white);
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

.cta-final p {
  color: rgba(255,255,255,0.7);
  margin: 0 auto 40px;
  font-size: 1.2rem;
  position: relative;
  z-index: 1;
}

.cta-final .btn {
  position: relative;
  z-index: 1;
}

/* ---------- Footer ---------- */
.footer {
  background: var(--charcoal);
  padding: 60px 0 32px;
  color: rgba(255,255,255,0.6);
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer__brand {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  color: var(--white);
  margin-bottom: 16px;
}

.footer__brand span {
  color: var(--gold);
}

.footer__desc {
  font-size: 0.9rem;
  line-height: 1.7;
  max-width: 320px;
  color: rgba(255,255,255,0.5);
}

.footer h4 {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.footer ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer ul a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  transition: color 0.3s;
}

.footer ul a:hover {
  color: var(--white);
}

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
}

/* ---------- Page Header ---------- */
.page-header {
  padding: 160px 0 80px;
  text-align: center;
  background: var(--white);
  position: relative;
}

.page-header::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 2px;
  background: var(--gold);
}

.page-header h1 {
  margin-bottom: 16px;
}

.page-header p {
  margin: 0 auto;
}

/* ---------- Coaching Page ---------- */
.coaching-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}

.coaching-intro__image img {
  border-radius: 8px;
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  box-shadow: var(--shadow-lg);
}

.coaching-points {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin: 32px 0;
}

.coaching-point {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.coaching-point__icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background: rgba(201, 169, 110, 0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1rem;
}

.coaching-point h4 {
  margin-bottom: 4px;
}

.coaching-point p {
  font-size: 0.9rem;
}

/* ---------- Course Page ---------- */
.course-modules {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.course-module {
  background: var(--white);
  padding: clamp(24px, 3vw, 36px);
  border-radius: 12px;
  border: 1px solid var(--light-border);
  transition: all 0.4s var(--ease-smooth);
}

.course-module:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.course-module__number {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 700;
  color: rgba(201, 169, 110, 0.3);
  margin-bottom: 8px;
}

.course-module h4 {
  margin-bottom: 8px;
}

.course-module p {
  font-size: 0.9rem;
}

/* ---------- Free Guides ---------- */
.guides__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.guide-card {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--light-border);
  transition: all 0.5s var(--ease-smooth);
}

.guide-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.guide-card__visual {
  height: 180px;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.guide-card__visual::before {
  content: '';
  position: absolute;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(201, 169, 110, 0.2), transparent 70%);
  top: -40px;
  right: -40px;
}

.guide-card__visual-icon {
  font-size: 2.5rem;
  color: var(--gold);
  position: relative;
  z-index: 1;
}

.guide-card__body {
  padding: clamp(24px, 3vw, 32px);
}

.guide-card__body h3 {
  margin-bottom: 8px;
  font-size: 1.2rem;
}

.guide-card__body p {
  font-size: 0.9rem;
  margin-bottom: 20px;
}

/* ---------- Forms ---------- */
.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.02em;
  color: var(--navy);
  margin-bottom: 8px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 14px 18px;
  border: 1px solid var(--light-border);
  border-radius: 6px;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  color: var(--charcoal);
  background: var(--white);
  transition: all 0.3s var(--ease-smooth);
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 169, 110, 0.15);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

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

/* Email Gate Modal */
.email-gate {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(27, 42, 74, 0.6);
  backdrop-filter: blur(8px);
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.email-gate.active {
  display: flex;
}

.email-gate__box {
  background: var(--white);
  border-radius: 16px;
  padding: clamp(32px, 5vw, 56px);
  max-width: 480px;
  width: 100%;
  text-align: center;
  box-shadow: var(--shadow-lg);
  position: relative;
  animation: modalIn 0.4s var(--ease-bounce);
}

@keyframes modalIn {
  from {
    opacity: 0;
    transform: scale(0.9) translateY(20px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

.email-gate__close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 32px;
  height: 32px;
  border: none;
  background: transparent;
  font-size: 1.2rem;
  cursor: pointer;
  color: var(--charcoal-light);
  transition: color 0.3s;
}

.email-gate__close:hover {
  color: var(--navy);
}

.email-gate__box h3 {
  margin-bottom: 8px;
}

.email-gate__box p {
  margin: 0 auto 24px;
  font-size: 0.95rem;
}

/* Success Message */
.success-message {
  display: none;
  background: var(--white);
  border-radius: 16px;
  padding: clamp(40px, 5vw, 64px);
  text-align: center;
  border: 2px solid rgba(201, 169, 110, 0.3);
  animation: modalIn 0.4s var(--ease-bounce);
}

.success-message.show {
  display: block;
}

.success-message__icon {
  width: 80px;
  height: 80px;
  background: rgba(201, 169, 110, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-size: 2rem;
  color: var(--gold);
}

/* ---------- Range Slider ---------- */
.range-group {
  position: relative;
}

.range-value {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  text-align: center;
  margin-bottom: 8px;
}

input[type="range"] {
  -webkit-appearance: none;
  width: 100%;
  height: 6px;
  border-radius: 3px;
  background: var(--cream-dark);
  outline: none;
  border: none;
  padding: 0;
}

input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--gold);
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(201, 169, 110, 0.4);
  transition: transform 0.2s;
}

input[type="range"]::-webkit-slider-thumb:hover {
  transform: scale(1.15);
}

/* ---------- Scroll Animations ---------- */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s var(--ease-smooth), transform 0.8s var(--ease-smooth);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.8s var(--ease-smooth), transform 0.8s var(--ease-smooth);
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.8s var(--ease-smooth), transform 0.8s var(--ease-smooth);
}

.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* Stagger children */
.stagger > * {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s var(--ease-smooth), transform 0.6s var(--ease-smooth);
}

.stagger.visible > *:nth-child(1) { transition-delay: 0s; }
.stagger.visible > *:nth-child(2) { transition-delay: 0.1s; }
.stagger.visible > *:nth-child(3) { transition-delay: 0.2s; }
.stagger.visible > *:nth-child(4) { transition-delay: 0.3s; }
.stagger.visible > *:nth-child(5) { transition-delay: 0.4s; }
.stagger.visible > *:nth-child(6) { transition-delay: 0.5s; }

.stagger.visible > * {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .hero__grid,
  .problem__grid,
  .about__grid,
  .coaching-intro {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero__image {
    order: -1;
    max-width: 500px;
    margin: 0 auto;
  }

  .pillars__grid,
  .path-cards,
  .testimonials__grid,
  .guides__grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
  }

  .course-modules {
    grid-template-columns: 1fr;
  }

  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}

@media (max-width: 768px) {
  .nav__links {
    display: none;
  }

  .nav__hamburger {
    display: flex;
  }

  .hero {
    min-height: auto;
    padding: 120px 0 60px;
  }

  .hero__image::before {
    display: none;
  }

  .btn-group {
    flex-direction: column;
    width: 100%;
  }

  .btn-group .btn {
    width: 100%;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .footer__grid {
    grid-template-columns: 1fr;
  }

  .footer__bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

  .about__image::after {
    display: none;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .pillars__grid,
  .path-cards,
  .testimonials__grid,
  .guides__grid {
    grid-template-columns: repeat(2, 1fr);
    max-width: none;
  }
}

/* ---------- Utility ---------- */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}

/* Smooth divider */
.divider {
  width: 100%;
  height: 1px;
  background: var(--light-border);
}

/* ---------- Summer Promo Popup ---------- */
.promo-popup {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 2500;
  background: rgba(27, 42, 74, 0.7);
  backdrop-filter: blur(8px);
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.promo-popup.active {
  display: flex;
}
.promo-popup__box {
  background: var(--white);
  border-radius: 20px;
  max-width: 820px;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.4);
  position: relative;
  animation: modalIn 0.5s var(--ease-bounce);
}
@media (max-width: 768px) {
  .promo-popup__box {
    grid-template-columns: 1fr;
  }
  .promo-popup__image-side {
    display: none;
  }
}
.promo-popup__image-side {
  background: url('images/hero-couple.png') no-repeat center center;
  background-size: cover;
  position: relative;
  min-height: 350px;
}
.promo-popup__image-side::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, transparent 50%, rgba(255,255,255,0.05) 100%);
}
.promo-popup__content-side {
  padding: clamp(24px, 5vw, 44px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: left;
}
.promo-popup__close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 32px;
  height: 32px;
  border: none;
  background: rgba(27, 42, 74, 0.05);
  font-size: 1.2rem;
  border-radius: 50%;
  cursor: pointer;
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  z-index: 10;
}
.promo-popup__close:hover {
  background: var(--gold);
  color: var(--white);
}
.promo-popup__tag {
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 6px;
}
.promo-popup__box h2 {
  font-family: var(--font-serif);
  color: var(--navy);
  font-size: clamp(1.4rem, 4vw, 1.8rem);
  line-height: 1.3;
  margin-bottom: 12px;
}
.promo-popup__box p {
  color: var(--charcoal-light);
  font-size: 0.92rem;
  line-height: 1.6;
  margin-bottom: 16px;
}
.promo-popup__price {
  background: var(--cream);
  padding: 12px 16px;
  border-radius: 8px;
  border-left: 3px solid var(--gold);
  margin-bottom: 20px;
}
.promo-popup__price-main {
  font-family: var(--font-serif);
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--navy);
}
.promo-popup__price-strike {
  text-decoration: line-through;
  color: var(--warm-gray);
  font-size: 0.95rem;
  margin-left: 8px;
}
.promo-popup__dismiss {
  display: inline-block;
  margin-top: 12px;
  color: var(--warm-gray);
  text-decoration: underline;
  font-size: 0.8rem;
  transition: color 0.2s;
  background: none;
  border: none;
  cursor: pointer;
  align-self: center;
}
.promo-popup__dismiss:hover {
  color: var(--navy);
}
