/* ==========================================================================
   Kombooba — Premium Editorial Site
   ========================================================================== */

@font-face {
  font-family: 'Fraunces';
  src: url('../fonts/kombooba/fraunces-latin-300-normal.woff2') format('woff2');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Fraunces';
  src: url('../fonts/kombooba/fraunces-latin-400-normal.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Fraunces';
  src: url('../fonts/kombooba/fraunces-latin-500-normal.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Fraunces';
  src: url('../fonts/kombooba/fraunces-latin-600-normal.woff2') format('woff2');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Fraunces';
  src: url('../fonts/kombooba/fraunces-latin-400-italic.woff2') format('woff2');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Fraunces';
  src: url('../fonts/kombooba/fraunces-latin-500-italic.woff2') format('woff2');
  font-weight: 500;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Inter';
  src: url('../fonts/kombooba/inter-latin-300-normal.woff2') format('woff2');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Inter';
  src: url('../fonts/kombooba/inter-latin-400-normal.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Inter';
  src: url('../fonts/kombooba/inter-latin-500-normal.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Inter';
  src: url('../fonts/kombooba/inter-latin-600-normal.woff2') format('woff2');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Inter';
  src: url('../fonts/kombooba/inter-latin-700-normal.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --plum-950: #0a0510;
  --plum-900: #120a19;
  --plum-800: #1a1023;
  --plum-700: #251530;
  --plum-600: #34204a;
  --violet-500: #7a3ab8;
  --violet-400: #9a5bd6;
  --lilac-300: #cba6f0;
  --lilac-100: #ece0fb;
  --gold-400: #cf9f4e;
  --gold-300: #e4c07f;
  --cream-100: #f6f0ea;
  --cream-200: #ece3da;
  --grey-400: #b8adc4;
  --grey-500: #8c7f9c;
  --chilli-500: #e8814a;
  --berry-500: #e0577c;
  --herb-500: #7fb856;

  /* Fixed light text for content overlaid directly on a darkened photo —
     intentionally NOT redefined by theme stylesheets (e.g. kombooba-light.css),
     since the photo scrim beneath it stays dark in every theme. */
  --photo-100: #f6f0ea;
  --photo-400: #b8adc4;

  --font-serif: 'Fraunces', 'Times New Roman', serif;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --container-max: 1360px;
  --gutter: clamp(1.5rem, 5vw, 5rem);

  --ease-lux: cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  background: var(--plum-950);
  scroll-behavior: auto;
}

body {
  margin: 0;
  background: var(--plum-950);
  color: var(--cream-200);
  font-family: var(--font-sans);
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
button { font-family: inherit; cursor: pointer; }
input { font-family: inherit; }

h1,
h2,
h3,
h4 {
    font-family: 'Poppins', sans-serif;
  font-weight: 700;
  color: var(--cream-100);
  margin: 0;
  letter-spacing: -0.01em;
}

.container {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: #6b2fa0;
}

/*.eyebrow::before {
  content: '';
  width: 28px;
  height: 1px;
  background: var(--gold-400);
  display: inline-block;
}*/

.diamond {
  display: inline-block;
  width: 0.5em;
  height: 0.5em;
  background: currentColor;
  transform: rotate(45deg);
}

/* Split-type reveal targets */
.reveal-lines .line,
.reveal-words .word {
  overflow: hidden;
  display: block;
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ---- Preloader --------------------------------------------------------- */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--plum-950);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 1.25rem;
}

.preloader__mark {
  width: 130px;
  opacity: 0.95;
  filter: drop-shadow(0 0 24px rgba(154, 91, 214, 0.35));
}

.preloader__bar {
  width: 200px;
  height: 1px;
  background: rgba(255, 255, 255, 0.12);
  position: relative;
  overflow: hidden;
}

.preloader__bar::after {
  content: '';
  position: absolute;
  inset: 0;
  width: 0%;
  background: var(--gold-400);
  animation: preload-bar 1.6s var(--ease-lux) forwards;
}

@keyframes preload-bar {
  to { width: 100%; }
}

/* ---- Custom cursor glow (desktop only) --------------------------------- */
.cursor-glow {
  position: fixed;
  top: 0; left: 0;
  width: 340px;
  height: 340px;
  margin-left: -170px;
  margin-top: -170px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(154, 91, 214, 0.14) 0%, rgba(154, 91, 214, 0) 70%);
  pointer-events: none;
  z-index: 2;
  will-change: transform;
  display: none;
}

@media (hover: hover) and (pointer: fine) {
  .cursor-glow { display: block; }
}

/* ---- Header -------------------------------------------------------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: background-color 0.5s var(--ease-lux), border-color 0.5s var(--ease-lux);
  border-bottom: 1px solid transparent;
}

.site-header__nav {
  padding: 1.5rem 3rem;
  transition: padding 0.5s var(--ease-lux);
}

.site-header.is-scrolled {
  background: #603085; 
  border-bottom-color: rgba(255, 255, 255, 0.08);
}

.site-header.is-scrolled .site-header__nav {
  padding-block: 0.9rem;
}

.topbar {
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  max-height: 40px;
  transition: max-height 0.5s var(--ease-lux), opacity 0.4s var(--ease-lux), border-color 0.5s var(--ease-lux);
}

.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding-block: 0.65rem;
}

.topbar__brand,
.topbar__contact {
  display: inline-flex;
  align-items: center;
  gap: 0.55em;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--grey-400);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: color 0.3s var(--ease-lux);
}

.topbar__brand .diamond {
  color: var(--gold-300);
  flex-shrink: 0;
}

.topbar__brand:hover,
.topbar__contact:hover {
  color: var(--cream-100);
}

.topbar__right {
  display: flex;
  align-items: center;
  gap: 1.1rem;
}

.topbar__divider {
  width: 1px;
  height: 12px;
  background: rgba(255, 255, 255, 0.16);
  flex-shrink: 0;
}

.topbar__socials {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.topbar__socials a {
  font-size: 0.74rem;
  color: var(--grey-500);
  transition: color 0.3s var(--ease-lux);
}

.topbar__socials a:hover { color: var(--gold-300); }

@media (max-width: 560px) {
  .topbar__divider,
  .topbar__socials { display: none; }
}

.site-header.is-scrolled .topbar {
  max-height: 0;
  opacity: 0;
  border-bottom-color: transparent;
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.6rem; 
}
@media(max-width:768px){
    .brand {justify-content: center;}}
.brand img {
  height: 130px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.95;
  transition: height 0.5s var(--ease-lux);
}

.site-header.is-scrolled .brand img {
  height: 52px;  filter: brightness(0) invert(1);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(1.5rem, 3vw, 2.75rem);
}

.main-nav a {
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--grey-400);
  position: relative;
  padding-bottom: 4px;
}

.main-nav a::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 0;
  height: 1px;
  background: var(--gold-300);
  transition: width 0.4s var(--ease-lux);
}

.main-nav a:hover { color: var(--cream-100); }
.main-nav a:hover::after { width: 100%; }

.nav-cta {
    
  padding: 0.6rem 1.4rem;
  border-radius: 999px;
  font-size: 0.78rem !important;
  letter-spacing: 0.1em !important;
  color: var(--cream-100) !important;
  transition: border-color 0.35s var(--ease-lux), background-color 0.35s var(--ease-lux);
}

.nav-cta:hover {
  border-color: var(--gold-300);
  background: rgba(228, 192, 127, 0.08);
}

.nav-cta::after { display: none; }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--cream-100);
  font-size: 1.3rem;
}

@media (max-width: 900px) {
  .main-nav { display: none; }
  .nav-toggle { display: block; }
}

/* ---- Buttons ------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.95rem 2.1rem;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: transform 0.4s var(--ease-lux), box-shadow 0.4s var(--ease-lux), background-color 0.4s var(--ease-lux);
}

.btn-gold {
  background: #6b2fa0;
  color: var(--plum-950);
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(207, 159, 78, 0.28);
}

.btn-outline {
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: var(--cream-100);
}

.btn-outline:hover {
  border-color: var(--gold-300);
  background: rgba(228, 192, 127, 0.08);
}

/* ---- Hero — header, autoplaying video, then copy, stacked ------------ */
.hero {
  position: relative;
  /*background: var(--plum-950);
  padding-top: clamp(120px, 10vw, 140px);*/
  overflow: hidden;
}

.hero-copy {
  position: relative;
  background: var(--plum-950);
}

.hero__media {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  /*overflow: hidden;*/
  background: radial-gradient(ellipse at 50% 20%, var(--plum-700) 0%, var(--plum-950) 68%);
}

.hero__bg {
  position: absolute;
  inset: -10%;
  z-index: 0;
  opacity: 0.4;
  mix-blend-mode: screen;
}

.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__video {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1.1s var(--ease-lux);
}

.hero__video.is-ready { opacity: 1; }

.hero__content {
  position: relative;
  z-index: 2;
  padding: 40px 10px 60px 10px;
  max-width: var(--container-max);
  margin-inline: auto;
  width: 100%;text-align:center;
}

.hero__eyebrow {
  margin-bottom: 1.75rem;
}

.hero__title {
  font-size: 42px;
  line-height: 0.98;
  /*max-width: 16ch;*/text-align:center;
}

.hero__title em {
  font-style: italic;
  color: var(--lilac-300);
}

.hero__sub {
  margin-top: 1.75rem;
  /*max-width: 46ch;*/
  font-size: clamp(1rem, 1.4vw, 1.2rem);
  color: var(--grey-400);
  font-weight: 300;
}

.hero__row {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 2rem;
  margin-top: clamp(2.5rem, 6vw, 4.5rem);
  flex-wrap: wrap;
}

.hero__meta {
  display: flex;
  gap: clamp(1.75rem, 4vw, 3.5rem);
}

.hero__meta div {
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--grey-500);
}

.hero__meta strong {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--cream-100);
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
  margin-top: 0.25rem;
}

.scroll-cue {
  display: flex;
  align-items: center;justify-content: center;
  gap: 0.75rem;
  font-size: 0.7rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--grey-500);
}

.scroll-cue__line {
  width: 1px;
  height: 46px;
  background: rgba(255, 255, 255, 0.18);
  position: relative;
  overflow: hidden;
}

.scroll-cue__line::after {
  content: '';
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gold-300);
  animation: cue-drop 2.2s ease-in-out infinite;
}

@keyframes cue-drop {
  0% { top: -100%; }
  60%, 100% { top: 100%; }
}
/*Video*/
.story__header{
    max-width:760px;padding-bottom:50px;
    margin:0 auto 0px;
}

.story__subtitle{
    display:inline-block;
    margin-bottom:14px;
    letter-spacing:4px;
    font-size:13px;
    font-weight:600;
    color:#9c7b46;
    text-transform:uppercase;
}

.story__title{
    font-size:clamp(2.5rem,5vw,4rem);
    font-weight:600;
    line-height:1.1;
    margin-bottom:20px;
    color:#2f1b16;
}

.story__text{
    font-size:18px;
    line-height:1.8;
    color:#666;
}

.story__video{
    /*max-width:950px;
    margin:0 auto;
    border-radius:30px;*/
    overflow:hidden;
    box-shadow:0 30px 80px rgba(0,0,0,.18);
}

.story__video video{
    width:100%;
    display:block; 
}
/* ---- Section shell --------------------------------------------------- */
.section {
  position: relative;
  padding-block: clamp(6rem, 12vw, 5rem);
}

.section--tight { padding-block: clamp(4rem, 8vw, 6rem); }

.section-head {
  max-width: 720px;
  margin-bottom: clamp(3rem, 6vw, 5rem);
}

.section-head--center {
  margin-inline: auto;
  text-align: center;
}

.section-title {
  font-size: clamp(2.8rem, 4.4vw, 4rem);font-weight:500;
  line-height: 1.08;
  margin-top: 2rem;
}
.section-title1 {font-size: clamp(2.8rem, 4.4vw, 3rem);}
.section-title span { color: var(--lilac-300); }

.section-lede {
  margin-top: 1.5rem;
  font-size: clamp(1rem, 1.3vw, 1.15rem);
  color: var(--grey-400);
  font-weight: 300;
  max-width: 54ch;
}

.section-head--center .section-lede { margin-inline: auto; }

/* ---- About Kombucha — blob copy + "live" product card ---------------- */
.about {
  position: relative;
  background: var(--plum-950);
  overflow: hidden;
}

.about__drops {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.about__drops::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('../img/bg/transparent-bg.png');
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  opacity: 0.18;
}

.about__drop {
  position: absolute;
  border-radius: 50%;
}

.about__drop--1 {
  width: 320px;
  height: 320px;
  top: -80px;
  left: 4%;
  background: var(--violet-500);
  opacity: 0.16;
  filter: blur(70px);
}

.about__drop--2 {
  width: 220px;
  height: 220px;
  bottom: -60px;
  right: 8%;
  background: var(--gold-400);
  opacity: 0.12;
  filter: blur(70px);
}

.about__drop--3 {
  width: 120px;
  height: 120px;
  top: 46%;
  right: 26%;
  background: var(--lilac-300);
  opacity: 0.14;
  filter: blur(50px);
}

.about__drop--4,
.about__drop--5,
.about__drop--6 {
  border-radius: 50% 50% 50% 0;
  filter: blur(0.5px);
}

.about__drop--4 {
  width: 16px;
  height: 22px;
  top: 20%;
  left: 44%;
  background: var(--gold-300);
  opacity: 0.55;
  transform: rotate(45deg);
}

.about__drop--5 {
  width: 10px;
  height: 14px;
  bottom: 24%;
  left: 30%;
  background: var(--lilac-300);
  opacity: 0.4;
  transform: rotate(45deg);
}

.about__drop--6 {
  width: 12px;
  height: 17px;
  top: 62%;
  right: 14%;
  background: var(--gold-300);
  opacity: 0.35;
  transform: rotate(45deg);
}

.about__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(2.5rem, 6vw, 6rem);
  align-items: center;
}

.about__blob {
  position: relative;
  padding: clamp(2.75rem, 6vw, 4.5rem);
}

.about__blob::before {
  content: '';
  position: absolute;
  inset: -4% -6%;
  z-index: -1;
  background: #603085;
  border-radius: 63% 37% 54% 46% / 43% 37% 63% 57%;
  /*opacity: 0.75;*/
}

.about__blob .section-title { margin-top: 1.1rem; }

.about__text {
  margin-top: 1.5rem;
  color: #ffffff;
  font-size: 1.02rem;
  font-weight: 300;
  max-width: 52ch;
}

.about__text--no-title {
  margin-top: 1.75rem;
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  /*max-width: 50ch;*/
}

.about__visual {
  perspective: 1000px;
}

.about__card {
  position: relative;
  aspect-ratio: 3 / 4.4;
}

.about__card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.about__card img {
    display: block;
    width: 100%;
    height: auto;
    transform-origin: center center;
    will-change: transform;
    animation: floatingBottle 7s ease-in-out infinite;
}

@keyframes floatingBottle {
    0% {
        transform: translate3d(0, 0, 0) rotate(0deg);
    }

    20% {
        transform: translate3d(4px, -8px, 0) rotate(0.8deg);
    }

    40% {
        transform: translate3d(-4px, -18px, 0) rotate(-0.8deg);
    }

    60% {
        transform: translate3d(3px, -12px, 0) rotate(0.6deg);
    }

    80% {
        transform: translate3d(-3px, -6px, 0) rotate(-0.5deg);
    }

    100% {
        transform: translate3d(0, 0, 0) rotate(0deg);
    }
}
@media (max-width: 900px) {
  .about__grid { grid-template-columns: 1fr; }
  .about__visual { order: -1; max-width: 360px; margin-inline: auto; }
  .about__blob { padding: 2.25rem; }
}
@media (max-width: 767px) {
    .hero {
  position: relative;
  background: #603085;
  padding-top: clamp(120px, 10vw, 140px); 
  overflow: hidden;
}
.section-title{font-size:30px; padding: 0px;}
.section-title1 {font-size:26px;}
.factory__title {font-size: 40px;}
.newsletter-form { 
    display: flex; 
    flex-wrap: nowrap;
    flex-direction: column;
}
.brand img {
  height: 50px; filter: brightness(0) invert(1);
}
    .about__copy {
        order: 1;
    }
    .logo-loader{margin-bottom:30px;}
    .about__visual {
        order: 2;
    }
    .section { 
    padding-top: 50px;
    padding-bottom: 20px;
    }
    .featured-product {
    padding: 50px 0; 
}
}
/*Loader*/
.logo-loader{
    position: relative;
    width: 250;
    height: 250;        /* Centers horizontally */
    display: flex;
    justify-content: center; /* Centers logo */
    align-items: center;     /* Centers logo */
}

.loaderlogo{
    width: 200px;
    position: relative;
    z-index: 2;
}

.particle-ring{
    position: absolute;
    inset: 0;
    margin: auto;            /* Centers the ring */
    width: 200px;
    height: 200px;
    border-radius: 50%; 
    animation:rotateRing 10s linear infinite;
}

.particle-ring::before{
    content:"";
    position:absolute;
    inset:0;
    border-radius:50%;

    background:
        radial-gradient(circle at center,
            transparent 45%,
            rgba(103,58,183,.2) 46%,
            rgba(103,58,183,.9) 58%,
            transparent 60%);

    mask:
      radial-gradient(circle,
        transparent 46%,
        #000 48%,
        #000 58%,
        transparent 60%);

    filter:blur(.4px);
}

/* Dots */

.particle-ring::after{
    content:"";
    position:absolute;
    inset:-15px;
    border-radius:50%;

    background:
      radial-gradient(circle,#673ab7 2px,transparent 2.5px);

    background-size:18px 18px;

    mask:
      radial-gradient(circle,
        transparent 47%,
        #000 49%,
        #000 61%,
        transparent 63%);

    animation:
        pulse 3s ease-in-out infinite alternate;
}

@keyframes rotateRing{

    from{
        transform:rotate(0deg);
    }

    to{
        transform:rotate(360deg);
    }

}

@keyframes pulse{

    from{
        transform:scale(.98);
        opacity:.55;
    }

    to{
        transform:scale(1.04);
        opacity:1;
    }

}
/* ---- Origin / Story ---------------------------------------------------- */
.story {
  background: #ffffff;
  overflow: hidden; padding-top:50px; padding-top:50px;
}

.story__grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(2.5rem, 6vw, 6rem);
  align-items: center;
}

.story__media {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: 4px;
  overflow: hidden;
  isolation: isolate;
}

.story__media img {
  width: 100%;
  height: 112%;
  object-fit: cover;
  will-change: transform;
}

.story__media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(200deg, rgba(122, 58, 184, 0.35), rgba(10, 5, 16, 0.15) 55%);
  mix-blend-mode: multiply;
}

.story__badge {
  position: absolute;
  bottom: -1px;
  right: -1px;
  background: var(--plum-950);
  border: 1px solid var(--plum-600);
  padding: 1.5rem 1.75rem;
  z-index: 3;
  max-width: 220px;
}

.story__badge .diamond {
  color: var(--gold-300);
  margin-bottom: 0.75rem;
}

.story__badge p {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1rem;
  color: var(--lilac-100);
  margin: 0;
  line-height: 1.4;
}

.story__copy .section-title { margin-top: 0; }

.story__intro {
  margin-top: 1.5rem;
  max-width: 48ch;
  font-size: clamp(1rem, 1.3vw, 1.1rem);
  color: var(--grey-400);
  font-weight: 300;
}

.story__block {
  margin-top: clamp(2.25rem, 4vw, 3rem);
}

.story__block + .story__block {
  padding-top: clamp(2.25rem, 4vw, 3rem);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.story__block h3 {
  font-size: clamp(1.4rem, 2.4vw, 1.9rem);
  font-weight: 500;
  margin-bottom: 0.85rem;
}

.story__block p {
  color: var(--grey-400);
  font-size: 1rem;
  font-weight: 300;
  max-width: 46ch;
}

@media (max-width: 900px) {
  .story__grid { grid-template-columns: 1fr; }
  .story__badge { position: static; margin-top: 1.25rem; max-width: none; }
}

/* ---- Benefits — copy list + 3D tilt visual --------------------------- */
.benefits {
  background: var(--plum-950);
}

.benefits__grid {
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  gap: clamp(2.5rem, 6vw, 6rem);
  align-items: center;
}

.benefits__list {
  margin-top: clamp(2.5rem, 5vw, 3.5rem);
  display: flex;
  flex-direction: column;
  gap: clamp(1.75rem, 3vw, 2.25rem);
}

.benefits__list li {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}

.benefits__num {
  flex-shrink: 0;
  width: 2.5ch;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--gold-300);
  line-height: 1.4;
}

.benefits__list h3 {
  font-size: 1.15rem;
  font-weight: 500;
  margin-bottom: 0.4rem;
}

.benefits__list p {
  color: var(--grey-400);
  font-size: 0.92rem;
  font-weight: 300;
  max-width: 40ch;
}

.benefits__visual {
  perspective: 1200px;
}

.benefits__tilt {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: 8px;
  overflow: hidden;
  transform-style: preserve-3d;
  will-change: transform;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.35);
}

.benefits__tilt img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.benefits__tilt-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at var(--mx, 50%) var(--my, 50%), rgba(255, 255, 255, 0.22), transparent 55%);
  mix-blend-mode: overlay;
  opacity: 0;
  transition: opacity 0.4s var(--ease-lux);
  pointer-events: none;
}

.benefits__tilt:hover .benefits__tilt-glow {
  opacity: 1;
}

@media (max-width: 900px) {
  .benefits__grid { grid-template-columns: 1fr; }
  .benefits__visual { order: -1; max-width: 420px; margin-inline: auto; }
}

/* ---- Factory strip ------------------------------------------------- */
.factory {
  position: relative;
  height: 50vh;
  min-height: 560px;
  overflow: hidden;
  background: var(--plum-950);
}

.factory__pin {
  position: relative;
  height: 100%;
  width: 100%;
  overflow: hidden;
}

.factory__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 130%;
  object-fit: cover;
  will-change: transform;
}

.factory__scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 5, 16, 0.75) 0%, rgba(10, 5, 16, 0.15) 40%, rgba(10, 5, 16, 0.9) 100%);
}

.factory__content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.factory__content .eyebrow { color: #6b2fa0; }
@media (min-width:769px){
.factory__title {
  font-size: 70px;}}
.factory__title { 
  line-height: 1;
  max-width: 14ch;
  margin-top: 1.25rem;
  color: var(--photo-100);
}

.factory__lede {
  margin-top: 1.75rem;
  max-width: 48ch;
  font-size: clamp(1rem, 1.3vw, 1.1rem);
  color: var(--photo-400);
  font-weight: 300;
}

.factory__meta {
  display: flex;
  gap: clamp(2rem, 5vw, 4.5rem);
  margin-top: clamp(2.5rem, 5vw, 4rem);
  flex-wrap: wrap;
}

.factory__meta div {
  border-left: 1px solid rgba(228, 192, 127, 0.4);
  padding-left: 1.1rem;
  max-width: 220px;
}

.factory__meta strong {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.9rem;
  color: var(--gold-300);
  font-weight: 500;
}

.factory__meta span {
  font-size: 0.78rem;
  color: var(--photo-400);
  letter-spacing: 0.02em;
}

/* ---- Ferments / Product anatomy ------------------------------------ */
.ferments {
  background: var(--plum-900);
  position: relative;
}

.ferments__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.5rem, 3vw, 2.5rem);
}

.ferment-card {
  position: relative;
  background: linear-gradient(165deg, var(--plum-800), var(--plum-900));
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 6px;
  padding: clamp(2rem, 3vw, 2.75rem) clamp(1.5rem, 2.5vw, 2rem) 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  will-change: transform;
  overflow: hidden;
}

.ferment-card__glow {
  position: absolute;
  top: -20%;
  left: 50%;
  translate: -50% 0;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.45;
  z-index: 0;
}

.ferment-card--chilli .ferment-card__glow { background: var(--chilli-500); }
.ferment-card--berry .ferment-card__glow { background: var(--berry-500); }
.ferment-card--herb .ferment-card__glow { background: var(--herb-500); }

.ferment-card img {
  position: relative;
  z-index: 1;
  height: clamp(220px, 28vw, 300px);
  width: auto;
  margin-bottom: 1.75rem;
  filter: drop-shadow(0 30px 40px rgba(0, 0, 0, 0.45));
}

.ferment-card__num {
  position: relative;
  z-index: 1;
  font-family: var(--font-serif);
  font-size: 0.8rem;
  color: var(--gold-300);
  letter-spacing: 0.1em;
  margin-bottom: 0.75rem;
}

.ferment-card h3 {
  position: relative;
  z-index: 1;
  font-size: 1.5rem;
  font-weight: 500;
  margin-bottom: 0.85rem;
}

.ferment-card p {
  position: relative;
  z-index: 1;
  color: var(--grey-400);
  font-size: 0.94rem;
  font-weight: 300;
  max-width: 32ch;
}

.ferment-card__tag {
  position: relative;
  z-index: 1;
  margin-top: 1.5rem;
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--grey-400);
}

@media (max-width: 900px) {
  .ferments__grid { grid-template-columns: 1fr; max-width: 420px; margin-inline: auto; }
  .factory { 
  height: 50vh;
  min-height: 350px; 
}
}

/* ---- Ritual / Lifestyle --------------------------------------------- 
.ritual {
  background: var(--plum-950);
  overflow: hidden;
}

.ritual__pin {
  position: relative;
  height: 60vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.ritual__intro {
  position: relative;
  z-index: 3;
  max-width: 640px;
  padding-inline: var(--gutter);
  margin-right: clamp(1rem, 4vw, 4rem);
  flex: 0 0 auto;
}

.ritual__viewport {
  flex: 1 1 auto;
  min-width: 0;
  overflow: hidden;
}

.ritual__track {
  display: flex;
  align-items: center;
  gap: clamp(1.25rem, 2.5vw, 2rem);
  will-change: transform;
  padding-right: 10vw;
}

.ritual__card {
  position: relative;
  flex: 0 0 auto;
  width: clamp(240px, 26vw, 380px);
  border-radius: 6px;
  overflow: hidden;
  isolation: isolate;
}

.ritual__card--tall { aspect-ratio: 3 / 4; }
.ritual__card--wide { aspect-ratio: 4 / 3; width: clamp(300px, 34vw, 460px); }

.ritual__card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ritual__card figcaption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 1.25rem 1.4rem;
  background: linear-gradient(0deg, rgba(10, 5, 16, 0.82), transparent);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--photo-100);
}

@media (max-width: 900px) {
  .ritual__pin {
    height: auto;
    flex-direction: column;
    align-items: flex-start;
    padding-block: 2rem;
  }
  .ritual__intro { margin-right: 0; margin-bottom: 2.5rem; }
  .ritual__viewport { overflow: visible; width: 100%; }
  .ritual__track { overflow-x: auto; padding-bottom: 1rem; }
} */
/* ==============================
   Ritual Section
================================ */

.ritual{
    background: var(--plum-950);
    padding:60px 0;
    overflow:hidden;
}

.ritual__container{
    max-width:1600px;
    margin:auto;
    padding:0 var(--gutter);

    display:flex;
    align-items:center;
    gap:80px;
}

.ritual__intro{
    flex:0 0 40%;
    max-width:600px;
}

.ritual__image{
    flex:1;
    position:relative;
}

.ritual__image img{
    width:100%; 
    object-fit:cover;
    border-radius:20px;
    display:block;
}

/* Optional overlay */

.ritual__image::after{
    content:"";
    position:absolute;
    inset:0;
    border-radius:20px;
    background:linear-gradient(
        to left,
        rgba(0,0,0,0),
        rgba(0,0,0,.12)
    );
}

/* ==============================
   Mobile
================================ */

@media(max-width:991px){

    .ritual{
        padding:80px 0;
    }

    .ritual__container{
        flex-direction:column;
        gap:50px;
    }

    .ritual__intro{
        max-width:100%;
        text-align:center;
    }

    .ritual__image{
        width:100%;
    } 

}
/*Gut Health*/


.gut-brain{ 
    margin:auto;
    text-align:center;
    position: relative;
} 
.gut-brain__bottle{
    display:flex;
    justify-content:center;
    margin:60px 0px 0px 0px;
}

.gut-brain__bottle img{ 
    transform-origin:50% 100%;
    transition:transform .05s linear;
    will-change:transform;
    display:block;
    margin:0 auto; 
}

.section-tag{

    letter-spacing:3px;

    text-transform:uppercase;

    color:#9d6d1c;

    font-size:13px;

    font-weight:600;

}   
/* ---- Newsletter / CTA band ------------------------------------------- */
.cta-band {
  position: relative;
  background: linear-gradient(135deg, var(--plum-700), var(--plum-900));
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-block: clamp(5rem, 9vw, 8rem);
  text-align: center;
  overflow: hidden;
}

.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(207, 159, 78, 0.14), transparent 60%);
}

.cta-band__inner {
  position: relative;
  z-index: 1;
  max-width: 850px;
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.cta-band .section-title { margin-top: 1rem; }

.newsletter-form {
  margin-top: 2.5rem;
  display: flex;
  gap: 0.75rem;
 /* max-width: 460px;*/
  margin-inline: auto;
}

.newsletter-form input[type="email"] {
  flex: 1;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  padding: 0.9rem 1.4rem;
  color: var(--cream-100);
  font-size: 0.9rem;
  outline: none;
  transition: border-color 0.3s var(--ease-lux);
}

.newsletter-form input[type="email"]::placeholder { color: var(--grey-500); }
.newsletter-form input[type="email"]:focus { border-color: var(--gold-300); }

.newsletter-note {
  margin-top: 1rem;
  font-size: 0.72rem;
  color: var(--grey-500);
  letter-spacing: 0.02em;
}

.form-feedback {
  margin-top: 0.85rem;
  font-size: 0.78rem;
  color: var(--gold-300);
  min-height: 1em;
}

/*Say Hello to Booba*/
.featured-product{
    padding:60px 0;
    background:#f8f3ec;
}

.featured-product__wrapper{
    background:linear-gradient(135deg,#fffdf8,#f6ecff);
    border-radius:35px;
    padding:70px;
    display:grid;
    grid-template-columns:1.1fr .9fr;
    gap:70px;
    align-items:center;
    position:relative;
    overflow:hidden;
    box-shadow:0 30px 80px rgba(0,0,0,.08);
}

.featured-product__wrapper::before{
    content:"";
    position:absolute;
    width:380px;
    height:380px;
    background:#603085;
    border-radius:50%;
    left:-220px;
    top:-220px; 
}

.featured-product__content{
    position:relative;
    z-index:2;
}

.featured-product__tag{
    display:inline-block;
    background:#efe6ff;
    color:#6b2fb0;
    padding:10px 22px;
    border-radius:50px;
    font-weight:600;
    letter-spacing:2px;
    margin-bottom:25px;
    font-size:13px;
} 

.featured-product__image{
    position:relative; 
    z-index:2;
}

.product-card{
    background:#fff;
    border-radius:30px;
    padding:20px;
    box-shadow:0 30px 70px rgba(0,0,0,.12);
    transform:rotate(-4deg);
}

.product-card img{
    width:100%;
    display:block;
    border-radius:20px;
}

@media(max-width:991px){

.featured-product__wrapper{grid-template-columns:1fr;padding:40px;} 
.product-card{transform:none;}
.featured-product__content {padding-top:82px;}

}
/* ---- Footer ---------------------------------------------------------- */
.site-footer {
  background: var(--plum-950);
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  padding-top: clamp(3.5rem, 7vw, 5.5rem);
}

.footer__top {
  display: grid;
  grid-template-columns: 1.3fr repeat(3, 1fr);
  gap: 2.5rem;
  padding-bottom: clamp(2.5rem, 5vw, 4rem);
}

.footer__brand img {
  height: 52px;
  filter: brightness(0) invert(1);
  margin-bottom: 1.25rem;
}

.footer__brand p {
  color: var(--grey-500);
  font-size: 0.88rem;
  max-width: 30ch;
  font-weight: 300;
}

.footer__socials {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.footer__socials a {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  color: var(--grey-400);
  transition: border-color 0.3s var(--ease-lux), color 0.3s var(--ease-lux);
}

.footer__socials a:hover {
  border-color: var(--gold-300);
  color: var(--gold-300);
}

.footer-col h4 {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #6b2fa0;
  margin-bottom: 1.25rem;
}

.footer-col ul li { margin-bottom: 0.7rem; }

.footer-col a,
.footer-col address {
  font-style: normal;
  color: var(--grey-400);
  font-size: 0.88rem;
  font-weight: 300;
  line-height: 1.55;
  transition: color 0.3s var(--ease-lux);
}

.footer-col a:hover { color: var(--cream-100); }

.footer__legal-strip {
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  padding-block: 1.75rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 2rem;
  align-items: center;
  justify-content: space-between;
  font-size: 0.76rem;
  color: var(--grey-500);
}

.footer__legal-links {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.footer__legal-links a { color: var(--grey-500); }
.footer__legal-links a:hover { color: var(--cream-100); }

.footer__fssai {
  font-size: 0.72rem;
  color: var(--grey-500);
  opacity: 0.8;
}

@media (max-width: 900px) {
  .footer__top { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 560px) {
  .footer__top { grid-template-columns: 1fr; }
  .footer__legal-strip { flex-direction: column; align-items: flex-start; }
}

/* ---- Mobile drawer ----------------------------------------------------- */
.mobile-drawer {
  position: fixed;
  inset: 0;
  z-index: 1100;
  background: var(--plum-950);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: var(--gutter);
  transform: translateY(-100%);
  transition: transform 0.55s var(--ease-lux);
}

.mobile-drawer.is-open { transform: translateY(0); }

.mobile-drawer nav {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.mobile-drawer nav a {
  font-family: var(--font-serif);
  font-size: 2.1rem;
  color: var(--cream-100);
}

.mobile-drawer__close {
  position: absolute;
  top: 1.75rem;
  right: var(--gutter);
  background: none;
  border: none;
  color: var(--cream-100);
  font-size: 1.6rem;
}

/* ---- Utility reveal classes used by JS -------------------------------- */
.js-fade-up {
  opacity: 0;
  transform: translateY(36px);
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
/* Hide the line break on desktop */
.mobile-only {
    display: none;
}

/* Show line break only on mobile */
@media (max-width: 768px) {
    .mobile-only {
        display: block;
    }
}
