/* ==========================================================================
   VALLEY ORGANICS — Premium Kashmir Honey
   Design system · HTML5 + CSS custom properties
   ========================================================================== */

:root {
  /* Brand palette */
  --dusk: #1A1208;
  --cream: #FAF4E8;
  --parchment: #F2E6D0;
  --paper: #FCF9F0;
  --amber: #C8860A;
  --gold: #E8A825;
  --ivory: #F5EDD8;
  --linen: #B8A98A;
  --green: #2D4A2D;
  --green-deep: #162415;

  /* Type */
  --font-display: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --font-body: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --font-label: "Cinzel", "Trajan Pro", serif;
  --font-arabic: "Noto Naskh Arabic", serif;

  /* Rhythm */
  --container: 1280px;
  --gutter: clamp(20px, 4.5vw, 56px);
  --section-pad: clamp(48px, 5.5vw, 76px);
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
  --hex: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='35' height='40' viewBox='0 0 35 40'%3E%3Cpath d='M17.5 0 L35 10 L35 30 L17.5 40 L0 30 L0 10 Z' fill='none' stroke='%23C8860A' stroke-opacity='0.15' stroke-width='1.2' stroke-linejoin='round'/%3E%3C/svg%3E");
}

/* --------------------------------------------------------------------------
   Reset & base
   -------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 15px;
  line-height: 1.7;
  color: var(--dusk);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a { color: inherit; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
ul, ol { list-style: none; }

::selection { background: var(--amber); color: var(--ivory); }

section[id], footer[id], #process { scroll-margin-top: 84px; }

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 200;
  background: var(--amber);
  color: var(--dusk);
  padding: 12px 20px;
  font-family: var(--font-label);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-decoration: none;
}
.skip-link:focus { left: 12px; top: 12px; }

.nowrap { white-space: nowrap; }

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

/* --------------------------------------------------------------------------
   Typography helpers
   -------------------------------------------------------------------------- */
h1, h2, h3, .hero-title {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: 0.005em;
}

h2 { font-size: clamp(36px, 4.6vw, 56px); color: var(--dusk); }
h2 em { font-style: italic; color: var(--amber); }

.section { padding-block: var(--section-pad); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-label);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--green);
}
.eyebrow::before {
  content: "";
  width: 30px;
  height: 1px;
  background: var(--amber);
  flex: none;
}
.eyebrow--light { color: var(--linen); }
.eyebrow--gold { color: var(--gold); }

.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: clamp(44px, 6vw, 72px);
}
.section-head h2 { margin-top: 16px; }
.section-head--center { justify-content: center; text-align: center; }
.section-head--center .eyebrow::before { display: none; }
.section-head--center .eyebrow { justify-content: center; }
.section-head--center .eyebrow::after {
  content: "";
  width: 30px;
  height: 1px;
  background: var(--amber);
}

.section-sub {
  max-width: 58ch;
  margin-top: 18px;
  color: rgba(26, 18, 8, 0.68);
  font-size: 17px;
}
.section-head--center .section-sub { margin-inline: auto; }

.section-hint {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-label);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--linen);
  padding-bottom: 10px;
  flex: none;
}
.section-hint svg { width: 18px; height: 18px; }

/* --------------------------------------------------------------------------
   Buttons
   -------------------------------------------------------------------------- */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-label);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 17px 32px;
  border-radius: 0;
  overflow: hidden;
  transition: background 0.35s var(--ease), color 0.35s var(--ease),
              border-color 0.35s var(--ease), transform 0.35s var(--ease);
}
.btn-sm { padding: 11px 20px; font-size: 11px; }

.btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: -70%;
  width: 45%;
  height: 100%;
  background: linear-gradient(105deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transform: skewX(-20deg);
  transition: left 0.65s var(--ease);
}
.btn:hover::after { left: 125%; }

.btn-amber { background: var(--amber); color: var(--dusk); }
.btn-amber:hover { background: var(--gold); transform: translateY(-2px); }

.btn-ghost {
  color: var(--ivory);
  border: 1px solid rgba(245, 237, 216, 0.45);
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }

.btn-outline {
  color: var(--ivory);
  border: 1px solid rgba(245, 237, 216, 0.35);
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }

.btn-green { background: var(--green); color: var(--cream); border: 1px solid rgba(250, 244, 232, 0.25); }
.btn-green:hover { background: #3a5c3a; color: #fff; }

/* --------------------------------------------------------------------------
   Signature honey thread (desktop only)
   -------------------------------------------------------------------------- */
.honey-thread {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  width: 110px;
  z-index: 90;
  pointer-events: none;
  transition: filter 0.5s var(--ease);
}
.honey-thread svg { width: 100%; height: 100%; }
.honey-thread path { filter: drop-shadow(0 0 4px rgba(232, 168, 37, 0.35)); }
.honey-thread.is-thick path {
  stroke-width: 5.5;
  filter: drop-shadow(0 0 10px rgba(232, 168, 37, 0.75));
}
.thread-drop {
  transform-box: fill-box;
  transform-origin: center;
  transform: scale(0);
  transition: transform 0.5s var(--ease);
}
.thread-drop.show { transform: scale(1); animation: dropGlow 1.6s var(--ease) infinite alternate; }

@keyframes dropGlow {
  from { opacity: 0.7; }
  to   { opacity: 1; }
}

/* --------------------------------------------------------------------------
   Navigation
   -------------------------------------------------------------------------- */
.site-nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 20px var(--gutter);
  background: rgba(26, 18, 8, 0.6);
  transition: background 0.3s ease, padding 0.3s ease, box-shadow 0.3s ease;
}
.site-nav.scrolled {
  background: rgba(26, 18, 8, 0.82);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  padding-block: 10px;
  box-shadow: 0 1px 0 rgba(200, 134, 10, 0.28);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.brand-mark { width: 42px; height: 42px; flex: none; object-fit: contain; }
.brand-text { display: flex; flex-direction: column; line-height: 1.25; }
.brand-text strong {
  font-family: var(--font-label);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.24em;
  color: var(--ivory);
}
.brand-text em {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 12px;
  color: var(--linen);
  letter-spacing: 0.1em;
}

.nav-links { display: flex; align-items: center; gap: clamp(18px, 2.4vw, 36px); }
.nav-links a {
  font-family: var(--font-label);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ivory);
  text-decoration: none;
  position: relative;
  padding-block: 6px;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s var(--ease);
}
.nav-links a:hover::after, .nav-links a:focus-visible::after { transform: scaleX(1); }

.nav-actions { display: flex; align-items: center; gap: 16px; }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 44px;
  height: 44px;
  padding: 10px;
}
.nav-toggle span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--ivory);
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 99;
  background: rgba(26, 18, 8, 0.97);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-4%);
  transition: opacity 0.3s ease, transform 0.3s var(--ease), visibility 0.3s;
}
.mobile-menu.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}
.mobile-menu nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.mobile-menu a {
  font-family: var(--font-display);
  font-size: 30px;
  color: var(--ivory);
  text-decoration: none;
  padding: 8px 18px;
}
.mobile-menu a:hover { color: var(--gold); }
.mobile-menu .btn { margin-top: 18px; }

/* --------------------------------------------------------------------------
   HERO
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  background: var(--dusk);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: -6% 0;
  background-size: cover;
  background-position: center 40%;
  will-change: transform;
}

.hero-veil {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at center, rgba(26, 18, 8, 0.045) 0%, rgba(26, 18, 8, 0.117) 100%),
    linear-gradient(180deg, rgba(26, 18, 8, 0.083) 0%, rgba(26, 18, 8, 0.008) 34%, rgba(26, 18, 8, 0.093) 100%);
}

.hero-inner {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: minmax(0, 46%) 1fr;
  align-items: end;
  gap: 16px;
  padding-top: 150px;
}

.hero-copy { padding-bottom: clamp(72px, 13vh, 128px); }

.hero .eyebrow {
  padding: 9px 16px;
  border-radius: 999px;
  background: radial-gradient(ellipse at center, rgba(26, 18, 8, 0.42) 0%, rgba(26, 18, 8, 0.22) 55%, rgba(26, 18, 8, 0) 85%);
  color: var(--ivory);
  text-shadow: 0 1px 2px rgba(26, 18, 8, 0.7);
}

.hero-title {
  margin-top: 22px;
  color: var(--ivory);
  font-style: italic;
  font-size: clamp(46px, 6.4vw, 92px);
  line-height: 1.02;
  letter-spacing: 0.01em;
  text-shadow:
    0 0 10px rgba(232, 168, 37, 0.55),
    0 0 26px rgba(232, 168, 37, 0.35),
    0 0 52px rgba(200, 134, 10, 0.3),
    0 2px 24px rgba(26, 18, 8, 0.55),
    0 1px 3px rgba(26, 18, 8, 0.4);
}
.hero-title .w {
  display: inline-block;
  opacity: 0;
  animation: wordUp 0.9s var(--ease) forwards;
  animation-delay: calc(0.12s + var(--i) * 0.16s);
}

@keyframes wordUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-sub {
  margin-top: 24px;
  max-width: 46ch;
  display: inline-block;
  padding: 14px 18px;
  border-radius: 10px;
  background: radial-gradient(ellipse at center, rgba(26, 18, 8, 0.65) 0%, rgba(26, 18, 8, 0.36) 55%, rgba(26, 18, 8, 0) 85%);
  color: var(--ivory);
  font-size: clamp(16px, 1.4vw, 20px);
  font-weight: 300;
  line-height: 1.75;
  text-shadow: 0 1px 2px rgba(26, 18, 8, 0.7);
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 38px;
}

.hero-bee {
  position: absolute;
  z-index: 4;
  width: clamp(26px, 3vw, 44px);
  opacity: 0.85;
  pointer-events: none;
}
.hero-bee--1 { top: 20%; left: -8%; animation: flyAcross 34s linear infinite; }
.hero-bee--2 { top: 34%; left: -8%; width: clamp(18px, 2.2vw, 32px); animation: flyAcross 26s linear 12s infinite; opacity: 0.6; }

@keyframes flyAcross {
  0%   { transform: translate(-6vw, 0) rotate(0deg); }
  12%  { transform: translate(14vw, -26px) rotate(4deg); }
  25%  { transform: translate(30vw, 14px) rotate(-3deg); }
  38%  { transform: translate(46vw, -20px) rotate(5deg); }
  51%  { transform: translate(62vw, 8px) rotate(-4deg); }
  64%  { transform: translate(78vw, -24px) rotate(3deg); }
  77%  { transform: translate(94vw, 6px) rotate(-2deg); }
  100% { transform: translate(115vw, -12px) rotate(2deg); }
}

/* --------------------------------------------------------------------------
   Trust strip
   -------------------------------------------------------------------------- */
.trust-strip {
  position: relative;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.10) 0%, rgba(255, 255, 255, 0.02) 22%, rgba(255, 255, 255, 0.02) 78%, rgba(0, 0, 0, 0.12) 100%),
    var(--green);
}
.trust-strip::before,
.trust-strip::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 10px;
  pointer-events: none;
}
.trust-strip::before {
  top: -10px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='28' height='10' viewBox='0 0 28 10'%3E%3Cpolygon points='0,10 6,0 12,10' fill='%232D4A2D'/%3E%3Cpolygon points='12,10 20,3 28,10' fill='%232D4A2D'/%3E%3C/svg%3E") repeat-x;
  background-size: 28px 10px;
}
.trust-strip::after {
  bottom: -10px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='28' height='10' viewBox='0 0 28 10'%3E%3Cpolygon points='0,0 6,10 12,0' fill='%232D4A2D'/%3E%3Cpolygon points='12,0 20,7 28,0' fill='%232D4A2D'/%3E%3C/svg%3E") repeat-x;
  background-size: 28px 10px;
}
.trust-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  padding-block: 40px;
}
.trust-list li {
  display: flex;
  align-items: center;
  gap: 16px;
  color: var(--cream);
  font-family: var(--font-label);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.trust-list svg {
  box-sizing: border-box;
  width: 44px;
  height: 44px;
  padding: 9px;
  flex: none;
  color: var(--gold);
  border: 1px solid var(--gold);
  border-radius: 50%;
  background: rgba(232, 168, 37, 0.08);
}
.trust-list span { line-height: 1.5; color: rgba(250, 244, 232, 0.94); }

/* --------------------------------------------------------------------------
   Organic dividers
   -------------------------------------------------------------------------- */
.divider {
  line-height: 0;
  font-size: 0;
}
.divider svg {
  display: block;
  width: 100%;
  height: clamp(38px, 5.5vw, 84px);
}

/* --------------------------------------------------------------------------
   Origin
   -------------------------------------------------------------------------- */
.origin {
  background-color: var(--cream);
  background-image:
    linear-gradient(180deg, rgba(250, 244, 232, 1) 0%, rgba(250, 244, 232, 0) 28%, rgba(250, 244, 232, 0) 72%, rgba(250, 244, 232, 1) 100%),
    radial-gradient(ellipse 75% 55% at 18% 12%, rgba(232, 168, 37, 0.14), transparent 70%),
    radial-gradient(ellipse 75% 60% at 84% 92%, rgba(200, 134, 10, 0.10), transparent 70%),
    var(--hex);
  background-size: auto, auto, auto, 35px 40px;
}

.origin-grid {
  display: grid;
  grid-template-columns: 55fr 45fr;
  gap: clamp(40px, 6vw, 104px);
  align-items: stretch;
}
.origin-grid > * { min-width: 0; }

.origin-copy {
  display: flex;
  flex-direction: column;
}
.origin-intro {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.origin-media { position: relative; align-self: center; }
.torn-frame { clip-path: url(#torn-a); }
.torn-frame--b { clip-path: url(#torn-b); }
.why-media .torn-frame { clip-path: url(#torn-b-round); }
.usage-panel .torn-frame { clip-path: url(#torn-a-round); }
.usage-panel .torn-frame--b { clip-path: url(#torn-b-round); }
.torn-frame img { width: 100%; height: auto; aspect-ratio: 5 / 6; object-fit: cover; }

.origin-beekeeper {
  position: absolute;
  right: -7%;
  bottom: -14%;
  width: 46%;
  aspect-ratio: 5 / 6;
  object-fit: cover;
  border: 8px solid var(--cream);
  box-shadow: 0 30px 60px rgba(26, 18, 8, 0.25);
}

.origin-seal {
  position: absolute;
  top: -34px;
  left: -22px;
  width: clamp(96px, 9vw, 132px);
  height: auto;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  object-fit: cover;
  filter: drop-shadow(0 14px 22px rgba(26, 18, 8, 0.22));
  animation: sealSpin 46s linear infinite;
}

@keyframes sealSpin { to { transform: rotate(360deg); } }

.origin-copy h2 { font-size: clamp(26px, 2.4vw, 34px); line-height: 1.08; margin: 10px 0 12px; }
.origin-copy p {
  font-family: var(--font-display);
  color: rgba(26, 18, 8, 0.82);
  font-size: clamp(16px, 1.45vw, 18px);
  line-height: 1.6;
  margin-bottom: 10px;
}

.origin-stats {
  display: flex;
  gap: clamp(20px, 2.5vw, 40px);
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid rgba(45, 74, 45, 0.18);
}
.stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(26px, 2.4vw, 34px);
  font-weight: 700;
  color: var(--amber);
  line-height: 1;
}
.stat span {
  font-family: var(--font-label);
  font-size: 10.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(26, 18, 8, 0.55);
}

/* --------------------------------------------------------------------------
   Process
   -------------------------------------------------------------------------- */
.process {
  background:
    radial-gradient(1200px 500px at 80% -10%, rgba(200, 134, 10, 0.07), transparent 70%),
    var(--dusk);
  color: var(--ivory);
}
.process h2 { color: var(--ivory); }

.process-track-wrap { position: relative; }

.process-line {
  position: absolute;
  top: 52%;
  left: 0;
  right: 0;
  height: 2px;
  background: rgba(200, 134, 10, 0.16);
  pointer-events: none;
}
.process-line-fill {
  display: block;
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, transparent, var(--gold));
  transition: width 0.15s linear;
}

.process-track {
  display: flex;
  gap: 28px;
  overflow-x: auto;
  padding: clamp(48px, 6vw, 84px) var(--gutter) 40px;
  scroll-snap-type: x mandatory;
  cursor: grab;
  scrollbar-width: thin;
  scrollbar-color: rgba(200, 134, 10, 0.4) transparent;
}
.process-track.dragging { cursor: grabbing; scroll-snap-type: none; }
.process-track::-webkit-scrollbar { height: 6px; }
.process-track::-webkit-scrollbar-thumb { background: rgba(200, 134, 10, 0.4); }
.process-track::-webkit-scrollbar-track { background: transparent; }

.process-card {
  position: relative;
  flex: 0 0 clamp(280px, 26vw, 360px);
  scroll-snap-align: start;
  background: linear-gradient(180deg, #21180a 0%, #170f08 100%);
  border: 1px solid rgba(200, 134, 10, 0.22);
  border-left: 3px solid var(--amber);
  padding: 18px 20px 28px;
  transition: transform 0.45s var(--ease), border-color 0.45s var(--ease);
}
.process-card:hover {
  transform: translateY(-8px);
  border-color: rgba(232, 168, 37, 0.55);
}

.process-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  margin-bottom: 20px;
}

.step-num {
  position: absolute;
  top: 2px;
  right: 12px;
  font-family: var(--font-label);
  font-size: 72px;
  font-weight: 600;
  line-height: 1;
  color: rgba(200, 134, 10, 0.16);
  pointer-events: none;
}

.process-card h3 {
  font-size: 27px;
  color: var(--ivory);
  position: relative;
  margin-bottom: 10px;
  padding-right: 52px;
}
.process-card p { color: var(--linen); font-size: 15px; line-height: 1.7; }

/* Nine-step journey — fixed bottom half of the Our Origin column */
.origin-journey {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(45, 74, 45, 0.18);
}
.journey-eyebrow {
  font-family: var(--font-label);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--green);
}
.journey-title {
  font-size: 24px;
  line-height: 1.1;
  margin: 4px 0 12px;
}
.journey-title em { font-style: italic; color: var(--amber); }

.journey-slides { position: relative; }
.journey-slide {
  display: none;
  position: relative;
  grid-template-columns: 86px 1fr;
  gap: 14px;
  align-items: center;
  min-height: 78px;
}
.journey-slide.is-active { display: grid; animation: journeyStepIn 0.4s var(--ease); }

@keyframes journeyStepIn {
  from { opacity: 0; transform: translateX(10px); }
  to   { opacity: 1; transform: translateX(0); }
}

.journey-thumb {
  width: 86px;
  height: 74px;
  object-fit: cover;
  border-radius: 4px;
  border: 1px solid rgba(200, 134, 10, 0.28);
}
.journey-slide-text { position: relative; }
.journey-ghost {
  position: absolute;
  top: -14px;
  right: 0;
  font-family: var(--font-label);
  font-size: 46px;
  font-weight: 600;
  line-height: 1;
  color: rgba(200, 134, 10, 0.14);
  pointer-events: none;
  user-select: none;
}
.journey-slide-text h4 {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 700;
  color: var(--dusk);
  margin-bottom: 3px;
  padding-right: 50px;
}
.journey-slide-text p {
  font-size: 16px;
  line-height: 1.5;
  color: rgba(26, 18, 8, 0.72);
  max-width: 44ch;
}
.journey-controls {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 12px;
}
.journey-arrow {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  flex: none;
  border: 1px solid rgba(200, 134, 10, 0.45);
  border-radius: 50%;
  color: var(--amber);
  transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}
.journey-arrow:hover { background: var(--amber); border-color: var(--amber); color: var(--cream); }
.journey-arrow svg { width: 14px; height: 14px; }
.journey-dots { display: flex; gap: 8px; }
.journey-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(200, 134, 10, 0.25);
  transition: background 0.3s ease, transform 0.3s ease;
}
.journey-dot.is-active { background: var(--amber); transform: scale(1.35); }

/* --------------------------------------------------------------------------
   The Collection — six-in-a-row product showcase (journey section)
   -------------------------------------------------------------------------- */
.products-journey .products-sub {
  color: var(--linen);
  max-width: 52ch;
  margin-top: 14px;
  font-size: 15px;
}
.products-journey .section-head { margin-bottom: 16px; }
.products-track-wrap { position: relative; }
.products-track {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 16px;
  padding: 10px var(--gutter) 44px;
  counter-reset: product;
}

.product-item {
  counter-increment: product;
  display: flex;
  flex-direction: column;
  background: linear-gradient(180deg, #221809, #160f08);
  border: 1px solid rgba(200, 134, 10, 0.22);
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.45s var(--ease), border-color 0.45s var(--ease), box-shadow 0.45s var(--ease);
}
.product-item:hover {
  transform: translateY(-8px);
  border-color: rgba(232, 168, 37, 0.6);
  box-shadow: 0 24px 54px rgba(0, 0, 0, 0.4);
}

/* Each product card is wrapped in <article class="product-entry"> for clearer
   semantics; all layout and visuals stay on the <li>, so nothing changes visually. */
.product-item > .product-entry { display: contents; }

.product-item-media { position: relative; padding: 6px; background: var(--cream); }
.product-item-media::before {
  content: counter(product, decimal-leading-zero);
  position: absolute;
  top: 8px;
  left: 8px;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 27px;
  height: 27px;
  border-radius: 50%;
  background: rgba(26, 18, 8, 0.72);
  color: var(--gold);
  font-family: var(--font-label);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.06em;
  border: 1px solid rgba(232, 168, 37, 0.5);
}
.product-item-media img { width: 100%; aspect-ratio: 1; object-fit: cover; border-radius: 12px; border: 1px solid rgba(200, 134, 10, 0.35); }

.product-item-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 14px 14px 16px;
}
.product-item-body .arabic {
  font-size: 15px;
  color: var(--linen);
  text-align: right;
  direction: rtl;
  margin-bottom: 3px;
}
.product-item-body h3 {
  font-family: var(--font-display);
  font-size: 21px;
  line-height: 1.12;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 4px;
}
.product-item-tagline {
  font-size: 15px;
  line-height: 1.4;
  color: var(--linen);
  margin-bottom: 10px;
}
.product-item-swatch {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--font-label);
  font-size: 8px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 9px;
  border-radius: 999px;
  margin-bottom: 10px;
  align-self: flex-start;
}
.product-item-source {
  font-size: 15px;
  line-height: 1.4;
  color: rgba(245, 237, 216, 0.82);
  border-top: 1px solid rgba(200, 134, 10, 0.18);
  padding-top: 9px;
  margin-bottom: 10px;
}
.product-item-source span {
  display: block;
  font-family: var(--font-label);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(184, 169, 138, 0.6);
  margin-bottom: 2px;
}
.product-item-benefits { margin-bottom: 10px; }
.product-item-benefits li {
  display: flex;
  align-items: baseline;
  gap: 7px;
  font-size: 15px;
  line-height: 1.4;
  color: rgba(245, 237, 216, 0.85);
  padding-block: 2px;
}
.product-item-benefits li::before {
  content: "";
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--gold);
  flex: none;
  transform: translateY(-1px);
}
.product-item-actions {
  display: flex;
  flex-direction: row;
  gap: 8px;
  margin-top: auto;
}
.product-item-actions .btn {
  flex: 1;
  min-width: 0;
  padding: 10px 4px;
  font-size: 9px;
  letter-spacing: 0.1em;
  border-radius: 999px;
}

/* --------------------------------------------------------------------------
   Products
   -------------------------------------------------------------------------- */
.products { background: var(--cream); }

.product-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: clamp(28px, 4.5vw, 72px);
  row-gap: clamp(44px, 6vw, 88px);
}
.product-card:nth-child(even) { margin-top: clamp(32px, 5.5vw, 88px); }

.product-card {
  background: var(--dusk);
  border: 1px solid rgba(200, 134, 10, 0.18);
  transition: border-color 0.6s var(--ease), box-shadow 0.6s var(--ease);
}
.product-card:hover {
  border-color: rgba(232, 168, 37, 0.65);
  box-shadow: 0 34px 70px rgba(26, 18, 8, 0.3);
}

.product-media {
  position: relative;
  padding: clamp(26px, 3.4vw, 44px);
  background: var(--cream);
  overflow: hidden;
}
.product-media::before {
  content: "";
  position: absolute;
  inset: 12%;
  background: radial-gradient(ellipse at center, var(--glow) 0%, transparent 68%);
  opacity: 0.65;
  transition: opacity 0.7s var(--ease), transform 0.9s var(--ease);
}
.product-media::after {
  content: "";
  position: absolute;
  right: -46px;
  bottom: -46px;
  width: 180px;
  height: 180px;
  background-image: radial-gradient(rgba(200, 134, 10, 0.16) 2px, transparent 2.6px);
  background-size: 22px 22px;
  transform: rotate(12deg);
  transition: transform 1.1s var(--ease);
}
.product-card:hover .product-media::before { opacity: 1; transform: scale(1.06); }
.product-card:hover .product-media::after { transform: rotate(12deg) scale(1.12); }

.product-media img {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  transition: transform 0.9s var(--ease);
}
.product-card:hover .product-media img { transform: translateY(-10px) scale(1.02); }

.product-body { padding: 26px 26px 32px; }

.arabic {
  font-family: var(--font-arabic);
  font-size: 16px;
  color: var(--linen);
  text-align: right;
  direction: rtl;
  margin-bottom: 6px;
}
.product-body h3 {
  font-size: 27px;
  color: var(--gold);
  margin-bottom: 6px;
}
.tagline { color: var(--linen); font-size: 14px; margin-bottom: 16px; }

.swatch {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font-label);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--swatch-text, #fff);
  background: var(--swatch);
  border-radius: 999px;
  padding: 6px 14px;
  margin-bottom: 18px;
}
.swatch i { width: 8px; height: 8px; border-radius: 50%; background: var(--swatch); box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.55); }

.meta {
  display: flex;
  flex-direction: column;
  gap: 2px;
  font-size: 13px;
  color: var(--linen);
  margin-bottom: 14px;
  padding-top: 12px;
  border-top: 1px solid rgba(200, 134, 10, 0.18);
}
.meta span {
  font-family: var(--font-label);
  font-size: 9.5px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(184, 169, 138, 0.65);
}
.meta strong { color: var(--ivory); font-weight: 400; }

.benefits { margin-bottom: 4px; }
.benefits li {
  display: flex;
  align-items: baseline;
  gap: 10px;
  color: rgba(245, 237, 216, 0.85);
  font-size: 14px;
  padding-block: 5px;
}
.benefits li::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
  flex: none;
  transform: translateY(-2px);
}

.explore {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
  font-family: var(--font-label);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
  position: relative;
  padding-bottom: 6px;
}
.explore::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0.35);
  transform-origin: left;
  transition: transform 0.45s var(--ease);
}
.explore svg { width: 17px; height: 17px; transition: transform 0.45s var(--ease); }
.explore:hover::after { transform: scaleX(1); }
.explore:hover svg { transform: translateX(5px); }

/* --------------------------------------------------------------------------
   Why Valley Organics
   -------------------------------------------------------------------------- */
.why {
  background-color: var(--cream);
  background-image:
    linear-gradient(180deg, rgba(250, 244, 232, 1) 0%, rgba(250, 244, 232, 0) 28%, rgba(250, 244, 232, 0) 72%, rgba(250, 244, 232, 1) 100%),
    radial-gradient(ellipse 85% 75% at 50% 50%, rgba(250, 244, 232, 0.82) 0%, rgba(250, 244, 232, 0) 68%),
    linear-gradient(135deg, rgba(232, 168, 37, 0.18) 0%, rgba(250, 244, 232, 0.02) 45%, rgba(200, 134, 10, 0.12) 100%),
    var(--hex);
  background-size: auto, auto, auto, 35px 40px;
}

.why-grid {
  display: grid;
  grid-template-columns: 46fr 54fr;
  gap: clamp(44px, 6vw, 104px);
  align-items: stretch;
}
.why-grid > * { min-width: 0; }

.why-media { position: relative; align-self: center; }
.why-media .torn-frame img { aspect-ratio: 4 / 5; }

.why-copy {
  display: flex;
  flex-direction: column;
}
.why-intro {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.why-certs {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  border-top: 1px solid rgba(45, 74, 45, 0.16);
  margin-top: 16px;
  padding-top: 16px;
}
.why-certs .eyebrow::after {
  content: "";
  width: 30px;
  height: 1px;
  background: var(--amber);
  flex: none;
}

.why-copy h2 { font-size: clamp(26px, 2.6vw, 34px); line-height: 1.08; margin: 8px 0 12px; }

.why-list li {
  display: flex;
  gap: 16px;
  padding: 9px 0;
  border-bottom: 1px solid rgba(45, 74, 45, 0.16);
}
.why-num {
  font-family: var(--font-label);
  font-size: 12px;
  font-weight: 600;
  color: var(--amber);
  letter-spacing: 0.1em;
  padding-top: 4px;
  flex: none;
}
.why-list h3 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--dusk);
  margin-bottom: 1px;
}
.why-list p { color: rgba(26, 18, 8, 0.72); font-size: 16px; line-height: 1.45; }
.why-list li:last-child { border-bottom: 0; }

.why-certs-title {
  font-size: 22px;
  line-height: 1.1;
  margin: 6px 0 14px;
}
.why-certs-title em { font-style: italic; color: var(--amber); }
.why-cert-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}
.why-cert-grid li {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 7px;
  width: clamp(110px, 13vw, 150px);
  background: var(--paper);
  border: 1px solid rgba(200, 134, 10, 0.2);
  border-radius: 10px;
  padding: 13px 10px;
  text-align: center;
  transition: transform 0.35s var(--ease), border-color 0.35s var(--ease);
}
.why-cert-grid li:hover { transform: translateY(-4px); border-color: rgba(232, 168, 37, 0.5); }
.why-cert-grid img { width: 100%; aspect-ratio: 4 / 3; object-fit: contain; }
.why-cert-grid span {
  font-family: var(--font-label);
  font-size: 8.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(26, 18, 8, 0.68);
  line-height: 1.3;
}

/* --------------------------------------------------------------------------
   Lifestyle
   -------------------------------------------------------------------------- */
.lifestyle { background: var(--cream); }

.lifestyle-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 3.4vw, 40px);
  align-items: start;
}
.lifestyle-panel--lift { margin-top: clamp(24px, 4vw, 56px); }

.lifestyle-panel { position: relative; padding-bottom: 26px; }
.lifestyle-panel img { aspect-ratio: 4 / 5; width: 100%; object-fit: cover; }
.lifestyle-panel:nth-child(2) img { clip-path: url(#torn-b); }

.lifestyle-panel figcaption {
  position: absolute;
  left: 8%;
  bottom: 0;
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--paper);
  border-top: 2px solid var(--gold);
  padding: 14px 22px;
  box-shadow: 0 18px 40px rgba(26, 18, 8, 0.16);
}
.lifestyle-panel figcaption span {
  font-family: var(--font-label);
  font-size: 11px;
  color: var(--amber);
  letter-spacing: 0.12em;
}
.lifestyle-panel figcaption strong {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 600;
  color: var(--dusk);
  white-space: nowrap;
}

/* --------------------------------------------------------------------------
   Certifications
   -------------------------------------------------------------------------- */
.certifications {
  background: var(--parchment);
  border-top: 1px solid rgba(45, 74, 45, 0.14);
}
.cert-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: clamp(18px, 2.6vw, 34px);
}
.cert-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  background: var(--paper);
  border: 1px solid rgba(200, 134, 10, 0.2);
  padding: 22px 18px;
  text-align: center;
  transition: transform 0.45s var(--ease), box-shadow 0.45s var(--ease);
}
.cert-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 44px rgba(26, 18, 8, 0.14);
}
.cert-item img { width: 100%; aspect-ratio: 4 / 3; object-fit: contain; }
.cert-item span {
  font-family: var(--font-label);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(26, 18, 8, 0.68);
}

/* --------------------------------------------------------------------------
   Testimonials
   -------------------------------------------------------------------------- */
.testimonials { background: var(--parchment); }
.testimonials .section-head { margin-bottom: 20px; }

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(28px, 3.6vw, 52px);
}

.testimonial {
  position: relative;
  padding: 8px clamp(6px, 1.6vw, 26px);
  text-align: center;
}
.testimonial + .testimonial { border-left: 1px solid rgba(200, 134, 10, 0.25); }

.quote-mark {
  display: block;
  font-family: var(--font-display);
  font-size: 84px;
  font-style: italic;
  line-height: 0.6;
  color: var(--amber);
  margin-bottom: 26px;
}

.testimonial p {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 21px;
  line-height: 1.5;
  color: var(--dusk);
}

.stars { display: flex; justify-content: center; gap: 4px; margin: 20px 0 24px; }
.stars svg { width: 15px; height: 15px; fill: var(--gold); }

.testimonial footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  text-align: left;
}
.testimonial footer img {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--amber);
}
.testimonial footer strong {
  display: block;
  font-family: var(--font-label);
  font-size: 12px;
  letter-spacing: 0.14em;
  color: var(--dusk);
}
.testimonial footer span { font-size: 13px; color: rgba(26, 18, 8, 0.55); }

/* --------------------------------------------------------------------------
   Usage (Honey Your Way)
   -------------------------------------------------------------------------- */
.usage {
  background-color: var(--cream);
  background-image:
    linear-gradient(180deg, rgba(250, 244, 232, 1) 0%, rgba(250, 244, 232, 0) 28%, rgba(250, 244, 232, 0) 72%, rgba(250, 244, 232, 1) 100%),
    radial-gradient(ellipse 70% 60% at 50% 45%, rgba(250, 244, 232, 0.85) 0%, rgba(250, 244, 232, 0) 72%),
    linear-gradient(160deg, rgba(232, 168, 37, 0.18) 0%, rgba(250, 239, 210, 0.06) 48%, rgba(200, 134, 10, 0.14) 100%),
    var(--hex);
  background-size: auto, auto, auto, 35px 40px;
}
.usage .section-head { margin-bottom: 20px; }

.tabs-shell {
  display: flex;
  align-items: center;
  gap: 8px;
}
.tabs-shell .tabs { flex: 1 1 auto; min-width: 0; }
.tabs-shell.has-scroll .tabs { justify-content: flex-start; }

.tabs-arrow {
  flex: none;
  display: none;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(200, 134, 10, 0.45);
  background: var(--paper);
  color: var(--amber);
  transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease, opacity 0.3s ease;
}
.tabs-arrow svg { width: 16px; height: 16px; }
.tabs-arrow:hover { background: var(--amber); color: var(--dusk); }
.tabs-shell.has-scroll .tabs-arrow { display: flex; }
.tabs-arrow[disabled] { opacity: 0.35; pointer-events: none; }

.tabs {
  display: flex;
  justify-content: center;
  gap: 4px;
  border-bottom: 1px solid rgba(45, 74, 45, 0.22);
  overflow-x: auto;
  scrollbar-width: none;
}
.tabs::-webkit-scrollbar { display: none; }

.tab {
  flex: none;
  padding: 16px 22px;
  font-family: var(--font-label);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(26, 18, 8, 0.52);
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  transition: color 0.3s ease, border-color 0.3s ease;
}
.tab:hover { color: var(--dusk); }
.tab[aria-selected="true"] { color: var(--amber); border-bottom-color: var(--amber); }

.usage-panels {
  display: grid;
  padding-top: clamp(20px, 2.5vw, 32px);
}
.usage-panels > .usage-panel { grid-area: 1 / 1; }

.usage-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.6fr);
  gap: clamp(36px, 5vw, 80px);
  align-items: center;
  opacity: 0;
  transform: translateY(18px);
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.55s var(--ease), transform 0.55s var(--ease), visibility 0.55s;
}
.usage-panel.in { opacity: 1; transform: translateY(0); visibility: visible; pointer-events: auto; }
.usage-panel[hidden] { display: none; }

.usage-panel .torn-frame { max-width: 300px; margin: 0 auto; }
.usage-panel .torn-frame img { aspect-ratio: 10 / 11; width: 100%; object-fit: cover; }

.usage-copy h3 {
  font-size: clamp(30px, 3.2vw, 42px);
  color: var(--dusk);
  margin-bottom: 18px;
}
.usage-copy p {
  color: rgba(26, 18, 8, 0.72);
  font-size: 17px;
  line-height: 1.8;
  max-width: 46ch;
}
.pairing {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 26px;
  font-family: var(--font-label);
  font-size: 12px !important;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--green) !important;
}
.pairing::before {
  content: "";
  width: 26px;
  height: 1px;
  background: var(--amber);
  flex: none;
}
.pairing strong { font-weight: 600; color: var(--amber); }

/* --------------------------------------------------------------------------
   Crystallization feature
   -------------------------------------------------------------------------- */
.crystallization {
  position: relative;
  min-height: 36vh;
  display: grid;
  place-items: center;
  text-align: center;
  overflow: hidden;
  background: var(--dusk);
}
.crystallization-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.5;
}
.crystallization-veil {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(26, 18, 8, 0.35) 0%, rgba(26, 18, 8, 0.88) 100%);
}

.crystallization-quote { position: relative; z-index: 2; }
.cryst-mark {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(70px, 9vw, 120px);
  font-style: italic;
  line-height: 0.5;
  color: var(--amber);
  margin-bottom: 40px;
}
.crystallization-quote p {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 600;
  font-size: clamp(38px, 5.6vw, 78px);
  line-height: 1.12;
  color: var(--ivory);
}
.crystallization-quote p em { color: var(--gold); }
.crystallization-quote cite {
  display: block;
  margin-top: 30px;
  font-style: normal;
  font-size: 15px;
  font-weight: 300;
  color: var(--linen);
  max-width: 46ch;
  margin-inline: auto;
}

/* --------------------------------------------------------------------------
   FAQ
   -------------------------------------------------------------------------- */
.faq {
  background: var(--dusk);
  color: var(--ivory);
}
.faq h2 { color: var(--ivory); }

.faq-container { max-width: 900px; }

.faq-list { border-top: 1px solid rgba(200, 134, 10, 0.3); }

.faq-item { border-bottom: 1px solid rgba(200, 134, 10, 0.3); }

.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  width: 100%;
  padding: 26px 6px;
  text-align: left;
  font-family: var(--font-display);
  font-size: clamp(20px, 2.2vw, 25px);
  font-weight: 600;
  color: var(--ivory);
  transition: color 0.3s ease;
}
.faq-q:hover { color: var(--gold); }

.faq-icon {
  position: relative;
  width: 26px;
  height: 26px;
  flex: none;
  border: 1px solid rgba(200, 134, 10, 0.65);
  border-radius: 50%;
  transition: transform 0.35s var(--ease), background 0.35s ease;
}
.faq-icon::before,
.faq-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  background: var(--gold);
  transform: translate(-50%, -50%);
  transition: transform 0.35s var(--ease);
}
.faq-icon::before { width: 11px; height: 1.5px; }
.faq-icon::after { width: 1.5px; height: 11px; }

.faq-q[aria-expanded="true"] .faq-icon { transform: rotate(180deg); background: rgba(200, 134, 10, 0.14); }
.faq-q[aria-expanded="true"] .faq-icon::after { transform: translate(-50%, -50%) scaleY(0); }

.faq-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.faq-panel p {
  padding: 0 40px 28px 6px;
  color: var(--linen);
  font-size: 16px;
  line-height: 1.8;
  max-width: 72ch;
}
.faq-panel a { color: var(--gold); }

/* --------------------------------------------------------------------------
   Final CTA
   -------------------------------------------------------------------------- */
.final-cta {
  position: relative;
  min-height: 74vh;
  display: grid;
  place-items: center;
  text-align: center;
  overflow: hidden;
  background: var(--dusk);
}
.final-cta-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 30%;
}
.final-cta-veil {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(26, 18, 8, 0.32) 0%, rgba(26, 18, 8, 0.82) 100%);
}
.final-cta-inner { position: relative; z-index: 2; }
.final-cta-inner .eyebrow {
  justify-content: center;
  color: #fff;
  text-shadow:
    0 0 8px rgba(232, 168, 37, 0.85),
    0 0 20px rgba(232, 168, 37, 0.5),
    0 0 36px rgba(200, 134, 10, 0.4),
    0 1px 2px rgba(26, 18, 8, 0.6);
}
.final-cta-inner h2 {
  color: var(--ivory);
  font-size: clamp(44px, 7vw, 96px);
  margin: 20px 0;
  text-shadow:
    0 0 10px rgba(232, 168, 37, 0.55),
    0 0 26px rgba(232, 168, 37, 0.35),
    0 0 52px rgba(200, 134, 10, 0.3),
    0 2px 24px rgba(26, 18, 8, 0.55),
    0 1px 3px rgba(26, 18, 8, 0.4);
}
.final-cta-inner h2 em { color: var(--ivory); }
.final-cta-inner > p {
  color: #fff;
  font-size: clamp(16px, 1.5vw, 19px);
  font-weight: 300;
  text-shadow:
    0 0 8px rgba(232, 168, 37, 0.8),
    0 0 20px rgba(232, 168, 37, 0.45),
    0 0 36px rgba(200, 134, 10, 0.35),
    0 1px 12px rgba(26, 18, 8, 0.55);
}
.final-cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
  margin-top: 40px;
}

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */
.footer {
  background: var(--green-deep);
  color: rgba(250, 244, 232, 0.85);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2.2fr 1fr 1fr 1fr 1.4fr;
  gap: clamp(32px, 4vw, 64px);
  padding-block: clamp(56px, 7vw, 90px) 54px;
}

.footer-logo {
  height: 56px;
  width: auto;
  margin-bottom: 14px;
}
.footer-tagline {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 19px;
  color: var(--gold);
  margin-bottom: 12px;
}
.footer-brand > p:not(.footer-tagline) {
  font-size: 14px;
  line-height: 1.75;
  max-width: 40ch;
}
.footer-contact { margin-top: 18px; color: rgba(250, 244, 232, 0.6); }
.footer-contact a { color: rgba(250, 244, 232, 0.85); text-decoration: none; }
.footer-contact a:hover { color: var(--gold); }

.footer-col h4 {
  font-family: var(--font-label);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 22px;
}
.footer-col ul li { margin-bottom: 12px; }
.footer-col a {
  font-size: 14px;
  color: rgba(250, 244, 232, 0.78);
  text-decoration: none;
  transition: color 0.25s ease, padding-left 0.25s ease;
}
.footer-col a:hover { color: var(--gold); padding-left: 4px; }

.social-row { display: flex; gap: 12px; margin-bottom: 24px; }
.social-row a {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(250, 244, 232, 0.3);
  border-radius: 50%;
  color: rgba(250, 244, 232, 0.85);
  transition: border-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
}
.social-row a:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-3px); }
.social-row svg { width: 18px; height: 18px; }

.footer-col .footer-wa {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 24px;
  background: linear-gradient(135deg, #2D4A2D 0%, #1B2E1B 100%);
  color: var(--ivory);
  border: 1px solid rgba(232, 168, 37, 0.5);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  box-shadow: 0 8px 22px rgba(22, 36, 21, 0.35);
  transition: background 0.4s var(--ease), color 0.4s var(--ease),
              border-color 0.4s var(--ease), transform 0.4s var(--ease),
              box-shadow 0.4s var(--ease);
}
.footer-col .footer-wa svg {
  width: 17px;
  height: 17px;
  color: var(--gold);
  transition: color 0.4s var(--ease), transform 0.4s var(--ease);
}
.footer-col .footer-wa:hover {
  background: linear-gradient(135deg, var(--gold) 0%, var(--amber) 100%);
  color: var(--dusk);
  border-color: var(--gold);
  padding-left: 24px;
  padding-right: 24px;
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(200, 134, 10, 0.45);
}
.footer-col .footer-wa:hover svg {
  color: var(--dusk);
  transform: scale(1.12) rotate(-6deg);
}
.footer-col .footer-wa::after { display: none; }

.footer-bottom {
  border-top: 1px solid rgba(250, 244, 232, 0.14);
  padding: 24px var(--gutter);
  text-align: center;
}
.footer-bottom p {
  font-family: var(--font-label);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(184, 169, 138, 0.75);
}

/* --------------------------------------------------------------------------
   WhatsApp FAB
   -------------------------------------------------------------------------- */
.whatsapp-fab {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 95;
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: linear-gradient(135deg, #2D4A2D 0%, #1B2E1B 100%);
  color: var(--gold);
  border: 1px solid rgba(232, 168, 37, 0.6);
  box-shadow: 0 12px 30px rgba(22, 36, 21, 0.45);
  transition: transform 0.3s var(--ease), border-color 0.3s var(--ease),
              box-shadow 0.3s var(--ease);
}
.whatsapp-fab svg { width: 30px; height: 30px; }
.whatsapp-fab:hover {
  transform: translateY(-4px) scale(1.05);
  border-color: var(--gold);
  box-shadow: 0 16px 38px rgba(200, 134, 10, 0.5);
}
.whatsapp-fab::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid rgba(232, 168, 37, 0.7);
  animation: fabPulse 4s ease-out infinite;
}
@keyframes fabPulse {
  0%   { transform: scale(1); opacity: 0.8; }
  70%  { transform: scale(1.65); opacity: 0; }
  100% { transform: scale(1.65); opacity: 0; }
}

/* --------------------------------------------------------------------------
   Reveal-on-scroll
   -------------------------------------------------------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}
.reveal.in { opacity: 1; transform: translateY(0); }

.product-card:nth-child(even).reveal,
.lifestyle-panel:nth-child(2).reveal { transition-delay: 0.12s; }
.lifestyle-panel:nth-child(3).reveal { transition-delay: 0.22s; }

/* --------------------------------------------------------------------------
   Responsive · 1200px
   -------------------------------------------------------------------------- */
@media (max-width: 1200px) {
  .honey-thread { display: none; }

  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .nav-actions .btn-outline { display: none; }

  .hero-inner { grid-template-columns: 1fr; align-items: end; }
  .hero-copy { position: relative; z-index: 3; max-width: 62ch; }

  .origin-grid { grid-template-columns: 1fr; }
  .origin-media { max-width: 640px; }
  .why-grid { grid-template-columns: 1fr; }
  .why-media { max-width: 560px; }

  .trust-list { grid-template-columns: repeat(3, 1fr); row-gap: 22px; }

  .cert-grid { grid-template-columns: repeat(3, 1fr); }
  .products-track { grid-template-columns: repeat(3, minmax(0, 1fr)); }

  .footer-grid { grid-template-columns: 1.6fr 1fr 1fr; }
  .footer-follow { grid-column: span 2; }
}

/* --------------------------------------------------------------------------
   Responsive · 768px
   -------------------------------------------------------------------------- */
@media (max-width: 768px) {
  .section { padding-block: clamp(40px, 8vw, 64px); }

  .brand-text em { display: none; }
  .brand-mark { width: 36px; height: 36px; }

  .hero-title { font-size: clamp(40px, 11vw, 54px); }
  .hero-ctas { flex-direction: column; align-items: stretch; max-width: 320px; }
  .hero-ctas .btn { justify-content: center; }

  .trust-list { grid-template-columns: repeat(2, 1fr); gap: 18px; }
  .trust-list li { font-size: 10px; }

  .section-head { flex-direction: column; align-items: flex-start; gap: 14px; }
  .section-head--center { align-items: center; }
  .section-hint { display: none; }

  /* Process becomes a vertical timeline */
  .process-line { display: none; }
  .process-track {
    display: grid;
    grid-template-columns: 1fr;
    overflow: visible;
    gap: 22px;
    padding: 8px 0 0;
    cursor: default;
  }
  .process-card { padding: 16px 16px 22px; }
  .process-card img { aspect-ratio: 16 / 9; }

  .product-grid { grid-template-columns: 1fr; }
  .product-card:nth-child(even) { margin-top: 0; }

  .lifestyle-strip { grid-template-columns: 1fr; }
  .lifestyle-panel--lift { margin-top: 0; }

  .products-track {
    grid-template-columns: 1fr;
    gap: 22px;
    padding: 8px 0 0;
  }

  .cert-grid { grid-template-columns: repeat(2, 1fr); }

  .testimonial-grid { grid-template-columns: 1fr; }
  .testimonial + .testimonial { border-left: 0; border-top: 1px solid rgba(200, 134, 10, 0.25); padding-top: 40px; }

  .tabs { justify-content: flex-start; }
  .usage-panel { grid-template-columns: 1fr; }

  .faq-panel p { padding-right: 16px; }

  .footer-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-follow { grid-column: auto; }

  .whatsapp-fab { width: 52px; height: 52px; right: 16px; bottom: 16px; }
  .whatsapp-fab svg { width: 26px; height: 26px; }
}

/* --------------------------------------------------------------------------
   Reduced motion
   -------------------------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }

  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .hero-title .w { opacity: 1; }
  .reveal { opacity: 1; transform: none; }
  .honey-thread { display: none; }
  .hero-bee { display: none; }
}

/* --------------------------------------------------------------------------
   Product detail modal
   -------------------------------------------------------------------------- */
.product-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.product-modal.open { display: flex; }

.product-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(20, 13, 5, 0.68);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  animation: pmFade 0.3s ease;
}

.product-modal-dialog {
  position: relative;
  width: min(920px, 100%);
  max-height: calc(100vh - 40px);
  background: var(--cream);
  border: 1px solid rgba(200, 134, 10, 0.35);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.5);
  animation: pmPop 0.35s var(--ease);
}
@keyframes pmFade { from { opacity: 0; } to { opacity: 1; } }
@keyframes pmPop { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: translateY(0); } }

.product-modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 5;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(26, 18, 8, 0.75);
  color: var(--ivory);
  transition: background 0.3s ease, color 0.3s ease;
}
.product-modal-close:hover { background: var(--amber); color: var(--dusk); }
.product-modal-close svg { width: 20px; height: 20px; }

.product-modal-scroll { overflow-y: auto; max-height: calc(100vh - 40px); }

.pm-hero {
  display: grid;
  grid-template-columns: minmax(0, 42%) 1fr;
  gap: 28px;
  padding: 30px 34px;
  background-color: var(--paper);
  background-image:
    radial-gradient(ellipse 85% 75% at 50% 50%, rgba(252, 249, 240, 0.82) 0%, rgba(252, 249, 240, 0) 68%),
    linear-gradient(135deg, rgba(232, 168, 37, 0.16) 0%, rgba(250, 244, 232, 0.02) 45%, rgba(200, 134, 10, 0.10) 100%),
    var(--hex);
  background-size: auto, auto, 35px 40px;
  border-bottom: 1px solid rgba(200, 134, 10, 0.18);
}
.pm-media img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 14px;
  border: 1px solid rgba(200, 134, 10, 0.3);
}
.pm-head { display: flex; flex-direction: column; justify-content: center; }
.pm-arabic {
  font-family: var(--font-arabic);
  font-size: 17px;
  color: var(--linen);
  text-align: right;
  direction: rtl;
  margin-bottom: 4px;
}
.pm-eyebrow {
  font-family: var(--font-label);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 8px;
}
.pm-title {
  font-family: var(--font-display);
  font-size: clamp(26px, 3vw, 34px);
  color: var(--dusk);
  line-height: 1.08;
  margin-bottom: 6px;
}
.pm-desc { font-size: 16px; color: rgba(26, 18, 8, 0.68); margin-bottom: 14px; }
.pm-swatch {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-label);
  font-size: 9.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 6px 13px;
  border-radius: 999px;
  align-self: flex-start;
}
.pm-wa {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  align-self: flex-start;
  font-family: var(--font-label);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green);
  border: 1px solid rgba(45, 74, 45, 0.35);
  background: rgba(45, 74, 45, 0.06);
  padding: 10px 18px;
  border-radius: 999px;
  text-decoration: none;
  transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}
.pm-wa svg { width: 16px; height: 16px; flex: none; }
.pm-wa:hover { background: var(--green); color: var(--cream); border-color: var(--green); }

.pm-sections { padding: 26px 34px 34px; }
.pm-section { margin-bottom: 22px; }
.pm-section h4 {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-label);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 10px;
  padding-bottom: 6px;
  border-bottom: 1px solid rgba(200, 134, 10, 0.2);
}
.pm-ico {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  flex: none;
  border-radius: 50%;
  border: 1px solid rgba(200, 134, 10, 0.45);
  background: rgba(232, 168, 37, 0.08);
  color: var(--amber);
}
.pm-ico svg { width: 15px; height: 15px; }
.pm-section p { font-size: 16px; line-height: 1.7; color: rgba(26, 18, 8, 0.78); }
.pm-list { list-style: none; }
.pm-list li {
  position: relative;
  padding-left: 18px;
  font-size: 16px;
  line-height: 1.6;
  color: rgba(26, 18, 8, 0.78);
  margin-bottom: 8px;
}
.pm-list li::before {
  content: "";
  position: absolute;
  left: 2px;
  top: 9px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
}
.pm-list li strong { color: var(--dusk); font-weight: 500; }
.pm-wa-bottom {
  display: flex;
  justify-content: center;
  padding: 0 34px 34px;
}
.pm-wa-bottom-btn {
  padding: 15px 30px;
  border-radius: 999px;
}
.pm-wa-bottom-btn svg { width: 18px; height: 18px; }
.pm-disclaimer {
  font-size: 12px;
  line-height: 1.6;
  color: rgba(26, 18, 8, 0.55);
  border-top: 1px solid rgba(200, 134, 10, 0.2);
  padding-top: 14px;
  margin-top: 4px;
}

@media (max-width: 768px) {
  .product-modal { padding: 10px; }
  .product-modal-dialog { max-height: calc(100vh - 20px); border-radius: 14px; }
  .product-modal-scroll { max-height: calc(100vh - 20px); }
  .pm-hero { grid-template-columns: 1fr; gap: 18px; padding: 22px 20px; }
  .pm-media img { aspect-ratio: 16 / 10; }
  .pm-sections { padding: 20px 20px 26px; }
  .pm-wa-bottom { padding: 0 20px 26px; }
}

/* Colour swatch asterisk + batch disclaimer */
.product-item-swatch::after,
.pm-swatch::after {
  content: "*";
  margin-left: 3px;
  font-size: 0.85em;
  vertical-align: super;
}

.products-disclaimer {
  margin: -24px auto 36px;
  padding: 0 var(--gutter);
  max-width: 780px;
  text-align: center;
  font-size: 11px;
  line-height: 1.6;
  color: rgba(184, 169, 138, 0.85);
}
