<link href="https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400;1,500&family=Montserrat:wght@300;400;500;600;700&display=swap" rel="stylesheet">
<style>
:root {
  --pink: #FF1694;
  --pink-dark: #CC0070;
  --pink-light: #FFF0F8;
  --pink-mid: #FFD6EC;
  --gold: #D4AF37;
  --gold-dark: #4A3000;
  --gold-light: #FFFBF0;
  --charcoal: #1A1A1A;
  --gray: #666;
  --light: #FAFAFA;
  --white: #FFFFFF;
  --green: #2D5A27;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Montserrat', sans-serif;
  color: var(--charcoal);
  background: var(--white);
  overflow-x: hidden;
}

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--pink-mid);
  padding: 0 2rem;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--pink);
  text-decoration: none;
  letter-spacing: 0.02em;
}

.nav-logo span {
  color: var(--gold-dark);
  font-weight: 300;
  font-style: italic;
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
  align-items: center;
}

.nav-links a {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--charcoal);
  text-decoration: none;
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--pink); }

.nav-cta {
  background: var(--pink) !important;
  color: white !important;
  padding: 0.6rem 1.4rem !important;
  border-radius: 2px !important;
  transition: background 0.2s !important;
}

.nav-cta:hover { background: var(--pink-dark) !important; }

/* ── HERO ── */
.hero {
  min-height: 100vh;
  padding-top: 70px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  overflow: hidden;
}

.hero-left {
  background: var(--pink);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 5rem 4rem 5rem 5rem;
  position: relative;
}

.hero-left::after {
  content: '';
  position: absolute;
  right: -60px;
  top: 0; bottom: 0;
  width: 120px;
  background: var(--pink);
  clip-path: polygon(0 0, 0 100%, 100% 50%);
  z-index: 2;
}

.hero-eyebrow {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}

.hero h1 {
  font-size: clamp(2.8rem, 5vw, 4.2rem);
  line-height: 1.1;
  color: white;
  margin-bottom: 1.5rem;
  font-weight: 300;
}

.hero h1 em {
  font-style: italic;
  color: var(--gold);
}

.hero-sub {
  font-size: 0.9rem;
  line-height: 1.8;
  color: var(--pink-mid);
  margin-bottom: 2.5rem;
  max-width: 420px;
  font-weight: 300;
}

.hero-btns {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn-primary {
  background: var(--gold);
  color: var(--gold-dark);
  padding: 1rem 2rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  display: inline-block;
}

.btn-primary:hover {
  background: #c9a020;
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: white;
  padding: 1rem 2rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.5);
  cursor: pointer;
  transition: all 0.2s;
  display: inline-block;
}

.btn-outline:hover {
  border-color: white;
  background: rgba(255,255,255,0.1);
}

.hero-right {
  background: var(--pink-light);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5rem 4rem 5rem 6rem;
  position: relative;
}

.hero-card {
  background: white;
  padding: 3rem;
  max-width: 380px;
  width: 100%;
  border-top: 4px solid var(--gold);
  position: relative;
}

.hero-card::before {
  content: '"';
  font-family: 'Cormorant Garamond', serif;
  font-size: 8rem;
  color: var(--pink-mid);
  position: absolute;
  top: -20px;
  left: 20px;
  line-height: 1;
}

.hero-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-style: italic;
  line-height: 1.6;
  color: var(--charcoal);
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}

.hero-credentials {
  border-top: 1px solid var(--pink-mid);
  padding-top: 1.2rem;
}

.hero-credentials strong {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--pink);
  margin-bottom: 0.3rem;
}

.hero-credentials span {
  font-size: 0.75rem;
  color: var(--gray);
  line-height: 1.6;
}

.hero-stats {
  display: flex;
  gap: 2rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--pink-mid);
}

.hero-stat {
  text-align: center;
}

.hero-stat strong {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 600;
  color: var(--pink);
}

.hero-stat span {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gray);
}

/* ── TRUST BAR ── */
.trust-bar {
  background: var(--charcoal);
  padding: 1.2rem 5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}

.trust-item {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.trust-item::before {
  content: '✦';
  color: var(--pink);
  font-size: 0.6rem;
}

/* ── SECTION STYLES ── */
section { padding: 6rem 5rem; }

.section-eyebrow {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 1rem;
  display: block;
}

.section-title {
  font-size: clamp(2rem, 3.5vw, 3rem);
  line-height: 1.2;
  color: var(--charcoal);
  margin-bottom: 1.5rem;
}

.section-title em { color: var(--pink); font-style: italic; }

.section-body {
  font-size: 0.9rem;
  line-height: 1.9;
  color: var(--gray);
  max-width: 600px;
}

/* ── ABOUT ── */
.about {
  background: var(--white);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

.about-img-wrap {
  position: relative;
}

.about-img-placeholder {
  background: var(--pink-light);
  width: 100%;
  aspect-ratio: 3/4;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.about-img-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--pink-light) 0%, var(--pink-mid) 100%);
}

.about-img-placeholder .img-text {
  position: relative;
  z-index: 1;
  text-align: center;
}

.about-img-placeholder .img-text strong {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  color: var(--pink-dark);
  margin-bottom: 0.5rem;
}

.about-img-placeholder .img-text span {
  font-size: 0.75rem;
  color: var(--pink-dark);
  opacity: 0.7;
}

.about-img-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--gold);
  width: 110px;
  height: 110px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 1rem;
}

.about-img-badge strong {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--gold-dark);
  line-height: 1;
}

.about-img-badge span {
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-dark);
  line-height: 1.3;
  margin-top: 0.2rem;
}

.about-text .section-body { margin-bottom: 1.5rem; }

.about-highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 2rem;
}

.highlight-item {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
}

.highlight-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  margin-top: 0.3rem;
  flex-shrink: 0;
}

.highlight-item p {
  font-size: 0.8rem;
  line-height: 1.6;
  color: var(--charcoal);
  font-weight: 500;
}

/* ── THE DR. ROSE METHOD ── */
.method {
  background: var(--charcoal);
  text-align: center;
}

.method .section-title { color: white; }
.method .section-body { color: rgba(255,255,255,0.6); margin: 0 auto 3rem; }

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5px;
  margin-top: 3rem;
  background: rgba(255,255,255,0.1);
}

.pillar {
  background: var(--charcoal);
  padding: 2.5rem 2rem;
  text-align: center;
  transition: background 0.3s;
  cursor: default;
}

.pillar:hover { background: #2a2a2a; }

.pillar-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem;
  font-weight: 300;
  color: var(--pink);
  line-height: 1;
  margin-bottom: 1rem;
}

.pillar h3 {
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--gold);
  margin-bottom: 0.8rem;
  letter-spacing: 0.05em;
}

.pillar p {
  font-size: 0.78rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.55);
}

/* ── SERVICES / PRODUCTS ── */
.services {
  background: var(--pink-light);
}

.services-header {
  text-align: center;
  margin-bottom: 4rem;
}

.services-header .section-body { margin: 0 auto; }

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.product-card {
  background: white;
  border-top: 3px solid var(--pink);
  padding: 2.5rem 2rem;
  transition: transform 0.2s, box-shadow 0.2s;
  position: relative;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(255,22,148,0.1);
}

.product-card.featured {
  border-top-color: var(--gold);
  background: var(--charcoal);
}

.product-badge {
  position: absolute;
  top: -12px;
  left: 2rem;
  background: var(--gold);
  color: var(--gold-dark);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.3rem 0.8rem;
}

.product-card.featured .product-badge {
  background: var(--pink);
  color: white;
}

.product-icon {
  font-size: 2rem;
  margin-bottom: 1.2rem;
}

.product-card h3 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  color: var(--charcoal);
}

.product-card.featured h3 { color: white; }

.product-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--pink);
  margin-bottom: 1rem;
}

.product-card.featured .product-price { color: var(--gold); }

.product-desc {
  font-size: 0.8rem;
  line-height: 1.7;
  color: var(--gray);
  margin-bottom: 1.5rem;
}

.product-card.featured .product-desc { color: rgba(255,255,255,0.6); }

.product-includes {
  list-style: none;
  margin-bottom: 2rem;
}

.product-includes li {
  font-size: 0.75rem;
  padding: 0.4rem 0;
  border-bottom: 1px solid var(--pink-light);
  color: var(--charcoal);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.product-card.featured .product-includes li {
  border-bottom-color: rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.8);
}

.product-includes li::before {
  content: '✦';
  color: var(--gold);
  font-size: 0.5rem;
  flex-shrink: 0;
}

.btn-pink {
  display: block;
  text-align: center;
  background: var(--pink);
  color: white;
  padding: 0.9rem 1.5rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.2s;
  border: none;
  cursor: pointer;
  width: 100%;
}

.btn-pink:hover { background: var(--pink-dark); }

.btn-gold {
  display: block;
  text-align: center;
  background: var(--gold);
  color: var(--gold-dark);
  padding: 0.9rem 1.5rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.2s;
  border: none;
  cursor: pointer;
  width: 100%;
}

.btn-gold:hover { background: #c9a020; }

/* ── TESTIMONIALS ── */
.testimonials {
  background: white;
  text-align: center;
}

.testimonials-header { margin-bottom: 4rem; }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  text-align: left;
}

.testimonial-card {
  border-left: 3px solid var(--pink);
  padding: 2rem;
  background: var(--pink-light);
  position: relative;
}

.testimonial-stars {
  color: var(--gold);
  font-size: 0.9rem;
  margin-bottom: 1rem;
  letter-spacing: 0.1em;
}

.testimonial-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem;
  font-style: italic;
  line-height: 1.7;
  color: var(--charcoal);
  margin-bottom: 1.2rem;
}

.testimonial-author strong {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--pink);
  margin-bottom: 0.2rem;
}

.testimonial-author span {
  font-size: 0.72rem;
  color: var(--gray);
}

/* ── FREE GUIDES ── */
.freebies {
  background: var(--charcoal);
  text-align: center;
}

.freebies .section-title { color: white; }
.freebies .section-body { color: rgba(255,255,255,0.6); margin: 0 auto 3rem; }

.freebies-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  max-width: 800px;
  margin: 0 auto;
}

.freebie-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,22,148,0.3);
  padding: 2.5rem 2rem;
  text-align: left;
  transition: border-color 0.2s, background 0.2s;
}

.freebie-card:hover {
  border-color: var(--pink);
  background: rgba(255,22,148,0.05);
}

.freebie-keyword {
  display: inline-block;
  background: var(--pink);
  color: white;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.3rem 0.8rem;
  margin-bottom: 1.2rem;
}

.freebie-card h3 {
  font-size: 1.2rem;
  color: white;
  margin-bottom: 0.8rem;
}

.freebie-card p {
  font-size: 0.8rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.55);
  margin-bottom: 1.5rem;
}

.freebie-ig {
  font-size: 0.72rem;
  color: var(--gold);
  font-weight: 600;
}

/* ── DISCOVERY CALL ── */
.discovery {
  background: var(--pink);
  text-align: center;
  padding: 6rem 5rem;
}

.discovery .section-eyebrow { color: var(--gold); }
.discovery .section-title { color: white; margin: 0 auto 1.5rem; }
.discovery .section-body { color: var(--pink-mid); margin: 0 auto 2.5rem; }

.discovery-bullets {
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.discovery-bullet {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.78rem;
  font-weight: 600;
  color: white;
}

.discovery-bullet::before {
  content: '✦';
  color: var(--gold);
  font-size: 0.6rem;
}

/* ── CONTACT ── */
.contact {
  background: var(--white);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: start;
}

.contact-info .section-body { margin-bottom: 2rem; }

.contact-details {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.contact-details li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  font-size: 0.85rem;
  color: var(--charcoal);
}

.contact-details .label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--pink);
  min-width: 80px;
  padding-top: 0.1rem;
}

.contact-details a {
  color: var(--charcoal);
  text-decoration: none;
  transition: color 0.2s;
}

.contact-details a:hover { color: var(--pink); }

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-group label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray);
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.9rem 1rem;
  border: 1px solid #e0e0e0;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.85rem;
  color: var(--charcoal);
  background: white;
  outline: none;
  transition: border-color 0.2s;
  -webkit-appearance: none;
  appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--pink);
}

.form-group textarea { resize: vertical; min-height: 120px; }

/* ── FOOTER ── */
footer {
  background: var(--charcoal);
  padding: 3rem 5rem;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.footer-brand .nav-logo {
  font-size: 1.3rem;
  display: block;
  margin-bottom: 1rem;
}

.footer-brand p {
  font-size: 0.78rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.4);
}

.footer-links h4 {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
}

.footer-links ul { list-style: none; display: flex; flex-direction: column; gap: 0.7rem; }

.footer-links a {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.4);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-links a:hover { color: var(--pink); }

.footer-bottom {
  background: black;
  padding: 1.2rem 5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.3);
}

.footer-bottom a {
  font-size: 0.7rem;
  color: var(--pink);
  text-decoration: none;
}

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

.fade-up {
  animation: fadeUp 0.8s ease forwards;
}

.fade-up-1 { animation-delay: 0.1s; opacity: 0; }
.fade-up-2 { animation-delay: 0.25s; opacity: 0; }
.fade-up-3 { animation-delay: 0.4s; opacity: 0; }
.fade-up-4 { animation-delay: 0.55s; opacity: 0; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; }
  .hero-left::after { display: none; }
  .hero-right { padding: 3rem 2rem; }
  .about { grid-template-columns: 1fr; }
  .pillars-grid { grid-template-columns: 1fr 1fr; }
  .products-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .freebies-grid { grid-template-columns: 1fr; }
  .contact { grid-template-columns: 1fr; }
  footer { grid-template-columns: 1fr; }
  section { padding: 4rem 2rem; }
  nav { padding: 0 1.5rem; }
  .nav-links { display: none; }
  .trust-bar { padding: 1.2rem 2rem; gap: 1.5rem; }
}
</style>