
:root {
--cream: #f9f7f4;
--bone: #efe8d6;
--gold: #eec358;
--gold-light: #e9c46f;
--dark: #1a1410;
--dark-mid: #2d2520;
--text-dark: #1a1410;
--text-light: #f5f0e8;
--red-accent: #8b1a1a;
}

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

html { scroll-behavior: smooth; }

body {
background: var(--dark);
color: var(--cream);
font-family: 'Jost', sans-serif;
font-weight: 300;
overflow-x: hidden;
}

/* ============================================================
   SHARED EDITORIAL PRIMITIVES (used by lower sections)
   ============================================================ */

/* Large Cormorant italic section-index numeral */
.section-index {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 300;
  font-size: clamp(96px, 11vw, 180px);
  line-height: 1;
  color: rgba(245,240,232,0.07);
  pointer-events: none;
  user-select: none;
  letter-spacing: -0.02em;
}

/* Fleuron ornament (three-line + center dot SVG) */
.fleuron {
  display: block;
  width: 120px;
  height: 20px;
  color: var(--gold);
  margin: 32px auto;
  opacity: 0.85;
}

/* Drop-cap on first letter of a paragraph */
.drop-cap::first-letter {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 300;
  font-size: 4.4em;
  line-height: 0.9;
  color: var(--gold);
  float: left;
  padding: 6px 12px 0 0;
  margin-top: 4px;
}

@keyframes shimmerSlide {
  0%   { transform: translateX(-100%); }
  100% { transform: translateX(200%); }
}

/* NAV */
nav {
position: fixed;
top: 0; left: 0; right: 0;
z-index: 100;
display: flex;
justify-content: space-between;
align-items: center;
padding: 24px 48px;
mix-blend-mode: normal;
transition: opacity 0.28s ease, transform 0.28s ease;
}

nav.nav-hidden {
opacity: 0;
transform: translateY(-18px);
pointer-events: none;
}

nav::before {
content: '';
position: absolute;
inset: 0;
background: transparent;
pointer-events: none;
}

.nav-brand {
display: flex;
align-items: center;
gap: 8px;
position: relative;
}

.nav-brand img {
width: 90px;
height: 90px;
object-fit: contain;
object-position: center;
display: block;
}

.nav-logo {
font-family: 'Cormorant Garamond', serif;
font-size: 22px;
font-weight: 400;
letter-spacing: 0.12em;
color: var(--cream);
text-transform: uppercase;
position: relative;
line-height: 1;
}

.nav-links {
display: flex;
gap: 40px;
list-style: none;
position: relative;
}

.nav-links a {
color: var(--cream);
text-decoration: none;
font-size: 14px;
letter-spacing: 0.2em;
text-transform: uppercase;
opacity: 0.8;
transition: opacity 0.3s;
}
.nav-links a:hover { opacity: 1; }

/* HERO */
.hero {
height: 100vh;
position: relative;
display: flex;
align-items: flex-end;
overflow: hidden;
}

.hero-bg {
position: absolute;
inset: 0;
background-size: cover;
background-image: url('./webp%20images/ger.webp');
background-position: center;
transform: scale(1.05);
animation: heroZoom 12s ease-out forwards;
}

@keyframes heroZoom {
from { transform: scale(1.05); }
to { transform: scale(1.0); }
}

.hero-overlay {
position: absolute;
inset: 0;
background: linear-gradient(
    to top,
    rgba(26,20,16,0.85) 0%,
    rgba(26,20,16,0.3) 40%,
    rgba(26,20,16,0.1) 100%
);
}

.hero-content {
position: relative;
z-index: 2;
padding: 0 48px 80px;
max-width: 700px;
animation: fadeUp 1.4s ease both;
animation-delay: 0.3s;
}

@keyframes fadeUp {
from { opacity: 0; transform: translateY(30px); }
to { opacity: 1; transform: translateY(0); }
}

.hero-eyebrow {
font-size: 12px;
letter-spacing: 0.35em;
text-transform: uppercase;
color: var(--gold-light);
margin-bottom: 20px;
text-shadow: 0 1px 8px rgba(0,0,0,0.8), 0 0 24px rgba(0,0,0,0.6);
background: rgba(0,0,0,0.5);
display: inline-block;
padding: 6px 14px;
border-left: 2px solid var(--gold);
}

.hero-title {
font-family: 'Cormorant Garamond', serif;
font-size: clamp(52px, 7vw, 88px);
font-weight: 300;
line-height: 1.0;
color: var(--cream);
margin-bottom: 24px;
}

.hero-title em {
font-style: italic;
color: var(--bone);
}

.hero-sub {
font-size: 16px;
letter-spacing: 0.08em;
color: rgba(245,240,232,0.7);
line-height: 1.8;
max-width: 420px;
margin-bottom: 40px;
}

.hero-divider {
width: 40px;
height: 1px;
background: var(--gold);
margin-bottom: 40px;
}

.scroll-hint {
position: absolute;
bottom: 32px;
right: 48px;
display: flex;
flex-direction: column;
align-items: center;
gap: 10px;
opacity: 0.5;
font-size: 9px;
letter-spacing: 0.3em;
text-transform: uppercase;
animation: fadeIn 2s ease 1.5s both;
}

@keyframes fadeIn {
from { opacity: 0; }
to { opacity: 0.5; }
}

.scroll-line {
width: 1px;
height: 48px;
background: var(--cream);
animation: scrollDrop 2s ease-in-out infinite;
}

@keyframes scrollDrop {
0%, 100% { transform: scaleY(1); transform-origin: top; }
50% { transform: scaleY(0.3); transform-origin: top; }
}

/* SPLIT INTRO */
.split-section {
position: relative;
min-height: 90vh;
display: flex;
align-items: stretch;
overflow: hidden;
}

.split-image {
position: absolute;
inset: 0;
overflow: hidden;
}

.split-image img {
width: 100%;
height: 100%;
object-fit: cover;
display: block;
transition: transform 8s ease;
}

.split-section::before {
content: '';
position: absolute;
inset: 0;
background:
    linear-gradient(90deg, rgba(12, 9, 7, 0.28) 0%, rgba(12, 9, 7, 0.22) 38%, rgba(12, 9, 7, 0.48) 70%, rgba(12, 9, 7, 0.72) 100%),
    linear-gradient(180deg, rgba(10, 8, 6, 0.20) 0%, rgba(10, 8, 6, 0.32) 100%);
z-index: 1;
pointer-events: none;
}

.split-image:hover img {
transform: scale(1.03);
}

.split-text {
margin-left: auto;
margin-right: clamp(24px, 6vw, 88px);
align-self: center;
width: min(42%, 620px);
color: var(--cream);
display: flex;
flex-direction: column;
padding: 64px 56px;
position: relative;
z-index: 2;
background: rgba(18, 14, 11, 0.86);
border-left: 1px solid rgba(225,181,80,0.38);
box-shadow: 0 24px 56px rgba(0,0,0,0.35);
-webkit-backdrop-filter: blur(3px);
backdrop-filter: blur(3px);
}

.split-text .section-index {
position: absolute;
top: 18px;
right: 28px;
font-size: clamp(88px, 8vw, 140px);
z-index: 0;
}

.section-label {
font-size: 9px;
letter-spacing: 0.4em;
text-transform: uppercase;
color: var(--gold);
margin-bottom: 24px;
position: relative;
z-index: 1;
}

.split-text h2 {
font-family: 'Cormorant Garamond', serif;
font-size: clamp(34px, 3.3vw, 50px);
font-weight: 300;
line-height: 1.15;
color: var(--cream);
margin-bottom: 24px;
position: relative;
z-index: 1;
}

.split-text p {
font-size: 14px;
line-height: 1.9;
color: rgba(245,240,232,0.82);
margin-bottom: 16px;
max-width: 440px;
position: relative;
z-index: 1;
}

.split-text .fleuron {
margin: 24px 0 0 0;
width: 96px;
opacity: 0.7;
}

@media (max-width: 980px) {
.split-section {
    min-height: auto;
}

.split-section::before {
    background:
    linear-gradient(180deg, rgba(12, 9, 7, 0.32) 0%, rgba(12, 9, 7, 0.58) 42%, rgba(12, 9, 7, 0.85) 100%);
}

.split-text {
    width: 100%;
    margin-right: 0;
    padding: 72px 28px 56px;
    min-height: 90vh;
    justify-content: flex-end;
    background: rgba(18, 14, 11, 0.78);
    border-left: none;
    border-top: 1px solid rgba(225,181,80,0.32);
    box-shadow: none;
}

.split-text .section-index {
    top: 88px;
    right: 22px;
    font-size: clamp(72px, 16vw, 110px);
}
}

.thin-rule {
width: 32px;
height: 1px;
background: var(--gold);
margin: 32px 0;
}

/* Seal / trust badge */
.product-seal {
  position: absolute;
  top: clamp(24px, 3vh, 44px);
  right: clamp(24px, 2.4vw, 44px);
  width: clamp(92px, 9vw, 132px);
  aspect-ratio: 1;
  color: #1a1410;
  z-index: 20;
  pointer-events: none;
  opacity: 1;
  filter: drop-shadow(0 1px 2px rgba(255,255,255,0.45));
  will-change: transform;
}

.product-seal svg {
  width: 100%;
  height: 100%;
  display: block;
  animation: sealSpin 60s linear infinite;
  transform-origin: center;
}

.product-seal circle[stroke] {
  stroke-width: 2 !important;
  opacity: 1 !important;
}

.product-seal .seal-icon {
  stroke-width: 2.8 !important;
}

.seal-text {
  font-family: 'Jost', sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.22em;
  fill: currentColor;
  text-transform: uppercase;
}

@keyframes sealSpin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

/* PRODUCT SECTION - CINEMATIC SCROLL-DRIVEN */
.product-section {
  height: 100vh;    
  position: relative;
  overflow: hidden;
}

.product-container {
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
}

/* Background image slider */
.product-bg-wrapper {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 1;
}

.product-bg {
  width: 150%;
  height: 100%;
  background-size: cover;
  background-position: left top;
  background-repeat: no-repeat;
  will-change: transform;
  position: relative;
}

.product-spray {
  position: absolute;
  bottom: 11%;
  height: 83%;
  width: auto;
  object-fit: contain;
  pointer-events: none;
  filter: drop-shadow(0 30px 40px rgba(0,0,0,0.55));
}

.product-spray-1 {
  left: 9.3%;
}

.product-spray-2 {
  left: 78.4%;
  bottom: 11.5%;
}

/* Text overlay container */
.product-overlay {
  position: relative;
  z-index: 10;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  pointer-events: none;
}

.product-card {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 40%;
  padding: clamp(20px, 3vh, 36px) clamp(16px, 2vw, 28px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  pointer-events: auto;
  will-change: transform, opacity;
  overflow: visible;
}

.mobile-spray { display: none; }

.product-card-1 {
  right: 15%;
  opacity: 1;
  padding-left: clamp(4px, 0.6vw, 10px);
}

.product-card-2 {
  left: 18%;
  opacity: 0;
  padding-right: clamp(4px, 0.6vw, 10px);
}

.glass-panel {
  position: relative;
  padding: clamp(24px, 3.4vh, 44px) clamp(26px, 3vw, 46px);
  border-radius: 10px;
  background: rgba(26, 20, 16, 0.55);
  backdrop-filter: blur(22px) saturate(155%);
  -webkit-backdrop-filter: blur(22px) saturate(155%);
  box-shadow:
    0 24px 70px rgba(0, 0, 0, 0.38),
    0 6px 20px rgba(0, 0, 0, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.14);
  overflow: hidden;
}

.glass-panel::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg,
    rgba(184, 134, 11, 0.75) 0%,
    rgba(184, 134, 11, 0.3) 45%,
    rgba(255, 255, 255, 0.18) 100%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
          mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  pointer-events: none;
}

.product-card .section-label {
  margin-bottom: clamp(10px, 1.4vh, 18px);
}

.product-card h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(32px, 4.2vw, 56px);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: 0.005em;
  color: var(--cream);
  margin-bottom: clamp(6px, 0.8vh, 12px);
}

.product-card h2 em {
  font-style: italic;
  color: var(--gold-light);
}

.product-tagline {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: clamp(14px, 1.45vw, 18px);
  font-weight: 400;
  letter-spacing: 0.04em;
  text-transform: none;
  color: var(--bone);
  margin-bottom: clamp(18px, 3vh, 32px);
  opacity: 0.9;
}

.specs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: rgba(255,255,255,0.14);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: clamp(18px, 2.8vh, 32px);
}

.spec-item {
  position: relative;
  padding: clamp(12px, 1.8vh, 20px) clamp(14px, 1.6vw, 22px);
  background: rgba(26, 20, 16, 0.80);
}

.spec-icon {
  position: absolute;
  top: clamp(12px, 1.8vh, 18px);
  right: clamp(12px, 1.4vw, 18px);
  width: clamp(18px, 1.4vw, 22px);
  height: clamp(18px, 1.4vw, 22px);
  color: var(--gold-light);
  opacity: 0.55;
  pointer-events: none;
}

.spec-label {
  font-size: 9px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}

.spec-value {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(17px, 1.5vw, 22px);
  font-weight: 300;
  color: var(--cream);
}

.benefits-list {
  list-style: none;
  margin-bottom: clamp(18px, 2.6vh, 32px);
}

.benefits-list li {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(13px, 1.05vw, 16px);
  font-weight: 400;
  letter-spacing: 0.01em;
  color: rgba(245,240,232,0.9);
  line-height: 1.45;
  padding: clamp(6px, 0.9vh, 10px) 0;
  border-bottom: 1px solid rgba(255,255,255,0.09);
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.benefits-list li::before {
  content: '—';
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 2px;
  font-family: 'Jost', sans-serif;
}

.price-tag {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  margin-top: 4px;
}

.price-amount {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(28px, 2.4vw, 36px);
  font-weight: 300;
  letter-spacing: 0.01em;
  color: var(--cream);
}

.price-currency {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: clamp(11px, 0.9vw, 13px);
  letter-spacing: 0.1em;
  color: var(--gold);
}

/* FULLBLEED HORSEMAN */
.fullbleed {
height: 90vh;
position: relative;
overflow: hidden;
display: flex;
align-items: center;
justify-content: center;
}

.fullbleed-bg {
position: absolute;
inset: 0;
background-size: cover;
background-position: center 30%;
background-attachment: fixed;
}

.fullbleed-overlay {
position: absolute;
inset: 0;
background: linear-gradient(180deg, rgba(26,20,16,0.30) 0%, rgba(26,20,16,0.48) 50%, rgba(26,20,16,0.72) 100%);
}

.fullbleed-text {
position: relative;
z-index: 2;
text-align: center;
max-width: 760px;
padding: 0 40px;
}

.fullbleed-text .section-index {
display: block;
font-size: clamp(110px, 12vw, 180px);
color: rgba(245,240,232,0.09);
margin-bottom: -32px;
}

.fullbleed-text .drop-quote {
font-family: 'Cormorant Garamond', serif;
font-style: italic;
font-weight: 300;
font-size: clamp(120px, 14vw, 200px);
line-height: 0.8;
color: var(--gold);
display: block;
margin: 0 auto -24px;
opacity: 0.92;
user-select: none;
}

.fullbleed-text blockquote {
font-family: 'Cormorant Garamond', serif;
font-size: clamp(28px, 4vw, 52px);
font-weight: 300;
font-style: italic;
color: var(--cream);
line-height: 1.28;
}

.fullbleed-text .fleuron {
margin: 28px auto 20px;
width: 120px;
}

.fullbleed-text cite {
display: block;
font-size: 10px;
letter-spacing: 0.4em;
text-transform: uppercase;
color: var(--gold-light);
font-style: normal;
}

/* INGREDIENTS */
.ingredients-section {
background: var(--dark);
padding: 104px 0 80px;
position: relative;
overflow: hidden;
}

.ingredients-bg {
position: absolute;
inset: 0;
background-size: cover;
background-position: center 35%;
z-index: 0;
}

.ingredients-overlay {
position: absolute;
inset: 0;
background: linear-gradient(180deg, rgba(18,14,11,0.88) 0%, rgba(18,14,11,0.55) 32%, rgba(18,14,11,0.22) 68%, rgba(18,14,11,0.06) 100%);
z-index: 1;
}

.ingredients-header,
.ingredients-body,
.ingredients-footer {
position: relative;
z-index: 2;
}

.ingredients-header {
text-align: center;
padding: 0 48px;
margin-bottom: 56px;
}

.ingredients-header .section-index {
display: block;
font-size: clamp(90px, 11vw, 170px);
margin-bottom: -28px;
color: rgba(245,240,232,0.14);
}

.ingredients-header .section-label {
margin-bottom: 20px;
}

.ingredients-header h2 {
font-family: 'Cormorant Garamond', serif;
font-size: clamp(34px, 3.5vw, 50px);
font-weight: 300;
color: var(--cream);
line-height: 1.15;
margin-bottom: 20px;
text-shadow: 0 2px 24px rgba(0,0,0,0.6);
}

.ingredients-header .thin-rule {
margin: 20px auto 0;
}

.ingredients-body {
display: flex;
justify-content: center;
padding: 0 clamp(24px, 5vw, 48px);
}

.ingredients-text {
max-width: 780px;
width: 100%;
padding: 56px clamp(32px, 5vw, 64px);
display: flex;
flex-direction: column;
gap: 48px;
background: rgba(18, 14, 11, 0.62);
border: 1px solid rgba(225,181,80,0.22);
border-left-width: 1px;
box-shadow: 0 32px 64px rgba(0,0,0,0.45);
-webkit-backdrop-filter: blur(6px);
backdrop-filter: blur(6px);
}

.ingredient-bar {
position: relative;
padding-left: 72px;
}

.ingredient-index {
position: absolute;
left: 0;
top: -10px;
font-family: 'Cormorant Garamond', serif;
font-style: italic;
font-weight: 300;
font-size: 52px;
line-height: 1;
color: var(--gold-light);
opacity: 0.85;
}

.ingredient-header {
display: flex;
justify-content: space-between;
align-items: baseline;
margin-bottom: 14px;
gap: 16px;
}

.ingredient-name {
font-size: 11px;
letter-spacing: 0.2em;
text-transform: uppercase;
color: var(--cream);
}

.ingredient-pct {
font-family: 'Cormorant Garamond', serif;
font-weight: 300;
font-size: 48px;
line-height: 1;
color: var(--gold);
}

.ingredient-pct em {
font-size: 0.45em;
font-style: normal;
color: var(--gold-light);
letter-spacing: 0.05em;
margin-left: 2px;
vertical-align: top;
}

.bar-track {
height: 6px;
background: rgba(255,255,255,0.06);
position: relative;
overflow: hidden;
border-radius: 3px;
}

.bar-fill {
position: relative;
height: 100%;
background: linear-gradient(to right, var(--gold), var(--gold-light));
animation: barGrow 2s ease 0.4s both;
transform-origin: left;
border-radius: 3px;
overflow: hidden;
}

.bar-fill::after {
content: '';
position: absolute;
inset: 0 auto 0 0;
width: 40%;
background: linear-gradient(90deg, transparent, rgba(255,255,255,0.45), transparent);
animation: shimmerSlide 4s ease-in-out 2.5s infinite;
}

@keyframes barGrow {
from { transform: scaleX(0); }
to { transform: scaleX(1); }
}

.ingredient-desc {
font-size: 18px;
color: rgba(245,240,232,0.72);
line-height: 1.75;
margin-top: 16px;
padding-left: 16px;
border-left: 1px solid rgba(225,181,80,0.22);
}

.ingredients-footer {
text-align: center;
padding: 56px 48px 0;
position: relative;
}

.ingredients-footer::before,
.ingredients-footer::after {
content: '';
position: absolute;
top: calc(56px + 10px);
height: 1px;
background: linear-gradient(to right, transparent, rgba(225,181,80,0.3), transparent);
width: calc(50% - 96px);
}

.ingredients-footer::before { left: 0; }
.ingredients-footer::after { right: 0; }

.ingredients-footer .fleuron {
margin: 0 auto;
}

/* STORY */
.story-section {
background: #191410;
background-image: radial-gradient(ellipse at 90% 50%, rgba(184,134,11,0.08) 0%, transparent 60%);
color: var(--cream);
display: grid;
grid-template-columns: 1fr 1fr;
min-height: 88vh;
border-top: 1px solid rgba(184,134,11,0.12);
position: relative;
}

.story-section > .section-index {
position: absolute;
top: 32px;
right: clamp(32px, 4vw, 72px);
font-size: clamp(110px, 12vw, 190px);
color: rgba(245,240,232,0.06);
z-index: 3;
}

.story-image {
position: relative;
overflow: hidden;
padding: 48px;
}

.story-image::before {
content: '';
position: absolute;
inset: 48px;
border: 1px solid rgba(225,181,80,0.38);
z-index: 2;
pointer-events: none;
}

.story-image img {
width: 100%;
height: 100%;
object-fit: cover;
display: block;
filter: sepia(0.16) saturate(1.05) brightness(0.96);
}

.story-text {
display: flex;
flex-direction: column;
justify-content: center;
padding: 80px clamp(40px, 5vw, 80px) 80px clamp(48px, 5vw, 88px);
position: relative;
border-left: 1px solid rgba(225,181,80,0);
background: linear-gradient(to right, rgba(225,181,80,0.22), rgba(225,181,80,0) 1px) left center / 1px 70% no-repeat;
}

.story-text h2 {
font-family: 'Cormorant Garamond', serif;
font-size: clamp(36px, 3.5vw, 52px);
font-weight: 300;
line-height: 1.15;
color: var(--cream);
margin-bottom: 14px;
}

.story-meta {
font-size: 10px;
letter-spacing: 0.32em;
text-transform: uppercase;
color: var(--gold-light);
margin-bottom: 12px;
opacity: 0.9;
}

.story-text p {
font-size: 14px;
line-height: 1.9;
color: rgba(245,240,232,0.72);
margin-bottom: 16px;
}

.story-signoff {
display: block;
width: 52px;
height: 52px;
color: var(--gold);
margin-top: 32px;
opacity: 0.85;
}

/* PILLARS */
.pillars-section {
background-color: #352a20;
background-image:
  radial-gradient(ellipse 55% 45% at 12% 18%, rgba(238,195,88,0.16) 0%, transparent 62%),
  radial-gradient(ellipse 50% 55% at 88% 28%, rgba(233,196,111,0.11) 0%, transparent 60%),
  radial-gradient(ellipse 85% 50% at 50% 108%, rgba(225,181,80,0.14) 0%, transparent 58%),
  radial-gradient(ellipse 40% 40% at 78% 82%, rgba(200,140,50,0.07) 0%, transparent 55%),
  linear-gradient(180deg, rgba(18,14,11,0.22) 0%, transparent 28%, transparent 68%, rgba(18,14,11,0.28) 100%);
padding: 104px 48px;
text-align: center;
position: relative;
overflow: hidden;
}

.pillars-section::before {
content: '';
position: absolute;
inset: 0;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 300 300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.92' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.6 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
opacity: 0.12;
mix-blend-mode: overlay;
pointer-events: none;
z-index: 0;
}

.pillars-watermark {
position: absolute;
top: 50%;
right: clamp(-280px, -14vw, -160px);
transform: translateY(-50%);
width: clamp(560px, 62vw, 880px);
height: auto;
color: var(--gold);
opacity: 0.045;
pointer-events: none;
z-index: 0;
animation: sealSpin 240s linear infinite;
}

.pillars-header,
.pillars-grid {
position: relative;
z-index: 1;
}

.pillars-header {
max-width: 720px;
margin: 0 auto 64px;
position: relative;
}

.pillars-header .section-index {
display: block;
font-size: clamp(96px, 11vw, 170px);
margin-bottom: -24px;
color: rgba(245,240,232,0.06);
}

.pillars-header .section-label {
margin-bottom: 18px;
}

.pillars-section h2 {
font-family: 'Cormorant Garamond', serif;
font-size: clamp(32px, 3.5vw, 48px);
font-weight: 300;
color: var(--cream);
margin-bottom: 12px;
line-height: 1.15;
}

.pillars-subtitle {
font-size: 11px;
letter-spacing: 0.32em;
color: rgba(245,240,232,0.5);
text-transform: uppercase;
margin-bottom: 20px;
}

.pillars-header .fleuron {
margin: 20px auto 0;
opacity: 0.75;
}

.pillars-grid {
display: grid;
grid-template-columns: repeat(2, minmax(0, 1fr));
gap: 1px;
max-width: 1180px;
margin: 0 auto;
padding: 1px;
background: linear-gradient(135deg, rgba(225,181,80,0.25), rgba(225,181,80,0.08) 40%, rgba(225,181,80,0.04) 70%, rgba(225,181,80,0.2));
border: 1px solid rgba(225,181,80,0.18);
}

.pillar {
position: relative;
background: rgba(26,20,16,0.85);
padding: 56px 44px 52px;
text-align: left;
transition: background 0.4s, transform 0.4s;
overflow: hidden;
}

.pillar::after {
content: '';
position: absolute;
left: 44px;
right: 44px;
bottom: 48px;
height: 1px;
background: var(--gold);
transform: scaleX(0);
transform-origin: left center;
transition: transform 0.5s ease;
opacity: 0.7;
}

.pillar:hover {
background: rgba(40,30,22,0.92);
}

.pillar:hover::after {
transform: scaleX(1);
}

.pillar-index {
position: absolute;
top: 28px;
right: 36px;
font-family: 'Cormorant Garamond', serif;
font-style: italic;
font-weight: 300;
font-size: 28px;
line-height: 1;
color: var(--gold-light);
opacity: 0.7;
letter-spacing: 0.02em;
}

.pillar-icon-svg {
display: block;
width: 48px;
height: 48px;
color: var(--cream);
margin-bottom: 28px;
opacity: 0.85;
transition: color 0.4s, opacity 0.4s, transform 0.6s;
}

.pillar:hover .pillar-icon-svg {
color: var(--gold);
opacity: 1;
transform: translateY(-2px);
}

.pillar-title {
font-family: 'Cormorant Garamond', serif;
font-size: 24px;
font-weight: 300;
color: var(--cream);
margin-bottom: 14px;
letter-spacing: 0.01em;
}

.pillar-desc {
font-size: 12.5px;
line-height: 1.85;
color: rgba(245,240,232,0.55);
max-width: 420px;
}

/* FOOTER */
footer {
background: var(--dark);
background-image: radial-gradient(ellipse at 50% 0%, rgba(225,181,80,0.06) 0%, transparent 55%);
border-top: 1px solid rgba(225,181,80,0.14);
padding: 96px 48px 56px;
display: flex;
flex-direction: column;
align-items: center;
gap: 48px;
}

.footer-hero {
display: flex;
flex-direction: column;
align-items: center;
text-align: center;
}

.footer-hero .fleuron {
margin: 0 0 28px 0;
opacity: 0.65;
}

.footer-logotype {
font-family: 'Cormorant Garamond', serif;
font-style: italic;
font-weight: 300;
font-size: clamp(40px, 5.5vw, 72px);
line-height: 1;
color: var(--cream);
letter-spacing: 0.02em;
margin-bottom: 20px;
}

.footer-tagline {
font-size: 11px;
letter-spacing: 0.4em;
text-transform: uppercase;
color: var(--gold-light);
opacity: 0.9;
}

.footer-divider {
width: 100%;
max-width: 1180px;
display: grid;
grid-template-columns: 1fr auto 1fr;
align-items: center;
gap: 24px;
}

.footer-rule {
display: block;
height: 1px;
background: linear-gradient(to right, transparent, rgba(225,181,80,0.32), rgba(225,181,80,0.32), transparent);
}

.footer-seal {
display: block;
width: 40px;
height: 40px;
color: var(--gold-light);
opacity: 0.85;
animation: sealSpin 60s linear infinite;
}

.footer-meta {
width: 100%;
max-width: 1180px;
display: grid;
grid-template-columns: 1fr 1fr 1fr;
gap: 24px;
align-items: center;
}

.footer-meta p {
font-size: 10px;
letter-spacing: 0.28em;
text-transform: uppercase;
color: rgba(245,240,232,0.38);
}

.footer-meta-left { text-align: left; }
.footer-meta-center { text-align: center; }
.footer-meta-right { text-align: right; }

/* SCROLL ANIMATIONS */
.reveal {
opacity: 0;
transform: translateY(24px);
transition: opacity 0.9s ease, transform 0.9s ease;
}
.reveal.visible {
opacity: 1;
transform: translateY(0);
}

/* ============================================================
   MOBILE / RESPONSIVE
   ============================================================ */

/* Tablet */
@media (max-width: 1024px) {
  nav { padding: 18px 28px; }
  .nav-brand img { width: 64px; height: 64px; }
  .nav-logo { font-size: 18px; }
  .nav-links { gap: 24px; }

  .hero-content { padding: 0 28px 64px; }
  .scroll-hint { right: 28px; bottom: 24px; }

  .ingredients-text { padding: 56px 32px; }
  .story-text { padding: 64px 40px; }
  .story-image { padding: 32px; }
  .story-image::before { inset: 32px; }

  .pillars-section { padding: 80px 28px; }
  .pillars-grid { max-width: 860px; }
  .pillar { padding: 44px 36px 44px; }
}

/* Mobile (≤ 760px) */
@media (max-width: 760px) {
  /* NAV */
  nav {
    padding: 14px 18px;
    flex-wrap: wrap;
    gap: 10px;
  }
  .nav-brand { gap: 6px; }
  .nav-brand img { width: 48px; height: 48px; }
  .nav-logo { font-size: 15px; letter-spacing: 0.1em; }
  .nav-links {
    gap: 14px;
    flex-wrap: wrap;
    justify-content: flex-end;
  }
  .nav-links a { font-size: 10px; letter-spacing: 0.15em; }

  /* HERO */
  .hero { min-height: 100vh; height: auto; }
  .hero-content { padding: 120px 20px 80px; max-width: 100%; }
  .hero-title { font-size: clamp(40px, 11vw, 60px); margin-bottom: 20px; }
  .hero-eyebrow {
    font-size: 10px;
    letter-spacing: 0.25em;
    padding: 5px 10px;
    margin-bottom: 16px;
  }
  .hero-sub { font-size: 13px; line-height: 1.7; margin-bottom: 32px; }
  .hero-divider { margin-bottom: 28px; }
  .scroll-hint { right: 20px; bottom: 18px; font-size: 8px; }
  .scroll-line { height: 32px; }

  /* SPLIT / ORIGIN */
  .split-text {
    padding: 96px 22px 56px;
    min-height: 90vh;
    width: 100%;
    margin-right: 0;
  }
  .split-text .section-index {
    top: 80px;
    right: 20px;
    font-size: clamp(72px, 18vw, 110px);
  }
  .split-text h2 { font-size: clamp(30px, 7.5vw, 40px); margin-bottom: 24px; }
  .split-text p { font-size: 13px; line-height: 1.8; }
  .split-text .drop-cap::first-letter { font-size: 3.6em; padding: 4px 10px 0 0; }
  .split-text .fleuron { width: 80px; margin-top: 20px; }

  /* PRODUCT SECTION — stack both products, disable scroll-hijack visuals */
  .product-section {
    height: auto;
    min-height: auto;
    padding: 0;
    background: var(--dark);
  }
  .product-container {
    height: auto;
    flex-direction: column;
    align-items: stretch;
  }
  /* Hide the desktop shared bg slider + sprays on mobile */
  .product-bg-wrapper { display: none; }
  /* Hide the per-card spray imgs — full product bg includes them */
  .mobile-spray { display: none; }

  .product-overlay {
    position: relative;
    height: auto;
    flex-direction: column;
    gap: 48px;
    padding: 0 0 40px;
  }
  .product-card {
    position: relative;
    width: 100%;
    top: auto;
    bottom: auto;
    right: auto;
    left: auto;
    padding: 0;
    opacity: 1 !important;
    transform: none !important;
    display: block;
    min-height: 0;
    background: transparent;
    background-image: none;
  }
  .product-card-2 { opacity: 1 !important; }

  /* Image block on top — spray PNG layered over product bg image */
  .product-card::before {
    content: '';
    display: block;
    width: 100%;
    aspect-ratio: 3 / 4;
    background-color: var(--dark);
    background-repeat: no-repeat, no-repeat;
    background-size: 70% auto, cover;
    margin-bottom: -24px;
    -webkit-mask-image: linear-gradient(to bottom, #000 70%, rgba(0,0,0,0) 100%);
            mask-image: linear-gradient(to bottom, #000 70%, rgba(0,0,0,0) 100%);
  }
  .product-card-1::before {
    background-image:
      url('./webp%20images/bone%20marrow%20spray.webp'),
      url('./webp%20images/mobile%20product%20bg%20left.webp');
    background-position: center calc(50% + 15px), center;

  }
  .product-card-2::before {
    background-image:
      url('./webp%20images/ghee%20spray%20shadow%20final.webp'),
      url('./webp%20images/mobile%20product%20bg%20right.webp');
    background-position: center calc(50% + 5px), center;

  }

  .glass-panel {
    position: relative;
    margin: 0 18px;
    padding: 28px 22px;
    border-radius: 10px;
    width: auto;
  }
  .product-card h2 { font-size: clamp(30px, 8vw, 42px); }
  .product-tagline { font-size: 14px; margin-bottom: 22px; }
  .specs-grid { margin-bottom: 22px; }
  .spec-item { padding: 12px 14px; }
  .spec-value { font-size: 18px; }
  .benefits-list li { font-size: 13px; gap: 10px; }

  .product-seal {
    top: 14px;
    right: 14px;
    width: 72px;
  }

  /* FULLBLEED */
  .fullbleed { height: auto; min-height: 68vh; padding: 96px 0; }
  .fullbleed-bg { background-attachment: scroll; }
  .fullbleed-text { padding: 0 22px; }
  .fullbleed-text .section-index { font-size: clamp(80px, 22vw, 130px); margin-bottom: -18px; }
  .fullbleed-text .drop-quote { font-size: clamp(80px, 22vw, 130px); margin-bottom: -12px; }
  .fullbleed-text blockquote { font-size: clamp(22px, 6vw, 32px); }
  .fullbleed-text .fleuron { width: 90px; margin: 22px auto 16px; }
  .fullbleed-text cite { font-size: 9px; letter-spacing: 0.3em; }

  /* INGREDIENTS */
  .ingredients-section { padding: 80px 0 56px; }
  .ingredients-bg { background-position: center 30%; }
  .ingredients-overlay {
    background:
      linear-gradient(180deg, rgba(18,14,11,0.62) 0%, rgba(18,14,11,0.72) 40%, rgba(18,14,11,0.86) 100%);
  }
  .ingredients-header {
    padding: 0 22px;
    margin-bottom: 44px;
  }
  .ingredients-header .section-index {
    font-size: clamp(72px, 18vw, 110px);
    margin-bottom: -20px;
  }
  .ingredients-header h2 { font-size: clamp(28px, 7.5vw, 38px); }

  .ingredients-body { padding: 0 18px; }
  .ingredients-text {
    padding: 40px 22px;
    gap: 36px;
  }
  .ingredient-bar { padding-left: 52px; }
  .ingredient-index { font-size: 40px; top: -6px; }
  .ingredient-header { gap: 12px; }
  .ingredient-pct { font-size: 38px; }
  .ingredient-desc { font-size: 12px; }

  .ingredients-footer { padding: 36px 24px 0; }
  .ingredients-footer::before,
  .ingredients-footer::after { width: calc(50% - 72px); top: calc(36px + 10px); }

  /* STORY */
  .story-section {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .story-section > .section-index {
    top: 18px;
    right: 22px;
    font-size: clamp(80px, 20vw, 120px);
  }
  .story-image {
    padding: 22px;
    height: 55vh;
    min-height: 320px;
  }
  .story-image::before { inset: 22px; }
  .story-text {
    padding: 56px 22px 64px;
    background: none;
  }
  .story-text h2 { font-size: clamp(28px, 7.5vw, 40px); margin-bottom: 14px; }
  .story-text p { font-size: 13px; line-height: 1.8; }
  .story-text .drop-cap::first-letter { font-size: 3.6em; padding: 4px 10px 0 0; }
  .story-signoff { width: 44px; height: 44px; margin-top: 24px; }

  /* PILLARS */
  .pillars-section { padding: 80px 22px; }
  .pillars-watermark {
    width: 420px;
    right: -140px;
    opacity: 0.035;
  }
  .pillars-header { margin-bottom: 48px; }
  .pillars-header .section-index {
    font-size: clamp(72px, 18vw, 110px);
    margin-bottom: -20px;
  }
  .pillars-section h2 { font-size: clamp(28px, 7vw, 38px); }
  .pillars-subtitle { font-size: 10px; letter-spacing: 0.28em; }
  .pillars-header .fleuron { width: 90px; margin-top: 18px; }
  .pillars-grid {
    grid-template-columns: 1fr;
    gap: 1px;
  }
  .pillar { padding: 40px 28px 40px; }
  .pillar::after { left: 28px; right: 28px; bottom: 32px; }
  .pillar-index { top: 22px; right: 26px; font-size: 24px; }
  .pillar-icon-svg { width: 42px; height: 42px; margin-bottom: 22px; }
  .pillar-title { font-size: 22px; }

  /* FOOTER */
  footer {
    padding: 72px 22px 40px;
    gap: 36px;
  }
  .footer-hero .fleuron { width: 80px; margin-bottom: 20px; }
  .footer-logotype { font-size: clamp(34px, 10vw, 54px); margin-bottom: 14px; }
  .footer-tagline { font-size: 10px; letter-spacing: 0.32em; }
  .footer-divider { gap: 16px; }
  .footer-seal { width: 32px; height: 32px; }
  .footer-meta {
    grid-template-columns: 1fr;
    gap: 14px;
    text-align: center;
  }
  .footer-meta-left,
  .footer-meta-center,
  .footer-meta-right { text-align: center; font-size: 9px; letter-spacing: 0.26em; }
}

/* Small mobile */
@media (max-width: 420px) {
  .nav-links { gap: 10px; }
  .nav-links a { font-size: 9px; }
  .hero-content { padding: 110px 16px 70px; }
  .hero-title { font-size: clamp(34px, 12vw, 48px); }
  .split-text { padding: 88px 18px 44px; }
  .glass-panel { padding: 24px 18px; }
  .specs-grid { grid-template-columns: 1fr; }

  .ingredient-bar { padding-left: 44px; }
  .ingredient-index { font-size: 34px; }
  .ingredient-pct { font-size: 32px; }
  .pillar { padding: 36px 22px; }
  .pillar-index { top: 18px; right: 20px; font-size: 22px; }
  .pillar-title { font-size: 20px; }
}
