:root {
  --cream: #f5f0e8;
  --dk: #1a3d22;
  --mg: #2e6b3e;
  --lg: #5a9b6a;
  --gold: #c4922a;
  --ww: #faf7f1;
  --td: #141410;
  --tm: #6b6558;
  --wa: #25d366;
}
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  background: var(--cream);
  color: var(--td);
  font-family: "DM Sans", sans-serif;
  overflow-x: hidden;
  cursor: none;
}
.cursor {
  width: 11px;
  height: 11px;
  background: var(--gold);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition:
    transform 0.1s,
    background 0.3s;
  mix-blend-mode: difference;
}
.cursor-ring {
  width: 38px;
  height: 38px;
  border: 1.5px solid var(--gold);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: all 0.18s;
  opacity: 0.6;
  mix-blend-mode: difference;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  opacity: 0.025;
  pointer-events: none;
  z-index: 9996;
}

/* ===== PRELOADER ===== */
.preloader {
  position: fixed;
  inset: 0;
  background: var(--dk);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 22px;
}
.pre-logo {
  opacity: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.pre-logo img {
  height: 60px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}
.pre-logo-text {
  font-family: "Playfair Display", serif;
  font-size: 1.6rem;
  font-weight: 900;
  color: #fff;
  letter-spacing: 0.06em;
}
.pre-bar-wrap {
  width: 160px;
  height: 2px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 2px;
  overflow: hidden;
}
.pre-bar {
  height: 100%;
  background: var(--gold);
  width: 0;
  border-radius: 2px;
}

/* ===== NAV ===== */
nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 6%;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  transition:
    background 0.4s,
    padding 0.4s,
    box-shadow 0.4s;
}
nav.scrolled {
  background: rgba(245, 240, 232, 0.96);
  backdrop-filter: blur(16px);
  padding: 10px 6%;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.07);
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  cursor: none;
}
.nav-logo img {
  height: 40px;
  width: auto;
  object-fit: contain;
  display: block;
}
.nav-logo-wordmark {
  font-family: "Playfair Display", serif;
  font-size: 1.3rem;
  font-weight: 900;
  color: var(--dk);
  letter-spacing: 0.02em;
  line-height: 1;
}
.nav-logo-sub {
  font-size: 0.55rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--tm);
  font-family: "DM Sans", sans-serif;
  font-weight: 400;
  margin-top: 1px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-links a {
  text-decoration: none;
  padding: 8px 14px;
  color: var(--td);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-radius: 50px;
  transition:
    background 0.2s,
    color 0.2s;
  cursor: none;
}
.nav-links a:hover,
.nav-links a.active {
  background: var(--dk);
  color: #fff;
}
.nav-cta {
  background: var(--dk) !important;
  color: #fff !important;
}
.nav-cta:hover {
  background: var(--mg) !important;
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: none;
  padding: 6px;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--td);
  border-radius: 2px;
  transition: 0.3s;
}

/* ===== PAGES ===== */
.page {
  display: none;
}
.page.active {
  display: block;
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 130px 6% 80px;
}
/* Hero background image with blur overlay */
.hero-bg-img {
  position: absolute;
  inset: 0;
  background-image: url("../images/hero-bg.png");
  background-size: cover;
  background-position: center top;
  z-index: 0;
}
.hero-bg-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(245, 240, 232, 0.72);
  backdrop-filter: blur(6px);
}
/* Animated color blobs on top */
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.2;
  animation: bf 14s ease-in-out infinite;
  z-index: 1;
}
.b1 {
  width: 520px;
  height: 520px;
  background: var(--mg);
  top: -120px;
  right: -60px;
}
.b2 {
  width: 360px;
  height: 360px;
  background: var(--gold);
  bottom: -80px;
  left: -60px;
  animation-delay: 4s;
}
.b3 {
  width: 260px;
  height: 260px;
  background: var(--lg);
  top: 45%;
  left: 42%;
  animation-delay: 8s;
}
@keyframes bf {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  40% {
    transform: translate(28px, -35px) scale(1.05);
  }
  70% {
    transform: translate(-18px, 18px) scale(0.97);
  }
}
.leaf-p {
  position: absolute;
  opacity: 0;
  pointer-events: none;
  animation: ld linear infinite;
  z-index: 2;
  will-change: transform;
}
@keyframes ld {
  0% {
    transform: translateY(110vh) translateX(0) rotate(0deg);
    opacity: 0;
  }
  8% {
    opacity: 1;
  }
  50% {
    transform: translateY(40vh) translateX(var(--lx, 30px)) rotate(180deg);
    opacity: 0.7;
  }
  90% {
    opacity: 0.2;
  }
  100% {
    transform: translateY(-12vh) translateX(var(--lx2, -20px)) rotate(720deg);
    opacity: 0;
  }
}

/* ===== ORGANIC HERO CANVAS LAYER ===== */
#hero-leaf-canvas {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 2;
  overflow: hidden;
}

/* ===== FLOATING STEM / BRANCH DECO ===== */
.herb-deco {
  position: absolute;
  pointer-events: none;
  opacity: 0;
  animation: herbFloat ease-in-out infinite;
  z-index: 2;
  transform-origin: bottom center;
}
@keyframes herbFloat {
  0%,
  100% {
    transform: rotate(var(--rb, −4deg)) translateY(0);
  }
  30% {
    transform: rotate(var(--rf, 4deg)) translateY(-9px);
  }
  60% {
    transform: rotate(var(--rm, 0deg)) translateY(-4px);
  }
}

/* ===== POLLEN / PARTICLE DOTS ===== */
.pollen {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 2;
  animation: pollenDrift ease-in-out infinite;
}
@keyframes pollenDrift {
  0% {
    transform: translate(0, 0) scale(1);
    opacity: 0;
  }
  15% {
    opacity: 0.6;
  }
  50% {
    transform: translate(var(--px, 20px), var(--py, -30px)) scale(1.2);
  }
  85% {
    opacity: 0.2;
  }
  100% {
    transform: translate(var(--px2, -15px), var(--py2, -80px)) scale(0.5);
    opacity: 0;
  }
}

/* ===== CURSOR WIND LEAVES ===== */
.wind-leaf {
  position: fixed;
  pointer-events: none;
  z-index: 9997;
  opacity: 0;
  transition: none;
  animation: windLeaf var(--wl-dur, 1.2s) ease-out forwards;
}
@keyframes windLeaf {
  0% {
    opacity: 0.9;
    transform: translate(0, 0) rotate(var(--wr, 0deg)) scale(var(--ws, 1));
  }
  100% {
    opacity: 0;
    transform: translate(var(--wx, 40px), var(--wy, -60px))
      rotate(var(--we, 360deg)) scale(0.3);
  }
}
.hero-content {
  position: relative;
  z-index: 3;
  max-width: 660px;
}
.eyebrow {
  font-size: 0.74rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: "";
  display: block;
  width: 36px;
  height: 1px;
  background: var(--gold);
}
.hero h1 {
  font-family: "Playfair Display", serif;
  font-size: clamp(2.8rem, 5.5vw, 4.8rem);
  font-weight: 900;
  line-height: 1.06;
  letter-spacing: -0.03em;
  color: var(--dk);
}
.hero h1 em {
  font-style: italic;
  color: var(--gold);
}
.hero-desc {
  margin-top: 26px;
  font-size: 1rem;
  line-height: 1.78;
  color: var(--tm);
  max-width: 460px;
}
.hero-actions {
  margin-top: 40px;
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
}
.btn-primary {
  padding: 15px 34px;
  background: var(--dk);
  color: #fff;
  border: none;
  border-radius: 50px;
  font-family: "DM Sans", sans-serif;
  font-size: 0.86rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: none;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s;
}
.btn-primary::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--mg);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s;
  z-index: 0;
}
.btn-primary:hover::before {
  transform: scaleX(1);
}
.btn-primary span {
  position: relative;
  z-index: 1;
}
.btn-primary:hover {
  transform: translateY(-2px);
}
.btn-ghost {
  font-size: 0.84rem;
  font-weight: 500;
  color: var(--td);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: none;
  transition: gap 0.3s;
}
.btn-ghost:hover {
  gap: 14px;
}
.hero-stats {
  position: absolute;
  right: 5%;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-end;
}
.hstat {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 16px;
  padding: 16px 22px;
  text-align: right;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.07);
}
.hstat-num {
  font-family: "Playfair Display", serif;
  font-size: 1.9rem;
  font-weight: 900;
  color: var(--dk);
  line-height: 1;
}
.hstat-lbl {
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--tm);
  margin-top: 3px;
}
.scroll-ind {
  position: absolute;
  bottom: 34px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 7px;
  z-index: 3;
  opacity: 0.5;
}
.scroll-ind span {
  font-size: 0.66rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--dk);
}
.scroll-line {
  width: 1px;
  height: 44px;
  background: linear-gradient(to bottom, var(--dk), transparent);
  animation: sp 2s ease-in-out infinite;
}
@keyframes sp {
  0%,
  100% {
    transform: scaleY(0.6);
    transform-origin: top;
    opacity: 0.5;
  }
  50% {
    transform: scaleY(1);
    opacity: 1;
  }
}

/* ===== MARQUEE ===== */
.marquee-band {
  background: var(--dk);
  padding: 15px 0;
  overflow: hidden;
  white-space: nowrap;
}
.mq-inner {
  display: inline-flex;
  animation: mq 20s linear infinite;
}
.mq-inner span {
  font-family: "Playfair Display", serif;
  font-style: italic;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.65);
  padding: 0 26px;
}
.mq-inner .dot {
  color: var(--gold);
  font-style: normal;
  font-family: "DM Sans", sans-serif;
}
@keyframes mq {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* ===== SECTIONS ===== */
.section-wrap {
  padding: 110px 6%;
}
.sec-hd {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 60px;
  flex-wrap: wrap;
  gap: 18px;
}
.sec-tag {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 8px;
}
.sec-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--dk);
}
.sec-title em {
  font-style: italic;
}
.sec-sub {
  font-size: 0.86rem;
  color: var(--tm);
  max-width: 260px;
  line-height: 1.6;
  text-align: right;
}

/* ===== HOME PRODUCT CARDS ===== */
.prod-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.card {
  background: var(--ww);
  border-radius: 22px;
  overflow: hidden;
  cursor: none;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.card:hover {
  transform: translateY(-11px);
}
.card-img {
  height: 255px;
  overflow: hidden;
  background: linear-gradient(135deg, #eef5ee, #f0ece3);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.card-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at 60% 40%,
    rgba(94, 155, 106, 0.1),
    transparent 70%
  );
}
.card-img img {
  width: 70%;
  height: 70%;
  object-fit: contain;
  transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  z-index: 1;
}
.card:hover .card-img img {
  transform: scale(1.1) rotate(-2deg);
}
.card-body {
  padding: 18px 20px 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.card h3 {
  font-family: "Playfair Display", serif;
  font-size: 0.94rem;
  font-weight: 700;
  color: var(--dk);
}
.card-tag {
  font-size: 0.66rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--tm);
  margin-top: 2px;
}
.card-arrow {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--dk);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  opacity: 0;
  transform: scale(0.6);
  transition:
    opacity 0.3s,
    transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.card:hover .card-arrow {
  opacity: 1;
  transform: scale(1);
}

/* ===== BENEFITS ===== */
.benefits {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(0, 0, 0, 0.06);
}
.ben {
  background: var(--ww);
  padding: 44px 28px;
  text-align: center;
}
.ben-ico {
  font-size: 2rem;
  margin-bottom: 12px;
  display: block;
}
.ben-title {
  font-family: "Playfair Display", serif;
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--dk);
  margin-bottom: 8px;
}
.ben-desc {
  font-size: 0.8rem;
  color: var(--tm);
  line-height: 1.65;
}

/* ===== ABOUT TEASER ===== */
.about-teaser {
  padding: 100px 6%;
  background: var(--dk);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.about-teaser::before {
  content: "";
  position: absolute;
  top: -180px;
  right: -180px;
  width: 550px;
  height: 550px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(196, 146, 42, 0.13),
    transparent 70%
  );
  pointer-events: none;
}
.at-lbl {
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.at-lbl::before {
  content: "";
  width: 34px;
  height: 1px;
  background: var(--gold);
}
.at-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: #fff;
  margin-bottom: 22px;
}
.at-title em {
  font-style: italic;
  color: var(--gold);
}
.at-p {
  font-size: 0.94rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.58);
  margin-bottom: 28px;
}
.at-card {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 22px;
  padding: 32px 28px;
  backdrop-filter: blur(10px);
}
.at-feat {
  display: flex;
  align-items: flex-start;
  gap: 13px;
  padding: 15px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.at-feat:last-child {
  border-bottom: none;
}
.at-feat-ico {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(196, 146, 42, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  flex-shrink: 0;
}
.at-feat-title {
  font-size: 0.86rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 3px;
}
.at-feat-desc {
  font-size: 0.76rem;
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.55;
}

/* ===== NEWSLETTER ===== */
.newsletter {
  padding: 90px 6%;
  text-align: center;
}
.newsletter-inner {
  max-width: 490px;
  margin: 0 auto;
}
.newsletter h3 {
  font-family: "Playfair Display", serif;
  font-size: clamp(1.7rem, 2.8vw, 2.2rem);
  font-weight: 900;
  letter-spacing: -0.02em;
  color: var(--dk);
  margin-bottom: 12px;
}
.newsletter h3 em {
  font-style: italic;
  color: var(--gold);
}
.newsletter p {
  font-size: 0.86rem;
  color: var(--tm);
  line-height: 1.7;
  margin-bottom: 30px;
}
.nl-form {
  display: flex;
  border-radius: 50px;
  overflow: hidden;
  border: 1.5px solid var(--dk);
  max-width: 410px;
  margin: 0 auto;
}
.nl-form input {
  flex: 1;
  padding: 14px 20px;
  border: none;
  background: transparent;
  font-family: "DM Sans", sans-serif;
  font-size: 0.86rem;
  color: var(--td);
  outline: none;
}
.nl-form input::placeholder {
  color: var(--tm);
}
.nl-form button {
  padding: 12px 24px;
  background: var(--dk);
  color: #fff;
  border: none;
  font-family: "DM Sans", sans-serif;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: none;
  transition: background 0.3s;
}
.nl-form button:hover {
  background: var(--mg);
}

/* ===== PRODUCTS PAGE ===== */
.page-hero {
  padding: 160px 6% 80px;
  position: relative;
  overflow: hidden;
}
.ph-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.14;
}
.ph-blob-1 {
  width: 400px;
  height: 400px;
  background: var(--mg);
  top: -100px;
  right: -80px;
}
.ph-blob-2 {
  width: 300px;
  height: 300px;
  background: var(--gold);
  bottom: -80px;
  left: -60px;
}
.page-hero-content {
  position: relative;
  z-index: 1;
}
.page-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 900;
  line-height: 1.06;
  letter-spacing: -0.03em;
  color: var(--dk);
}
.page-title em {
  font-style: italic;
  color: var(--gold);
}
.page-subtitle {
  margin-top: 18px;
  font-size: 1rem;
  color: var(--tm);
  max-width: 480px;
  line-height: 1.75;
}

/* ===== PRODUCT CARDS (Full page) with HOVER SLIDESHOW ===== */
.all-products {
  padding: 30px 6% 100px;
}
.prod-full-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.pcard {
  background: var(--ww);
  border-radius: 24px;
  overflow: hidden;
  cursor: none;
  transition:
    transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1),
    box-shadow 0.4s;
}
.pcard:hover {
  transform: translateY(-12px);
  box-shadow: 0 28px 56px rgba(0, 0, 0, 0.1);
}

/* Slideshow image area */
.pcard-img {
  height: 295px;
  overflow: hidden;
  position: relative;
}
.pcard-slides {
  width: 100%;
  height: 100%;
  position: relative;
}
.pcard-slide {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #eef5ee, #f0ece3);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s ease;
}
.pcard-slide.active {
  opacity: 1;
}
.pcard-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at 60% 40%,
    rgba(94, 155, 106, 0.1),
    transparent 70%
  );
}
.pcard-slide img {
  width: 72%;
  height: 72%;
  object-fit: contain;
  position: relative;
  z-index: 1;
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.pcard:hover .pcard-slide.active img {
  transform: scale(1.07);
}

/* Slide indicators */
.pcard-dots {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 5px;
  z-index: 10;
  opacity: 0;
  transition: opacity 0.3s;
}
.pcard:hover .pcard-dots {
  opacity: 1;
}
.pcard-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  transition:
    background 0.3s,
    transform 0.3s;
}
.pcard-dot.active {
  background: #fff;
  transform: scale(1.3);
}

/* Slide progress bar */
.pcard-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  background: var(--gold);
  width: 0;
  z-index: 10;
  transition: none;
}

.pcard-badge {
  position: absolute;
  top: 13px;
  right: 13px;
  background: var(--dk);
  color: #fff;
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 11px;
  border-radius: 50px;
  font-weight: 500;
  z-index: 5;
}

.pcard-body {
  padding: 20px 22px 24px;
}
.pcard-tag {
  font-size: 0.66rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 5px;
}
.pcard h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--dk);
  margin-bottom: 8px;
}
.pcard-desc {
  font-size: 0.8rem;
  color: var(--tm);
  line-height: 1.65;
  margin-bottom: 18px;
}
.pcard-badges {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.pbadge {
  font-size: 0.62rem;
  padding: 4px 10px;
  border-radius: 50px;
  background: rgba(30, 77, 43, 0.08);
  color: var(--dk);
  font-weight: 500;
  letter-spacing: 0.06em;
}

.btn-wa {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  width: 100%;
  padding: 13px 0;
  background: var(--wa);
  color: #fff;
  border: none;
  border-radius: 50px;
  font-family: "DM Sans", sans-serif;
  font-size: 0.84rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  cursor: none;
  transition:
    background 0.3s,
    transform 0.3s;
  text-decoration: none;
}
.btn-wa:hover {
  background: #1db954;
  transform: translateY(-2px);
}

/* ===== ABOUT PAGE ===== */
.about-hero {
  padding: 160px 6% 100px;
  background: var(--dk);
  position: relative;
  overflow: hidden;
}
.about-hero::before {
  content: "";
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(196, 146, 42, 0.14),
    transparent 70%
  );
  pointer-events: none;
}
.about-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 680px;
}
.about-hero .eyebrow {
  color: var(--gold);
}
.about-hero h1 {
  font-family: "Playfair Display", serif;
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: #fff;
  margin-bottom: 24px;
}
.about-hero h1 em {
  font-style: italic;
  color: var(--gold);
}
.about-hero p {
  font-size: 1rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.6);
  max-width: 550px;
}
.stats-band {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(0, 0, 0, 0.08);
}
.astat {
  background: var(--ww);
  padding: 48px 28px;
  text-align: center;
}
.astat-num {
  font-family: "Playfair Display", serif;
  font-size: 2.6rem;
  font-weight: 900;
  color: var(--dk);
  line-height: 1;
}
.astat-lbl {
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--tm);
  margin-top: 7px;
}
.mission-section {
  padding: 110px 6%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.mission-img {
  border-radius: 28px;
  overflow: hidden;
  background: linear-gradient(135deg, #d4e8d4, #e8e0d0);
  height: 460px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.mission-img::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at 40% 40%,
    rgba(94, 155, 106, 0.2),
    transparent 65%
  );
}
.mission-img img {
  width: 50%;
  opacity: 0.25;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.1));
}
.mission-deco {
  position: absolute;
  bottom: 26px;
  right: 26px;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(10px);
  border-radius: 14px;
  padding: 16px 20px;
}
.mission-deco-num {
  font-family: "Playfair Display", serif;
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--dk);
}
.mission-deco-lbl {
  font-size: 0.66rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--tm);
  margin-top: 2px;
}
.m-lbl {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.m-lbl::before {
  content: "";
  width: 34px;
  height: 1px;
  background: var(--gold);
}
.m-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--dk);
  margin-bottom: 20px;
}
.m-title em {
  font-style: italic;
  color: var(--gold);
}
.m-p {
  font-size: 0.94rem;
  line-height: 1.82;
  color: var(--tm);
  margin-bottom: 15px;
}
.values-section {
  padding: 0 6% 110px;
}
.vals-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 56px;
}
.val-card {
  background: var(--ww);
  border-radius: 20px;
  padding: 34px 28px;
}
.val-ico {
  font-size: 1.9rem;
  margin-bottom: 14px;
  display: block;
}
.val-title {
  font-family: "Playfair Display", serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--dk);
  margin-bottom: 8px;
}
.val-desc {
  font-size: 0.8rem;
  color: var(--tm);
  line-height: 1.7;
}

/* ===== STORY PAGE ===== */
.story-hero-sec {
  padding: 160px 6% 100px;
  position: relative;
  overflow: hidden;
}
.story-hero-sec h1 {
  font-family: "Playfair Display", serif;
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--dk);
}
.story-hero-sec h1 em {
  font-style: italic;
  color: var(--gold);
}
.story-hero-sec p {
  margin-top: 18px;
  font-size: 1rem;
  line-height: 1.8;
  color: var(--tm);
  max-width: 540px;
}
.timeline-section {
  padding: 80px 6% 110px;
}
.timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}
.timeline::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 1px;
  background: rgba(30, 77, 43, 0.14);
  transform: translateX(-50%);
}
.tl-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  margin-bottom: 66px;
  position: relative;
}
.tl-item:nth-child(even) .tl-content {
  order: 2;
  text-align: right;
}
.tl-item:nth-child(even) .tl-year {
  order: 1;
}
.tl-dot {
  position: absolute;
  left: 50%;
  top: 8px;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: var(--gold);
  border: 3px solid var(--cream);
  transform: translateX(-50%);
  z-index: 1;
}
.tl-year {
  font-family: "Playfair Display", serif;
  font-size: 2.8rem;
  font-weight: 900;
  color: rgba(30, 77, 43, 0.1);
}
.tl-tag {
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 7px;
}
.tl-title {
  font-family: "Playfair Display", serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--dk);
  margin-bottom: 9px;
}
.tl-desc {
  font-size: 0.84rem;
  color: var(--tm);
  line-height: 1.7;
}
.philosophy-section {
  padding: 100px 6%;
  background: var(--dk);
  position: relative;
  overflow: hidden;
  text-align: center;
}
.philosophy-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at 50% 50%,
    rgba(196, 146, 42, 0.1),
    transparent 65%
  );
  pointer-events: none;
}
.phil-inner {
  position: relative;
  z-index: 1;
  max-width: 660px;
  margin: 0 auto;
}
.phil-quote {
  font-family: "Playfair Display", serif;
  font-size: clamp(1.5rem, 3vw, 2.3rem);
  font-weight: 700;
  font-style: italic;
  color: #fff;
  line-height: 1.4;
  margin: 28px 0;
}
.phil-attr {
  font-size: 0.76rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.42);
}
.story-cta {
  padding: 100px 6%;
  text-align: center;
}
.story-cta h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(1.9rem, 3.5vw, 2.7rem);
  font-weight: 900;
  letter-spacing: -0.02em;
  color: var(--dk);
  margin-bottom: 18px;
}
.story-cta h2 em {
  font-style: italic;
  color: var(--gold);
}
.story-cta p {
  font-size: 0.94rem;
  color: var(--tm);
  line-height: 1.7;
  max-width: 460px;
  margin: 0 auto 34px;
}
.cta-btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}
.dark-cta {
  padding: 80px 6%;
  background: var(--dk);
  position: relative;
  overflow: hidden;
  text-align: center;
}
.dark-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at 50% 50%,
    rgba(196, 146, 42, 0.1),
    transparent 60%
  );
  pointer-events: none;
}
.dark-cta-inner {
  position: relative;
  z-index: 1;
}
.dark-cta h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(1.9rem, 3.5vw, 2.7rem);
  font-weight: 900;
  color: #fff;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}
.dark-cta h2 em {
  font-style: italic;
  color: var(--gold);
}
.dark-cta p {
  font-size: 0.94rem;
  color: rgba(255, 255, 255, 0.55);
  max-width: 420px;
  margin: 0 auto 34px;
  line-height: 1.75;
}

/* ===== WHATSAPP FLOAT ===== */
.wa-float {
  position: fixed;
  bottom: 26px;
  right: 26px;
  z-index: 5000;
  background: var(--wa);
  color: #fff;
  border-radius: 50px;
  padding: 13px 20px;
  display: flex;
  align-items: center;
  gap: 9px;
  text-decoration: none;
  font-family: "DM Sans", sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.35);
  cursor: none;
  transition:
    transform 0.3s,
    box-shadow 0.3s;
  animation: wapop 0.6s 2.2s both;
}
@keyframes wapop {
  from {
    transform: scale(0);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}
.wa-float:hover {
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 12px 38px rgba(37, 211, 102, 0.5);
}
.wa-dot {
  width: 7px;
  height: 7px;
  background: #fff;
  border-radius: 50%;
  animation: wd 1.5s ease-in-out infinite;
}
@keyframes wd {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.3;
  }
}

/* ===== FOOTER ===== */
footer {
  background: var(--td);
  padding: 56px 6% 26px;
}
.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 44px;
  flex-wrap: wrap;
  gap: 26px;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}
.footer-brand img {
  height: 38px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.85;
}
.footer-brand-text {
  font-family: "Playfair Display", serif;
  font-size: 1.2rem;
  font-weight: 900;
  color: #fff;
  letter-spacing: 0.02em;
}
.footer-brand-sub {
  font-size: 0.55rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
  margin-top: 1px;
}
.footer-tagline {
  font-size: 0.76rem;
  margin-top: 7px;
  color: rgba(255, 255, 255, 0.3);
  letter-spacing: 0.04em;
}
.footer-links {
  display: flex;
  gap: 48px;
  flex-wrap: wrap;
}
.footer-col h4 {
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 13px;
}
.footer-col a {
  display: block;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.3);
  font-size: 0.82rem;
  margin-bottom: 8px;
  transition: color 0.2s;
  cursor: none;
}
.footer-col a:hover {
  color: rgba(255, 255, 255, 0.8);
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}
.footer-bottom span {
  font-size: 0.76rem;
  color: rgba(255, 255, 255, 0.28);
}

/* ===== WA SVG SHORTHAND ===== */
.wa-svg {
  flex-shrink: 0;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero-stats {
    display: none;
  }
  .prod-grid,
  .prod-full-grid,
  .vals-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .benefits,
  .stats-band {
    grid-template-columns: repeat(2, 1fr);
  }
  .about-teaser,
  .mission-section {
    grid-template-columns: 1fr;
    gap: 44px;
  }
  .timeline::before {
    left: 20px;
  }
  .tl-dot {
    left: 20px;
  }
  .tl-item {
    grid-template-columns: 1fr;
  }
  .tl-item:nth-child(even) .tl-content,
  .tl-item:nth-child(even) .tl-year {
    order: unset;
    text-align: left;
  }
}
@media (max-width: 640px) {
  nav {
    padding: 14px 5%;
  }
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(245, 240, 232, 0.98);
    backdrop-filter: blur(16px);
    flex-direction: column;
    padding: 18px;
    gap: 4px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  }
  .nav-links.open {
    display: flex;
  }
  .hamburger {
    display: flex;
  }
  .hero {
    padding: 110px 5% 60px;
  }
  .hero-bg-img::after {
    backdrop-filter: blur(4px);
  }
  .prod-grid,
  .prod-full-grid,
  .vals-grid {
    grid-template-columns: 1fr;
  }
  .benefits,
  .stats-band {
    grid-template-columns: 1fr;
  }
  .section-wrap,
  .all-products,
  .values-section,
  .timeline-section {
    padding-left: 5%;
    padding-right: 5%;
  }
  .page-hero,
  .about-hero,
  .story-hero-sec {
    padding: 130px 5% 70px;
  }
  .about-teaser,
  .mission-section {
    padding: 70px 5%;
  }
  .sec-sub {
    text-align: left;
    max-width: 100%;
  }
  .dark-cta,
  .philosophy-section,
  .story-cta {
    padding: 70px 5%;
  }
  .nav-logo-wordmark {
    font-size: 1.1rem;
  }
}
/* ===== SKIP LINK (Accessibility + SEO) ===== */
.skip-link {
  position: absolute;
  top: -40px;
  left: 6px;
  background: var(--dk);
  color: #fff;
  padding: 8px 16px;
  border-radius: 0 0 8px 8px;
  font-size: 0.82rem;
  font-weight: 600;
  z-index: 99999;
  text-decoration: none;
  transition: top 0.2s;
}
.skip-link:focus {
  top: 0;
}

/* ===== TARU BALI ANIMATIONS ===== */

/* --- 1. DUAL MARQUEE (image strip + reverse text strip) --- */
.tb-marquee-wrap {
  overflow: hidden;
  background: var(--ww);
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}
.tb-marquee-row {
  display: flex;
  width: max-content;
}
.tb-marquee-row--fwd {
  animation: tbmqFwd 32s linear infinite;
}
.tb-marquee-row--rev {
  animation: tbmqRev 28s linear infinite;
  background: var(--dk);
}
@keyframes tbmqFwd {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
@keyframes tbmqRev {
  from {
    transform: translateX(-50%);
  }
  to {
    transform: translateX(0);
  }
}
.tb-mq-item {
  display: flex;
  align-items: center;
  gap: 0;
  padding: 0 22px;
  white-space: nowrap;
}
.tb-mq-item--text {
  padding: 10px 28px;
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 500;
}
.tb-mq-item--text b {
  color: var(--gold);
  font-weight: 600;
}
.tb-mq-sep {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
  margin: 0 16px;
}

/* --- 2. SPLIT TEXT REVEAL (word by word, Taru Bali style) --- */
.split-reveal .word {
  display: inline-block;
  overflow: hidden;
  vertical-align: bottom;
}
.split-reveal .word-inner {
  display: inline-block;
  transform: translateY(110%);
  transition: transform 0.75s cubic-bezier(0.16, 1, 0.3, 1);
}
.split-reveal.in-view .word-inner {
  transform: translateY(0);
}

/* --- 3. OVERSIZED STATEMENT SECTION (like Taru Bali "A ritual rooted in nature") --- */
.tb-statement {
  padding: 120px 6%;
  overflow: hidden;
  position: relative;
  background: url("../images/statement.png");
  background-repeat: no-repeat;
  background-size: cover;
}
.tb-statement-inner {
  max-width: 1100px;
}
.tb-statement-eyebrow {
  font-size: 0.68rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 22px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.tb-statement-eyebrow::before {
  content: "";
  width: 32px;
  height: 1px;
  background: var(--gold);
}
.tb-statement-text {
  font-family: "Playfair Display", serif;
  font-size: clamp(2.2rem, 5.5vw, 4.2rem);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--dk);
}
.tb-statement-text em {
  font-style: italic;
  color: var(--gold);
}
.tb-statement-sub {
  margin-top: 32px;
  font-size: 1rem;
  line-height: 1.8;
  color: var(--tm);
  max-width: 500px;
}
.tb-statement-deco {
  position: absolute;
  right: 6%;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 3px;
  align-items: flex-end;
  opacity: 0.55;
}
.tb-statement-deco-num {
  font-family: "Playfair Display", serif;
  font-size: 5.5rem;
  font-weight: 900;
  line-height: 1;
  color: var(--dk);
  opacity: 0.40;
}

/* --- 4. HORIZONTAL FEATURE SCROLLSTRIP --- */
.tb-hscroll-section {
  padding: 80px 0 80px;
  overflow: hidden;
  position: relative;
}
.tb-hscroll-label {
  padding: 0 6%;
  margin-bottom: 36px;
}
.tb-hscroll-label .sec-tag {
  margin-bottom: 8px;
}
.tb-hscroll-label .sec-title {
  max-width: 500px;
}
.tb-hscroll-track {
  display: flex;
  gap: 24px;
  padding: 0 6%;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  cursor: grab;
}
.tb-hscroll-track::-webkit-scrollbar {
  display: none;
}
.tb-hscroll-track:active {
  cursor: grabbing;
}
.tb-feat-card {
  flex: 0 0 340px;
  background: var(--ww);
  border-radius: 24px;
  padding: 40px 32px;
  scroll-snap-align: start;
  position: relative;
  overflow: hidden;
}
.tb-feat-card::before {
  content: "";
  position: absolute;
  top: -60px;
  right: -60px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(196, 146, 42, 0.1), transparent 70%);
  pointer-events: none;
}
.tb-feat-num {
  font-family: "Playfair Display", serif;
  font-size: 3rem;
  font-weight: 900;
  color: rgba(30, 77, 43, 0.07);
  line-height: 1;
  margin-bottom: 18px;
}
.tb-feat-icon {
  font-size: 1.8rem;
  margin-bottom: 16px;
  display: block;
}
.tb-feat-title {
  font-family: "Playfair Display", serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--dk);
  margin-bottom: 10px;
}
.tb-feat-desc {
  font-size: 0.84rem;
  color: var(--tm);
  line-height: 1.7;
}
.tb-hscroll-drag-hint {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 16px 6% 0;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--tm);
  opacity: 0.6;
}
.tb-hscroll-drag-hint svg {
  animation: dragPulse 2s ease-in-out infinite;
}
@keyframes dragPulse {
  0%,
  100% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(8px);
  }
}

/* --- 5. PARALLAX IMAGE REVEAL SECTION --- */
.tb-parallax-section {
  padding: 120px 6%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  overflow: hidden;
}
.tb-parallax-section.reverse {
  direction: rtl;
}
.tb-parallax-section.reverse > * {
  direction: ltr;
}
.tb-parallax-img-wrap {
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  height: 520px;
}
.tb-parallax-img-inner {
  width: 100%;
  height: 120%;
  position: absolute;
  top: -10%;
  left: 0;
}
.tb-parallax-img-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.tb-parallax-img-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
  border-radius: 14px;
  padding: 14px 20px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}
.tb-parallax-img-badge-num {
  font-family: "Playfair Display", serif;
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--dk);
  line-height: 1;
}
.tb-parallax-img-badge-lbl {
  font-size: 0.6rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--tm);
  margin-top: 2px;
}
.tb-parallax-content .eyebrow {
  margin-bottom: 20px;
}
.tb-parallax-content h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(2rem, 3.5vw, 2.9rem);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--dk);
  margin-bottom: 22px;
}
.tb-parallax-content h2 em {
  font-style: italic;
  color: var(--gold);
}
.tb-parallax-content p {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--tm);
  margin-bottom: 14px;
}
.tb-parallax-content .btn-primary {
  margin-top: 18px;
}

/* --- 6. STAGGERED INGREDIENT REVEAL GRID --- */
.tb-ingredients-section {
  padding: 100px 6%;
  background: var(--dk);
  overflow: hidden;
}
.tb-ingredients-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.tb-ingredients-left .sec-tag {
  color: var(--gold);
}
.tb-ingredients-left .sec-title {
  color: #fff;
}
.tb-ingredients-left .sec-title em {
  color: var(--gold);
}
.tb-ingredients-left p {
  font-size: 0.94rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.8;
  margin-top: 16px;
  max-width: 400px;
}
.tb-ing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 16px;
}
.tb-ing-chip {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  padding: 20px 16px;
  text-align: center;
  transition:
    background 0.3s,
    transform 0.3s;
}
.tb-ing-chip:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-3px);
}
.tb-ing-chip-icon {
  font-size: 1.4rem;
  margin-bottom: 8px;
  display: block;
}
.tb-ing-chip-name {
  font-size: 0.74rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.06em;
}

/* --- 7. FULL-BLEED QUOTE / MANIFESTO SECTION --- */
.tb-manifesto {
  padding: 160px 6%;
  /* background: linear-gradient(135deg, var(--dk) 0%, #0e2915 100%); */
  background: url("../images/Promise.png");
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.tb-manifesto::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at 50% 50%,
    rgba(196, 146, 42, 0.12),
    transparent 60%
  );
  pointer-events: none;
}
.tb-manifesto-inner {
  position: relative;
  z-index: 1;
  max-width: 780px;
  margin: 0 auto;
}
.tb-manifesto-mark {
  font-family: "Playfair Display", serif;
  font-size: 6rem;
  line-height: 0.7;
  color: rgba(196, 146, 42, 0.2);
  margin-bottom: 10px;
  display: block;
}
.tb-manifesto-quote {
  font-family: "Playfair Display", serif;
  font-size: clamp(1.6rem, 3.5vw, 2.6rem);
  font-weight: 700;
  font-style: italic;
  color: #fff;
  line-height: 1.4;
  margin-bottom: 28px;
}
.tb-manifesto-attr {
  font-size: 0.74rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
}
.tb-manifesto-cta {
  margin-top: 42px;
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.btn-outline-light {
  padding: 14px 32px;
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  color: #fff;
  border-radius: 50px;
  font-family: "DM Sans", sans-serif;
  font-size: 0.84rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: none;
  text-decoration: none;
  transition:
    border-color 0.3s,
    background 0.3s;
}
.btn-outline-light:hover {
  border-color: rgba(255, 255, 255, 0.8);
  background: rgba(255, 255, 255, 0.08);
}

/* --- 8. LINE REVEAL ANIMATION (Taru Bali signature) --- */
.line-reveal {
  overflow: hidden;
}
.line-reveal-inner {
  transform: translateY(100%);
  transition: transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}
.line-reveal.in-view .line-reveal-inner {
  transform: translateY(0);
}

/* --- 9. FADE+SLIDE GENERIC ELEMENTS --- */
/* Only hidden when JS is active (.js-anim-ready on body) */
.js-anim-ready .tb-fade-up {
  opacity: 0;
  transform: translateY(50px);
  transition:
    opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.js-anim-ready .tb-fade-left {
  opacity: 0;
  transform: translateX(-50px);
  transition:
    opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.js-anim-ready .tb-fade-right {
  opacity: 0;
  transform: translateX(50px);
  transition:
    opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.js-anim-ready .tb-ing-chip {
  transform: translateY(40px);
  opacity: 0;
  transition:
    transform 0.6s cubic-bezier(0.16, 1, 0.3, 1),
    opacity 0.6s,
    background 0.3s;
}
.tb-fade-up.in-view,
.js-anim-ready .tb-fade-up.in-view {
  opacity: 1;
  transform: translateY(0);
}
.tb-fade-left.in-view,
.js-anim-ready .tb-fade-left.in-view {
  opacity: 1;
  transform: translateX(0);
}
.tb-fade-right.in-view,
.js-anim-ready .tb-fade-right.in-view {
  opacity: 1;
  transform: translateX(0);
}
.tb-ing-chip.in-view,
.js-anim-ready .tb-ing-chip.in-view {
  transform: translateY(0);
  opacity: 1;
}

/* Stagger delays */
.tb-delay-1 {
  transition-delay: 0.1s !important;
}
.tb-delay-2 {
  transition-delay: 0.2s !important;
}
.tb-delay-3 {
  transition-delay: 0.3s !important;
}
.tb-delay-4 {
  transition-delay: 0.4s !important;
}
.tb-delay-5 {
  transition-delay: 0.5s !important;
}
.tb-delay-6 {
  transition-delay: 0.6s !important;
}

/* --- 10. HOVER IMAGE TILT (Taru Bali product card feel) --- */
.tb-tilt {
  transform-style: preserve-3d;
  transition: transform 0.1s;
}

/* --- Responsive --- */
@media (max-width: 1024px) {
  .tb-parallax-section,
  .tb-ingredients-inner {
    grid-template-columns: 1fr;
    gap: 44px;
  }
  .tb-parallax-section > div[style*="order:2"] {
    order: unset !important;
  }
  .tb-parallax-section > div[style*="order:1"] {
    order: unset !important;
  }
  .tb-parallax-img-wrap {
    height: 340px;
  }
}
@media (max-width: 640px) {
  .tb-statement {
    padding: 80px 5%;
  }
  .tb-parallax-section {
    padding: 80px 5%;
  }
  .tb-manifesto {
    padding: 100px 5%;
  }
  .tb-ingredients-section {
    padding: 80px 5%;
  }
  .tb-feat-card {
    flex: 0 0 280px;
  }
}

/* ===== FAQ SECTION ===== */
.faq-section {
  padding: 100px 6%;
  background: var(--ww);
}
.faq-grid {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.faq-item {
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  overflow: hidden;
}
.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 0;
  cursor: pointer;
  gap: 16px;
}
.faq-q h3 {
  font-family: "Playfair Display", serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--dk);
  line-height: 1.4;
}
.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--dk);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.3s;
}
.faq-icon svg {
  stroke: #fff;
}
.faq-item.open .faq-icon {
  transform: rotate(45deg);
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.4s ease,
    padding 0.4s ease;
}
.faq-item.open .faq-a {
  max-height: 300px;
  padding-bottom: 18px;
}
.faq-a p {
  font-size: 0.88rem;
  color: var(--tm);
  line-height: 1.75;
}

.card-img img, .pcard-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* full box */
}