@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;0,800;1,400;1,500&family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400&family=Montserrat:wght@300;400;500;600;700&display=swap');

:root {
  --off-white: #EAE3DA; /* Elegant soft sand/taupe - darker than white */
  --cream: #DFD7CD; /* Slightly darker sand */
  --nude: #D4C9BD;
  --gold: #A68345; /* Dark rich gold */
  --gold-light: #C9A96E;
  --gold-dark: #82612D;
  --rose: #C4918A;
  --rose-burnt: #A36B63;
  --champagne: #DBCFBE;
  --black: #111111; /* Dark text */
  --black-soft: #2D2D2D;
  --gray: #4A4A4A;
  --gray-light: #8A8A8A;
  --white: #FFFFFF;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: 'Montserrat', sans-serif;
  background: var(--off-white);
  color: var(--black);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.elegant-text {
  font-family: 'Cormorant Garamond', serif;
}

/* PARTICLES CANVAS */
#particles-canvas {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  z-index: 9999;
}

/* SCROLL ANIMATIONS (REMOVED) */
.reveal {
  opacity: 1;
  transform: translateY(0);
}
.reveal.active {
  opacity: 1;
  transform: translateY(0);
}
.reveal-left {
  opacity: 1;
  transform: translateX(0);
}
.reveal-left.active { opacity: 1; transform: translateX(0); }
.reveal-right {
  opacity: 1;
  transform: translateX(0);
}
.reveal-right.active { opacity: 1; transform: translateX(0); }

/* NAVBAR */
.navbar {
  position: fixed; top: 0; width: 100%; z-index: 1000;
  padding: 18px 60px;
  display: flex; justify-content: space-between; align-items: center;
  background: rgba(234,227,218,0.85); /* Matches --off-white */
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(166,131,69,0.15);
  transition: all 0.4s ease;
}
.navbar.scrolled {
  padding: 12px 60px;
  box-shadow: 0 4px 30px rgba(0,0,0,0.06);
}
.navbar-brand {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--black);
  text-decoration: none;
  letter-spacing: 0.08em;
}
.navbar-brand span { color: var(--gold); }
.navbar-cta {
  padding: 10px 28px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--white);
  border: none;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.4s ease;
}
.navbar-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(201,169,110,0.4);
}

/* HERO */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex; align-items: center;
  overflow: hidden;
  background: var(--black);
}
.hero-bg {
  position: absolute; top: 0; left: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.55;
  filter: brightness(0.7);
}
.hero-overlay {
  position: absolute; top: 0; left: 0;
  width: 100%; height: 100%;
  background: linear-gradient(135deg, rgba(26,26,26,0.7) 0%, rgba(26,26,26,0.3) 50%, rgba(201,169,110,0.1) 100%);
}
.hero-content {
  position: relative; z-index: 2;
  max-width: 750px;
  padding: 140px 80px 80px;
}
.hero-badge-row {
  display: flex; gap: 12px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 16px;
  background: rgba(201,169,110,0.15);
  border: 1px solid rgba(201,169,110,0.4);
  color: var(--gold-light);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
}
.hero-badge svg { width: 14px; height: 14px; fill: var(--gold-light); }
.hero h1 {
  font-size: 3.2rem;
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 24px;
  font-weight: 500;
}
.hero h1 em {
  font-style: italic;
  color: var(--gold-light);
}
.hero-sub {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.6;
  margin-bottom: 40px;
  font-weight: 300;
}
.cta-primary {
  display: inline-block;
  padding: 18px 48px;
  background: linear-gradient(135deg, #E5C058, #B8860B);
  color: #FFFFFF;
  box-shadow: 0 8px 25px rgba(184, 134, 11, 0.3);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
}
.cta-primary::before {
  content: '';
  position: absolute; top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
  transition: left 0.6s ease;
}
.cta-primary:hover::before { left: 100%; }
.cta-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(184, 134, 11, 0.6);
}
.hero-shimmer {
  position: absolute; bottom: 0; left: 0;
  width: 100%; height: 200px;
  background: linear-gradient(to top, var(--off-white), transparent);
  z-index: 3;
  pointer-events: none;
}

/* SECTION COMMON */
.section {
  padding: 100px 60px;
}
.section-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  display: flex; align-items: center; gap: 12px;
}
.section-label::before {
  content: '';
  width: 40px; height: 1px;
  background: var(--gold);
}
.section-title {
  font-size: 2.6rem;
  line-height: 1.2;
  margin-bottom: 20px;
  color: var(--black);
}
.section-subtitle {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  color: var(--gray);
  line-height: 1.6;
  max-width: 600px;
}

/* TRANSFORMATION */
.transformation { background: var(--off-white); }
.transform-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin-top: 60px;
  border: 1px solid rgba(201,169,110,0.2);
  overflow: hidden;
}
.transform-col {
  padding: 50px;
}
.transform-col.before {
  background: #FFEBEB;
  border-right: 1px solid rgba(211, 47, 47, 0.2);
}
.transform-col.after {
  background: #E8F5E9;
}
.transform-col-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 30px;
  padding-bottom: 14px;
  border-bottom: 2px solid var(--gold);
  display: inline-block;
}
.before .transform-col-label { color: #D32F2F; border-color: rgba(211, 47, 47, 0.4); }
.after .transform-col-label { color: #2E7D32; border-color: rgba(46, 125, 50, 0.4); }
.transform-item {
  display: flex; align-items: flex-start; gap: 14px;
  margin-bottom: 22px;
}
.transform-icon {
  width: 32px; height: 32px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  font-size: 0.85rem;
  margin-top: 2px;
}
.before .transform-icon {
  background: rgba(211, 47, 47, 0.15);
  color: #D32F2F;
}
.after .transform-icon {
  background: rgba(46, 125, 50, 0.15);
  color: #2E7D32;
}
.transform-item h4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 4px;
}
.transform-item p {
  font-size: 0.8rem;
  color: var(--gray);
  line-height: 1.5;
}

/* GALLERY */
.gallery { background: var(--off-white); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 60px;
}
.gallery-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/4;
  cursor: pointer;
  group: true;
}
.gallery-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.25,0.46,0.45,0.94), filter 0.6s ease;
}
.gallery-card:hover img {
  transform: scale(1.08);
  filter: brightness(0.85);
}
.gallery-card-overlay {
  position: absolute; bottom: 0; left: 0;
  width: 100%;
  padding: 30px 24px;
  background: linear-gradient(to top, rgba(26,26,26,0.9), transparent);
  transform: translateY(0);
}
.gallery-card:hover .gallery-card-overlay {
  transform: translateY(0);
}
.gallery-card-overlay h4 {
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 4px;
}
.gallery-card-overlay p {
  color: var(--gold-light);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.gallery-card.placeholder-card {
  background: linear-gradient(135deg, var(--cream), var(--nude));
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 12px;
}
.gallery-card.placeholder-card .placeholder-icon {
  font-size: 2.5rem;
  opacity: 0.4;
}
.gallery-card.placeholder-card span {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  color: var(--gray);
  font-style: italic;
}

/* MODULES */
.modules { background: var(--cream); }
.modules-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  margin-top: 60px;
}
.module-card {
  background: var(--white);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(166,131,69,0.15);
  padding: 40px 28px;
  text-align: center;
  transition: all 0.5s cubic-bezier(0.25,0.46,0.45,0.94);
  position: relative;
  overflow: hidden;
}
.module-card::before {
  content: '';
  position: absolute; top: 0; left: 0;
  width: 100%; height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(0);
  transition: transform 0.5s ease;
}
.module-card:hover::before { transform: scaleX(1); }
.module-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(166,131,69,0.15);
}
.module-icon {
  width: 56px; height: 56px;
  margin: 0 auto 20px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid rgba(201,169,110,0.3);
  border-radius: 50%;
  color: var(--gold);
  font-size: 1.4rem;
  transition: all 0.4s ease;
}
.module-card:hover .module-icon {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}
.module-card h4 {
  font-size: 1rem;
  margin-bottom: 10px;
  color: var(--black);
}
.module-card p {
  font-size: 0.78rem;
  color: var(--gray);
  line-height: 1.5;
}
.module-num {
  font-family: 'Playfair Display', serif;
  font-size: 3.5rem;
  color: rgba(166,131,69,0.35);
  position: absolute; top: 12px; right: 18px;
  font-weight: 700;
  z-index: 1;
}

/* SOCIAL PROOF */
.social-proof { background: var(--off-white); }
.stats-row {
  display: flex;
  justify-content: center;
  gap: 80px;
  margin: 60px 0;
}
.stat-item { text-align: center; }
.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 3.5rem;
  color: var(--gold);
  font-weight: 700;
  line-height: 1;
}
.stat-label {
  font-size: 0.75rem;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 8px;
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}
.testimonial-card {
  background: var(--white);
  border: 1px solid rgba(166,131,69,0.12);
  padding: 36px 28px;
  transition: all 0.4s ease;
  position: relative;
}
.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 35px rgba(0,0,0,0.06);
}
.testimonial-card::before {
  content: '\201C';
  font-family: 'Playfair Display', serif;
  font-size: 4rem;
  color: rgba(201,169,110,0.2);
  position: absolute; top: 10px; left: 20px;
  line-height: 1;
}
.testimonial-stars {
  color: var(--gold);
  font-size: 0.8rem;
  margin-bottom: 16px;
  letter-spacing: 3px;
}
.testimonial-card p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem;
  color: var(--black-soft);
  line-height: 1.6;
  font-style: italic;
  margin-bottom: 20px;
}
.testimonial-author {
  display: flex; align-items: center; gap: 12px;
}
.testimonial-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-light), var(--rose));
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  font-family: 'Playfair Display', serif;
  font-size: 0.9rem;
  font-weight: 600;
}
.testimonial-name {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--black);
}
.testimonial-role {
  font-size: 0.7rem;
  color: var(--gray);
}

/* CREATOR STORY */
.creator-story {
  background: var(--black);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.creator-story::before {
  content: '';
  position: absolute; top: 0; right: 0;
  width: 50%; height: 100%;
  background: linear-gradient(135deg, rgba(201,169,110,0.08), transparent);
}
.creator-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.creator-image-wrap {
  position: relative;
}
.creator-image-wrap img {
  width: 100%;
  object-fit: cover;
  filter: brightness(0.9) contrast(1.05);
}
.creator-image-frame {
  position: absolute; top: -15px; left: -15px;
  width: calc(100% + 10px);
  height: calc(100% + 10px);
  border: 1px solid rgba(201,169,110,0.3);
  pointer-events: none;
}
.creator-text .section-label { color: var(--gold-light); }
.creator-text .section-label::before { background: var(--gold-light); }
.creator-text h2 {
  color: var(--white);
  font-size: 2.2rem;
  margin-bottom: 28px;
}
.creator-text h2 em { color: var(--gold-light); font-style: italic; }
.creator-timeline {
  list-style: none;
  padding-left: 24px;
  border-left: 1px solid rgba(201,169,110,0.3);
}
.creator-timeline li {
  padding: 16px 0 16px 24px;
  position: relative;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.6;
}
.creator-timeline li::before {
  content: '';
  position: absolute; left: -5px; top: 22px;
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--gold);
}

/* OFFER */
.offer {
  background: linear-gradient(180deg, var(--off-white), var(--cream));
  text-align: center;
}
.offer-box {
  max-width: 700px;
  margin: 50px auto 0;
  background: var(--white);
  border: 1px solid rgba(166,131,69,0.2);
  padding: 60px 50px;
  position: relative;
}
.offer-box::before {
  content: '';
  position: absolute; top: -2px; left: 20%; right: 20%;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.offer-includes {
  list-style: none;
  margin: 30px 0;
  text-align: left;
}
.offer-includes li {
  padding: 14px 0;
  border-bottom: 1px solid rgba(201,169,110,0.1);
  display: flex; align-items: center; gap: 14px;
  font-size: 0.9rem;
}
.offer-includes li .check {
  color: var(--gold);
  font-size: 1.1rem;
  flex-shrink: 0;
}
.offer-price-row {
  margin: 36px 0;
  text-align: center;
}
.offer-old-price {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: #D32F2F;
  text-decoration: line-through;
  margin-bottom: 4px;
}
.offer-price {
  font-family: 'Montserrat', sans-serif;
  font-size: 4.5rem;
  color: #2E7D32; /* Strong positive green */
  font-weight: 800;
  line-height: 1;
  margin: 10px 0;
  text-shadow: 0 4px 15px rgba(46, 125, 50, 0.2);
}
.offer-price-sub {
  font-size: 0.8rem;
  color: var(--gray);
  margin-top: 4px;
}
.urgency-timer {
  color: #D32F2F;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  margin: 20px auto 0;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  background: rgba(211, 47, 47, 0.08);
  display: inline-block;
  padding: 12px 24px;
  border-radius: 6px;
  border: 1px solid rgba(211, 47, 47, 0.3);
  animation: pulse-red 2s infinite;
}
@keyframes pulse-red {
  0% { box-shadow: 0 0 0 0 rgba(211, 47, 47, 0.4); }
  70% { box-shadow: 0 0 0 10px rgba(211, 47, 47, 0); }
  100% { box-shadow: 0 0 0 0 rgba(211, 47, 47, 0); }
}
.offer-badges {
  display: flex; justify-content: center; gap: 20px;
  margin: 30px 0;
  flex-wrap: wrap;
}
.offer-badge-item {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.75rem;
  color: var(--black-soft);
}
.offer-badge-item svg {
  width: 20px; height: 20px;
  fill: var(--gold);
}
.guarantee-seal {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 16px 28px;
  background: rgba(201,169,110,0.08);
  border: 1px solid rgba(201,169,110,0.2);
  margin-top: 24px;
  font-size: 0.78rem;
  color: var(--black-soft);
}
.guarantee-seal svg { width: 28px; height: 28px; fill: var(--gold); }

/* FAQ */
.faq { background: var(--off-white); }
.faq-container {
  max-width: 750px;
  margin: 50px auto 0;
}
.faq-item {
  border-bottom: 1px solid rgba(201,169,110,0.15);
}
.faq-question {
  width: 100%;
  padding: 24px 0;
  background: none;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--black);
  text-align: left;
  transition: color 0.3s ease;
}
.faq-question:hover { color: var(--gold); }
.faq-question .faq-icon {
  font-size: 1.4rem;
  color: var(--gold);
  transition: transform 0.4s ease;
  flex-shrink: 0;
  margin-left: 20px;
}
.faq-item.active .faq-icon { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s cubic-bezier(0.25,0.46,0.45,0.94), padding 0.5s ease;
}
.faq-item.active .faq-answer {
  max-height: 300px;
  padding-bottom: 24px;
}
.faq-answer p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem;
  color: var(--gray);
  line-height: 1.7;
}

/* FOOTER */
.footer {
  background: var(--black);
  color: rgba(255,255,255,0.5);
  padding: 50px 60px;
  text-align: center;
}
.footer-brand {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: var(--white);
  margin-bottom: 12px;
}
.footer-brand span { color: var(--gold); }
.footer p { font-size: 0.75rem; line-height: 1.8; }

/* RESPONSIVE */
@media(max-width: 1024px) {
  .modules-grid { grid-template-columns: repeat(3, 1fr); }
  .section { padding: 80px 40px; }
  .hero-content { padding: 120px 50px 60px; }
  .hero h1 { font-size: 2.6rem; }
}
@media(max-width: 768px) {
  .navbar { padding: 14px 24px; }
  .navbar.scrolled { padding: 10px 24px; }
  .navbar-brand { font-size: 1rem; }
  .section { padding: 60px 24px; }
  .hero-content { padding: 110px 24px 50px; }
  .hero h1 { font-size: 2rem; }
  .hero-sub { font-size: 1.1rem; }
  .section-title { font-size: 1.8rem; }
  .transform-grid { grid-template-columns: 1fr; }
  .transform-col.before { border-right: none; border-bottom: 1px solid rgba(201,169,110,0.2); }
  .gallery-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .modules-grid { grid-template-columns: 1fr 1fr; }
  .stats-row { gap: 30px; flex-wrap: wrap; }
  .stat-number { font-size: 2.5rem; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .creator-grid { grid-template-columns: 1fr; gap: 40px; }
  .offer-box { padding: 40px 24px; }
  .offer-price { font-size: 2.8rem; }
  .hero-badge-row { gap: 8px; }
  .hero-badge { font-size: 0.55rem; padding: 5px 10px; }
}
@media(max-width: 480px) {
  .hero h1 { font-size: 1.65rem; }
  .cta-primary { padding: 15px 32px; font-size: 0.7rem; }
  .gallery-grid { grid-template-columns: 1fr; }
  .modules-grid { grid-template-columns: 1fr; }
  .stats-row { gap: 20px; }
  .navbar-cta { padding: 8px 18px; font-size: 0.6rem; }
  .offer-badges { flex-direction: column; align-items: center; }
  .footer { padding: 40px 24px; }
}
