@font-face {
  font-family: 'Anthy';
  src: url('../fonts/anthy-extrabold.otf') format('opentype');
  font-weight: 800;
}
@font-face {
  font-family: 'Anthy';
  src: url('../fonts/anthy-bold.otf') format('opentype');
  font-weight: 700;
}
@font-face {
  font-family: 'Manuka';
  src: url('../fonts/manuka-black.otf') format('opentype');
  font-weight: 900;
}
@font-face {
  font-family: 'Manuka';
  src: url('../fonts/manuka-thin.otf') format('opentype');
  font-weight: 100;
}
@font-face {
  font-family: 'Manuka';
  src: url('../fonts/manuka-regular.otf') format('opentype');
  font-weight: 400;
}
@font-face {
  font-family: 'ManukaCondensed';
  src: url('../fonts/manuka-condensed-black.otf') format('opentype');
  font-weight: 900;
}

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

:root {
  --rose:        #C9A0B0;
  --rose-light:  #D9B8C8;
  --rose-dark:   #A07888;
  --slate:       #9AAEC8;
  --slate-light: #B4C4D8;
  --dark:        #2A1512;
  --cream:       #F8EDE8;
  --cream-dark:  #EFE0D8;
  --white:       #FFFFFF;
  --green:       #7BEE96;
}

html { scroll-behavior: smooth; }

body {
  font-family: Helvetica Neue, Helvetica, Arial, sans-serif;
  color: var(--dark);
  background: var(--cream);
  line-height: 1.6;
}

/* ─── GRADIENT HERO BG ─── */
.hero-gradient {
  background: radial-gradient(ellipse at 25% 20%, #D4B0C0 0%, #C8A4A0 30%, #B4BAC8 65%, #8EAAC4 100%);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* ─── NAV ─── */
nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 48px;
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(210, 180, 192, 0.72);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.nav-logo {
  display: flex;
  flex-direction: column;
  line-height: 0.9;
  text-decoration: none;
}
.nav-logo .logo-ladies {
  font-family: 'Anthy', serif;
  font-weight: 800;
  font-size: 22px;
  color: var(--dark);
  letter-spacing: -0.5px;
}
.nav-logo .logo-whoclaude {
  font-family: 'ManukaCondensed', 'Manuka', sans-serif;
  font-weight: 900;
  font-size: 14px;
  color: var(--dark);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

nav ul {
  display: flex;
  gap: 36px;
  list-style: none;
}
nav ul a {
  text-decoration: none;
  color: var(--dark);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  opacity: 0.8;
  transition: opacity 0.2s;
}
nav ul a:hover { opacity: 1; }

.nav-cta {
  background: var(--dark);
  color: var(--cream) !important;
  padding: 10px 22px;
  border-radius: 2px;
  opacity: 1 !important;
}
.nav-cta:hover { background: #4a2520; color: var(--cream); }

/* ─── HERO CONTENT ─── */
.hero-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 48px 100px;
}

.hero-logo {
  margin-bottom: 32px;
}
.hero-logo .logo-ladies {
  font-family: 'Anthy', serif;
  font-weight: 800;
  font-size: clamp(72px, 12vw, 140px);
  color: var(--dark);
  line-height: 0.9;
  display: block;
}
.hero-logo .logo-whoclaude {
  font-family: 'ManukaCondensed', 'Manuka', sans-serif;
  font-weight: 900;
  font-size: clamp(56px, 9vw, 110px);
  color: var(--dark);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  display: block;
  line-height: 1;
}

.hero-tagline {
  font-size: clamp(16px, 2vw, 20px);
  color: var(--dark);
  opacity: 0.75;
  max-width: 540px;
  margin: 0 auto 40px;
  font-style: italic;
}

.hero-cta-group {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

/* ─── BUTTONS ─── */
.btn {
  display: inline-block;
  padding: 14px 32px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 2px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.2s;
}
.btn-dark {
  background: var(--dark);
  color: var(--cream);
  border-color: var(--dark);
}
.btn-dark:hover { background: #4a2520; border-color: #4a2520; }
.btn-outline {
  background: transparent;
  color: var(--dark);
  border-color: var(--dark);
}
.btn-outline:hover { background: var(--dark); color: var(--cream); }

/* ─── SECTION WRAPPER ─── */
section {
  padding: 80px 48px;
  max-width: 1140px;
  margin: 0 auto;
}
section.full-bleed {
  max-width: none;
  padding: 80px 0;
}
.section-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 48px;
}

/* ─── SECTION HEADERS ─── */
.section-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--rose-dark);
  margin-bottom: 12px;
  display: block;
}
.section-title {
  font-family: 'Manuka', sans-serif;
  font-weight: 400;
  font-size: clamp(40px, 5.5vw, 72px);
  line-height: 1.05;
  color: var(--dark);
  margin-bottom: 20px;
  letter-spacing: -0.01em;
}
.title-anthy {
  font-family: 'Anthy', serif;
  font-weight: 800;
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.05;
  letter-spacing: 0;
}
.section-subtitle {
  font-size: 18px;
  color: var(--dark);
  opacity: 0.7;
  max-width: 600px;
  margin-bottom: 48px;
}

/* ─── STATS STRIP ─── */
.stats-strip {
  background: var(--dark);
  padding: 60px 0;
}
.stats-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 48px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  text-align: center;
}
.stat-item {}
.stat-number {
  font-family: 'Anthy', serif;
  font-weight: 800;
  font-size: clamp(52px, 7vw, 88px);
  color: var(--rose-light);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-label {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  line-height: 1.4;
  max-width: 200px;
  margin: 0 auto;
}

/* ─── PROBLEM SECTION ─── */
.problem-section {
  background: var(--cream);
}
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.problem-text p {
  font-size: 17px;
  color: var(--dark);
  opacity: 0.8;
  margin-bottom: 20px;
  line-height: 1.7;
}
.problem-highlight {
  background: radial-gradient(ellipse at 20% 50%, #C9A0B0 0%, #9AAEC8 100%);
  border-radius: 4px;
  padding: 40px;
  color: var(--dark);
}
.problem-highlight h3 {
  font-family: 'Anthy', serif;
  font-weight: 800;
  font-size: 32px;
  letter-spacing: 0;
  margin-bottom: 20px;
}
.problem-highlight ul {
  list-style: none;
  padding: 0;
}
.problem-highlight ul li {
  padding: 10px 0;
  border-bottom: 1px solid rgba(42, 21, 18, 0.15);
  font-size: 15px;
  font-weight: 600;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.problem-highlight ul li:last-child { border-bottom: none; }
.problem-highlight ul li::before {
  content: '→';
  flex-shrink: 0;
  font-weight: 700;
}

/* ─── WHAT YOU LEARN ─── */
.learn-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.learn-card {
  background: var(--cream-dark);
  border-radius: 4px;
  padding: 32px;
}
.learn-card h3 {
  font-family: 'Manuka', sans-serif;
  font-weight: 400;
  font-size: 22px;
  letter-spacing: 0;
  color: var(--rose-dark);
  margin-bottom: 16px;
}
.learn-card ul {
  list-style: none;
  padding: 0;
}
.learn-card ul li {
  padding: 6px 0;
  font-size: 15px;
  color: var(--dark);
  display: flex;
  gap: 10px;
}
.learn-card ul li::before { content: '✓'; color: var(--rose-dark); font-weight: 700; }

/* ─── OFFERINGS ─── */
.offerings-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.offering-card {
  background: var(--cream-dark);
  border-radius: 4px;
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(42, 21, 18, 0.08);
  transition: transform 0.2s, box-shadow 0.2s;
}
.offering-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(42, 21, 18, 0.1);
}
.offering-card.featured {
  background: radial-gradient(ellipse at 20% 20%, #D4B0C0 0%, #9AAEC8 100%);
  border: none;
}
.offering-tag {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--rose-dark);
  margin-bottom: 12px;
  display: block;
}
.offering-card.featured .offering-tag { color: var(--dark); }
.offering-title {
  font-family: 'Anthy', serif;
  font-weight: 800;
  font-size: 26px;
  line-height: 1.1;
  color: var(--dark);
  margin-bottom: 12px;
}
.offering-price {
  font-family: 'ManukaCondensed', 'Manuka', sans-serif;
  font-weight: 900;
  font-size: 48px;
  letter-spacing: -0.02em;
  color: var(--dark);
  margin-bottom: 20px;
  line-height: 1;
}
.offering-price span {
  font-size: 18px;
  font-family: Helvetica Neue, sans-serif;
  font-weight: 400;
  opacity: 0.6;
  vertical-align: middle;
}
.offering-desc {
  font-size: 15px;
  color: var(--dark);
  opacity: 0.75;
  line-height: 1.6;
  margin-bottom: 20px;
  flex: 1;
}
.offering-includes {
  list-style: none;
  padding: 0;
  margin-bottom: 28px;
}
.offering-includes li {
  font-size: 14px;
  padding: 5px 0;
  display: flex;
  gap: 8px;
}
.offering-includes li::before { content: '✓'; color: var(--rose-dark); font-weight: 700; flex-shrink: 0; }
.offering-card.featured .offering-includes li::before { color: var(--dark); }

/* ─── REVIEWS ─── */
.reviews-bg {
  background: radial-gradient(ellipse at 70% 80%, #C9A0B0 0%, #D4B0A8 40%, #9AAEC8 100%);
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.review-card {
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(8px);
  border-radius: 4px;
  padding: 32px;
}
.review-quote {
  font-size: 15px;
  line-height: 1.7;
  color: var(--dark);
  margin-bottom: 20px;
  font-style: italic;
}
.review-author {
  font-weight: 700;
  font-size: 13px;
  color: var(--dark);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.review-detail {
  font-size: 12px;
  color: var(--dark);
  opacity: 0.6;
  margin-top: 2px;
}
.review-placeholder {
  border: 2px dashed rgba(42, 21, 18, 0.25);
  background: rgba(255, 255, 255, 0.3);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 180px;
  gap: 8px;
}
.review-placeholder p {
  font-size: 14px;
  opacity: 0.5;
  font-style: italic;
}

/* ─── REVIEW FORM ─── */
.review-form-wrap {
  background: var(--cream);
  border-radius: 4px;
  padding: 48px;
  max-width: 640px;
  margin: 0 auto;
}
.review-form-wrap h3 {
  font-family: 'Anthy', serif;
  font-weight: 800;
  font-size: 28px;
  margin-bottom: 8px;
}
.review-form-wrap p {
  font-size: 15px;
  opacity: 0.7;
  margin-bottom: 28px;
}
.form-group {
  margin-bottom: 20px;
}
.form-group label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--dark);
  margin-bottom: 8px;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid rgba(42, 21, 18, 0.2);
  border-radius: 2px;
  font-size: 15px;
  color: var(--dark);
  background: var(--white);
  font-family: inherit;
  transition: border-color 0.2s;
}
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--rose-dark);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.stars {
  display: flex;
  gap: 4px;
  font-size: 28px;
  cursor: pointer;
  margin-bottom: 16px;
}
.star { color: rgba(42, 21, 18, 0.2); transition: color 0.1s; }
.star.active, .star:hover { color: var(--rose-dark); }

/* ─── NEWSLETTER ─── */
.newsletter-articles {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.article-card {
  background: var(--cream-dark);
  border-radius: 4px;
  overflow: hidden;
  text-decoration: none;
  color: var(--dark);
  transition: transform 0.2s;
  display: block;
}
.article-card:hover { transform: translateY(-3px); }
.article-thumb {
  height: 200px;
  background: radial-gradient(ellipse at 30% 40%, #D4B0C0 0%, #9AAEC8 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.article-thumb .thumb-label {
  font-family: 'ManukaCondensed', sans-serif;
  font-weight: 900;
  font-size: 20px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--dark);
  opacity: 0.6;
  text-align: center;
  padding: 20px;
}
.article-body { padding: 24px; }
.article-tag {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--rose-dark);
  margin-bottom: 8px;
  display: block;
}
.article-title {
  font-family: 'Anthy', serif;
  font-weight: 800;
  font-size: 22px;
  line-height: 1.2;
  margin-bottom: 10px;
}
.article-excerpt {
  font-size: 14px;
  opacity: 0.7;
  line-height: 1.6;
}
.article-date {
  font-size: 12px;
  opacity: 0.5;
  margin-top: 16px;
  display: block;
}

/* ─── EMAIL SIGNUP ─── */
.email-signup {
  background: var(--dark);
  padding: 64px 48px;
  text-align: center;
}
.email-signup h2 {
  font-family: 'Anthy', serif;
  font-weight: 800;
  font-size: clamp(32px, 5vw, 52px);
  color: var(--cream);
  margin-bottom: 12px;
}
.email-signup p {
  color: rgba(255,255,255,0.6);
  font-size: 16px;
  margin-bottom: 32px;
}
.email-form {
  display: flex;
  gap: 12px;
  max-width: 480px;
  margin: 0 auto;
}
.email-form input {
  flex: 1;
  padding: 14px 18px;
  border: none;
  border-radius: 2px;
  font-size: 15px;
  font-family: inherit;
  background: rgba(255,255,255,0.1);
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.2);
}
.email-form input::placeholder { color: rgba(255,255,255,0.4); }
.email-form input:focus { outline: none; border-color: var(--rose-light); }
.email-form button {
  padding: 14px 24px;
  background: var(--rose-light);
  color: var(--dark);
  border: none;
  border-radius: 2px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s;
  white-space: nowrap;
}
.email-form button:hover { background: var(--rose); }

/* ─── ABOUT STRIP ─── */
.about-strip {
  background: var(--cream-dark);
}
.about-inner {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 64px;
  align-items: center;
}
.about-photo {
  aspect-ratio: 1;
  background: radial-gradient(ellipse at 40% 30%, #D4B0C0 0%, #9AAEC8 100%);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  color: rgba(42,21,18,0.3);
  font-family: 'Anthy', serif;
  font-weight: 800;
}
.about-text h2 {
  font-family: 'Anthy', serif;
  font-weight: 800;
  font-size: clamp(32px, 4vw, 48px);
  margin-bottom: 16px;
}
.about-text p {
  font-size: 16px;
  opacity: 0.75;
  line-height: 1.7;
  margin-bottom: 16px;
}

/* ─── CONTACT ─── */
.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.contact-info h2 {
  font-family: 'Anthy', serif;
  font-weight: 800;
  font-size: clamp(32px, 4vw, 48px);
  margin-bottom: 16px;
}
.contact-info p {
  font-size: 16px;
  opacity: 0.75;
  line-height: 1.7;
  margin-bottom: 28px;
}
.contact-details { list-style: none; padding: 0; }
.contact-details li {
  padding: 10px 0;
  border-bottom: 1px solid rgba(42,21,18,0.1);
  font-size: 15px;
  display: flex;
  gap: 12px;
  align-items: center;
}
.contact-details li:last-child { border-bottom: none; }
.contact-details a { color: var(--dark); text-decoration: none; font-weight: 600; }
.contact-details a:hover { text-decoration: underline; }

/* ─── FOOTER ─── */
footer {
  background: var(--dark);
  padding: 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
}
.footer-logo .logo-ladies {
  font-family: 'Anthy', serif;
  font-weight: 800;
  font-size: 20px;
  color: var(--cream);
  display: block;
  line-height: 0.9;
}
.footer-logo .logo-whoclaude {
  font-family: 'ManukaCondensed', 'Manuka', sans-serif;
  font-weight: 900;
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  display: block;
}
footer nav ul {
  display: flex;
  gap: 28px;
  list-style: none;
}
footer nav ul a {
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  background: none;
  padding: 0;
  border-radius: 0;
}
footer nav ul a:hover { color: var(--cream); }
.footer-copy {
  font-size: 12px;
  color: rgba(255,255,255,0.35);
}

/* ─── RESPONSIVE ─── */
@media (max-width: 900px) {
  nav { padding: 20px 24px; }
  nav ul { display: none; }
  section { padding: 60px 24px; }
  .section-inner { padding: 0 24px; }
  .stats-inner { grid-template-columns: 1fr; gap: 32px; padding: 0 24px; }
  .two-col, .about-inner, .contact-wrap { grid-template-columns: 1fr; gap: 40px; }
  .offerings-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .learn-grid { grid-template-columns: 1fr; }
  .newsletter-articles { grid-template-columns: 1fr; }
  .hero-content { padding: 60px 24px 80px; }
  .email-signup { padding: 48px 24px; }
  .email-form { flex-direction: column; }
  footer { padding: 32px 24px; flex-direction: column; align-items: flex-start; }
  footer nav ul { flex-wrap: wrap; gap: 16px; }
}
