/* ============================================================
   RYZK Bio — Global Stylesheet
   Editorial / luxury-natural wellness aesthetic
   ============================================================ */

/* ---------- Design Tokens ---------- */
:root {
  /* Palette */
  --cream:        #F8F4ED;
  --cream-deep:   #F2EBDF;
  --range-bg:     #F4EEE3;
  --ink:          #181410;
  --ink-soft:     #5C564E;
  --ink-faint:    #8C857A;
  --line:         #E4DCCD;

  --green:        #2C5F2A;
  --green-deep:   #23501F;
  --green-bright: #2E7A2C;
  --sage:         #AEC2A0;
  --sage-soft:    #C9D6BE;

  --coral:        #D98D7F;
  --coral-deep:   #C7766A;
  --pink:         #F6E3DD;
  --pink-soft:    #FAEDE8;

  --dark:         #0B0907;
  --dark-2:       #15110D;
  --gold:         #C9A86A;

  /* Type */
  --serif: "Fraunces", Georgia, "Times New Roman", serif;
  --sans:  "Hanken Grotesk", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  /* Layout */
  --maxw: 1320px;
  --gutter: clamp(20px, 5vw, 72px);
  --radius: 14px;
  --radius-lg: 22px;

  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--sans);
  background: var(--cream);
  color: var(--ink);
  line-height: 1.6;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul { list-style: none; }
input { font-family: inherit; }

/* ---------- Helpers ---------- */
.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
.serif { font-family: var(--serif); }
.eyebrow {
  font-size: 12px; font-weight: 600; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--green);
}
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* Section index header (01 — THE EDIT) */
.section-index { display: flex; align-items: center; gap: 22px; margin-bottom: clamp(36px, 6vw, 64px); }
.section-index .num {
  font-family: var(--serif); font-weight: 300; font-size: clamp(46px, 8vw, 88px);
  line-height: 0.8; color: var(--sage);
}
.section-index .meta { display: flex; align-items: center; gap: 16px; padding-top: 6px; }
.section-index .label { font-size: 12px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--green); font-weight: 600; }
.section-index .rule { width: 56px; height: 1px; background: var(--sage); }

h1, h2, h3 { font-family: var(--serif); font-weight: 600; line-height: 1.04; letter-spacing: -0.01em; }

/* ============================================================
   HEADER / NAV
   ============================================================ */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  padding: 22px 0;
  transition: background .4s var(--ease), padding .4s var(--ease), box-shadow .4s var(--ease);
}
.site-header .wrap { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.site-header.scrolled {
  background: rgba(248,244,237,0.92);
  backdrop-filter: blur(14px);
  padding: 14px 0;
  box-shadow: 0 1px 0 rgba(0,0,0,0.06);
}

.brand { display: flex; align-items: center; gap: 12px; }
.brand .mark { width: 34px; height: 34px; color: var(--cream); transition: color .4s var(--ease); }
.brand .word { line-height: 1; }
.brand .word b { display: block; font-family: var(--serif); font-weight: 600; font-size: 18px; letter-spacing: 0.16em; color: var(--cream); transition: color .4s var(--ease); }
.brand .word span { display: block; font-size: 9px; letter-spacing: 0.34em; text-transform: uppercase; color: var(--sage); margin-top: 3px; }

.scrolled .brand .mark, .scrolled .brand .word b { color: var(--ink); }
.theme-light .brand .mark, .theme-light .brand .word b { color: var(--ink); }
.theme-light .brand .word span { color: var(--green); }

.nav { display: flex; align-items: center; gap: 4px; }
.nav a {
  font-size: 15px; font-weight: 500; color: var(--cream); opacity: .82;
  padding: 9px 18px; border-radius: 999px; transition: all .25s var(--ease);
}
.nav a:hover { opacity: 1; }
.nav a.active { background: rgba(255,255,255,0.16); opacity: 1; }
.scrolled .nav a, .theme-light .nav a { color: var(--ink); opacity: .7; }
.scrolled .nav a:hover, .theme-light .nav a:hover { opacity: 1; }
.scrolled .nav a.active, .theme-light .nav a.active { background: rgba(44,95,42,0.1); color: var(--green); opacity: 1; }

.header-tools { display: flex; align-items: center; gap: 6px; }
.icon-btn {
  width: 40px; height: 40px; display: grid; place-items: center; border-radius: 999px;
  color: var(--cream); transition: all .25s var(--ease);
}
.icon-btn:hover { background: rgba(255,255,255,0.12); }
.scrolled .icon-btn, .theme-light .icon-btn { color: var(--ink); }
.scrolled .icon-btn:hover, .theme-light .icon-btn:hover { background: rgba(0,0,0,0.06); }
.header-tools .divider { width: 1px; height: 20px; background: rgba(255,255,255,0.3); }
.scrolled .header-tools .divider, .theme-light .header-tools .divider { background: rgba(0,0,0,0.15); }

.nav-toggle { display: none; width: 44px; height: 44px; border-radius: 999px; }
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--cream); margin: 5px auto; transition: .3s var(--ease); }
.scrolled .nav-toggle span, .theme-light .nav-toggle span { background: var(--ink); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative; min-height: 100vh; display: flex; align-items: center;
  color: var(--cream); overflow: hidden;
  background: #1a0e09;
}
.hero-bg {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
}
.hero-bg-img {
  width: 100%; height: 100%; object-fit: cover;
  object-position: right center;
  transition: opacity 0.6s var(--ease);
}
.hero-bg-img.fade-out {
  opacity: 0;
}
.hero::after {
  content: ""; position: absolute; inset: 0; pointer-events: none; z-index: 2;
  background: radial-gradient(80% 60% at 20% 90%, rgba(0,0,0,0.45), transparent 60%);
}
.hero .wrap { position: relative; z-index: 3; width: 100%; }
.hero-top {
  position: absolute; top: 104px; left: var(--gutter); right: var(--gutter); z-index: 4;
  display: flex; justify-content: space-between;
  font-size: 11px; letter-spacing: 0.24em; text-transform: uppercase; color: rgba(245,238,228,0.6);
}
.hero-top span b { color: rgba(245,238,228,0.92); font-weight: 600; }

.hero-grid {
  display: grid; grid-template-columns: 1.05fr 0.95fr; align-items: center; gap: 40px;
  margin-top: 40px; /* Offset the fixed header for visual balance */
}
.hero-copy { max-width: 620px; }
.hero h1 {
  font-size: clamp(64px, 11.5vw, 150px); font-weight: 600; line-height: 0.92;
  letter-spacing: -0.025em; margin-bottom: 28px;
}
.hero h1 em { font-style: italic; }
.hero p.lede { font-size: clamp(17px, 1.4vw, 20px); color: rgba(245,238,228,0.78); max-width: 460px; line-height: 1.55; }
.hero .pill-tag {
  display: inline-flex; align-items: center; gap: 14px; margin-top: 36px;
  background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.16);
  border-radius: 999px; padding: 13px 22px; backdrop-filter: blur(6px);
  transition: all .3s var(--ease);
}
.hero .pill-tag:hover { background: rgba(255,255,255,0.18); }
.hero .pill-tag b { font-weight: 700; letter-spacing: 0.08em; font-size: 13px; }
.hero .pill-tag span { color: rgba(245,238,228,0.7); font-size: 14px; }
.hero .pill-tag .bar { width: 1px; height: 16px; background: rgba(255,255,255,0.3); }
@keyframes floaty { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-16px)} }
@keyframes heroIn { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: none; } }

.hero-controls {
  position: absolute; bottom: 56px; left: var(--gutter); z-index: 4;
  display: flex; align-items: center; gap: 24px;
}
.hero-controls .arrows { display: flex; gap: 10px; }
.hero-controls .arrow {
  width: 48px; height: 48px; border-radius: 999px; border: 1px solid rgba(255,255,255,0.28);
  display: grid; place-items: center; color: var(--cream); transition: all .25s var(--ease);
}
.hero-controls .arrow:hover { background: var(--cream); color: var(--ink); }
.hero-controls .bars { display: flex; gap: 10px; }
.hero-controls .bars i { width: 56px; height: 3px; border-radius: 2px; background: rgba(255,255,255,0.25); cursor: pointer; transition: background .3s var(--ease); }
.hero-controls .bars i.on { background: var(--cream); }
.hero-scroll {
  position: absolute; bottom: 56px; right: var(--gutter); z-index: 4;
  text-align: center; font-size: 10px; letter-spacing: 0.24em; text-transform: uppercase; color: rgba(245,238,228,0.6);
}
.hero-scroll .dot { width: 1px; height: 28px; background: rgba(255,255,255,0.4); margin: 10px auto 0; position: relative; overflow: hidden; }
.hero-scroll .dot::after { content:""; position:absolute; top:-100%; left:0; width:100%; height:100%; background: var(--cream); animation: scrolldown 2s var(--ease) infinite; }
@keyframes scrolldown { 0%{top:-100%} 60%,100%{top:100%} }

/* ============================================================
   MARQUEE
   ============================================================ */
.marquee {
  background: var(--cream); border-block: 1px solid var(--line);
  overflow: hidden; padding: 26px 0; white-space: nowrap;
}
.marquee-track { display: inline-flex; align-items: center; gap: 0; animation: marquee 32s linear infinite; }
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-track span { font-family: var(--serif); font-size: clamp(26px, 3.4vw, 40px); font-weight: 500; padding: 0 36px; color: var(--ink); }
.marquee-track .dot { width: 8px; height: 8px; border-radius: 999px; background: var(--green-bright); }
@keyframes marquee { from{transform:translateX(0)} to{transform:translateX(-50%)} }

/* ============================================================
   SECTION 01 — THE EDIT
   ============================================================ */
.edit { padding: clamp(80px, 11vw, 150px) 0; background: var(--cream); }
.edit-head { display: grid; grid-template-columns: 1fr 1.35fr; gap: clamp(40px, 7vw, 100px); align-items: start; }
.edit-head h2 { font-size: clamp(34px, 4.2vw, 56px); }
.edit-head h2 u { text-decoration: none; border-bottom: 3px solid var(--coral); padding-bottom: 4px; }
.edit-body { font-size: 18px; color: var(--ink-soft); line-height: 1.7; }
.edit-body .dropcap::first-letter {
  font-family: var(--serif); font-weight: 600; font-size: 5.4em; float: left;
  line-height: 0.78; margin: 6px 14px 0 0; color: var(--green);
}
.edit-quote {
  margin-top: 40px; padding-left: 26px; border-left: 2px solid var(--green);
}
.edit-quote p { font-family: var(--serif); font-style: italic; font-size: clamp(20px, 2vw, 26px); color: var(--ink); line-height: 1.4; }
.edit-quote cite { display: block; margin-top: 18px; font-style: normal; font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--ink-faint); }

.stats { display: grid; grid-template-columns: repeat(3, 1fr); margin-top: clamp(56px, 8vw, 90px); border-top: 1px solid var(--line); }
.stats .stat { text-align: center; padding: clamp(36px, 5vw, 56px) 20px; border-right: 1px solid var(--line); }
.stats .stat:last-child { border-right: none; }
.stats .stat b { display: block; font-family: var(--serif); font-weight: 600; font-size: clamp(40px, 5vw, 58px); color: var(--green); line-height: 1; }
.stats .stat span { display: block; margin-top: 12px; font-size: 15px; color: var(--ink-soft); }

/* ============================================================
   SECTION 02 — THE RANGE
   ============================================================ */
.range { padding: clamp(80px, 11vw, 150px) 0; background: var(--range-bg); }
.range-head { display: grid; grid-template-columns: 1.4fr 1fr; gap: 48px; align-items: end; margin-bottom: clamp(44px, 6vw, 72px); }
.range-head h2 { font-size: clamp(36px, 5vw, 64px); max-width: 14ch; }
.range-head p { color: var(--ink-soft); font-size: 16px; max-width: 38ch; }

.range-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.pcard {
  position: relative; background: var(--cream); border-radius: var(--radius-lg);
  padding: 30px; min-height: 268px; display: flex; flex-direction: column;
  overflow: hidden; border: 1px solid var(--line);
  transition: transform .5s cubic-bezier(0.16, 1, 0.3, 1), box-shadow .5s cubic-bezier(0.16, 1, 0.3, 1), border-color .5s cubic-bezier(0.16, 1, 0.3, 1);
}
.pcard:hover {
  transform: translateY(-8px);
  border-color: var(--sage);
  box-shadow: 0 30px 60px -25px rgba(24,20,16,0.12), 0 0 0 1px rgba(174,194,160,0.2);
}
.pcard .for { font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--ink-faint); }
.pcard h3 { font-size: 26px; margin-top: 10px; }
.pcard .explore { margin-top: auto; display: inline-flex; align-items: center; gap: 8px; font-size: 14px; font-weight: 600; color: var(--green); transition: gap .25s var(--ease); }
.pcard:hover .explore { gap: 14px; }
.pcard .thumb {
  position: absolute; right: 22px; bottom: 22px; width: 144px; height: 144px;
  border-radius: 14px; overflow: hidden; object-fit: cover;
  transition: transform .6s cubic-bezier(0.16, 1, 0.3, 1);
}
.pcard:hover .thumb {
  transform: scale(1.06) rotate(1deg);
}
.pcard .thumb img, .pcard .thumb svg { width: 100%; height: 100%; object-fit: cover; }

/* Featured green card spans 2 cols */
.pcard.featured {
  grid-column: span 2; background: var(--green); color: var(--cream);
  justify-content: flex-start; min-height: 268px;
}
.pcard.featured::after {
  content: ""; position: absolute; right: -60px; bottom: -120px; width: 320px; height: 320px;
  border-radius: 999px; background: rgba(255,255,255,0.06);
}
.pcard.featured .for { color: var(--sage-soft); }
.pcard.featured h3 { font-size: clamp(34px, 4vw, 50px); margin-top: 14px; }
.pcard.featured .sub { color: rgba(255,255,255,0.78); font-size: 16px; margin-top: 6px; }
.pcard.featured .view {
  position: absolute; bottom: 30px; left: 30px; display: inline-flex; align-items: center; gap: 14px;
  font-weight: 600; font-size: 15px;
}
.pcard.featured .view .circ {
  width: 50px; height: 50px; border-radius: 999px; border: 1px solid rgba(255,255,255,0.4);
  display: grid; place-items: center; transition: all .3s var(--ease);
}
.pcard.featured:hover .view .circ { background: var(--cream); color: var(--green); }

/* ============================================================
   PURITY (dark)
   ============================================================ */
.purity {
  position: relative; padding: clamp(110px, 16vw, 200px) 0; text-align: center; color: var(--cream);
  background:
    radial-gradient(60% 80% at 50% 60%, #2a1c12 0%, #140d08 55%, #0a0604 100%);
  overflow: hidden;
}
.purity::before {
  content: ""; position: absolute; left: 50%; top: 50%; width: 620px; height: 620px;
  transform: translate(-50%,-30%); border-radius: 999px;
  background: radial-gradient(circle, rgba(201,168,106,0.16), transparent 62%);
}
.purity .ripple { position: absolute; left: 50%; bottom: 0; transform: translateX(-50%); width: 760px; max-width: 120%; opacity: .5; }
.purity .wrap { position: relative; z-index: 2; }
.purity .eyebrow { color: var(--sage); display: inline-flex; align-items: center; gap: 14px; }
.purity .eyebrow::before, .purity .eyebrow::after { content:""; width: 34px; height: 1px; background: var(--sage); opacity: .6; }
.purity h2 { font-size: clamp(40px, 6.5vw, 84px); margin: 24px 0 18px; }
.purity p { max-width: 46ch; margin-inline: auto; color: rgba(245,238,228,0.74); font-size: 18px; }
.play-btn {
  margin-top: 40px; display: inline-flex; align-items: center; gap: 16px;
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.2);
  border-radius: 999px; padding: 12px 28px 12px 12px; font-weight: 600; font-size: 16px;
  backdrop-filter: blur(6px); transition: all .3s var(--ease);
}
.play-btn:hover { background: rgba(255,255,255,0.16); transform: scale(1.03); }
.play-btn .circ { width: 48px; height: 48px; border-radius: 999px; background: rgba(255,255,255,0.16); display: grid; place-items: center; }
.play-btn .circ svg { margin-left: 3px; }

/* ============================================================
   SECTION 03 — FEATURE WELL (DiaB Max)
   ============================================================ */
.feature { padding: clamp(80px, 11vw, 150px) 0; background: var(--cream); }
.feature-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 6vw, 80px); align-items: start; }
.feature-media { position: relative; border-radius: var(--radius-lg); overflow: hidden; }
.feature-media .main {
  width: 100%; aspect-ratio: 1/1.05; object-fit: cover; border-radius: var(--radius-lg);
  background: linear-gradient(160deg, #F3DFA6, #E7C778);
}
.feature-thumbs { position: absolute; left: 18px; bottom: 18px; display: flex; gap: 10px; }
.feature-thumbs button {
  width: 56px; height: 56px; border-radius: 10px; overflow: hidden; border: 2px solid transparent;
  transition: border-color .25s var(--ease);
}
.feature-thumbs button.on { border-color: var(--cream); }
.feature-thumbs img, .feature-thumbs svg { width: 100%; height: 100%; object-fit: cover; }

.feature-info .eyebrow { color: var(--green-bright); }
.feature-info h2 { font-size: clamp(40px, 5vw, 60px); margin: 16px 0 4px; }
.feature-info .formula { font-size: 18px; color: var(--ink-faint); }
.feature-info .desc { margin-top: 24px; color: var(--ink-soft); font-size: 17px; line-height: 1.7; max-width: 52ch; }

.benefit-tags { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.benefit-tags span {
  display: inline-flex; align-items: center; gap: 9px; background: var(--pink);
  color: var(--coral-deep); border-radius: 999px; padding: 11px 18px; font-size: 14px; font-weight: 500;
}
.benefit-tags span svg { flex: none; }

.ingredients { margin-top: 44px; border-top: 1px solid var(--line); padding-top: 26px; }
.ingredients > h3 { display: flex; align-items: center; gap: 10px; font-size: 22px; margin-bottom: 8px; }
.acc-item { border-bottom: 1px solid var(--line); }
.acc-head {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 20px 0; text-align: left;
}
.acc-head .name { font-weight: 600; font-size: 17px; color: var(--ink); }
.acc-head .latin { font-style: italic; font-size: 14px; color: var(--ink-faint); margin-top: 2px; }
.acc-head .chev { transition: transform .35s var(--ease); color: var(--ink-faint); flex: none; }
.acc-item.open .acc-head .chev { transform: rotate(180deg); color: var(--green); }
.acc-panel { max-height: 0; overflow: hidden; transition: max-height .4s var(--ease); }
.acc-panel p { padding: 0 0 22px; color: var(--ink-soft); font-size: 15.5px; line-height: 1.7; max-width: 56ch; }

/* ============================================================
   SECTION 05 — VISUAL STORY
   ============================================================ */
.visual { padding: clamp(80px, 11vw, 150px) 0; background: var(--cream); }
.visual-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(40px, 6vw, 80px); align-items: center; margin-top: clamp(30px, 4vw, 50px); }
.visual-media { position: relative; }
.visual-media .photo { width: 100%; aspect-ratio: 4/5; object-fit: cover; border-radius: var(--radius-lg); }
.visual-media .caption { margin-top: 14px; font-style: italic; font-size: 14px; color: var(--ink-faint); text-align: center; }
.visual-callout {
  position: absolute; left: 28px; bottom: 78px; background: var(--cream);
  border-radius: 14px; padding: 18px 20px; max-width: 260px; z-index: 5;
  box-shadow: 0 20px 40px -22px rgba(0,0,0,0.4);
  transition: opacity 0.3s var(--ease), transform 0.3s var(--ease), left 0.45s cubic-bezier(0.16, 1, 0.3, 1), top 0.45s cubic-bezier(0.16, 1, 0.3, 1), bottom 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}
.visual-callout b { font-family: var(--serif); font-size: 18px; }
.visual-callout p { font-size: 14px; color: var(--ink-soft); margin-top: 4px; }
.marker {
  position: absolute; width: 22px; height: 22px; border-radius: 999px;
  background: rgba(255,255,255,0.6); border: 2px solid #fff;
  box-shadow: 0 0 0 0 rgba(255,255,255,0.5); cursor: pointer; z-index: 4;
  animation: pulse 2.4s ease-out infinite;
  transition: transform 0.3s var(--ease), background 0.3s var(--ease);
}
.marker:hover { transform: scale(1.3); }
.marker.active {
  background: var(--green-bright);
  border-color: #fff;
  transform: scale(1.2);
  box-shadow: 0 0 0 6px rgba(46,122,44,0.3);
}
.marker.green { background: var(--green-bright); }
.marker.m1 { top: 30%; left: 36%; } .marker.m2 { top: 18%; right: 22%; } .marker.m3 { top: 62%; left: 24%; }
@keyframes pulse { 0%{box-shadow:0 0 0 0 rgba(255,255,255,0.45)} 100%{box-shadow:0 0 0 16px rgba(255,255,255,0)} }

.visual-info h2 { font-size: clamp(36px, 4.6vw, 58px); }
.visual-info .desc { margin-top: 22px; color: var(--ink-soft); font-size: 17px; line-height: 1.7; max-width: 46ch; }
.everyday-card {
  margin-top: 40px; background: var(--pink); border-radius: var(--radius);
  padding: 18px; display: flex; align-items: center; gap: 18px;
  transition: transform .3s var(--ease);
}
.everyday-card:hover { transform: translateY(-3px); }
.everyday-card .thumb { width: 92px; height: 92px; border-radius: 12px; overflow: hidden; flex: none; }
.everyday-card .thumb img { width: 100%; height: 100%; object-fit: cover; }
.everyday-card .ec-label { font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--coral-deep); }
.everyday-card b { display: block; font-family: var(--serif); font-size: 21px; margin: 5px 0 8px; }
.everyday-card a { display: inline-flex; align-items: center; gap: 8px; font-size: 14px; font-weight: 600; color: var(--green); }

/* ============================================================
   SECTION 04 — VOICES
   ============================================================ */
.voices { padding: clamp(80px, 11vw, 150px) 0; background: var(--range-bg); }
.voices h2 { font-size: clamp(38px, 5.4vw, 70px); max-width: 16ch; margin-bottom: clamp(40px, 6vw, 64px); }
.testi { display: grid; grid-template-columns: 0.42fr 0.58fr; gap: 40px; padding: 34px 0; border-top: 1px solid var(--line); align-items: start; }
.testi:last-child { border-bottom: 1px solid var(--line); }
.testi.flip { grid-template-columns: 0.58fr 0.42fr; }
.testi.flip .who { order: 2; text-align: right; }
.testi.flip .quote { order: 1; }
.testi .stars { display: flex; gap: 3px; color: var(--coral); margin-bottom: 12px; }
.testi.flip .stars { justify-content: flex-end; }
.testi .who b { font-family: var(--serif); font-size: 18px; }
.testi .who span { display: block; font-size: 14px; color: var(--ink-faint); margin-top: 3px; }
.testi .quote p { font-family: var(--serif); font-style: italic; font-size: clamp(20px, 2vw, 26px); line-height: 1.4; color: var(--ink); }

/* ============================================================
   NEWSLETTER + FOOTER (dark)
   ============================================================ */
.dispatch { background: var(--dark); color: var(--cream); padding: clamp(80px, 10vw, 130px) 0 0; }
.dispatch-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; padding-bottom: clamp(50px, 7vw, 80px); }
.dispatch .eyebrow { color: var(--ink-faint); }
.dispatch h2 { font-size: clamp(30px, 3.6vw, 46px); margin-top: 18px; max-width: 18ch; }
.subscribe {
  display: flex; align-items: center; background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.14); border-radius: 999px; padding: 7px 7px 7px 26px;
}
.subscribe input { flex: 1; background: none; border: none; color: var(--cream); font-size: 16px; outline: none; }
.subscribe input::placeholder { color: rgba(245,238,228,0.45); }
.subscribe button {
  background: var(--coral); color: #fff; border-radius: 999px; padding: 14px 30px;
  font-weight: 600; font-size: 15px; transition: background .25s var(--ease);
}
.subscribe button:hover { background: var(--coral-deep); }

.footer-main { border-top: 1px solid rgba(255,255,255,0.1); padding: clamp(50px, 7vw, 80px) 0 40px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 40px; }
.footer-brand .brand .mark, .footer-brand .brand .word b { color: var(--cream); }
.footer-brand p { margin-top: 22px; color: rgba(245,238,228,0.6); font-size: 15px; max-width: 32ch; line-height: 1.7; }
.socials { display: flex; gap: 12px; margin-top: 26px; }
.socials a { width: 40px; height: 40px; border-radius: 999px; background: rgba(255,255,255,0.07); display: grid; place-items: center; color: var(--cream); transition: all .25s var(--ease); }
.socials a:hover { background: var(--coral); transform: translateY(-3px); }
.footer-col h4 { font-family: var(--serif); font-size: 17px; margin-bottom: 20px; }
.footer-col a { display: block; color: rgba(245,238,228,0.6); font-size: 15px; padding: 7px 0; transition: color .2s var(--ease); }
.footer-col a:hover { color: var(--cream); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding: 26px 0 36px; display: flex; justify-content: space-between; align-items: center; gap: 20px; flex-wrap: wrap; }
.footer-bottom p { font-size: 14px; color: rgba(245,238,228,0.45); }
.footer-bottom nav { display: flex; gap: 26px; }
.footer-bottom nav a { font-size: 14px; color: rgba(245,238,228,0.55); }
.footer-bottom nav a:hover { color: var(--cream); }

/* WhatsApp float */
.wa-float {
  position: fixed; right: 26px; bottom: 26px; z-index: 90;
  width: 58px; height: 58px; border-radius: 999px; background: #25D366; color: #fff;
  display: grid; place-items: center; box-shadow: 0 12px 28px -8px rgba(37,211,102,0.6);
  transition: transform .25s var(--ease);
}
.wa-float:hover { transform: scale(1.08); }

/* ============================================================
   GENERIC PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
  background:
    radial-gradient(120% 100% at 80% 0%, #4a2f1e 0%, #2a1810 55%, #1a0e08 100%);
  color: var(--cream); padding: clamp(140px, 18vw, 200px) 0 clamp(60px, 8vw, 96px);
}
.page-hero .eyebrow { color: var(--sage); }
.page-hero h1 { font-size: clamp(46px, 8vw, 96px); margin: 18px 0 20px; }
.page-hero p { max-width: 52ch; color: rgba(245,238,228,0.74); font-size: 19px; line-height: 1.6; }
.crumbs { font-size: 13px; color: rgba(245,238,228,0.5); margin-bottom: 26px; letter-spacing: 0.04em; }
.crumbs a:hover { color: var(--cream); }

.btn {
  display: inline-flex; align-items: center; gap: 10px; background: var(--green);
  color: var(--cream); border-radius: 999px; padding: 15px 30px; font-weight: 600; font-size: 15px;
  transition: all .3s var(--ease);
}
.btn:hover { background: var(--green-deep); transform: translateY(-2px); }
.btn.coral { background: var(--coral); color: #fff; }
.btn.coral:hover { background: var(--coral-deep); }
.btn.ghost { background: transparent; border: 1px solid rgba(255,255,255,0.3); }
.btn.ghost:hover { background: rgba(255,255,255,0.12); }

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
  html { scroll-behavior: auto; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-product { display: none; }
  .hero-copy { max-width: 100%; padding-top: 40px; }
  .edit-head, .range-head, .feature-grid, .visual-grid, .dispatch-grid { grid-template-columns: 1fr; }
  .range-grid { grid-template-columns: repeat(2, 1fr); }
  .pcard.featured { grid-column: span 2; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .feature-media { order: 1; } .feature-info { order: 2; }
}

@media (max-width: 760px) {
  body { font-size: 16px; }
  .nav, .header-tools .desktop-only { display: none; }
  .nav-toggle { display: block; }
  .nav.open {
    display: flex; flex-direction: column; position: fixed; inset: 0; z-index: 99;
    background: var(--dark); padding: 100px 32px; gap: 8px;
  }
  .nav.open a { color: var(--cream); font-size: 28px; font-family: var(--serif); padding: 14px 0; opacity: 1; }
  .nav.open a.active { background: none; color: var(--sage); }
  .hero-top { font-size: 9px; top: 92px; }
  .hero-controls { gap: 14px; bottom: 36px; }
  .hero-controls .bars i { width: 36px; }
  .hero-scroll { display: none; }
  .stats { grid-template-columns: 1fr; }
  .stats .stat { border-right: none; border-bottom: 1px solid var(--line); }
  .stats .stat:last-child { border-bottom: none; }
  .range-grid { grid-template-columns: 1fr; }
  .pcard.featured { grid-column: span 1; }
  .pcard .thumb { width: 110px; height: 110px; }
  .testi, .testi.flip { grid-template-columns: 1fr; gap: 14px; }
  .testi.flip .who { order: 0; text-align: left; }
  .testi.flip .quote { order: 1; }
  .testi.flip .stars { justify-content: flex-start; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-brand { grid-column: span 2; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .visual-callout { left: 14px; bottom: 20px; max-width: 200px; }
}

@media (max-width: 460px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand { grid-column: span 1; }
  .subscribe { flex-direction: column; padding: 18px; border-radius: 18px; gap: 12px; }
  .subscribe input { width: 100%; text-align: center; }
  .subscribe button { width: 100%; }
}

/* ============================================================
   INNER PAGE COMPONENTS
   ============================================================ */
.section-pad { padding: clamp(70px, 9vw, 130px) 0; }
.section-pad.alt { background: var(--range-bg); }

/* Filter tabs */
.tabs { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: clamp(36px, 5vw, 56px); }
.tabs button {
  padding: 11px 22px; border-radius: 999px; border: 1px solid var(--line);
  font-size: 14px; font-weight: 500; color: var(--ink-soft); background: var(--cream);
  transition: all .25s var(--ease);
}
.tabs button:hover { border-color: var(--green); color: var(--green); }
.tabs button.active { background: var(--green); border-color: var(--green); color: var(--cream); }

/* Product listing grid */
.prod-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.prod {
  background: var(--cream); border: 1px solid var(--line); border-radius: var(--radius-lg);
  overflow: hidden; display: flex; flex-direction: column;
  transition: transform .5s cubic-bezier(0.16, 1, 0.3, 1), box-shadow .5s cubic-bezier(0.16, 1, 0.3, 1), border-color .5s cubic-bezier(0.16, 1, 0.3, 1);
}
.prod:hover {
  transform: translateY(-8px);
  border-color: var(--sage);
  box-shadow: 0 30px 60px -25px rgba(24,20,16,0.12);
}
.prod .media { aspect-ratio: 1/1; overflow: hidden; background: var(--cream-deep); position: relative; }
.prod .media img, .prod .media svg { width: 100%; height: 100%; object-fit: cover; transition: transform .8s cubic-bezier(0.16, 1, 0.3, 1); }
.prod:hover .media img { transform: scale(1.08); }
.prod .badge { position: absolute; top: 16px; left: 16px; background: var(--cream); color: var(--green); font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; padding: 7px 13px; border-radius: 999px; z-index: 2; }
.prod .body { padding: 26px; display: flex; flex-direction: column; flex: 1; }
.prod .for { font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--ink-faint); }
.prod h3 { font-size: 27px; margin: 8px 0 10px; }
.prod p { color: var(--ink-soft); font-size: 15px; line-height: 1.6; flex: 1; }
.prod .foot { display: block; margin-top: 22px; }
.prod .foot a {
  display: flex !important;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--green);
  color: var(--cream) !important;
  border-radius: 999px;
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.3s var(--ease);
  width: 100%;
}
.prod:hover .foot a {
  background: var(--green-deep);
  gap: 13px;
}

/* Two-column prose / feature rows */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 6vw, 90px); align-items: center; }
.split.r .split-media { order: 2; }
.split-media img { width: 100%; border-radius: var(--radius-lg); object-fit: cover; aspect-ratio: 4/3; }
.split-info h2 { font-size: clamp(32px, 4vw, 50px); margin-bottom: 20px; }
.split-info p { color: var(--ink-soft); font-size: 17px; line-height: 1.7; margin-bottom: 16px; }
.lead-h2 { font-size: clamp(34px, 5vw, 60px); max-width: 18ch; margin-bottom: 24px; }
.lead-sub { color: var(--ink-soft); font-size: 18px; max-width: 56ch; line-height: 1.7; }

/* Process steps */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; margin-top: clamp(40px,5vw,64px); }
.step { border-top: 2px solid var(--green); padding-top: 22px; }
.step b { font-family: var(--serif); font-size: 14px; color: var(--green); letter-spacing: 0.1em; }
.step h4 { font-family: var(--serif); font-size: 22px; margin: 12px 0 10px; }
.step p { color: var(--ink-soft); font-size: 15px; line-height: 1.6; }

/* Value cards */
.values { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.value { background: var(--cream); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 34px; }
.value .ic { width: 52px; height: 52px; border-radius: 14px; background: var(--pink); color: var(--coral-deep); display: grid; place-items: center; margin-bottom: 20px; }
.value h4 { font-family: var(--serif); font-size: 23px; margin-bottom: 10px; }
.value p { color: var(--ink-soft); font-size: 15.5px; line-height: 1.65; }

/* FAQ accordion (reuses acc styles) */
.faq { max-width: 820px; margin-inline: auto; }
.faq .acc-head .name { font-size: 19px; }
.faq .acc-head { padding: 24px 0; }

/* Contact layout */
.contact-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(40px, 6vw, 80px); }
.contact-info h2 { font-size: clamp(32px, 4vw, 50px); margin-bottom: 18px; }
.contact-info p { color: var(--ink-soft); font-size: 17px; line-height: 1.7; max-width: 42ch; }
.contact-list { margin-top: 40px; display: grid; gap: 4px; }
.contact-list .row { display: flex; align-items: flex-start; gap: 16px; padding: 20px 0; border-top: 1px solid var(--line); }
.contact-list .row:last-child { border-bottom: 1px solid var(--line); }
.contact-list .ic { width: 44px; height: 44px; border-radius: 12px; background: var(--green); color: var(--cream); display: grid; place-items: center; flex: none; }
.contact-list b { display: block; font-family: var(--serif); font-size: 17px; }
.contact-list span { color: var(--ink-soft); font-size: 15px; }

/* Centered Form adjustments */
.contact-form-container {
  max-width: 640px;
  margin: 0 auto;
}
.contact-form-header {
  text-align: center;
  margin-bottom: 36px;
}
.contact-form-header h2 {
  font-size: clamp(32px, 4vw, 44px);
  margin-bottom: 12px;
}
.contact-form-header p {
  color: var(--ink-soft);
  font-size: 17px;
  line-height: 1.6;
  max-width: 48ch;
  margin-inline: auto;
}

.form-card { background: var(--cream); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(28px, 4vw, 44px); }
.field { margin-bottom: 20px; }
.field label { display: block; font-size: 13px; font-weight: 600; letter-spacing: 0.04em; margin-bottom: 8px; color: var(--ink); }
.field input, .field textarea, .field select {
  width: 100%; padding: 15px 18px; border: 1px solid var(--line); border-radius: 12px;
  background: var(--cream-deep); font-size: 16px; color: var(--ink); outline: none;
  transition: border-color .25s var(--ease), background .25s var(--ease);
}
.field input:focus, .field textarea:focus, .field select:focus { border-color: var(--green); background: #fff; }
.field textarea { resize: vertical; min-height: 130px; }
.field.two { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field.two > div { margin: 0; }
.form-card .btn { width: 100%; justify-content: center; margin-top: 6px; }

/* Stat band */
.statband { background: var(--green); color: var(--cream); }
.statband .grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.statband .s { text-align: center; padding: clamp(40px,6vw,64px) 16px; border-right: 1px solid rgba(255,255,255,0.16); }
.statband .s:last-child { border-right: none; }
.statband .s b { display: block; font-family: var(--serif); font-size: clamp(38px,5vw,56px); line-height: 1; }
.statband .s span { display: block; margin-top: 12px; font-size: 14px; color: var(--sage-soft); letter-spacing: 0.04em; }

/* Press logos */
.press { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; align-items: center; }
.press .logo { font-family: var(--serif); font-size: clamp(20px,2.4vw,30px); text-align: center; color: var(--ink-faint); padding: 24px; border: 1px solid var(--line); border-radius: var(--radius); }

@media (max-width: 1024px) {
  .prod-grid, .values, .press { grid-template-columns: repeat(2, 1fr); }
  .split, .contact-grid { grid-template-columns: 1fr; }
  .split.r .split-media { order: 0; }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .statband .grid { grid-template-columns: repeat(2, 1fr); }
  .statband .s:nth-child(2) { border-right: none; }
}
@media (max-width: 600px) {
  .prod-grid, .values, .press, .steps { grid-template-columns: 1fr; }
  .field.two { grid-template-columns: 1fr; }
  .statband .grid { grid-template-columns: 1fr; }
  .statband .s { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.16); }
}
@media (max-width: 600px) {
  .prod-grid, .values, .press, .steps { grid-template-columns: 1fr; }
  .field.two { grid-template-columns: 1fr; }
  .statband .grid { grid-template-columns: 1fr; }
  .statband .s { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.16); }
}

/* ============================================================
   PREMIUM CREATIVE ENHANCEMENTS
   ============================================================ */

/* Scroll Progress Indicator */
.scroll-progress {
  position: fixed; top: 0; left: 0; height: 3px; background: var(--gold);
  z-index: 1002; width: 0; transition: width 0.1s ease-out;
}

/* Page Load Animations */
@keyframes slideInLeft {
  from { opacity: 0; transform: translateX(-40px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes fadeInScale {
  from { opacity: 0; transform: scale(0.9) translateY(20px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}
@keyframes slideDownHeader {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-copy {
  animation: slideInLeft 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.hero-bg {
  animation: fadeInScale 1.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.site-header {
  animation: slideDownHeader 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}



/* Product Details Drawer overlay and container */
.drawer-overlay {
  position: fixed; inset: 0; background: rgba(24,20,16,0.5);
  backdrop-filter: blur(6px); z-index: 1000; opacity: 0; pointer-events: none;
  transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.drawer-overlay.open { opacity: 1; pointer-events: auto; }

.product-drawer {
  position: fixed; top: 0; right: 0; bottom: 0; width: 100%; max-width: 500px;
  background: var(--cream); z-index: 1001; transform: translateX(100%);
  box-shadow: -15px 0 45px rgba(24,20,16,0.18); display: flex; flex-direction: column;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.product-drawer.open { transform: translateX(0); }

.drawer-header {
  padding: 24px; border-bottom: 1px solid var(--line); display: flex;
  align-items: center; justify-content: space-between;
}
.drawer-header h2 { font-size: 24px; margin: 0; font-family: var(--serif); color: var(--ink); }
.drawer-close {
  width: 40px; height: 40px; border-radius: 999px; display: grid;
  place-items: center; color: var(--ink-soft); transition: all 0.25s;
}
.drawer-close:hover { background: var(--line); color: var(--ink); transform: rotate(90deg); }

.drawer-content { flex: 1; overflow-y: auto; padding: 28px; }
.drawer-image {
  width: 100%; aspect-ratio: 1.1/1; border-radius: 14px; overflow: hidden;
  background: var(--cream-deep); margin-bottom: 24px; display: grid; place-items: center;
  border: 1px solid var(--line);
}
.drawer-image img { width: 100%; height: 100%; object-fit: cover; }

.drawer-meta { display: flex; align-items: baseline; justify-content: space-between; gap: 16px; margin-bottom: 14px; }
.drawer-meta .cat { font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--green); font-weight: 600; }
.drawer-meta .price { font-family: var(--serif); font-size: 24px; color: var(--ink); }

.drawer-desc { color: var(--ink-soft); font-size: 16px; line-height: 1.7; margin-bottom: 24px; }

.drawer-section { border-top: 1px solid var(--line); padding-top: 22px; margin-top: 22px; }
.drawer-section h4 { font-family: var(--sans); font-size: 13px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 12px; color: var(--ink); }
.drawer-section p { color: var(--ink-soft); font-size: 15px; line-height: 1.6; }

.drawer-ingredients { list-style: none; display: grid; gap: 12px; }
.drawer-ingredients li {
  position: relative; padding-left: 20px; font-size: 14.5px; color: var(--ink-soft); line-height: 1.55;
}
.drawer-ingredients li::before {
  content: "•"; position: absolute; left: 0; color: var(--green); font-size: 20px; line-height: 1; top: -2px;
}

/* Featured card image layout */
.pcard.featured {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: center;
  gap: 20px;
}
.pcard.featured .featured-copy {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.pcard.featured .thumb {
  position: relative;
  right: auto;
  bottom: auto;
  width: 100%;
  height: auto;
  aspect-ratio: 1/1;
  border-radius: 14px;
}
@media (max-width: 760px) {
  .pcard.featured {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .pcard.featured .thumb {
    max-width: 180px;
    margin-inline: auto;
  }
}

/* Native transparent background styling for product containers */
.hero-product img,
.prod .media img,
.pcard .thumb img,
.drawer-image img,
.everyday-card .thumb img {
  background: transparent !important;
}
.prod .media,
.pcard .thumb,
.drawer-image,
.everyday-card .thumb {
  background: transparent !important;
  border-color: rgba(24,20,16,0.08) !important;
}

/* Circular background for the Breathe bottle on dark green Featured card */
.pcard.featured .thumb {
  background: rgba(246, 227, 221, 0.12) !important; /* soft translucent coral/cream */
  border-radius: 50% !important;
  aspect-ratio: 1/1;
  padding: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Ambient Cursor Glow */
.cursor-glow {
  position: fixed;
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(201,168,106,0.07) 0%, rgba(201,168,105,0) 70%);
  border-radius: 50%;
  pointer-events: none;
  transform: translate(-50%, -50%);
  z-index: 0;
  transition: opacity 0.5s ease;
  opacity: 0;
}
body:hover .cursor-glow {
  opacity: 1;
}
@media (max-width: 760px) {
  .cursor-glow { display: none; }
}

