/* ============================================================
   SENSUAL SYNERGY — style.css
   Palette : Blush · Rose · Charcoal · Graphite · Cream · White
   Display  : Cormorant Garamond (Google Fonts)
   Body     : DM Sans (Google Fonts)
   ============================================================ */

/* ── DESIGN TOKENS ──────────────────────────────────────────── */
:root {
  --blush:      #F2C8D0;
  --blush-mid:  #E0A8B5;
  --rose:       #C4788A;
  --charcoal:   #2C2C2C;
  --graphite:   #555555;
  --cream:      #FAF5F5;
  --white:      #FFFFFF;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'DM Sans', system-ui, -apple-system, sans-serif;

  --radius:      4px;
  --radius-card: 10px;
  --ease:        0.25s ease;
  --max-w:       1080px;
  --gutter:      1.5rem;
}

/* ── RESET ──────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html  { font-size: 16px; scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body  { font-family: var(--font-body); color: var(--charcoal); background: var(--white); line-height: 1.6; overflow-x: hidden; }
img   { max-width: 100%; display: block; }
a     { color: inherit; text-decoration: none; }
ul    { list-style: none; }
button { cursor: pointer; font-family: var(--font-body); }

/* ── TYPOGRAPHY ─────────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.15;
}
h1 { font-size: clamp(2.6rem, 6vw, 4.75rem); letter-spacing: -0.01em; }
h2 { font-size: clamp(2rem,   4vw, 3.5rem);  }
h3 { font-size: clamp(1.5rem, 3vw, 2.25rem); }
h4 { font-size: 1.2rem; font-weight: 500; font-family: var(--font-body); }

p   { font-size: 1.0625rem; line-height: 1.8; color: var(--graphite); }
.lead { font-size: 1.2rem; line-height: 1.7; }

.eyebrow {
  display: block;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 0.75rem;
}

/* ── LAYOUT HELPERS ─────────────────────────────────────────── */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.section        { padding: 5.5rem 0; }
.section--sm    { padding: 3.5rem 0; }
.section--lg    { padding: 8rem 0;   }

/* backgrounds */
.bg-charcoal  { background: var(--charcoal); }
.bg-blush     { background: var(--blush);    }
.bg-cream     { background: var(--cream);    }
.bg-white     { background: var(--white);    }

/* text colour overrides for dark backgrounds */
.bg-charcoal h1,
.bg-charcoal h2,
.bg-charcoal h3,
.bg-charcoal h4 { color: var(--white); }
.bg-charcoal p  { color: rgba(255,255,255,0.7); }

.text-center  { text-align: center; }
.text-white   { color: var(--white) !important; }
.text-rose    { color: var(--rose); }
.text-charcoal { color: var(--charcoal); }

.mt-1 { margin-top: 0.5rem;  }
.mt-2 { margin-top: 1rem;    }
.mt-3 { margin-top: 1.5rem;  }
.mt-4 { margin-top: 2.5rem;  }
.mt-5 { margin-top: 4rem;    }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2.5rem; }

/* ── NAVIGATION ─────────────────────────────────────────────── */
.nav {
  position: sticky;
  top: 0;
  z-index: 200;
  background: var(--charcoal);
}

.nav__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 66px;
  position: relative; /* contains mobile dropdown */
}

.nav__brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  flex-shrink: 0;
}

.nav__logo {
  width: 36px;
  height: 36px;
  object-fit: contain;
  border-radius: 50%;
}

.nav__name {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--white);
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 2.25rem;
}

.nav__link {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.75);
  transition: color var(--ease);
  position: relative;
  white-space: nowrap;
}
.nav__link:hover { color: var(--white); }
.nav__link[aria-current="page"] { color: var(--blush); }
.nav__link[aria-current="page"]::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0; right: 0;
  height: 1px;
  background: var(--blush);
}

.nav__cta {
  background: var(--rose);
  color: var(--white) !important;
  padding: 0.5rem 1.25rem;
  border-radius: var(--radius);
  font-size: 0.85rem;
  transition: background var(--ease);
}
.nav__cta:hover { background: var(--blush-mid); }

/* hamburger */
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 0.25rem;
}
.nav__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: transform var(--ease), opacity var(--ease);
}
.nav__hamburger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__hamburger.is-open span:nth-child(2) { opacity: 0; }
.nav__hamburger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 767px) {
  .nav__hamburger { display: flex; }

  .nav__links {
    display: none;
    position: absolute;
    top: 66px;
    left: 0; right: 0;
    background: var(--charcoal);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0.75rem 0 1.25rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    box-shadow: 0 8px 24px rgba(0,0,0,0.3);
  }
  .nav__links.is-open { display: flex; }

  .nav__link {
    padding: 0.875rem var(--gutter);
    font-size: 1rem;
  }
  .nav__link[aria-current="page"]::after { display: none; }

  .nav__cta {
    margin: 0.5rem var(--gutter) 0;
    text-align: center;
    padding: 0.75rem 1.25rem;
  }
}

/* ── AGE GATE ───────────────────────────────────────────────── */
.age-gate {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--blush);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  transition: opacity 0.35s ease;
}
.age-gate.is-fading { opacity: 0; pointer-events: none; }

body.gate-open { overflow: hidden; }

.age-gate__inner {
  text-align: center;
  max-width: 380px;
  width: 100%;
}

.age-gate__logo {
  width: 90px;
  height: 90px;
  object-fit: contain;
  margin: 0 auto 1.75rem;
}

.age-gate__title {
  font-family: var(--font-display);
  font-size: 2.25rem;
  color: var(--charcoal);
  margin-bottom: 0.5rem;
}

.age-gate__sub {
  font-size: 0.875rem;
  color: var(--graphite);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.age-gate__text {
  font-size: 0.9375rem;
  color: var(--graphite);
  line-height: 1.65;
  margin-bottom: 2.25rem;
}

.age-gate__buttons {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

/* ── BUTTONS ────────────────────────────────────────────────── */
.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 500;
  padding: 0.9rem 2rem;
  border-radius: var(--radius);
  border: none;
  transition: background var(--ease), color var(--ease), border-color var(--ease);
  text-align: center;
  line-height: 1;
  letter-spacing: 0.01em;
}
.btn--lg   { font-size: 1.05rem; padding: 1.1rem 2.75rem; }
.btn--full { width: 100%; display: block; }

.btn--dark    { background: var(--charcoal); color: var(--white); }
.btn--dark:hover { background: #444; }

.btn--rose    { background: var(--rose); color: var(--white); }
.btn--rose:hover { background: var(--blush-mid); }

.btn--blush   { background: var(--blush); color: var(--charcoal); }
.btn--blush:hover { background: #f0bac4; }

.btn--outline { background: transparent; color: var(--charcoal); border: 1.5px solid var(--charcoal); }
.btn--outline:hover { background: var(--charcoal); color: var(--white); }

.btn--outline-white { background: transparent; color: var(--white); border: 1.5px solid rgba(255,255,255,0.5); }
.btn--outline-white:hover { background: rgba(255,255,255,0.08); border-color: var(--white); }

/* ── WAVE DIVIDERS ──────────────────────────────────────────── */
/* Place between sections. Set background = outgoing section colour.
   Set the SVG path fill = incoming section colour.             */
.wave { line-height: 0; display: block; }
.wave svg { display: block; width: 100%; }

.wave--from-charcoal { background: var(--charcoal); }
.wave--from-cream    { background: var(--cream);    }
.wave--from-blush    { background: var(--blush);    }
.wave--from-white    { background: var(--white);    }

/* ── HERO ───────────────────────────────────────────────────── */
.hero {
  background: var(--charcoal);
  padding: 6rem 0 5rem;
  text-align: center;
  position: relative;
}
.hero--blush  { background: var(--blush); }
.hero--sm     { padding: 4rem 0 3rem; }

.hero__logo {
  width: 72px;
  height: 72px;
  object-fit: contain;
  margin: 0 auto 1.75rem;
}

.hero__eyebrow { color: var(--blush); }
.hero--blush .hero__eyebrow { color: var(--rose); }

.hero__title { color: var(--white); margin-bottom: 1.25rem; }
.hero--blush .hero__title { color: var(--charcoal); }

.hero__sub {
  font-size: 1.175rem;
  color: rgba(255,255,255,0.7);
  max-width: 540px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
}
.hero--blush .hero__sub { color: var(--graphite); }

.hero__ctas {
  display: flex;
  gap: 0.875rem;
  justify-content: center;
  flex-wrap: wrap;
}

.hero__price {
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--blush);
  letter-spacing: 0.06em;
  margin-bottom: 1.75rem;
}
.hero--blush .hero__price { color: var(--rose); }

/* ── PROSE SECTIONS (About / Why Different) ─────────────────── */
.prose {
  max-width: 660px;
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.prose h2, .prose h3 { color: var(--charcoal); margin-bottom: 1.25rem; }
.prose p  { margin-bottom: 1.3rem; }
.prose p:last-child { margin-bottom: 0; }

/* ── PLATFORM CARDS (Find Us) ───────────────────────────────── */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.25rem;
  margin-top: 3rem;
}

.card {
  background: var(--white);
  border: 1.5px solid rgba(44,44,44,0.1);
  border-radius: var(--radius-card);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  transition: border-color var(--ease), box-shadow var(--ease), transform var(--ease);
}
.card:hover {
  border-color: var(--rose);
  box-shadow: 0 6px 28px rgba(196,120,138,0.14);
  transform: translateY(-2px);
}
.card--featured {
  border-color: var(--rose);
  border-width: 2px;
  background: var(--cream);
}

.card__label {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--rose);
}
.card__title {
  font-family: var(--font-display);
  font-size: 1.85rem;
  color: var(--charcoal);
  line-height: 1.2;
}
.card__desc {
  font-size: 0.9375rem;
  color: var(--graphite);
  line-height: 1.65;
  flex: 1;
  margin-bottom: 0.625rem;
}

/* ── FEATURE LIST (Inner World page) ────────────────────────── */
.features {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  margin-top: 2.25rem;
}
.feature {
  display: flex;
  align-items: flex-start;
  gap: 0.875rem;
}
.feature__dot {
  flex-shrink: 0;
  width: 22px; height: 22px;
  background: var(--rose);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin-top: 0.15rem;
}
.feature__dot svg {
  width: 11px; height: 11px;
  fill: none; stroke: white;
  stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round;
}
.feature__text { font-size: 1rem; color: var(--graphite); line-height: 1.65; }
.feature__text strong { color: var(--charcoal); font-weight: 500; }

/* ── QUOTE CARDS ────────────────────────────────────────────── */
.quotes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  gap: 1.25rem;
  margin-top: 2.75rem;
}
.quote-card {
  background: var(--white);
  border-radius: var(--radius-card);
  padding: 1.75rem 1.75rem 1.5rem;
  position: relative;
}
.quote-card::before {
  content: '\201C';
  font-family: var(--font-display);
  font-size: 4.5rem;
  color: var(--blush-mid);
  line-height: 1;
  position: absolute;
  top: 0.5rem; left: 1.25rem;
  pointer-events: none;
}
.quote-card__text {
  font-size: 0.9375rem;
  line-height: 1.72;
  color: var(--graphite);
  margin-top: 1.75rem;
}
.quote-card__attr {
  margin-top: 1rem;
  font-size: 0.8rem;
  color: var(--rose);
  font-weight: 500;
  letter-spacing: 0.06em;
}

/* ── KIT LIST (About page) ──────────────────────────────────── */
.kit-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
  gap: 0.625rem;
  margin-top: 1.5rem;
}
.kit-list li {
  font-size: 0.9rem;
  color: var(--graphite);
  background: var(--white);
  padding: 0.75rem 1rem;
  border-radius: var(--radius);
  border-left: 3px solid var(--rose);
  line-height: 1.4;
}

/* ── PLATFORM STRIP (Home quick links) ──────────────────────── */
.platform-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  margin-top: 2rem;
}
.platform-strip__link {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--charcoal);
  background: var(--white);
  padding: 0.6rem 1.3rem;
  border-radius: 2rem;
  border: 1.5px solid rgba(44,44,44,0.15);
  transition: background var(--ease), color var(--ease), border-color var(--ease);
}
.platform-strip__link:hover {
  background: var(--charcoal);
  color: var(--white);
  border-color: var(--charcoal);
}

/* ── EMAIL CAPTURE ──────────────────────────────────────────── */
.email-capture {
  background: var(--charcoal);
  padding: 4rem 0;
  text-align: center;
}
.email-capture__title {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--white);
  margin-bottom: 0.5rem;
}
.email-capture__text {
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.6);
  max-width: 460px;
  margin: 0 auto 1.75rem;
  line-height: 1.65;
}
.email-capture__form {
  display: flex;
  gap: 0.75rem;
  max-width: 430px;
  margin: 0 auto;
  flex-wrap: wrap;
  justify-content: center;
}
.email-capture__input {
  flex: 1;
  min-width: 220px;
  padding: 0.875rem 1.25rem;
  border-radius: var(--radius);
  border: 1.5px solid rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.07);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.9375rem;
  transition: border-color var(--ease);
}
.email-capture__input::placeholder { color: rgba(255,255,255,0.35); }
.email-capture__input:focus { outline: none; border-color: var(--blush); }
.email-capture__note {
  display: block;
  margin-top: 0.875rem;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.04em;
}

/* ── FOOTER ─────────────────────────────────────────────────── */
.footer {
  background: #222;
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 1.5rem var(--gutter);
}
.footer__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.footer__copy { font-size: 0.78rem; color: rgba(255,255,255,0.3); }
.footer__nav  { display: flex; gap: 1.25rem; }
.footer__nav a {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.3);
  transition: color var(--ease);
}
.footer__nav a:hover { color: var(--blush); }

/* ── ABOUT STORY SECTIONS ───────────────────────────────────── */
.story-block {
  padding: 5rem 0;
}
.story-block__eyebrow { color: var(--rose); }
.story-block__title   { color: var(--charcoal); margin-bottom: 1.5rem; }

/* ── INNER WORLD FINAL CTA SECTION ─────────────────────────── */
.final-cta {
  background: var(--charcoal);
  padding: 6rem 0;
  text-align: center;
}
.final-cta__tagline {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.45);
  margin-top: 1.25rem;
  letter-spacing: 0.04em;
}

/* ── RESPONSIVE ─────────────────────────────────────────────── */
@media (max-width: 640px) {
  .section     { padding: 3.5rem 0; }
  .section--lg { padding: 5rem 0;   }
  .hero        { padding: 4rem 0 3rem; }
  .hero__ctas  { flex-direction: column; align-items: center; }

  .cards-grid  { grid-template-columns: 1fr; }
  .quotes-grid { grid-template-columns: 1fr; }
  .kit-list    { grid-template-columns: 1fr; }

  .email-capture__form  { flex-direction: column; }
  .email-capture__input { min-width: unset; width: 100%; }

  .footer__inner { flex-direction: column; align-items: flex-start; }
  .final-cta     { padding: 4rem 0; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { transition-duration: 0.01ms !important; }
  html { scroll-behavior: auto; }
}

/* ── CENTERED SYNERGETIC HERO ─────────────────────────────── */

.hero__container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  text-align: center;
}

.hero__image-wrapper {
  width: 100%;
  max-width: 320px;
  margin: 0 auto;
  /* filter removed — shadow lives on the image itself */
}

.hero__image {
  width: 100%;
  height: auto;
  object-fit: cover;
  aspect-ratio: 3 / 4;

  /* Same editorial treatment as .about-img, mirrored for right-side placement */
  border-radius: 8px 20px 12px 24px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.28);
  transform: rotate(0.5deg);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hero__image:hover {
  transform: rotate(0deg) scale(1.01);
  box-shadow: 0 24px 60px rgba(0,0,0,0.35);
}

/* Desktop: text left-aligned against the portrait, everything else unchanged */
@media (min-width: 768px) {
  .hero__container {
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 3.5rem;
  }
  
  .hero__content {
    flex: 0 1 480px;
    text-align: left;        /* Was center — now lines up cleanly */
    /* padding-bottom removed */
  }

  .hero__ctas {
    justify-content: flex-start; /* Button aligns with the text */
  }

  .hero__image-wrapper {
    flex: 0 0 340px;
    max-width: none;
    margin: 0;
  }
  
  .hero__image {
    aspect-ratio: 4 / 5;
  }
}

/* ── STORY GRID (About section) ───────────────────────────── */

.story-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: start;
}

/* Mobile: image first, then text block (title + paragraphs as one unit) */
.story-grid__media {
  order: -1; /* Image sits above the text on mobile */
}

.about-img {
  width: 100%;
  max-width: 100%;
  border-radius: 20px 8px 24px 12px;  /* Organic, imperfect corners */
  box-shadow: 0 20px 50px rgba(44,44,44,0.08);
  transform: rotate(-0.5deg);         /* Like a casually placed photo */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-img:hover {
  transform: rotate(0deg) scale(1.01);
  box-shadow: 0 24px 60px rgba(44,44,44,0.12);
}

/* Eyebrow & title now live inside the text column */
.story-grid__eyebrow {
  display: block;
  text-align: left;        /* Editorial, personal feel */
  margin-bottom: 0.5rem;
}

.story-grid__title {
  text-align: left;
  color: var(--charcoal);
  margin-bottom: 1.5rem;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  line-height: 1.2;
}

/* Desktop: side-by-side magazine spread */
@media (min-width: 768px) {
  .story-grid {
    grid-template-columns: 2fr 3fr;
    gap: 3.5rem;
    align-items: start;   /* Tops align so image and headline start together */
  }
  
  .story-grid__media {
    order: 0;             /* Reset to natural DOM order on desktop */
    margin-top: 10rem;   /* drops image to sit with the paragraphs */
  }
  
  .about-img {
    margin-top: 0;
  }
}