/*
Theme Name: Lumiflorae
Theme URI: https://lumiflorae.com
Author: Lumiflorae Studio
Author URI: https://lumiflorae.com
Description: Illuminated Ambient Floral Decor — a refined-luxury, editorial landing theme. Faux botanicals with hidden fiber-optic and micro-LED lighting: floral decor by day, sculptural mood lighting by night.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: lumiflorae
Tags: landing-page, e-commerce, luxury, editorial, dark, responsive, custom-logo
*/

/* ==========================================================================
   1. Design tokens
   ========================================================================== */
:root {
  --ink: #14110C;
  --ink-2: #1C1610;
  --ink-3: #251D14;
  --cream: #F6F1E8;
  --cream-2: #EEE5D6;
  --cream-3: #E4D9C6;
  --glow: #E0A45E;
  --glow-lt: #F4C98A;
  --glow-dk: #B97F3F;
  --sage: #A8B99A;
  --lav: #B9A8E8;
  --text: #241D14;
  --text-soft: #61564A;
  --text-inv: #F6F1E8;
  --text-inv-soft: #B9AD9D;
  --line: rgba(36, 29, 20, .12);
  --line-inv: rgba(246, 241, 232, .15);
  --font-display: "Fraunces", "Didot", Georgia, serif;
  --font-body: "Manrope", system-ui, -apple-system, sans-serif;
  --font-mono: "IBM Plex Mono", ui-monospace, "SF Mono", monospace;
  --ease: cubic-bezier(.32, .72, 0, 1);
  --ease-out: cubic-bezier(.16, 1, .3, 1);
  --maxw: 1240px;
  --r-lg: 2rem;
  --r-md: 1.25rem;
}

/* ==========================================================================
   2. Reset & base
   ========================================================================== */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  color: var(--text);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

body.is-dark {
  color: var(--text-inv);
  background: var(--ink);
}

img, picture, svg, video { display: block; max-width: 100%; height: auto; }
figure { margin: 0; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
ul, ol { padding: 0; margin: 0; list-style: none; }
::selection { background: var(--glow); color: var(--ink); }

:focus-visible {
  outline: 2px solid var(--glow);
  outline-offset: 3px;
  border-radius: 4px;
}

/* Grain overlay — fixed, pointer-events none (GPU-safe) */
.grain {
  position: fixed; inset: 0; z-index: 60; pointer-events: none;
  opacity: .05; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ==========================================================================
   3. Typography
   ========================================================================== */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 460;
  line-height: 1.02;
  letter-spacing: -.02em;
  margin: 0;
  font-variation-settings: "opsz" 144, "SOFT" 0, "WONK" 0;
}

.display {
  font-size: clamp(2.75rem, 8.5vw, 7rem);
  font-weight: 420;
  text-wrap: balance;
}

.display em {
  font-style: italic;
  font-weight: 380;
  color: var(--glow);
}

.is-light .display em { color: var(--glow-dk); }

.h2 {
  font-size: clamp(2rem, 5.2vw, 4rem);
  font-weight: 440;
}

.h3 { font-size: clamp(1.35rem, 3vw, 2.1rem); font-weight: 460; }

.lede {
  font-size: clamp(1.05rem, 1.6vw, 1.3rem);
  line-height: 1.6;
  font-weight: 430;
}

/* Eyebrow tag */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  font-family: var(--font-mono);
  font-size: .7rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--glow);
}
.is-light .eyebrow { color: var(--glow-dk); }
.eyebrow::before {
  content: "";
  width: 7px; height: 7px; border-radius: 50%;
  background: currentColor;
  box-shadow: 0 0 12px currentColor;
}

/* ==========================================================================
   4. Layout utilities
   ========================================================================== */
.container { max-width: var(--maxw); margin-inline: auto; padding-inline: clamp(1.25rem, 4vw, 2.5rem); }
.section { padding-block: clamp(4.5rem, 11vw, 9.5rem); }

/* Oversized cropped type (home.webp signature device) */
.crop-headline {
  font-family: var(--font-display);
  font-weight: 430;
  font-size: clamp(4rem, 17vw, 15rem);
  line-height: .82;
  letter-spacing: -.035em;
  white-space: nowrap;
  text-transform: uppercase;
}

/* ==========================================================================
   5. Buttons
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .75rem;
  padding: 1.02rem 1.7rem;
  border-radius: 999px;
  font-weight: 650;
  font-size: .95rem;
  letter-spacing: .01em;
  line-height: 1;
  transition: transform .5s var(--ease), background-color .4s var(--ease), color .4s var(--ease), border-color .4s var(--ease);
  will-change: transform;
}
.btn:active { transform: scale(.98); }

.btn .btn-arrow {
  display: inline-grid; place-items: center;
  width: 1.7rem; height: 1.7rem; border-radius: 50%;
  background: rgba(0,0,0,.14);
  transition: transform .5s var(--ease);
}
.btn:hover .btn-arrow { transform: translate(2px, -2px); }

.btn-primary { background: var(--glow); color: var(--ink); }
.btn-primary:hover { background: var(--glow-lt); }

.btn-dark { background: var(--ink); color: var(--cream); }
.btn-dark:hover { background: var(--ink-3); }

.btn-ghost { border: 1px solid var(--line); color: inherit; }
.btn-ghost:hover { border-color: var(--glow); color: var(--glow); }
.is-dark .btn-ghost { border-color: var(--line-inv); }
.is-dark .btn-ghost:hover { color: var(--glow-lt); }

.btn-light { background: var(--cream); color: var(--ink); }
.btn-light:hover { background: #fff; }

/* ==========================================================================
   6. Announcement bar
   ========================================================================== */
.announce {
  background: var(--ink);
  color: var(--cream);
  font-family: var(--font-mono);
  font-size: .72rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  text-align: center;
  padding: .6rem 1rem;
}
.announce b { color: var(--glow-lt); font-weight: 500; }

/* ==========================================================================
   7. Navigation — floating glass pill
   ========================================================================== */
.site-nav {
  position: sticky;
  top: 1rem;
  z-index: 50;
  padding-inline: 1rem;
  pointer-events: none;
}
.site-nav__inner {
  pointer-events: auto;
  max-width: var(--maxw);
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: .6rem .7rem .6rem 1.4rem;
  border-radius: 999px;
  background: rgba(20, 17, 12, .62);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  border: 1px solid rgba(246, 241, 232, .12);
  box-shadow: 0 12px 40px rgba(0, 0, 0, .28);
  transition: background-color .4s var(--ease);
}
.site-nav.scrolled .site-nav__inner { background: rgba(20, 17, 12, .82); }

.brand {
  font-family: var(--font-display);
  font-size: 1.28rem;
  letter-spacing: .16em;
  font-weight: 460;
  color: var(--cream);
  display: inline-flex;
  align-items: center;
  gap: .55rem;
}
.brand__dot {
  width: 9px; height: 9px; border-radius: 50%;
  background: var(--glow);
  box-shadow: 0 0 14px var(--glow);
}

.nav-links { display: flex; align-items: center; gap: 1.9rem; }
.nav-links a {
  font-size: .88rem;
  font-weight: 550;
  letter-spacing: .02em;
  color: var(--text-inv-soft);
  position: relative;
  transition: color .3s var(--ease);
}
.nav-links a:hover { color: var(--cream); }
.nav-links a::after {
  content: "";
  position: absolute; left: 0; bottom: -5px;
  width: 100%; height: 1px;
  background: var(--glow);
  transform: scaleX(0); transform-origin: right;
  transition: transform .45s var(--ease);
}
.nav-links a:hover::after { transform: scaleX(1); transform-origin: left; }

.nav-cta { display: flex; align-items: center; gap: .7rem; }
.nav-cta .btn { padding: .82rem 1.35rem; font-size: .85rem; }

/* Hamburger */
.burger {
  display: none;
  position: relative;
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1px solid var(--line-inv);
  place-items: center;
}
.burger span {
  display: block; width: 20px; height: 1.6px;
  background: var(--cream);
  margin: 5px 0;
  transition: transform .5s var(--ease), opacity .3s var(--ease);
}
.burger.is-open span:nth-child(1) { transform: translateY(6.6px) rotate(45deg); }
.burger.is-open span:nth-child(2) { opacity: 0; }
.burger.is-open span:nth-child(3) { transform: translateY(-6.6px) rotate(-45deg); }

/* Mobile menu overlay */
.mobile-menu {
  position: fixed; inset: 0; z-index: 49;
  background: rgba(20, 17, 12, .92);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  display: grid; place-content: center;
  opacity: 0; visibility: hidden;
  transition: opacity .5s var(--ease), visibility .5s;
}
.mobile-menu.is-open { opacity: 1; visibility: visible; }
.mobile-menu nav { display: grid; gap: 1.4rem; text-align: center; }
.mobile-menu a {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 7vw, 3rem);
  color: var(--cream);
  opacity: 0; transform: translateY(1.5rem);
  transition: opacity .6s var(--ease), transform .6s var(--ease);
}
.mobile-menu.is-open a { opacity: 1; transform: none; }
.mobile-menu a:nth-child(2) { transition-delay: .06s; }
.mobile-menu a:nth-child(3) { transition-delay: .12s; }
.mobile-menu a:nth-child(4) { transition-delay: .18s; }
.mobile-menu a:nth-child(5) { transition-delay: .24s; }
.mobile-menu a:hover { color: var(--glow-lt); font-style: italic; }

/* ==========================================================================
   8. Hero
   ========================================================================== */
.hero {
  position: relative;
  color: var(--text-inv);
  background: radial-gradient(120% 90% at 70% 20%, #2a2116 0%, var(--ink) 55%);
  padding-block: clamp(3rem, 7vw, 6rem) 0;
  overflow: hidden;
}
.hero__grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  min-height: 78vh;
}
.hero__copy { position: relative; z-index: 2; }
.hero__copy .eyebrow { margin-bottom: 1.6rem; }
.hero__copy .display { margin-bottom: 1.4rem; }
.hero__copy .lede { color: var(--text-inv-soft); max-width: 34rem; margin-bottom: 2.2rem; }
.hero__ctas { display: flex; flex-wrap: wrap; gap: .9rem; }
.hero__note {
  margin-top: 2.6rem;
  display: flex; align-items: center; gap: 1rem;
  font-family: var(--font-mono);
  font-size: .74rem; letter-spacing: .08em;
  text-transform: uppercase; color: var(--text-inv-soft);
}
.hero__stars { color: var(--glow-lt); letter-spacing: .2em; }

.hero__media {
  position: relative;
  z-index: 1;
}
.hero__media img {
  width: 100%; height: auto;
  border-radius: var(--r-lg);
  object-fit: cover;
  aspect-ratio: 4 / 5;
}
.hero__card {
  position: absolute;
  left: -1.4rem; bottom: 2rem;
  background: rgba(20, 17, 12, .7);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid var(--line-inv);
  border-radius: 1.25rem;
  padding: .9rem 1.2rem;
  display: flex; align-items: center; gap: .8rem;
  box-shadow: 0 20px 50px rgba(0,0,0,.4);
}
.hero__card-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--glow); box-shadow: 0 0 12px var(--glow); }
.hero__card b { display: block; font-size: .9rem; color: var(--cream); }
.hero__card span { font-size: .74rem; color: var(--text-inv-soft); }

.hero__scroll {
  display: flex; align-items: center; gap: .7rem;
  font-family: var(--font-mono);
  font-size: .7rem; letter-spacing: .18em; text-transform: uppercase;
  color: var(--text-inv-soft);
  padding: 1.8rem 0 1.4rem;
}
.hero__scroll-line {
  width: 1px; height: 34px;
  background: linear-gradient(var(--glow), transparent);
  transform-origin: top;
  animation: scrollPulse 2.4s var(--ease) infinite;
}
@keyframes scrollPulse {
  0% { transform: scaleY(0); }
  55% { transform: scaleY(1); }
  100% { transform: scaleY(1); opacity: 0; }
}

/* ==========================================================================
   9. Press bar
   ========================================================================== */
.press { padding-block: clamp(2.5rem, 5vw, 4rem); background: var(--cream); color: var(--text); }
.press__label {
  text-align: center;
  font-family: var(--font-mono);
  font-size: .7rem; letter-spacing: .2em; text-transform: uppercase;
  color: var(--text-soft);
  margin-bottom: 1.8rem;
}
.press__row {
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: 1.5rem 3.2rem;
  align-items: center;
}
.press__row span {
  font-family: var(--font-display);
  font-size: 1.25rem;
  letter-spacing: .06em;
  color: var(--text-soft);
  opacity: .65;
  transition: opacity .3s var(--ease), color .3s var(--ease);
}
.press__row span:hover { opacity: 1; color: var(--ink); }

/* ==========================================================================
   10. Day / Night split
   ========================================================================== */
.duality { background: var(--ink); color: var(--text-inv); overflow: hidden; }
.duality__head { padding-bottom: clamp(3rem, 6vw, 5rem); }
.duality__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid var(--line-inv);
  border-radius: var(--r-lg);
  overflow: hidden;
}
.duality__panel { position: relative; min-height: clamp(22rem, 50vw, 34rem); overflow: hidden; }
.duality__panel + .duality__panel { border-left: 1px solid var(--line-inv); }
.duality__panel img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  transition: transform 1.4s var(--ease-out);
}
.duality__panel:hover img { transform: scale(1.05); }
.duality__panel::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(20,17,12,.1), rgba(20,17,12,.78));
}
.duality__label {
  position: absolute; inset: 0; z-index: 2;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: clamp(1.4rem, 3vw, 2.6rem);
}
/* Sized against the panel, not the viewport: at 11vw "The Night" overflowed its
   half-width panel by ~190px and clipped to "THE NIGI". */
.duality__label .crop-headline { color: var(--cream); font-size: clamp(2.4rem, 4.6vw, 6.4rem); }
@supports (container-type: inline-size) {
  .duality__panel { container-type: inline-size; }
  .duality__label .crop-headline { font-size: clamp(2.4rem, 16cqw, 6.4rem); }
}
.duality__label p { color: var(--text-inv-soft); max-width: 30rem; margin: 1rem 0 0; }

/* ==========================================================================
   11. Stats band
   ========================================================================== */
.stats { background: var(--ink); color: var(--text-inv); }
.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line-inv);
  border: 1px solid var(--line-inv);
  border-radius: var(--r-lg);
  overflow: hidden;
}
.stat { background: var(--ink-2); padding: clamp(1.8rem, 3vw, 2.6rem); }
.stat__num {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5.4vw, 4.2rem);
  font-weight: 460;
  color: var(--cream);
  line-height: 1;
}
.stat__num i { color: var(--glow); font-style: normal; }
.stat__label {
  margin-top: .7rem;
  font-family: var(--font-mono);
  font-size: .72rem; letter-spacing: .14em; text-transform: uppercase;
  color: var(--text-inv-soft);
}

/* ==========================================================================
   12. Feature split panels
   ========================================================================== */
.feature { overflow: hidden; }
.feature--dark { background: var(--ink); color: var(--text-inv); }
.feature--lav { background: #2C2537; color: var(--text-inv); }
.feature--sage { background: #20281D; color: var(--text-inv); }
.feature--cream { background: var(--cream); color: var(--text); }

.feature__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}
.feature--flip .feature__grid { direction: rtl; }
.feature--flip .feature__grid > * { direction: ltr; }
.feature__copy .eyebrow { margin-bottom: 1.3rem; }
.feature__copy .h2 { margin-bottom: 1.3rem; }
.feature__copy p { max-width: 32rem; margin: 0 0 1.8rem; }
.feature__copy p { color: var(--text-soft); }
.feature--dark .feature__copy p, .feature--lav .feature__copy p, .feature--sage .feature__copy p { color: var(--text-inv-soft); }

.feature__list { display: grid; gap: .8rem; margin-bottom: 2rem; }
.feature__list li {
  display: flex; gap: .8rem; align-items: baseline;
  font-size: .98rem;
}
.feature__list li::before {
  content: "";
  flex: 0 0 auto; width: 6px; height: 6px; border-radius: 50%;
  background: var(--glow);
  box-shadow: 0 0 10px var(--glow);
  transform: translateY(-2px);
}

.feature__media { position: relative; }
.feature__media img {
  width: 100%; height: auto; border-radius: var(--r-lg);
  aspect-ratio: 5 / 4; object-fit: cover;
}
.feature__media img.is-tall { aspect-ratio: 4 / 5; }

/* ==========================================================================
   13. Marquee
   ========================================================================== */
.marquee {
  background: var(--glow);
  color: var(--ink);
  overflow: hidden;
  padding-block: 1.1rem;
  transform: rotate(0deg);
}
.marquee__track {
  display: flex; gap: 3rem;
  width: max-content;
  animation: marquee 26s linear infinite;
  will-change: transform;
}
.marquee span {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 3vw, 2rem);
  font-weight: 460;
  text-transform: uppercase;
  letter-spacing: .04em;
  white-space: nowrap;
  display: inline-flex; align-items: center; gap: 3rem;
}
.marquee span::after { content: "\2726"; font-size: .7em; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ==========================================================================
   14. Product grid
   ========================================================================== */
.shop { background: var(--cream); color: var(--text); }
.shop__head { display: flex; align-items: flex-end; justify-content: space-between; gap: 2rem; margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.shop__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(1rem, 2.4vw, 1.8rem);
}

.card { position: relative; }
.card__shell {
  background: rgba(36, 29, 20, .05);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: .5rem;
  transition: transform .6s var(--ease), box-shadow .6s var(--ease);
}
.card:hover .card__shell {
  transform: translateY(-6px);
  box-shadow: 0 30px 60px rgba(36, 29, 20, .16);
}
.card__inner {
  background: var(--ink);
  border-radius: calc(var(--r-lg) - .4rem);
  overflow: hidden;
  position: relative;
}
.card__inner img {
  width: 100%; height: auto; aspect-ratio: 4 / 5; object-fit: cover;
  transition: transform 1.2s var(--ease-out);
}
.card:hover .card__inner img { transform: scale(1.06); }
.card__badge {
  position: absolute; top: .9rem; left: .9rem;
  font-family: var(--font-mono); font-size: .64rem; letter-spacing: .12em;
  text-transform: uppercase;
  background: var(--glow); color: var(--ink);
  padding: .34rem .7rem; border-radius: 999px;
}
.card__meta { padding: 1.2rem .4rem .5rem; display: flex; justify-content: space-between; align-items: baseline; gap: 1rem; }
.card__name { font-family: var(--font-display); font-size: 1.22rem; font-weight: 460; }
.card__desc { font-size: .86rem; color: var(--text-soft); margin: .2rem 0 0; }
.card__price { font-family: var(--font-mono); font-size: .92rem; color: var(--glow-dk); white-space: nowrap; }

/* ==========================================================================
   15. How it works
   ========================================================================== */
.how { background: var(--ink); color: var(--text-inv); }
.how__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line-inv);
  border: 1px solid var(--line-inv);
  border-radius: var(--r-lg);
  overflow: hidden;
  margin-top: clamp(2.5rem, 5vw, 4rem);
}
.how__step { background: var(--ink-2); padding: clamp(2rem, 4vw, 3rem); }
.how__num {
  font-family: var(--font-display); font-size: 3.4rem; font-weight: 420;
  color: var(--glow); line-height: 1;
  margin-bottom: 1.2rem;
}
.how__step h3 { margin-bottom: .8rem; }
.how__step p { color: var(--text-inv-soft); margin: 0; }

/* ==========================================================================
   16. Reviews
   ========================================================================== */
.reviews { background: var(--cream); color: var(--text); }
.reviews__head { display: flex; align-items: flex-end; justify-content: space-between; gap: 2rem; margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.reviews__score { text-align: right; }
.reviews__score .big { font-family: var(--font-display); font-size: 3.6rem; line-height: 1; display: block; }
.reviews__score .stars { color: var(--glow-dk); letter-spacing: .15em; font-size: 1.1rem; }
.reviews__score small { font-family: var(--font-mono); font-size: .72rem; color: var(--text-soft); letter-spacing: .1em; text-transform: uppercase; }

.reviews__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1rem, 2.4vw, 1.8rem); }
.review { background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); padding: 2rem; }
.review__stars { color: var(--glow-dk); letter-spacing: .18em; font-size: .95rem; margin-bottom: 1rem; }
.review blockquote { margin: 0 0 1.6rem; font-size: 1.02rem; line-height: 1.6; }
.review__author { display: flex; align-items: center; gap: .9rem; }
.review__avatar {
  width: 44px; height: 44px; border-radius: 50%;
  display: grid; place-items: center;
  font-family: var(--font-display); font-size: 1.1rem;
  background: var(--ink); color: var(--cream);
}
.review__author b { display: block; font-size: .92rem; }
.review__author span { font-size: .8rem; color: var(--text-soft); }

/* ==========================================================================
   17. Events CTA
   ========================================================================== */
.events { background: var(--ink); color: var(--text-inv); }
.events__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.events__media img { width: 100%; height: auto; aspect-ratio: 5 / 4; object-fit: cover; border-radius: var(--r-lg); }
.events__copy .eyebrow { margin-bottom: 1.3rem; }
.events__copy .h2 { margin-bottom: 1.2rem; }
.events__copy p { color: var(--text-inv-soft); max-width: 30rem; margin-bottom: 2rem; }

/* ==========================================================================
   18. Journal
   ========================================================================== */
.journal { background: var(--cream); color: var(--text); }
.journal__head { display: flex; align-items: flex-end; justify-content: space-between; gap: 2rem; margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.journal__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1rem, 2.4vw, 1.8rem); }
.post__img { border-radius: var(--r-md); overflow: hidden; margin-bottom: 1.2rem; }
.post__img img { width: 100%; height: auto; aspect-ratio: 3 / 2; object-fit: cover; transition: transform 1.2s var(--ease-out); }
.post:hover .post__img img { transform: scale(1.05); }
.post__tag { font-family: var(--font-mono); font-size: .68rem; letter-spacing: .16em; text-transform: uppercase; color: var(--glow-dk); }
.post h3 { margin: .6rem 0 .5rem; font-size: 1.35rem; }
.post p { color: var(--text-soft); font-size: .94rem; margin: 0; }

/* ==========================================================================
   19. Final CTA
   ========================================================================== */
.final { background: var(--ink); color: var(--text-inv); position: relative; overflow: hidden; }
.final__glow {
  position: absolute; top: 50%; left: 50%;
  width: 70vmax; height: 70vmax;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(224,164,94,.28), transparent 60%);
  pointer-events: none;
}
.final__inner { position: relative; text-align: center; max-width: 52rem; margin-inline: auto; }
.final .display { margin-bottom: 1.4rem; }
.final .lede { color: var(--text-inv-soft); margin: 0 auto 2.4rem; max-width: 34rem; }
.newsletter { display: flex; gap: .7rem; justify-content: center; flex-wrap: wrap; }
.newsletter input {
  flex: 1 1 300px; max-width: 24rem;
  padding: 1.05rem 1.5rem;
  border-radius: 999px;
  border: 1px solid var(--line-inv);
  background: rgba(246, 241, 232, .06);
  color: var(--cream);
  font: inherit; font-size: .95rem;
}
.newsletter input::placeholder { color: var(--text-inv-soft); }
.newsletter input:focus { outline: none; border-color: var(--glow); }
.final__micro { margin-top: 1.2rem; font-family: var(--font-mono); font-size: .7rem; letter-spacing: .12em; text-transform: uppercase; color: var(--text-inv-soft); }

/* ==========================================================================
   20. Footer
   ========================================================================== */
.site-footer { background: #0E0B07; color: var(--text-inv); }
.site-footer__top {
  padding-block: clamp(4rem, 8vw, 7rem) clamp(3rem, 6vw, 5rem);
}
.site-footer__headline {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 9vw, 7.5rem);
  line-height: .92;
  letter-spacing: -.03em;
  font-weight: 430;
  max-width: 20ch;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}
.site-footer__headline i { color: var(--glow); font-style: italic; }
.site-footer__cols {
  display: grid;
  grid-template-columns: 1.6fr repeat(4, 1fr);
  gap: 2.5rem;
  padding-block: clamp(2rem, 4vw, 3rem);
  border-top: 1px solid var(--line-inv);
}
.footer-brand p { color: var(--text-inv-soft); max-width: 22rem; font-size: .94rem; }
.footer-col h4 {
  font-family: var(--font-mono);
  font-size: .72rem; letter-spacing: .18em; text-transform: uppercase;
  color: var(--text-inv-soft);
  font-weight: 500;
  margin-bottom: 1.2rem;
}
.footer-col a { display: block; padding: .32rem 0; color: var(--text-inv-soft); font-size: .94rem; transition: color .3s var(--ease); }
.footer-col a:hover { color: var(--cream); }
.footer-social { display: flex; gap: .7rem; margin-top: 1.6rem; }
.footer-social a {
  width: 40px; height: 40px; border-radius: 50%;
  border: 1px solid var(--line-inv);
  display: grid; place-items: center;
  font-family: var(--font-mono); font-size: .78rem;
  color: var(--text-inv-soft);
  transition: border-color .3s var(--ease), color .3s var(--ease), transform .5s var(--ease);
}
.footer-social a:hover { border-color: var(--glow); color: var(--glow-lt); transform: translateY(-3px); }

.site-footer__bottom {
  border-top: 1px solid var(--line-inv);
  padding-block: 1.6rem;
  display: flex; flex-wrap: wrap; gap: 1rem; justify-content: space-between; align-items: center;
  font-family: var(--font-mono); font-size: .72rem; letter-spacing: .1em;
  color: var(--text-inv-soft);
  text-transform: uppercase;
}
.site-footer__legal { display: flex; flex-wrap: wrap; gap: 1.5rem; }
.site-footer__legal a { color: var(--text-inv-soft); }
.site-footer__legal a:hover { color: var(--cream); }

/* ==========================================================================
   21. Legal / static pages (page.php)
   ========================================================================== */
.page-hero { background: var(--ink); color: var(--text-inv); padding-block: clamp(5rem, 12vw, 9rem) clamp(3rem, 7vw, 5rem); }
.page-hero .display { font-size: clamp(2.4rem, 6vw, 5rem); }
.page-body { background: var(--cream); color: var(--text); padding-block: clamp(3rem, 7vw, 6rem); }
.legal-prose { max-width: 46rem; }
.legal-prose h2 { font-size: 1.7rem; margin: 2.6rem 0 .8rem; }
.legal-prose h3 { font-size: 1.25rem; margin: 1.8rem 0 .5rem; }
.legal-prose p, .legal-prose li { color: var(--text-soft); }
.legal-prose ul { list-style: disc; padding-left: 1.4rem; margin: .8rem 0; }
.legal-prose a { color: var(--glow-dk); text-decoration: underline; }
.legal-prose .updated { font-family: var(--font-mono); font-size: .72rem; letter-spacing: .1em; text-transform: uppercase; color: var(--text-soft); }

/* ==========================================================================
   22. Reveal animations
   ========================================================================== */
.js [data-reveal] {
  opacity: 0;
  transform: translateY(1.6rem);
  filter: blur(6px);
  transition: opacity .9s var(--ease-out), transform .9s var(--ease-out), filter .9s var(--ease-out);
}
.js [data-reveal].is-in { opacity: 1; transform: none; filter: none; }
.js [data-reveal="left"] { transform: translateX(-2rem); }
.js [data-reveal="right"] { transform: translateX(2rem); }
.js [data-reveal="left"].is-in, .js [data-reveal="right"].is-in { transform: none; }

/* ==========================================================================
   23. Responsive
   ========================================================================== */
@media (max-width: 1024px) {
  .hero__grid { grid-template-columns: 1fr; min-height: auto; }
  .hero__media { order: -1; max-width: 34rem; margin-inline: auto; }
  .shop__grid { grid-template-columns: repeat(2, 1fr); }
  .stats__grid { grid-template-columns: repeat(2, 1fr); }
  .site-footer__cols { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 820px) {
  .nav-links, .nav-cta .btn { display: none; }
  .burger { display: grid; }
  .feature__grid, .feature--flip .feature__grid, .events__grid, .duality__grid { grid-template-columns: 1fr; }
  .feature--flip .feature__grid { direction: ltr; }
  .duality__panel + .duality__panel { border-left: 0; border-top: 1px solid var(--line-inv); }
  .how__grid, .reviews__grid, .journal__grid { grid-template-columns: 1fr; }
  .shop__head, .reviews__head, .journal__head { flex-direction: column; align-items: flex-start; }
  .reviews__score { text-align: left; }
  .crop-headline { white-space: normal; line-height: .9; }
  .site-footer__cols { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 520px) {
  .shop__grid { grid-template-columns: 1fr; }
  .stats__grid { grid-template-columns: 1fr; }
  .site-footer__cols { grid-template-columns: 1fr; }
  .site-footer__bottom { flex-direction: column; align-items: flex-start; }
}

/* ==========================================================================
   24. Reduced motion
   ========================================================================== */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .js [data-reveal], .js [data-reveal="left"], .js [data-reveal="right"] { opacity: 1; transform: none; filter: none; }
  .marquee__track { animation: none; }
}
