/* ============================
   Flor Femme — base & tokens
   ============================ */
:root {
  --color-bg: oklch(96.5% 0.014 93);
  --color-bg-alt: oklch(98% 0.008 90);
  --color-sage-dark: oklch(30% 0.035 145);
  --color-sage: oklch(46% 0.05 145);
  --color-sage-hover: oklch(38% 0.05 145);
  --color-text: oklch(24% 0.02 150);
  --color-text-body: oklch(38% 0.02 150);
  --color-text-muted: oklch(42% 0.02 150);
  --color-gold: oklch(80% 0.08 90);
  --color-gold-soft: oklch(70% 0.09 85);
  --color-cream-text: oklch(97% 0.01 90);
  --color-off-white: oklch(95% 0.01 100);
  --color-footer-bg: oklch(22% 0.025 145);
  --color-footer-text: oklch(70% 0.015 100);
  --color-border: oklch(85% 0.02 100);

  --font-display: 'Cormorant Garamond', serif;
  --font-script: 'Petit Formal Script', cursive;
  --font-body: 'Jost', sans-serif;

  --nav-height: 76px;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-body);
  overflow-x: hidden;
}

section[id], div[id] {
  scroll-margin-top: var(--nav-height);
}

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

::selection { background: oklch(46% 0.05 145 / 0.25); }

a {
  color: var(--color-sage-dark);
  text-decoration: none;
}
a:hover { color: var(--color-sage-hover); }

.btn {
  display: inline-block;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  border-radius: 2px;
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-align: center;
}
.btn-primary {
  background: var(--color-sage);
  color: var(--color-cream-text);
  padding: 16px 34px;
}
.btn-primary:hover { background: var(--color-sage-hover); color: var(--color-cream-text); }
.btn-gold {
  background: var(--color-gold);
  color: var(--color-text);
  padding: 18px 46px;
  font-size: 14px;
  letter-spacing: 1.2px;
}
.btn-gold:hover { background: var(--color-gold-soft); color: var(--color-text); }

@keyframes floatSlow {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* ============================
   Nav
   ============================ */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 6vw;
  min-height: var(--nav-height);
  background: oklch(96.5% 0.014 93 / 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--color-border);
}

.logo {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 28px;
  letter-spacing: 0.5px;
  white-space: nowrap;
}
.logo span {
  font-family: var(--font-script);
  font-weight: 400;
  font-size: 19px;
  letter-spacing: 2px;
  margin-left: 2px;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-links {
  display: flex;
  gap: 32px;
}
.nav-links a {
  font-size: 14px;
  letter-spacing: 0.3px;
  color: var(--color-text);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px;
  height: 32px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}
.nav-toggle span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--color-text);
}

/* ============================
   Hero
   ============================ */
.hero {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 40px;
  padding: 80px 6vw 100px;
  min-height: 640px;
}
.hero-copy { max-width: 560px; }
.eyebrow-script {
  font-family: var(--font-script);
  font-size: 26px;
  color: var(--color-sage);
  margin-bottom: 18px;
}
.hero h1 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 64px;
  line-height: 1.05;
  margin: 0 0 26px;
  letter-spacing: 0.2px;
}
.hero-copy p {
  font-size: 18px;
  line-height: 1.7;
  color: var(--color-text-body);
  max-width: 460px;
  margin: 0 0 36px;
}
.hero-ctas {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
}
.link-underline {
  font-size: 14px;
  letter-spacing: 0.5px;
  border-bottom: 1px solid oklch(24% 0.02 150 / 0.4);
  padding-bottom: 3px;
  color: var(--color-text);
}

.hero-image-wrap {
  position: relative;
  display: flex;
  justify-content: center;
}
.hero-image {
  width: 78%;
  max-width: 420px;
  aspect-ratio: 3/4;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 40px 80px -30px oklch(30% 0.04 145 / 0.35);
  animation: floatSlow 7s ease-in-out infinite;
}
.hero-image img { width: 100%; height: 100%; object-fit: cover; }

/* ============================
   Empathy band
   ============================ */
.empathy {
  background: var(--color-sage-dark);
  color: var(--color-off-white);
  padding: 100px 6vw;
  text-align: center;
}
.empathy-inner { max-width: 760px; margin: 0 auto; }
.empathy .eyebrow-script { color: var(--color-gold); }
.empathy h2 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 42px;
  line-height: 1.25;
  margin: 0 0 28px;
}
.empathy p {
  font-size: 17px;
  line-height: 1.8;
  color: oklch(88% 0.015 100);
  max-width: 620px;
  margin: 0 auto;
}

/* ============================
   Product intro
   ============================ */
.product-intro {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 60px;
  align-items: center;
  padding: 110px 6vw;
}
.product-intro-image-wrap { display: flex; justify-content: center; }
.product-intro-image {
  width: 100%;
  max-width: 380px;
  aspect-ratio: 3/4;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 30px 60px -25px oklch(30% 0.04 145 / 0.3);
}
.product-intro-image img { width: 100%; height: 100%; object-fit: cover; }

.product-intro-copy { max-width: 520px; }
.eyebrow-caps {
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--color-sage);
  margin-bottom: 16px;
}
.product-intro-copy h2 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 46px;
  line-height: 1.15;
  margin: 0 0 24px;
}
.product-intro-copy h2 span {
  font-family: var(--font-script);
  font-weight: 400;
  font-size: 26px;
}
.product-intro-copy > p {
  font-size: 17px;
  line-height: 1.8;
  color: var(--color-text-body);
  margin: 0 0 22px;
}
.feature-list {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.feature-list li {
  display: flex;
  gap: 12px;
  align-items: baseline;
  font-size: 15px;
  color: oklch(30% 0.02 150);
}
.feature-list li::before {
  content: "·";
  color: var(--color-sage);
  font-size: 18px;
}

/* ============================
   How it works
   ============================ */
.how-it-works { background: var(--color-bg-alt); padding: 110px 6vw; }
.section-heading {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 70px;
}
.section-heading h2 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 42px;
  margin: 0;
}
.section-heading .eyebrow-script,
.section-heading .eyebrow-caps { justify-content: center; }

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  max-width: 1180px;
  margin: 0 auto;
}
.step { text-align: center; padding: 0 12px; }
.step-num {
  font-family: var(--font-display);
  font-size: 44px;
  color: var(--color-gold);
  margin-bottom: 14px;
}
.step h3 { font-size: 17px; font-weight: 500; margin: 0 0 10px; }
.step p { font-size: 14.5px; line-height: 1.7; color: var(--color-text-muted); margin: 0; }

/* ============================
   Ingredients
   ============================ */
.ingredients { padding: 110px 6vw; background: var(--color-bg); }
.ingredients .section-heading p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--color-text-muted);
  margin: 0;
}
.ingredients-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 1180px;
  margin: 0 auto;
}
.ingredient-card {
  background: var(--color-bg-alt);
  padding: 34px 24px;
  border-radius: 6px;
  text-align: center;
}
.ingredient-badge {
  width: 52px;
  height: 52px;
  margin: 0 auto 18px;
  border-radius: 50%;
  border: 1px solid oklch(46% 0.05 145 / 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--color-sage);
}
.ingredient-card h3 { font-size: 16px; font-weight: 500; margin: 0 0 8px; }
.ingredient-card p { font-size: 13.5px; line-height: 1.65; color: var(--color-text-muted); margin: 0; }

/* ============================
   Reviews
   ============================ */
.reviews { background: var(--color-bg-alt); padding: 110px 6vw; }
.reviews-banner {
  max-width: 1180px;
  margin: 0 auto 70px;
  border-radius: 6px;
  overflow: hidden;
  aspect-ratio: 21/9;
}
.reviews-banner img { width: 100%; height: 100%; object-fit: cover; }

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 1180px;
  margin: 0 auto;
}
.review-card { background: var(--color-bg); padding: 36px 30px; border-radius: 6px; }
.review-stars { color: var(--color-gold-soft); font-size: 15px; letter-spacing: 2px; margin-bottom: 16px; }
.review-card p {
  font-size: 15.5px;
  line-height: 1.75;
  color: oklch(30% 0.02 150);
  margin: 0 0 20px;
  font-style: italic;
}
.review-author { font-size: 13px; letter-spacing: 0.5px; color: var(--color-sage); }

/* ============================
   FAQ
   ============================ */
.faq { padding: 110px 6vw; background: var(--color-bg); }
.faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.faq-list details {
  background: var(--color-bg-alt);
  border-radius: 4px;
  padding: 22px 28px;
}
.faq-list summary {
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  list-style: none;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
  content: "+";
  float: right;
  font-family: var(--font-display);
  font-size: 20px;
  color: var(--color-sage);
}
.faq-list details[open] summary::after { content: "\2212"; }
.faq-list p {
  font-size: 14.5px;
  line-height: 1.75;
  color: var(--color-text-muted);
  margin: 14px 0 0;
}

/* ============================
   Buy
   ============================ */
.buy {
  background: var(--color-sage-dark);
  color: var(--color-off-white);
  padding: 120px 6vw;
  text-align: center;
}
.buy .eyebrow-script { color: var(--color-gold); }
.buy h2 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 48px;
  margin: 0 0 20px;
}
.buy-price {
  font-family: var(--font-display);
  font-size: 30px;
  margin-bottom: 36px;
}
.buy .ships-note { font-size: 13px; color: oklch(72% 0.015 100); margin-top: 22px; }
.paypal-buy-button { max-width: 420px; width: 100%; margin: 0 auto; }

/* ============================
   Footer
   ============================ */
.site-footer { background: var(--color-footer-bg); color: var(--color-footer-text); padding: 60px 6vw 36px; }
.footer-top {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
  max-width: 1180px;
  margin: 0 auto 40px;
}
.footer-brand { max-width: 320px; }
.footer-brand .logo { color: var(--color-off-white); font-size: 24px; margin-bottom: 12px; }
.footer-brand .logo span { font-size: 15px; }
.footer-brand p { font-size: 13.5px; line-height: 1.7; }

.footer-cols { display: flex; gap: 60px; flex-wrap: wrap; }
.footer-col-title {
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--color-off-white);
  margin-bottom: 14px;
}
.footer-col-links { display: flex; flex-direction: column; gap: 10px; font-size: 13.5px; }
.footer-col-links a { color: oklch(75% 0.015 100); }

.footer-legal {
  max-width: 1180px;
  margin: 0 auto;
  border-top: 1px solid oklch(35% 0.02 145);
  padding-top: 24px;
  font-size: 11.5px;
  line-height: 1.7;
  color: var(--color-footer-text);
}
.footer-legal p { margin: 0 0 8px; }
.footer-legal p:last-child { margin: 0; }

/* ============================
   Responsive
   ============================ */
@media (max-width: 980px) {
  .hero { grid-template-columns: 1fr; padding: 60px 6vw 70px; min-height: auto; }
  .hero-copy { max-width: 100%; order: 2; }
  .hero-image-wrap { order: 1; }
  .hero h1 { font-size: 46px; }

  .product-intro { grid-template-columns: 1fr; padding: 80px 6vw; }
  .product-intro-copy { max-width: 100%; }

  .steps-grid { grid-template-columns: repeat(2, 1fr); gap: 40px 24px; }
  .ingredients-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid { grid-template-columns: 1fr; }
  .reviews-banner { aspect-ratio: 4/3; }

  .empathy h2, .section-heading h2 { font-size: 34px; }
}

@media (max-width: 720px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .nav-right { gap: 16px; }

  .site-nav.open .nav-links {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: var(--nav-height);
    left: 0;
    right: 0;
    background: var(--color-bg);
    padding: 24px 6vw;
    gap: 20px;
    border-bottom: 1px solid var(--color-border);
  }

  .hero h1 { font-size: 38px; }
  .hero-copy p { font-size: 16px; }

  .empathy, .buy { padding: 70px 6vw; }
  .empathy h2, .buy h2 { font-size: 28px; }

  .steps-grid, .ingredients-grid { grid-template-columns: 1fr; max-width: 420px; }

  .footer-top { gap: 32px; }
}
