/* ============================================================
   MENOPAUSE RESET COACHING — styles.css
   Brand: Deep Rose #B5194F · Sacred Gold #C4973A · Warm Cream #FDF5EE
   Fonts: Cinzel · Cormorant Garamond · Jost
   ============================================================ */

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

:root {
  --rose:        #B5194F;
  --rose-vib:    #C4356A;
  --rose-pale:   #FDF0F4;
  --rose-blush:  #F5E6EC;
  --rose-petal:  #E8A0B8;
  --gold:        #C4973A;
  --gold-light:  #E8C97A;
  --gold-soft:   #F5E4B8;
  --cream:       #FDF5EE;
  --ink:         #1A0A10;
  --ink-mid:     #4A2535;
  --ink-light:   #7A5065;
  --white:       #FFFFFF;
  --shadow-sm:   0 2px 12px rgba(181,25,79,.10);
  --shadow-md:   0 8px 32px rgba(181,25,79,.14);
  --shadow-lg:   0 20px 60px rgba(181,25,79,.18);
  --radius:      16px;
  --radius-sm:   8px;
  --nav-h:       72px;
  --transition:  .35s cubic-bezier(.4,0,.2,1);
}

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

body {
  font-family: 'Jost', sans-serif;
  font-weight: 400;
  line-height: 1.7;
  color: var(--ink);
  background: var(--cream);
  overflow-x: hidden;
}

img { display: block; max-width: 100%; height: auto; }
a   { color: inherit; text-decoration: none; }
ul  { list-style: none; }
strong { font-weight: 600; }
em { font-style: italic; }

/* ─── TYPOGRAPHY ────────────────────────────────────────────── */
.cinzel-tag {
  font-family: 'Cinzel', serif;
  font-size: .72rem;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .6rem;
}

.section-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  font-weight: 600;
  line-height: 1.18;
  color: var(--ink);
}
.section-heading em {
  color: var(--rose);
  font-style: italic;
  display: block;
}

.section-sub {
  font-size: 1rem;
  color: var(--ink-light);
  max-width: 640px;
  margin: 1rem auto 0;
  line-height: 1.8;
}

/* ─── LAYOUT HELPERS ────────────────────────────────────────── */
.container {
  width: min(1180px, 94%);
  margin-inline: auto;
}

.section {
  padding: 100px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

/* ─── BUTTONS ───────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  font-family: 'Jost', sans-serif;
  font-size: .9rem;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: .9rem 2rem;
  border-radius: 50px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--rose);
  color: var(--white);
  border-color: var(--rose);
}
.btn-primary:hover {
  background: var(--rose-vib);
  border-color: var(--rose-vib);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

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

.btn-white {
  background: var(--white);
  color: var(--rose);
  border-color: var(--white);
}
.btn-white:hover {
  background: transparent;
  color: var(--white);
  transform: translateY(-2px);
}

.btn-lg { padding: 1.1rem 2.6rem; font-size: 1rem; }
.btn-full { width: 100%; justify-content: center; }

/* ─── COOKIE BANNER ─────────────────────────────────────────── */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--ink);
  color: var(--white);
  z-index: 9999;
  padding: 1rem 1.5rem;
  box-shadow: 0 -4px 24px rgba(0,0,0,.3);
  transform: translateY(100%);
  transition: transform .4s ease;
}
.cookie-banner.visible { transform: translateY(0); }
.cookie-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  max-width: 1180px;
  margin: 0 auto;
  flex-wrap: wrap;
}
.cookie-content p { font-size: .9rem; opacity: .9; flex: 1; min-width: 200px; }
.cookie-content a { color: var(--gold-light); text-decoration: underline; }
.cookie-buttons { display: flex; gap: .75rem; flex-shrink: 0; }
.cookie-accept, .cookie-decline {
  padding: .55rem 1.4rem;
  border-radius: 50px;
  border: 2px solid;
  font-family: 'Jost', sans-serif;
  font-size: .85rem;
  font-weight: 500;
  cursor: pointer;
  transition: all var(--transition);
}
.cookie-accept  { background: var(--gold); color: var(--ink); border-color: var(--gold); }
.cookie-accept:hover  { background: var(--gold-light); }
.cookie-decline { background: transparent; color: var(--white); border-color: rgba(255,255,255,.4); }
.cookie-decline:hover { border-color: var(--white); }

/* ─── NAVBAR ────────────────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  z-index: 1000;
  transition: background var(--transition), box-shadow var(--transition);
}
.navbar.scrolled {
  background: rgba(253,245,238,.96);
  backdrop-filter: blur(14px);
  box-shadow: 0 2px 24px rgba(181,25,79,.12);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  width: min(1180px, 94%);
  margin-inline: auto;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: .6rem;
}
.logo-img {
  height: 44px;
  width: auto;
  object-fit: contain;
}
.logo-fallback {
  font-family: 'Cinzel', serif;
  font-size: .95rem;
  color: var(--rose);
  letter-spacing: .08em;
}

.nav-links {
  display: flex;
  gap: 2rem;
  align-items: center;
}
.nav-links a {
  font-family: 'Jost', sans-serif;
  font-size: .88rem;
  font-weight: 500;
  letter-spacing: .05em;
  color: var(--ink);
  position: relative;
  padding-bottom: 2px;
  transition: color var(--transition);
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 1.5px;
  background: var(--rose);
  transition: width var(--transition);
}
.nav-links a:hover { color: var(--rose); }
.nav-links a:hover::after { width: 100%; }

.nav-cta {
  font-family: 'Jost', sans-serif;
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  background: var(--rose);
  color: var(--white);
  padding: .6rem 1.4rem;
  border-radius: 50px;
  transition: all var(--transition);
}
.nav-cta:hover { background: var(--rose-vib); transform: translateY(-1px); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--rose);
  border-radius: 2px;
  transition: all var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ─── HERO ──────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding: calc(var(--nav-h) + 40px) 24px 80px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 120% 100% at 50% 0%, #3D0C1E 0%, #1A0A10 55%, #0D050A 100%);
}

.hero-pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(196,151,58,.12) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(181,25,79,.15) 0%, transparent 50%),
    url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23C4973A' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: .6;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 60%, rgba(13,5,10,.6) 100%);
}

.hero-container {
  position: relative;
  z-index: 2;
  max-width: 860px;
  margin: 0 auto;
}

.hero-logo-wrap {
  margin-bottom: 2rem;
}
.hero-logo {
  height: 90px;
  width: auto;
  margin: 0 auto;
  filter: drop-shadow(0 4px 24px rgba(196,151,58,.4));
}

.hero-eyebrow {
  font-family: 'Cinzel', serif;
  font-size: .75rem;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 1.4rem;
  opacity: .9;
}

.hero-headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3rem, 6vw, 5.2rem);
  font-weight: 600;
  line-height: 1.12;
  color: var(--white);
  margin-bottom: 1.4rem;
}
.hero-headline em {
  color: var(--gold-light);
  font-style: italic;
}

.hero-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-style: italic;
  color: var(--rose-petal);
  margin-bottom: 1.4rem;
  opacity: .9;
}

.hero-desc {
  font-size: 1.05rem;
  color: rgba(255,255,255,.75);
  max-width: 580px;
  margin: 0 auto 2.4rem;
  line-height: 1.8;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 3.5rem;
}
.hero-buttons .btn-outline {
  color: var(--white);
  border-color: rgba(255,255,255,.5);
}
.hero-buttons .btn-outline:hover {
  background: rgba(255,255,255,.15);
  border-color: var(--white);
  color: var(--white);
}

.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  flex-wrap: wrap;
}
.hero-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .25rem;
}
.stat-val {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.4rem;
  font-weight: 600;
  color: var(--gold-light);
  line-height: 1;
}
.stat-lbl {
  font-size: .78rem;
  letter-spacing: .1em;
  color: rgba(255,255,255,.6);
  text-transform: uppercase;
}
.hero-stat-div {
  width: 1px;
  height: 44px;
  background: rgba(255,255,255,.2);
}

/* Scroll cue */
.scroll-cue {
  position: absolute;
  bottom: 32px; left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
  color: rgba(255,255,255,.45);
  font-size: .72rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  z-index: 2;
}
.scroll-mouse {
  width: 22px; height: 36px;
  border: 2px solid rgba(255,255,255,.3);
  border-radius: 11px;
  display: flex;
  justify-content: center;
  padding-top: 6px;
}
.scroll-dot {
  width: 4px; height: 8px;
  background: var(--gold-light);
  border-radius: 2px;
  animation: scrollDot 2s ease-in-out infinite;
}
@keyframes scrollDot {
  0%   { transform: translateY(0); opacity: 1; }
  75%  { transform: translateY(12px); opacity: 0; }
  100% { transform: translateY(0); opacity: 0; }
}

/* ─── STORY SECTION ─────────────────────────────────────────── */
.story-section {
  background: var(--white);
}
.story-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: center;
}
.story-img-frame {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.story-img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  display: block;
}
.story-img-deco {
  position: absolute;
  top: -20px; left: -20px;
  width: 120px; height: 120px;
  border: 2px solid var(--gold);
  border-radius: var(--radius);
  z-index: -1;
}
.story-quote-card {
  background: var(--rose);
  color: var(--white);
  padding: 1.4rem 1.8rem;
  border-radius: var(--radius);
  margin-top: 1.5rem;
  box-shadow: var(--shadow-md);
}
.story-quote-card p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  font-style: italic;
  line-height: 1.6;
  margin-bottom: .6rem;
}
.story-quote-card span {
  font-size: .82rem;
  letter-spacing: .1em;
  opacity: .8;
}

.story-text-col { display: flex; flex-direction: column; }
.story-p {
  color: var(--ink-light);
  margin-bottom: 1rem;
  line-height: 1.85;
}
.story-p strong { color: var(--rose); }
.story-closer {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-style: italic;
  color: var(--rose);
  margin-top: .5rem;
}
.story-credentials {
  display: flex;
  flex-direction: column;
  gap: .55rem;
  margin-top: 1.8rem;
  padding-top: 1.8rem;
  border-top: 1px solid var(--rose-blush);
}
.cred-item {
  display: flex;
  align-items: center;
  gap: .7rem;
  font-size: .9rem;
  color: var(--ink-mid);
  font-weight: 500;
}
.cred-icon { color: var(--gold); font-size: .8rem; }

/* ─── PILLARS SECTION ───────────────────────────────────────── */
.pillars-section {
  background: var(--cream);
}

.pillar-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
  margin-bottom: 96px;
}
.pillar-block:last-child { margin-bottom: 0; }

.pillar-left  .pillar-img-col  { order: 0; }
.pillar-left  .pillar-text-col { order: 1; }
.pillar-right .pillar-img-col  { order: 1; }
.pillar-right .pillar-text-col { order: 0; }

.pillar-img-frame {
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-lg);
}
.pillar-img-frame::before {
  content: '';
  position: absolute;
  inset: 0;
  border: 3px solid transparent;
  border-radius: 20px;
  z-index: 2;
  pointer-events: none;
}
.frame-rose::before  { border-color: rgba(181,25,79,.25); }
.frame-gold::before  { border-color: rgba(196,151,58,.35); }

.pillar-img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  display: block;
  transition: transform .6s ease;
}
.pillar-img-frame:hover .pillar-img { transform: scale(1.03); }

.pillar-number {
  font-family: 'Cinzel', serif;
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--rose-blush);
  line-height: 1;
  margin-bottom: .5rem;
}
.pillar-label {
  font-family: 'Cinzel', serif;
  font-size: .72rem;
  letter-spacing: .3em;
  color: var(--gold);
  margin-bottom: .4rem;
}
.pillar-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 2.5vw, 2.4rem);
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 1.2rem;
  line-height: 1.2;
}
.pillar-text {
  color: var(--ink-light);
  margin-bottom: 1rem;
  line-height: 1.85;
  font-size: .97rem;
}
.pillar-text strong { color: var(--rose); }
.pillar-text em { color: var(--rose-vib); }

.pillar-message {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: var(--rose-pale);
  padding: 1.2rem 1.4rem;
  border-radius: var(--radius-sm);
  margin-top: 1.2rem;
}
.pillar-msg-line {
  width: 3px;
  min-height: 48px;
  background: var(--rose);
  border-radius: 2px;
  flex-shrink: 0;
}
.pillar-message p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem;
  font-style: italic;
  color: var(--rose);
  line-height: 1.6;
}

/* ─── TRANSFORMATION SECTION ────────────────────────────────── */
.transform-section {
  background: var(--ink);
  position: relative;
  overflow: hidden;
}
.transform-section::before {
  content: '';
  position: absolute;
  top: -120px; right: -120px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(196,151,58,.08) 0%, transparent 70%);
  pointer-events: none;
}
.transform-section .section-heading { color: var(--white); }
.transform-section .section-sub { color: rgba(255,255,255,.6); }
.transform-section .cinzel-tag { color: var(--gold-light); }

.transform-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.transform-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: border-color var(--transition), background var(--transition);
}
.transform-card:hover {
  background: rgba(255,255,255,.07);
  border-color: rgba(196,151,58,.3);
}

.transform-from, .transform-to {
  display: flex;
  flex-direction: column;
  gap: .4rem;
}
.tf-label {
  font-family: 'Cinzel', serif;
  font-size: .65rem;
  letter-spacing: .25em;
  text-transform: uppercase;
}
.transform-from .tf-label { color: var(--rose-petal); }
.transform-to   .tf-label { color: var(--gold-light); }
.transform-from p { color: rgba(255,255,255,.55); font-size: .95rem; font-style: italic; }
.transform-to   p { color: rgba(255,255,255,.9); font-size: .95rem; }

.transform-arrow {
  font-size: 1.4rem;
  color: var(--gold);
  text-align: center;
  align-self: center;
}

/* ─── FREE GUIDE SECTION ────────────────────────────────────── */
.guide-section {
  background: var(--rose-pale);
  position: relative;
  overflow: hidden;
}
.guide-section::before {
  content: '';
  position: absolute;
  top: -200px; left: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(181,25,79,.06) 0%, transparent 70%);
}
.guide-section::after {
  content: '';
  position: absolute;
  bottom: -150px; right: -150px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(196,151,58,.08) 0%, transparent 70%);
}

.guide-wrapper {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.guide-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 3.5vw, 3.2rem);
  font-weight: 600;
  line-height: 1.18;
  color: var(--ink);
  margin-bottom: 1rem;
}
.guide-title em { color: var(--rose); display: block; }

.guide-desc {
  color: var(--ink-light);
  margin-bottom: 1.8rem;
  line-height: 1.8;
  font-size: .97rem;
}

.guide-list {
  display: flex;
  flex-direction: column;
  gap: .75rem;
  margin-bottom: 1.6rem;
}
.guide-list li {
  display: flex;
  align-items: flex-start;
  gap: .8rem;
  font-size: .95rem;
  color: var(--ink-mid);
}
.guide-check { color: var(--gold); flex-shrink: 0; font-size: .9rem; }

.guide-free-note {
  font-size: .83rem;
  color: var(--ink-light);
  letter-spacing: .02em;
}

.guide-form-box {
  background: var(--white);
  border-radius: 20px;
  padding: 2.8rem;
  box-shadow: var(--shadow-md);
  text-align: center;
}
.guide-form-icon {
  font-size: 2.4rem;
  margin-bottom: 1rem;
  color: var(--rose);
}
.guide-form-box h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.9rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 1.8rem;
}

.guide-form { display: flex; flex-direction: column; gap: 1rem; }
.guide-field { display: flex; flex-direction: column; gap: .4rem; text-align: left; }
.guide-field label {
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .08em;
  color: var(--ink-mid);
  text-transform: uppercase;
}
.guide-field input {
  font-family: 'Jost', sans-serif;
  font-size: 1rem;
  padding: .85rem 1.1rem;
  border: 1.5px solid var(--rose-blush);
  border-radius: var(--radius-sm);
  background: var(--cream);
  color: var(--ink);
  outline: none;
  transition: border-color var(--transition);
}
.guide-field input:focus { border-color: var(--rose); }
.guide-field input::placeholder { color: var(--ink-light); opacity: .6; }

.guide-gdpr {
  display: flex;
  align-items: flex-start;
  gap: .6rem;
  text-align: left;
}
.guide-gdpr input { width: 18px; height: 18px; accent-color: var(--rose); margin-top: 2px; flex-shrink: 0; }
.guide-gdpr label {
  font-size: .8rem;
  color: var(--ink-light);
  line-height: 1.5;
  text-transform: none;
  letter-spacing: 0;
  font-weight: 400;
}
.guide-gdpr a { color: var(--rose); text-decoration: underline; }

.form-note {
  font-size: .8rem;
  color: var(--ink-light);
  margin-top: .25rem;
}

/* ─── PRODUCTS SECTION ──────────────────────────────────────── */
.products-section {
  background: var(--white);
}
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  align-items: stretch;
}

.product-card {
  background: var(--cream);
  border: 1.5px solid var(--rose-blush);
  border-radius: var(--radius);
  padding: 2rem 1.6rem;
  display: flex;
  flex-direction: column;
  gap: .6rem;
  position: relative;
  transition: transform var(--transition), box-shadow var(--transition);
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.product-badge {
  position: absolute;
  top: -12px; left: 1.4rem;
  background: var(--gold);
  color: var(--ink);
  font-family: 'Cinzel', serif;
  font-size: .6rem;
  letter-spacing: .2em;
  font-weight: 700;
  padding: .28rem .8rem;
  border-radius: 50px;
}

.product-ribbon {
  position: absolute;
  top: -12px; right: 1.2rem;
  background: var(--rose);
  color: var(--white);
  font-family: 'Cinzel', serif;
  font-size: .6rem;
  letter-spacing: .15em;
  padding: .3rem .9rem;
  border-radius: 50px;
}

.product-featured {
  background: linear-gradient(145deg, var(--ink) 0%, #2D0F1E 100%);
  border-color: rgba(196,151,58,.4);
  transform: scale(1.04);
}
.product-featured:hover { transform: scale(1.04) translateY(-6px); }
.product-featured .product-name { color: var(--white); }
.product-featured .product-type { color: var(--gold-light); }
.product-featured .product-desc { color: rgba(255,255,255,.6); }
.product-featured .product-price { color: var(--gold-light); }
.product-featured .btn-outline { color: var(--white); border-color: rgba(255,255,255,.4); }
.product-featured .btn-outline:hover { background: rgba(255,255,255,.15); color: var(--white); border-color: var(--white); }

.product-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.3;
}
.product-type {
  font-family: 'Cinzel', serif;
  font-size: .65rem;
  letter-spacing: .2em;
  color: var(--gold);
  text-transform: uppercase;
}
.product-desc {
  font-size: .88rem;
  color: var(--ink-light);
  line-height: 1.7;
  flex: 1;
  margin: .4rem 0 .6rem;
}
.product-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--rose);
  line-height: 1;
  margin-bottom: .4rem;
}
.product-price span {
  font-size: 1rem;
  color: var(--ink-light);
  font-weight: 400;
}
.product-free .product-price { color: var(--gold); }

/* ─── TESTIMONIALS SECTION ──────────────────────────────────── */
.testi-section {
  background: var(--rose-pale);
}
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.8rem;
}
.testi-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2.2rem;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: transform var(--transition), box-shadow var(--transition);
}
.testi-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.testi-stars { color: var(--gold); font-size: 1rem; letter-spacing: .12em; }
.testi-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-style: italic;
  color: var(--ink-mid);
  line-height: 1.7;
  flex: 1;
}
.testi-author {
  display: flex;
  align-items: center;
  gap: .9rem;
  padding-top: 1rem;
  border-top: 1px solid var(--rose-blush);
}
.testi-avatar {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--rose), var(--rose-vib));
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cinzel', serif;
  font-size: 1rem;
  font-weight: 700;
  flex-shrink: 0;
}
.testi-author strong { display: block; font-size: .9rem; color: var(--ink); }
.testi-author span  { font-size: .8rem; color: var(--ink-light); }

/* ─── ABOUT SECTION ─────────────────────────────────────────── */
.about-section {
  background: var(--white);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: center;
}
.about-img-wrap {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.about-img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  display: block;
}
.about-img-accent {
  position: absolute;
  bottom: -20px; right: -20px;
  width: 140px; height: 140px;
  border: 3px solid var(--gold);
  border-radius: 20px;
  z-index: -1;
}
.about-badge {
  display: flex;
  flex-direction: column;
  gap: .6rem;
  margin-top: 1.5rem;
  background: var(--cream);
  border: 1px solid var(--rose-blush);
  border-radius: var(--radius);
  padding: 1.2rem 1.6rem;
}
.ab-pillar {
  display: flex;
  align-items: center;
  gap: .8rem;
  font-family: 'Cinzel', serif;
  font-size: .75rem;
  letter-spacing: .2em;
  color: var(--ink-mid);
  font-weight: 600;
}
.ab-pillar span:first-child { font-size: 1.2rem; }

.about-p {
  color: var(--ink-light);
  margin-bottom: 1rem;
  line-height: 1.85;
}
.about-p strong { color: var(--rose); }

.about-creds {
  display: flex;
  flex-direction: column;
  gap: .5rem;
  margin-top: 1.8rem;
  padding-top: 1.6rem;
  border-top: 1px solid var(--rose-blush);
}
.about-cred {
  font-size: .9rem;
  color: var(--ink-mid);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: .6rem;
}

/* ─── CTA BANNER ────────────────────────────────────────────── */
.cta-banner {
  position: relative;
  padding: 120px 24px;
  text-align: center;
  overflow: hidden;
}
.cta-banner-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--rose) 0%, #7C0E32 50%, var(--ink) 100%);
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23C4973A' fill-opacity='0.07'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.cta-inner {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.4rem;
}
.cta-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-style: italic;
  font-weight: 600;
  color: var(--white);
  line-height: 1.35;
}
.cta-sub {
  font-size: 1rem;
  color: rgba(255,255,255,.75);
  max-width: 500px;
}

/* ─── FOOTER ────────────────────────────────────────────────── */
.footer {
  background: var(--ink);
  color: var(--white);
  padding: 80px 0 40px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-logo {
  height: 60px;
  width: auto;
  margin-bottom: .75rem;
  filter: brightness(0) invert(1) opacity(.9);
}
.footer-brand-name {
  font-family: 'Cinzel', serif;
  font-size: .9rem;
  letter-spacing: .15em;
  color: var(--gold-light);
  margin-bottom: .4rem;
}
.footer-tagline {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: .95rem;
  color: rgba(255,255,255,.5);
  margin-bottom: 1rem;
}
.footer-email {
  font-size: .88rem;
  color: var(--gold-light);
  text-decoration: underline;
  transition: color var(--transition);
}
.footer-email:hover { color: var(--white); }

.footer-links-col h4 {
  font-family: 'Cinzel', serif;
  font-size: .72rem;
  letter-spacing: .2em;
  color: var(--gold-light);
  margin-bottom: 1rem;
  text-transform: uppercase;
}
.footer-links-col ul {
  display: flex;
  flex-direction: column;
  gap: .6rem;
}
.footer-links-col a {
  font-size: .88rem;
  color: rgba(255,255,255,.55);
  transition: color var(--transition);
}
.footer-links-col a:hover { color: var(--white); }

.footer-divider {
  height: 1px;
  background: rgba(255,255,255,.08);
  margin-bottom: 2rem;
}
.footer-disclaimer {
  font-size: .8rem;
  color: rgba(255,255,255,.38);
  line-height: 1.7;
  margin-bottom: 1rem;
  max-width: 860px;
}
.footer-copy {
  font-size: .8rem;
  color: rgba(255,255,255,.35);
}

/* ─── SUCCESS MODAL ─────────────────────────────────────────── */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(26,10,16,.75);
  backdrop-filter: blur(6px);
  z-index: 9000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}
.modal-overlay.active {
  opacity: 1;
  pointer-events: all;
}
.modal-box {
  background: var(--white);
  border-radius: 20px;
  padding: 3rem 2.5rem;
  max-width: 480px;
  width: 100%;
  text-align: center;
  box-shadow: 0 32px 80px rgba(0,0,0,.3);
  transform: scale(.92) translateY(20px);
  transition: transform var(--transition);
}
.modal-overlay.active .modal-box {
  transform: scale(1) translateY(0);
}
.modal-icon { font-size: 3rem; margin-bottom: 1rem; }
.modal-box h2,
.modal-box h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 600;
  color: var(--rose);
  margin-bottom: .75rem;
}
.modal-box p {
  color: var(--ink-light);
  font-size: .97rem;
  line-height: 1.7;
  margin-bottom: 1.8rem;
}
.modal-close {
  background: var(--rose);
  color: var(--white);
  border: none;
  padding: .85rem 2.2rem;
  border-radius: 50px;
  font-family: 'Jost', sans-serif;
  font-size: .9rem;
  font-weight: 500;
  cursor: pointer;
  transition: background var(--transition);
}
.modal-close:hover { background: var(--rose-vib); }

/* ─── SCROLL REVEAL ANIMATIONS ──────────────────────────────── */
.fade-up, .reveal-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity .8s ease, transform .8s ease;
}
.reveal-right {
  opacity: 0;
  transform: translateX(50px);
  transition: opacity .8s ease, transform .8s ease;
}
.fade-up.visible,
.reveal-up.visible,
.reveal-left.visible,
.reveal-right.visible {
  opacity: 1;
  transform: none;
}

/* Delay utilities */
.delay-1 { transition-delay: .1s; }
.delay-2 { transition-delay: .2s; }
.delay-3 { transition-delay: .3s; }
.delay-4 { transition-delay: .4s; }
.delay-5 { transition-delay: .5s; }
.delay-6 { transition-delay: .6s; }

/* ─── LEGAL PAGE STYLES ─────────────────────────────────────── */
.legal-page {
  padding-top: calc(var(--nav-h) + 60px);
  padding-bottom: 80px;
  min-height: 100vh;
  background: var(--cream);
}
.legal-content {
  max-width: 780px;
  margin: 0 auto;
  padding: 0 24px;
}
.legal-content h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  color: var(--rose);
  margin-bottom: .5rem;
}
.legal-content .legal-subtitle {
  font-size: .85rem;
  color: var(--ink-light);
  margin-bottom: 2.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--rose-blush);
}
.legal-content h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--ink);
  margin-top: 2.5rem;
  margin-bottom: .6rem;
}
.legal-content h3 {
  font-family: 'Jost', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--ink-mid);
  margin-top: 1.5rem;
  margin-bottom: .4rem;
}
.legal-content p {
  color: var(--ink-light);
  line-height: 1.85;
  margin-bottom: 1rem;
  font-size: .95rem;
}
.legal-content ul {
  list-style: disc;
  padding-left: 1.8rem;
  margin-bottom: 1rem;
}
.legal-content ul li {
  color: var(--ink-light);
  font-size: .95rem;
  line-height: 1.8;
  margin-bottom: .35rem;
}
.legal-content a { color: var(--rose); text-decoration: underline; }
.legal-content strong { color: var(--ink-mid); }

/* ─── RESPONSIVE ─────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .nav-links { gap: 1.3rem; }
  .story-grid, .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .story-image-col { order: 0; }
  .story-text-col  { order: 1; }
  .about-visual { order: 0; }
  .about-content { order: 1; }
  .story-img, .about-img { height: 380px; }
  .pillar-block { grid-template-columns: 1fr; gap: 40px; }
  .pillar-right .pillar-img-col  { order: 0; }
  .pillar-right .pillar-text-col { order: 1; }
  .pillar-img { height: 320px; }
  .guide-wrapper { grid-template-columns: 1fr; gap: 40px; }
  .testi-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 768px) {
  html { font-size: 16px; }
  .section { padding: 72px 0; }
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }

  .nav-links {
    position: fixed;
    top: var(--nav-h);
    left: 0; right: 0;
    background: rgba(253,245,238,.97);
    backdrop-filter: blur(16px);
    flex-direction: column;
    align-items: center;
    gap: 0;
    padding: 1rem 0;
    box-shadow: 0 8px 32px rgba(181,25,79,.12);
    transform: translateY(-110%);
    transition: transform var(--transition);
  }
  .nav-links.open {
    display: flex;
    transform: translateY(0);
  }
  .nav-links li { width: 100%; }
  .nav-links a {
    display: block;
    padding: .9rem 2rem;
    text-align: center;
    font-size: 1rem;
  }

  .transform-grid { grid-template-columns: 1fr; }
  .testi-grid { grid-template-columns: 1fr; }
  .products-grid { grid-template-columns: 1fr 1fr; }
  .product-featured { transform: none; }
  .product-featured:hover { transform: translateY(-6px); }
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .hero-buttons { flex-direction: column; align-items: center; }
  .hero-stats { gap: 1.5rem; }
  .hero-stat-div { display: none; }
}

@media (max-width: 540px) {
  .products-grid { grid-template-columns: 1fr; }
  .hero-logo { height: 70px; }
  .hero-headline { font-size: 2.4rem; }
  .cta-banner { padding: 80px 24px; }
  .guide-form-box { padding: 1.8rem; }
}

/* ─── CUSTOM SCROLLBAR ───────────────────────────────────────── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--cream); }
::-webkit-scrollbar-thumb { background: var(--rose-petal); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--rose); }

/* ─── SELECTION ──────────────────────────────────────────────── */
::selection { background: rgba(181,25,79,.2); color: var(--rose); }
