/* ============================================================
   Flavour Fussion — brand UI (DOCUMENTATION.md design system)
   Fonts: Itim (headings/titles) + Helvetica Neue (body)
   Colours: ink / paper / chilli / turmeric / coriander / rose
   ============================================================ */

:root {
  /* Brand palette — from DOCUMENTATION.md */
  --ink: #241C13;
  --ink-2: #1a140d;
  --paper: #F8EFDE;
  --paper-deep: #F0E2C8;
  --chilli: #A5391F;
  --chilli-dark: #7E2A17;
  --turmeric: #CC9A2E;
  --turmeric-soft: #E5B655;
  --coriander: #4C5A37;
  --rose: #EAD2C4;
  --rose-deep: #E0C4B4;

  /* Supporting neutrals (derived from brand palette) */
  --ink-muted: #5F5340;
  --ink-soft: #8A7B63;
  --cream-line: rgba(36, 28, 19, 0.10);
  --gold-line: rgba(204, 154, 46, 0.32);
  --surface: #FFFBF5;
  --surface-warm: #FBF3E6;
  --header-bg: rgba(248, 239, 222, 0.92);
  --header-bg-stuck: rgba(248, 239, 222, 0.98);
  --chilli-soft: rgba(165, 57, 31, 0.08);
  --turmeric-glow: rgba(204, 154, 46, 0.16);

  /* Fonts */
  --font-display: Itim, cursive;
  --font-body: "Helvetica Neue", Helvetica, Arial, sans-serif;

  /* Layout — docs: 1180px max */
  --max-width: 1180px;
  --gutter: clamp(1.25rem, 4vw, 2.5rem);
  --radius-s: 10px;
  --radius-m: 14px;
  --radius-l: 20px;
  --radius-pill: 999px;
  --section-gap: clamp(4rem, 7vw, 6.5rem);
  --line-accent: 36px;

  /* Motion + elevation */
  --ease-premium: cubic-bezier(0.22, 0.61, 0.36, 1);
  --ease-out-back: cubic-bezier(0.34, 1.4, 0.64, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
  --shadow-soft: 0 8px 24px rgba(36, 28, 19, 0.06);
  --shadow-lift: 0 18px 40px rgba(36, 28, 19, 0.12);
  --shadow-hero: 0 28px 56px rgba(36, 28, 19, 0.18);
  --shadow-gold: 0 10px 24px rgba(204, 154, 46, 0.28);
}

/* ============================================================
   Reset
   ============================================================ */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16.5px;
  font-weight: 400;
  line-height: 1.7;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  font-weight: 600;
  font-optical-sizing: auto;
  margin: 0;
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: var(--ink);
  text-wrap: balance;
}

/* Display title — stacked uppercase style (main-slider__title) */
.main-slider__title,
.hero-copy h1,
.gift-hero .hero-copy h1,
.section-head h1,
.section-head h2,
.showcase-copy h2,
.cta-banner h2 {
  font-family: var(--font-display);
  font-optical-sizing: auto;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.045em;
  line-height: 0.98;
  text-wrap: balance;
}
.main-slider__title {
  font-size: clamp(2.4rem, 5.5vw, 4.25rem);
  color: var(--ink);
  max-width: 12ch;
}
.main-slider__title .text-mark {
  display: inline;
  text-transform: uppercase;
}
p { margin: 0; }
button { font-family: inherit; }
:focus-visible {
  outline: 2px solid var(--turmeric);
  outline-offset: 3px;
  border-radius: 4px;
}

.wrap {
  max-width: var(--max-width);
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
  position: relative;
}

.eyebrow-hide {
  position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0);
}

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

/* ============================================================
   Shared: Kicker + Section Head
   ============================================================ */
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--chilli);
}
.kicker::before {
  content: "";
  width: var(--line-accent);
  height: 2px;
  background: var(--turmeric);
  flex-shrink: 0;
  border-radius: 1px;
}
.kicker--center {
  display: inline-flex;
}
.section-head--center .kicker::after,
.kicker--dual::after {
  content: "";
  width: var(--line-accent);
  height: 2px;
  background: var(--turmeric);
  flex-shrink: 0;
}
.section--ink .kicker,
.hero--dark .kicker { color: var(--turmeric-soft); }
.section--ink .kicker::before,
.section--ink .kicker::after,
.hero--dark .kicker::before,
.hero--dark .kicker::after { background: var(--turmeric); }

.section-head {
  max-width: 640px;
  margin-bottom: clamp(2rem, 3.5vw, 2.75rem);
}
.section-head .kicker { margin-bottom: 0.9rem; }
.section-head h1,
.section-head h2 {
  color: var(--ink);
  font-size: clamp(1.85rem, 3.6vw, 3.1rem);
  line-height: 0.98;
  letter-spacing: 0.04em;
  font-weight: 700;
  text-transform: uppercase;
  max-width: 16ch;
}
.section-head h1 .word,
.section-head h2 .word,
.hero-copy h1 .word,
.hero-copy h2 .word { display: inline-block; }
.section-head p {
  margin-top: 1.1rem;
  color: var(--ink-muted);
  font-size: 1.02rem;
  line-height: 1.75;
  max-width: 58ch;
  font-weight: 400;
}
.section--ink .section-head h1,
.section--ink .section-head h2 { color: var(--paper); }
.section--ink .section-head p { color: rgba(245, 230, 200, 0.72); }

/* Centered variant (Tastebud default for many sections) */
.section-head--center {
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.section-head--center .main-slider__title,
.section-head--center h2 {
  margin-left: auto;
  margin-right: auto;
  max-width: 14ch;
}
.section-head--wide { max-width: 78ch; }
.section-head--compact { margin-bottom: 2rem; }
.section-head--flush { margin-bottom: 0; }

/* Page-level intro banners */
.page-intro {
  position: relative;
  overflow: hidden;
  padding-top: clamp(3.5rem, 6.5vw, 5rem);
  padding-bottom: clamp(3rem, 5.5vw, 4.25rem);
  background:
    radial-gradient(780px 320px at 92% 8%, rgba(204, 154, 46, 0.18), transparent 58%),
    radial-gradient(560px 260px at 4% 100%, rgba(165, 57, 31, 0.08), transparent 55%),
    linear-gradient(180deg, var(--paper-deep) 0%, #EAD9BC 100%);
  border-bottom: 1px solid rgba(36, 28, 19, 0.08);
}
.page-intro::before {
  content: "";
  position: absolute;
  right: 6%;
  top: 50%;
  width: min(34vw, 280px);
  height: min(34vw, 280px);
  transform: translateY(-50%);
  border-radius: 50%;
  border: 1.5px dashed rgba(204, 154, 46, 0.35);
  pointer-events: none;
  opacity: 0.85;
}
.page-intro::after {
  content: "";
  position: absolute;
  right: 11%;
  top: 50%;
  width: min(18vw, 150px);
  height: min(18vw, 150px);
  transform: translateY(-42%);
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, rgba(255, 251, 245, 0.9), rgba(204, 154, 46, 0.22));
  box-shadow: var(--shadow-soft);
  pointer-events: none;
  opacity: 0.9;
}
.page-intro--contact {
  padding-bottom: clamp(2.4rem, 4.5vw, 3.25rem);
}
.page-intro--contact::after {
  display: none;
}
.page-intro--products::before,
.page-intro--products::after {
  display: none;
}
.page-intro--products .page-intro__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 400px);
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
}
.page-intro-collage {
  position: relative;
  width: 100%;
  min-height: 340px;
  height: min(42vw, 400px);
}
.page-intro-collage__frame {
  position: absolute;
  overflow: hidden;
  background: var(--surface);
  border: 6px solid var(--surface);
  border-radius: var(--radius-m);
  box-shadow: var(--shadow-lift);
}
.page-intro-collage__frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.page-intro-collage__frame--makhana {
  width: 62%;
  aspect-ratio: 1;
  left: 4%;
  top: 12%;
  z-index: 2;
  transform: rotate(-4deg);
}
.page-intro-collage__frame--spice {
  width: 42%;
  aspect-ratio: 1;
  right: 0;
  top: 0;
  z-index: 3;
  transform: rotate(7deg);
}
.page-intro-collage__frame--nuts {
  width: 38%;
  aspect-ratio: 1;
  left: 0;
  bottom: 2%;
  z-index: 3;
  transform: rotate(-8deg);
}
.page-intro-collage__frame--saffron {
  width: 40%;
  aspect-ratio: 1;
  right: 6%;
  bottom: 0;
  z-index: 4;
  transform: rotate(5deg);
}

.section-head--page {
  max-width: 680px;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.section-head--page .kicker {
  margin-bottom: 1rem;
}
.section-head--page h1 {
  font-family: var(--font-display);
  font-optical-sizing: auto;
  font-size: clamp(2.4rem, 4.8vw, 3.75rem);
  max-width: 12ch;
  line-height: 0.98;
  letter-spacing: 0.045em;
  color: var(--ink);
  font-weight: 700;
  text-transform: uppercase;
}
.section-head--page h1::after {
  content: "";
  display: block;
  width: 64px;
  height: 3px;
  margin-top: 1.15rem;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--chilli), var(--turmeric));
}
.section-head--page p {
  margin-top: 1.3rem;
  max-width: 52ch;
  font-family: var(--font-body);
  font-size: 1.06rem;
  line-height: 1.75;
  color: var(--ink-muted);
}

.page-intro-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 0.85rem;
}
.page-intro-nav a {
  display: inline-flex;
  align-items: center;
  padding: 0.62rem 1.25rem;
  border-radius: var(--radius-pill);
  border: 1.5px solid rgba(165, 57, 31, 0.22);
  background: var(--surface);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  box-shadow: 0 6px 16px rgba(36, 28, 19, 0.06);
  transition:
    transform 0.3s var(--ease-premium),
    background 0.3s ease,
    color 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}
.page-intro-nav a:hover {
  background: var(--chilli);
  color: #fff;
  border-color: var(--chilli);
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(165, 57, 31, 0.3);
}

@media (max-width: 860px) {
  .page-intro::before,
  .page-intro::after {
    display: none;
  }
  .page-intro--products .page-intro__grid {
    grid-template-columns: 1fr;
  }
  .page-intro-collage {
    display: none;
  }
}

.contact-form-section { padding-bottom: clamp(3.5rem, 6vw, 5rem); }
.products-category { padding-top: clamp(2.2rem, 4vw, 3rem); }
.products-saffron { padding-bottom: 3.6rem; }

.section-head h1 {
  font-size: clamp(2.1rem, 4vw, 3.2rem);
  max-width: 22ch;
}
.contact-page .section-head h1 { max-width: 18ch; }
.contact-page .section-head--page h1 { max-width: 16ch; }

/* ============================================================
   Announcement strip
   ============================================================ */
.strip {
  background: var(--ink-2);
  color: rgba(248, 239, 222, 0.78);
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-align: center;
  padding: 0.55rem var(--gutter);
  text-transform: uppercase;
  border-bottom: 1px solid var(--gold-line);
  position: relative;
  z-index: 40;
}
.strip strong {
  color: var(--turmeric-soft);
  font-weight: 700;
  letter-spacing: 0.12em;
  margin-left: 0.35rem;
  text-transform: uppercase;
}

/* ============================================================
   Header / Nav
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--header-bg);
  backdrop-filter: saturate(150%) blur(16px);
  -webkit-backdrop-filter: saturate(150%) blur(16px);
  border-bottom: 1px solid transparent;
  transition:
    background 0.4s var(--ease-premium),
    box-shadow 0.4s var(--ease-premium),
    border-color 0.4s ease,
    transform 0.6s var(--ease-premium);
}
.site-header::before {
  display: none;
}
.nav {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 0.55rem;
  padding-bottom: 0.55rem;
  gap: 1rem;
  z-index: 1;
}
.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  flex-shrink: 0;
  line-height: 1;
  text-decoration: none;
  color: inherit;
}
.logo img {
  width: 52px;
  height: 52px;
  display: block;
  object-fit: cover;
  object-position: center;
  border: 0;
  box-shadow: none;
  border-radius: 50%;
  background: transparent;
  flex-shrink: 0;
}
.logo-text {
  display: flex;
  align-items: center;
  min-width: 0;
  line-height: 1;
  /* Optical nudge: Itim metrics sit slightly low next to the mark */
  transform: translateY(-0.08em);
}
.logo-text strong {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.05rem, 1.4vw, 1.22rem);
  letter-spacing: -0.025em;
  line-height: 1;
  color: var(--ink);
  white-space: nowrap;
}
.logo-text strong span,
.logo-text .logo-accent {
  color: var(--chilli);
  font-style: italic;
  font-weight: 600;
}
.footer-brand .logo img {
  width: 64px;
  height: 64px;
}
.footer-brand .logo-text strong {
  color: var(--paper);
}
.footer-brand .logo-text strong span,
.footer-brand .logo-text .logo-accent {
  color: var(--turmeric-soft);
}
.site-header.is-stuck .logo img {
  width: 44px;
  height: 44px;
}
.site-header.is-stuck .logo-text strong {
  font-size: 1.05rem;
}

@media (max-width: 480px) {
  .logo img { width: 44px; height: 44px; }
  .logo-text strong { font-size: 0.98rem; }
}

.nav-links {
  display: flex;
  gap: 1.85rem;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.nav-mobile-cta { display: none; }
.nav-links a {
  position: relative;
  padding: 0.35rem 0;
  color: var(--ink-muted);
  transition: color 0.25s var(--ease-premium);
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; right: 100%;
  bottom: -2px;
  height: 2px;
  background: var(--chilli);
  border-radius: 1px;
  transition: right 0.35s var(--ease-premium);
}
.nav-links a:hover { color: var(--ink); }
.nav-links a:hover::after,
.nav-links a[aria-current="page"]::after { right: 0; }
.nav-links a[aria-current="page"] { color: var(--chilli); }

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  background: var(--chilli);
  color: #fff;
  padding: 0.62rem 0.7rem 0.62rem 1.3rem;
  border-radius: var(--radius-pill);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition:
    background 0.3s var(--ease-premium),
    box-shadow 0.3s var(--ease-premium),
    transform 0.3s var(--ease-premium);
  box-shadow: 0 8px 18px rgba(165, 57, 31, 0.26);
}
.nav-cta::after {
  content: "\2197";
  display: grid;
  place-items: center;
  width: 1.9rem;
  height: 1.9rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  font-size: 0.85rem;
  line-height: 1;
  transition: transform 0.3s var(--ease-premium), background 0.3s ease;
}
.nav-cta:hover { background: var(--chilli-dark); box-shadow: 0 14px 30px rgba(165, 57, 31, 0.45); }
.nav-cta:hover::after { transform: rotate(45deg); background: rgba(255, 255, 255, 0.32); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.4rem;
}
.nav-toggle span {
  width: 26px;
  height: 2px;
  background: var(--chilli);
  display: block;
  transition: transform 0.3s var(--ease-premium), opacity 0.2s ease;
  border-radius: 2px;
}

.site-header.is-stuck {
  background: var(--header-bg-stuck);
  box-shadow: 0 8px 24px rgba(36, 28, 19, 0.08);
  border-bottom-color: var(--cream-line);
}
.site-header.is-stuck .nav { padding-top: 0.5rem; padding-bottom: 0.5rem; }

/* ============================================================
   Buttons
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.82rem 0.9rem 0.82rem 1.55rem;
  border-radius: var(--radius-pill);
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 1.5px solid transparent;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition:
    background 0.3s var(--ease-premium),
    color 0.3s var(--ease-premium),
    border-color 0.3s var(--ease-premium),
    box-shadow 0.3s var(--ease-premium),
    transform 0.3s var(--ease-premium);
}
.btn::after {
  content: "\2197";
  display: grid;
  place-items: center;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  color: inherit;
  font-family: var(--font-body);
  font-size: 0.9rem;
  line-height: 1;
  font-weight: 400;
  transition: transform 0.3s var(--ease-premium), background 0.3s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn:hover::after { transform: rotate(45deg); }
.btn:active { transform: translateY(-1px); }
.btn:disabled {
  opacity: 0.65;
  pointer-events: none;
  transform: none;
}

.btn-primary {
  background: var(--chilli);
  color: #fff;
  box-shadow: 0 10px 24px rgba(165, 57, 31, 0.32);
}
.btn-primary:hover { background: var(--chilli-dark); box-shadow: 0 16px 32px rgba(165, 57, 31, 0.44); }
.btn-primary::after { background: rgba(255, 255, 255, 0.22); }
.btn-primary:hover::after { background: rgba(255, 255, 255, 0.32); }

.btn-outline {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.btn-outline::after { background: rgba(36, 28, 19, 0.12); color: var(--ink); }
.btn-outline:hover {
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
  box-shadow: var(--shadow-lift);
}
.btn-outline:hover::after { background: rgba(255, 255, 255, 0.2); color: var(--paper); }

.btn-outline.on-dark {
  color: var(--paper);
  border-color: var(--turmeric);
}
.btn-outline.on-dark::after { background: rgba(204, 154, 46, 0.28); }
.btn-outline.on-dark:hover {
  background: var(--turmeric);
  color: var(--ink);
  border-color: var(--turmeric);
}

/* Text-only variant helpers */
.btn.btn-ghost { padding: 0.75rem 1.4rem; }
.btn.btn-ghost::after { display: none; }

/* ============================================================
   Section scaffolding
   ============================================================ */
.section { padding: var(--section-gap) 0; position: relative; overflow: hidden; }
.section--tight { padding: clamp(3rem, 5vw, 4rem) 0; }
.section.page-intro--products {
  padding-top: clamp(1.5rem, 3vw, 2.25rem);
  padding-bottom: var(--section-gap);
}
.products-page #makhana {
  padding-top: clamp(1.1rem, 2.4vw, 1.75rem);
}
.section--panel {
  background: var(--paper-deep);
  background-image:
    radial-gradient(900px 320px at 100% 0%, rgba(204, 154, 46, 0.06), transparent 65%);
}
.section--rose {
  background: var(--rose);
  background-image:
    radial-gradient(800px 320px at 0% 0%, rgba(255, 255, 255, 0.35), transparent 65%);
}
.section--ink {
  background: var(--ink);
  color: var(--paper);
  background-image:
    radial-gradient(520px 360px at 12% 18%, rgba(204, 154, 46, 0.08), transparent 65%),
    radial-gradient(560px 400px at 88% 82%, rgba(165, 57, 31, 0.09), transparent 65%);
}
.section--ink .reason-item h4,
.section--ink .reason-item p { color: var(--paper); }

/* Ambient decorative shapes on section--ink and hero */
.section--ink::before {
  content: "";
  position: absolute;
  top: -180px; right: -160px;
  width: 520px; height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(204, 154, 46, 0.14), transparent 70%);
  pointer-events: none;
}
.section--ink::after {
  content: "";
  position: absolute;
  bottom: -140px; left: -120px;
  width: 420px; height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(165, 57, 31, 0.14), transparent 70%);
  pointer-events: none;
}
.section--ink > .wrap { position: relative; z-index: 1; }

/* Decorative dot pattern helper (for panel sections) */
.section--panel .wrap > .section-head::after {
  content: "";
  display: none;
}

/* ============================================================
   Hero (Home) — paper / spice-market brand look (DOCUMENTATION.md)
   ============================================================ */
/* ============================================================
   Hero slider — full-bleed carousel (home)
   Matches reference: overlay copy, side arrows, bottom feature row
   ============================================================ */
.hero.hero-slider {
  position: relative;
  --hero-accent: #ff8a00;
  --hero-cta: #82b422;
  --hero-h: clamp(600px, 82vh, 800px);
  --hero-features-h: 8.5rem;
  background: #1a120c;
  color: #fff;
  padding: 0;
  overflow: hidden;
  isolation: isolate;
  /* Height = slide area + features row (features are in normal flow below) */
  min-height: calc(var(--hero-h) + var(--hero-features-h));
}
.hero.hero-slider::before,
.hero.hero-slider::after { display: none; }

/* Full-bleed slides behind everything (including features strip) */
.hero-slider__viewport {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-slider__track {
  position: absolute;
  inset: 0;
}
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  z-index: 0;
  transition: opacity 0.85s var(--ease-premium), visibility 0.85s;
}
.hero-slide.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  z-index: 1;
}
.hero-slide.is-leaving {
  opacity: 0;
  visibility: visible;
  z-index: 0;
}

.hero-slide__media {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
}
.hero-slide__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(100deg, rgba(22, 14, 28, 0.72) 0%, rgba(22, 14, 28, 0.48) 48%, rgba(22, 14, 28, 0.28) 100%),
    linear-gradient(0deg, rgba(16, 10, 12, 0.55) 0%, transparent 42%);
  z-index: 1;
}
.hero-slide__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.06);
}
.hero-slide.is-active .hero-slide__media img {
  animation: hero-kenburns 14s ease-out forwards;
}

/* Copy lives only in the upper slide band — never overlaps features */
.hero-slide__content {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: flex-start;
  box-sizing: border-box;
  height: var(--hero-h);
  min-height: var(--hero-h);
  max-height: var(--hero-h);
  padding-top: clamp(5rem, 10vh, 7rem);
  padding-bottom: 3.5rem;
}

.hero-slider .hero-copy {
  position: relative;
  z-index: 1;
  max-width: 620px;
  color: #fff;
  width: 100%;
}

.hero-slider .hero-kicker,
.hero-slider .hero-copy .kicker {
  color: var(--hero-accent);
  margin-bottom: 1rem;
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  font-weight: 700;
}
.hero-slider .hero-kicker::before,
.hero-slider .hero-copy .kicker::before {
  display: none;
}

.hero-slider .hero-copy h1,
.hero-slider .hero-copy .main-slider__title {
  font-family: var(--font-display);
  font-optical-sizing: auto;
  font-size: clamp(2.4rem, 5.4vw, 4rem);
  color: #fff;
  max-width: 14ch;
  line-height: 0.98;
  letter-spacing: 0.04em;
  font-weight: 700;
  text-transform: uppercase;
}
.hero-slider .text-accent {
  color: var(--hero-accent);
}

.hero-slider .hero-copy p.lede {
  margin-top: 1.15rem;
  font-family: var(--font-body);
  font-size: clamp(0.95rem, 1.1vw, 1.05rem);
  color: rgba(255, 255, 255, 0.9);
  max-width: 44ch;
  line-height: 1.7;
  font-weight: 400;
}

.hero-slider .hero-actions {
  margin-top: 2rem;
  margin-bottom: 0;
  display: flex;
  gap: 0.9rem;
  flex-wrap: wrap;
}

.btn.btn-hero {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.92rem 2.15rem;
  border-radius: var(--radius-pill);
  background: transparent;
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: 1.5px solid #fff;
  box-shadow: none;
  transition: transform 0.35s var(--ease-premium), background 0.35s ease, box-shadow 0.35s ease;
}
.btn.btn-hero:hover {
  background: transparent;
  transform: scale(1.05);
  box-shadow: none;
}
.btn.btn-hero::after,
.btn.btn-hero::before { display: none !important; }

/* Side arrows — centered on the slide band only */
.hero-nav {
  position: absolute;
  top: calc(var(--hero-h) / 2);
  transform: translateY(-50%);
  z-index: 6;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.65);
  background: transparent;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0.75;
  transition: opacity 0.3s ease, background 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}
.hero-nav:hover {
  opacity: 1;
  background: rgba(255, 255, 255, 0.12);
  border-color: #fff;
  transform: translateY(-50%) scale(1.06);
}
.hero-nav:focus-visible {
  outline: 2px solid var(--hero-accent);
  outline-offset: 3px;
}
.hero-nav--prev { left: clamp(0.75rem, 2.5vw, 1.75rem); }
.hero-nav--next { right: clamp(0.75rem, 2.5vw, 1.75rem); }

/* Features sit BELOW the slide band (in flow), still over the hero image */
.hero-features {
  position: relative;
  z-index: 5;
  margin-top: var(--hero-h);
  min-height: var(--hero-features-h);
  background: transparent;
  border-top: 1px solid rgba(255, 255, 255, 0.28);
  display: flex;
  align-items: center;
}
.hero-features__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.75rem, 4.5vw, 3.5rem);
  column-gap: clamp(2rem, 5vw, 4rem);
  width: 100%;
  padding-top: 1.75rem;
  padding-bottom: 1.75rem;
  align-items: center;
}
.hero-feature {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  color: #fff;
  min-width: 0;
}
.hero-feature__icon {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.85);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ff8a00;
  background: transparent;
  line-height: 0;
  margin-top: 0;
}
.hero-feature__icon svg {
  display: block;
  flex-shrink: 0;
  color: #ff8a00;
  stroke: #ff8a00;
}
.hero-feature strong {
  display: block;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 1.25;
  color: #fff;
}
.hero-feature > div > span {
  display: block;
  margin-top: 0.2rem;
  font-size: 0.78rem;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.78);
  max-width: 28ch;
}

/* Slide content entrance */
.js .hero-slide .hero-copy > * {
  opacity: 0;
  transform: translateX(-28px);
}
.js .hero-slide.is-active .hero-copy > * {
  animation: hero-slide-in 0.75s var(--ease-premium) both;
}
.js .hero-slide.is-active .hero-copy .kicker { animation-delay: 0.12s; }
.js .hero-slide.is-active .hero-copy h1 { animation-delay: 0.26s; }
.js .hero-slide.is-active .hero-copy p.lede { animation-delay: 0.4s; }
.js .hero-slide.is-active .hero-copy .hero-actions { animation-delay: 0.54s; }

@keyframes hero-slide-in {
  from { opacity: 0; transform: translateX(-28px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes hero-kenburns {
  from { transform: scale(1.06); }
  to { transform: scale(1.16); }
}

@media (max-width: 860px) {
  .hero.hero-slider {
    --hero-h: min(70vh, 560px);
    --hero-features-h: 7.25rem;
  }
  .hero-slide__content {
    padding-top: clamp(3.25rem, 8vh, 4.75rem);
    padding-bottom: 2.25rem;
    align-items: flex-start;
  }
  .hero-slider .hero-copy {
    padding-inline: 2.75rem;
    max-width: 100%;
  }
  .hero-slider .hero-copy h1,
  .hero-slider .hero-copy .main-slider__title {
    max-width: 14ch;
    font-size: clamp(1.85rem, 7.5vw, 2.6rem);
  }
  .hero-slider .hero-copy .lede {
    font-size: 0.95rem;
    max-width: 36ch;
  }
  .hero-slider .hero-actions {
    margin-top: 1.5rem;
  }
  .hero-nav {
    width: 42px;
    height: 42px;
  }
  .hero-features__grid {
    gap: 1rem;
    column-gap: 1.25rem;
    padding-top: 1.35rem;
    padding-bottom: 1.35rem;
  }
  .hero-feature {
    gap: 0.75rem;
  }
  .hero-feature > div > span {
    display: none;
  }
  .hero-feature strong {
    font-size: 0.8rem;
    line-height: 1.3;
  }
  .hero-feature__icon {
    width: 40px;
    height: 40px;
  }
}

@media (max-width: 520px) {
  .hero.hero-slider {
    --hero-h: min(62vh, 460px);
    --hero-features-h: 11.5rem;
  }
  .hero-slide__content {
    padding-top: 3rem;
    padding-bottom: 1.5rem;
  }
  .hero-slider .hero-copy {
    padding-inline: 0.25rem;
  }
  .hero-slider .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }
  .hero-nav {
    display: none;
  }
  .hero-features__grid {
    grid-template-columns: 1fr;
    gap: 0.55rem;
    padding-top: 0.85rem;
    padding-bottom: 0.85rem;
  }
  .hero-feature {
    justify-content: flex-start;
  }
  .hero-feature > div > span {
    display: block;
    font-size: 0.72rem;
    opacity: 0.85;
  }
  .hero-feature strong { font-size: 0.85rem; }
}

/* ============================================================
   Gifting hero (rose theme) + starting section (about-flavour layout)
   ============================================================ */
.gifting-page .gift-start.section {
  padding-top: clamp(2rem, 4vw, 3.25rem);
  padding-bottom: clamp(2.75rem, 5.5vw, 4.25rem);
}
.gifting-page .gift-start.about-flavour {
  background: var(--rose);
  background-image: none;
}
.gifting-page .gift-start .about-flavour__grid {
  align-items: center;
  gap: clamp(2rem, 4.5vw, 3.75rem);
}
.gifting-page .gift-start .about-flavour__visual {
  min-height: 0;
  height: auto;
  padding: 0;
}
.gifting-page .gift-start .about-flavour__main {
  width: 100%;
  max-width: 480px;
  margin-inline: auto;
  aspect-ratio: 1 / 1;
  height: auto;
  max-height: none;
  min-height: 0;
  background: var(--surface);
  border: none;
  box-shadow: var(--shadow-hero);
}
.gifting-page .gift-start .about-flavour__main--slider .gift-start-slider {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  min-height: 0;
}
.gifting-page .gift-start .about-flavour__main--slider .spec-slider__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  z-index: 0;
  transition: opacity 0.55s ease, visibility 0.55s ease;
  pointer-events: none;
}
.gifting-page .gift-start .about-flavour__main--slider .spec-slider__slide.is-active {
  opacity: 1;
  visibility: visible;
  z-index: 1;
  pointer-events: auto;
}
.gifting-page .gift-start .about-flavour__main--slider .spec-slider__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  padding: 0;
  display: block;
  transform: none !important;
}
.gifting-page .gift-start .about-flavour__main--slider .gift-start-slider__dots {
  position: absolute;
  left: 50%;
  bottom: 0.85rem;
  transform: translateX(-50%);
  z-index: 5;
  display: flex;
  gap: 0.4rem;
  padding: 0.35rem 0.55rem;
  border-radius: 999px;
  background: rgba(36, 28, 19, 0.45);
  backdrop-filter: blur(6px);
}
.gifting-page .gift-start .about-flavour__main--slider .gift-start-slider__dots .spec-slider__dot {
  width: 8px;
  height: 8px;
  background: rgba(255, 251, 245, 0.45);
  border: none;
}
.gifting-page .gift-start .about-flavour__main--slider .gift-start-slider__dots .spec-slider__dot.is-active {
  background: #fff;
}

/* Shared gift slider arrows */
.gift-slider__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 6;
  width: 36px;
  height: 36px;
  border: none;
  border-radius: 50%;
  display: grid;
  place-items: center;
  cursor: pointer;
  color: var(--ink);
  background: rgba(255, 251, 245, 0.92);
  box-shadow: 0 6px 18px rgba(36, 28, 19, 0.18);
  transition: background 0.2s ease, transform 0.2s ease;
}
.gift-slider__nav:hover {
  background: #fff;
  transform: translateY(-50%) scale(1.05);
}
.gift-slider__nav--prev { left: 0.65rem; }
.gift-slider__nav--next { right: 0.65rem; }
.about-flavour__main--slider .gift-slider__nav--next { right: 0.65rem; }
.gift-media--slider .gift-slider__nav--prev { left: 0.55rem; }
.gift-media--slider .gift-slider__nav--next { right: 0.55rem; }
.gifting-page .gift-start .about-flavour__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.gifting-page .gift-start .about-flavour__copy .main-slider__title {
  font-size: clamp(1.7rem, 3.2vw, 2.45rem);
  max-width: 14ch;
  line-height: 1.05;
}
.gifting-page .gift-start .about-flavour__lede {
  margin: 0.9rem 0 1.25rem;
  font-size: 0.98rem;
  line-height: 1.7;
  max-width: 38ch;
}
.gifting-page .gift-start .occasion-row {
  margin: 0 0 1.35rem;
}

@media (max-width: 960px) {
  .gifting-page .gift-start .about-flavour__visual {
    min-height: 0;
    height: auto;
    max-height: none;
  }
  .gifting-page .gift-start .about-flavour__main {
    min-height: 0;
    height: auto;
    aspect-ratio: 1 / 1;
    max-height: none;
    width: min(100%, 400px);
  }
}

.section--rose .gift-hero {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
  padding: clamp(1.25rem, 2.5vw, 2rem) 0 0;
  position: relative;
}
.gift-hero .hero-copy {
  color: var(--ink);
}
.gift-hero .hero-copy .kicker { color: var(--chilli); }
.gift-hero .hero-copy .kicker::before { background: var(--turmeric); }
.gift-hero .hero-copy h1 {
  color: var(--ink);
  font-size: clamp(1.85rem, 3.6vw, 2.75rem);
  max-width: 16ch;
  font-optical-sizing: auto;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  line-height: 1.05;
}
.gift-hero .hero-copy p.lede {
  color: var(--ink-muted);
  margin-top: 1rem;
  font-size: 0.98rem;
  max-width: 44ch;
  line-height: 1.65;
}
.gift-hero > img,
.gift-hero .gift-media {
  margin: 0;
  justify-self: center;
}
.gift-hero > img,
.gift-hero .gift-media img {
  display: block;
  width: 100%;
  max-width: 340px;
  max-height: 340px;
  margin-inline: auto;
  object-fit: contain;
  border-radius: var(--radius-l);
  border: none;
  box-shadow: var(--shadow-soft);
  background: transparent;
}

@media (max-width: 860px) {
  .section--rose .gift-hero { grid-template-columns: 1fr; }
  .gift-hero .gift-media,
  .gift-hero > img { order: -1; }
  .gift-hero .gift-media img,
  .gift-hero > img {
    max-width: 260px;
    max-height: 260px;
  }
}

/* ============================================================
   Marquee — chilli accent ticker
   ============================================================ */
.marquee {
  background: var(--chilli);
  color: var(--paper);
  overflow: hidden;
  padding: 1.05rem 0;
  position: relative;
  border-top: none;
  border-bottom: none;
}
.marquee::before, .marquee::after {
  content: "";
  position: absolute;
  top: 0; bottom: 0;
  width: 90px;
  z-index: 2;
  pointer-events: none;
}
.marquee::before { left: 0; background: linear-gradient(90deg, var(--chilli), transparent); }
.marquee::after  { right: 0; background: linear-gradient(-90deg, var(--chilli), transparent); }

.marquee-track {
  display: flex;
  width: max-content;
}
.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 2rem;
  padding-right: 2rem;
  white-space: nowrap;
  font-family: var(--font-display);
  font-optical-sizing: auto;
  font-size: clamp(1.05rem, 1.8vw, 1.4rem);
  font-weight: 500;
  letter-spacing: -0.01em;
  color: rgba(248, 239, 222, 0.96);
}
.marquee-item::after {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--turmeric);
  box-shadow: none;
}

/* ============================================================
   About / Trust section
   ============================================================ */
#about {
  position: relative;
  overflow: visible;
  padding-top: clamp(1.75rem, 3.5vw, 2.5rem);
  padding-bottom: 0;
}
#about > .wrap {
  position: relative;
  z-index: 1;
}
.about-deco {
  position: absolute;
  top: 42%;
  transform: translateY(-50%);
  z-index: 0;
  pointer-events: none;
  width: clamp(140px, 18vw, 240px);
  opacity: 0.55;
  mix-blend-mode: multiply;
}
.about-deco img {
  width: 100%;
  height: auto;
  display: block;
}
.about-deco--left {
  left: clamp(8px, 2vw, 36px);
}
.about-deco--right {
  right: clamp(8px, 2vw, 36px);
  top: 48%;
  width: clamp(130px, 16vw, 220px);
}
.about-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: clamp(1.5rem, 3.5vw, 2.5rem);
  align-items: center;
}
.about-collage {
  position: relative;
  min-height: 420px;
  padding: 0.5rem 0.5rem 2.75rem 1.5rem;
}
.about-collage__main {
  width: 88%;
  margin-left: auto;
  border-radius: 6px;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: var(--surface);
  border: 10px solid var(--surface);
  box-shadow: var(--shadow-soft);
  position: relative;
  z-index: 2;
}
.about-collage__main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease-premium);
}
.about-collage:hover .about-collage__main img {
  transform: scale(1.04);
}
.experience-badge {
  position: absolute;
  left: 0;
  bottom: 4%;
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  width: min(42%, 168px);
  aspect-ratio: 1;
  padding: 1rem 0.85rem;
  background: var(--chilli);
  color: #fff;
  border-radius: 18px;
  box-shadow: 0 18px 36px rgba(165, 57, 31, 0.35);
  text-align: center;
}
.experience-badge__icon {
  color: #fff;
  margin-bottom: 0.15rem;
}
.experience-badge strong {
  font-family: var(--font-body);
  font-optical-sizing: auto;
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.15;
  color: #fff;
  letter-spacing: 0.01em;
}
.experience-badge > span {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-transform: none;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.25;
}

.about-copy {
  position: relative;
  z-index: 1;
}
.about-copy .section-head--flush {
  margin-bottom: 0;
}
.about-copy .main-slider__title {
  max-width: none;
  font-size: clamp(2rem, 4.2vw, 3.15rem);
  line-height: 1.08;
}
.about-copy .lede-muted {
  color: var(--ink-muted);
  max-width: 70ch;
  font-family: var(--font-body);
  font-size: 0.98rem;
  margin-top: 1.15rem;
  line-height: 1.8;
}
.about-checks {
  margin-top: 1.65rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem 1.35rem;
}
.about-checks li {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  color: var(--ink-muted);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  line-height: 1.45;
}
.about-checks li::before {
  content: "";
  width: 22px;
  height: 22px;
  margin-top: 0.1rem;
  border-radius: 50%;
  background: var(--chilli);
  flex-shrink: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='3.2' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 11px 11px;
}
.about-copy__cta {
  margin-top: 1.75rem;
}

.stats-banner {
  position: relative;
  z-index: 1;
  margin-top: clamp(2.75rem, 5.5vw, 4rem);
  margin-left: 0;
  margin-right: 0;
  width: 100%;
  padding: clamp(3.25rem, 6.5vw, 5rem) var(--gutter);
  background-color: #1a120c;
  background-image:
    linear-gradient(180deg, rgba(26, 18, 12, 0.68), rgba(36, 28, 19, 0.74)),
    url("../assets/hero/slide-2.jpg");
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
}
.stats-strip {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(1rem, 3vw, 2rem);
  max-width: var(--max-width);
  margin: 0 auto;
  align-items: start;
}
.stat-item {
  text-align: center;
  padding: 0.35rem 0.5rem;
  background: transparent;
  border: none;
  border-radius: 0;
  box-shadow: none;
  position: relative;
  overflow: visible;
  color: #fff;
  transition: transform 0.35s var(--ease-premium);
}
.stat-item::before { display: none; }
.stat-item:hover {
  transform: translateY(-3px);
  box-shadow: none;
  border-color: transparent;
}
.stat-item strong {
  display: block;
  font-family: var(--font-body);
  font-optical-sizing: auto;
  font-size: clamp(2.35rem, 4.5vw, 3.35rem);
  font-weight: 700;
  color: #fff;
  line-height: 1;
  letter-spacing: -0.02em;
}
.stat-item > span {
  display: block;
  margin-top: 0.65rem;
  font-family: var(--font-body);
  font-size: clamp(0.82rem, 1.4vw, 0.95rem);
  color: rgba(255, 255, 255, 0.92);
  letter-spacing: 0.01em;
  text-transform: none;
  font-weight: 400;
  line-height: 1.35;
}
.stat-item strong span[data-count] {
  display: inline-block;
  font: inherit;
  color: inherit;
  letter-spacing: inherit;
  text-transform: none;
  margin: 0;
}
.experience-badge strong span[data-count],
.hero-tag strong span[data-count] {
  display: inline-block;
  font: inherit;
  color: inherit;
  letter-spacing: inherit;
  margin: 0;
}

@media (max-width: 900px) {
  .about-deco { display: none; }
  .about-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .about-collage {
    min-height: 360px;
    padding: 0.5rem 0 2.5rem;
    max-width: 480px;
    margin: 0 auto;
    order: -1;
  }
  .about-collage__main { width: 92%; }
  .about-checks { grid-template-columns: 1fr; }
  .stats-strip { grid-template-columns: repeat(2, 1fr); gap: 1.75rem 1rem; }
  .stats-banner {
    padding-top: 2.75rem;
    padding-bottom: 2.75rem;
    background-attachment: scroll;
  }
}
@media (max-width: 500px) {
  .about-collage { min-height: 300px; }
  .experience-badge {
    width: 132px;
    border-radius: 14px;
    padding: 0.75rem 0.6rem;
  }
  .experience-badge__icon { width: 32px; height: 32px; }
  .experience-badge strong { font-size: 0.9rem; }
  .experience-badge > span { font-size: 0.65rem; }
  .stats-strip { gap: 1.5rem 0.75rem; }
  .stat-item strong { font-size: 2rem; }
  .stat-item > span { font-size: 0.78rem; }
}

/* ============================================================
   Product collection — brochure carousel
   ============================================================ */
.products-collection {
  background: var(--paper);
  background-image:
    radial-gradient(700px 280px at 8% 20%, rgba(204, 154, 46, 0.08), transparent 65%),
    radial-gradient(640px 260px at 92% 80%, rgba(165, 57, 31, 0.06), transparent 60%);
  overflow: hidden;
}
.products-collection__deco {
  position: absolute;
  z-index: 0;
  pointer-events: none;
  opacity: 0.5;
  width: clamp(110px, 14vw, 190px);
  mix-blend-mode: multiply;
}
.products-collection__deco img {
  width: 100%;
  height: auto;
  display: block;
  filter: none;
}
.products-collection__deco--a {
  left: clamp(8px, 2vw, 36px);
  top: 18%;
  transform: none;
}
.products-collection__deco--b {
  right: clamp(8px, 2vw, 36px);
  top: 14%;
  width: clamp(100px, 12vw, 170px);
  transform: none;
}
.products-collection__deco--c {
  left: 8%;
  bottom: 10%;
  width: clamp(100px, 12vw, 160px);
  opacity: 0.42;
  transform: rotate(-8deg);
}
.products-collection__deco--d {
  right: 7%;
  bottom: 14%;
  width: clamp(90px, 11vw, 150px);
  opacity: 0.4;
  transform: rotate(12deg);
}
.products-collection > .wrap {
  position: relative;
  z-index: 1;
}
.products-collection .section-head--center .main-slider__title {
  max-width: 16ch;
  text-transform: none;
  letter-spacing: -0.02em;
  line-height: 1.08;
}
.products-collection .section-head p {
  max-width: 48ch;
  margin-left: auto;
  margin-right: auto;
}

.product-carousel {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: clamp(0.75rem, 2vw, 1.25rem);
  margin-top: 0.5rem;
}
.product-carousel__viewport {
  overflow: hidden;
  min-width: 0;
}
.product-track {
  display: flex;
  gap: 1.35rem;
  transition: transform 0.55s var(--ease-premium);
  will-change: transform;
}
.product-card {
  flex: 0 0 calc((100% - 2.7rem) / 3);
  min-width: 0;
  background: #fff;
  border: none;
  border-radius: 22px;
  padding: 1.65rem 1.25rem 1.4rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.35rem;
  box-shadow: 0 14px 36px rgba(36, 28, 19, 0.08);
  position: relative;
  overflow: visible;
  transition: transform 0.4s var(--ease-premium), box-shadow 0.4s ease;
}
.product-card::before,
.product-card::after { display: none; }
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 44px rgba(36, 28, 19, 0.14);
  border-color: transparent;
}
.product-card h3 {
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: 0;
  line-height: 1.25;
  margin: 0;
}
.product-meta {
  color: var(--ink-soft);
  font-size: 0.78rem;
  line-height: 1.4;
  margin: 0 0 0.85rem;
  font-weight: 500;
}
.product-card__media {
  width: min(78%, 168px);
  aspect-ratio: 1;
  border-radius: 50%;
  overflow: hidden;
  margin-top: auto;
  background: #1a120c;
  box-shadow: 0 10px 24px rgba(36, 28, 19, 0.16);
}
.product-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-premium);
}
.product-card:hover .product-card__media img {
  transform: scale(1.06);
}

.product-nav {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: none;
  background: var(--ink);
  color: #fff;
  display: grid;
  place-items: center;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(36, 28, 19, 0.22);
  transition: background 0.3s ease, transform 0.3s var(--ease-premium), opacity 0.3s ease;
}
.product-nav:hover {
  background: var(--chilli);
  transform: scale(1.06);
}
.product-nav:disabled {
  opacity: 0.35;
  cursor: default;
  transform: none;
}
.product-nav svg { display: block; }

@media (max-width: 980px) {
  .product-card { flex-basis: calc((100% - 1.35rem) / 2); }
}
@media (max-width: 900px) {
  .products-collection__deco { display: none; }
}
@media (max-width: 620px) {
  .product-carousel {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .product-nav {
    position: static;
    width: 42px;
    height: 42px;
  }
  .product-carousel {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
  .product-carousel__viewport {
    order: -1;
    width: 100%;
  }
  .product-card { flex-basis: 82%; }
  .product-card h3 { font-size: 0.98rem; }
}

/* ============================================================
   Reason list — dark section, numbered cards
   ============================================================ */
.reason-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.4rem 1.6rem;
}
.reason-item {
  display: flex;
  gap: 1rem;
  padding: 1.35rem 1.3rem;
  border-radius: var(--radius-m);
  border: 1px solid rgba(248, 239, 222, 0.1);
  background: rgba(248, 239, 222, 0.04);
  transition: transform 0.4s var(--ease-premium), background 0.4s ease, border-color 0.4s ease;
}
.section:not(.section--ink) .reason-item {
  border: 1px solid var(--cream-line);
  background: var(--surface);
  box-shadow: var(--shadow-soft);
}
.reason-item:hover {
  transform: translateY(-4px);
  background: rgba(204, 154, 46, 0.06);
  border-color: var(--gold-line);
}
.section:not(.section--ink) .reason-item:hover {
  background: var(--surface);
  box-shadow: var(--shadow-lift);
}

.reason-mark {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--ink);
  flex-shrink: 0;
  width: 2.6rem;
  height: 2.6rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--turmeric);
  transition: transform 0.4s var(--ease-out-back);
  box-shadow: 0 6px 14px rgba(204, 154, 46, 0.35);
}
.section--ink .reason-mark {
  background: transparent;
  color: var(--turmeric-soft);
  border: 2px solid var(--turmeric);
  box-shadow: none;
}
.reason-item:hover .reason-mark { transform: scale(1.12) rotate(-4deg); }
.section--ink .reason-item:hover .reason-mark {
  background: var(--turmeric);
  color: var(--ink);
}

.reason-item h4 {
  font-family: var(--font-display);
  font-optical-sizing: auto;
  font-size: 1.05rem;
  margin-bottom: 0.35rem;
  letter-spacing: -0.015em;
}
.reason-item p {
  font-family: var(--font-body);
  font-size: 0.92rem;
  opacity: 0.82;
  line-height: 1.6;
}

@media (max-width: 720px) { .reason-list { grid-template-columns: 1fr; } }

/* ============================================================
   About Flavour Fussion (storytelling, above Healthy Range)
   ============================================================ */
.text-mark {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 700;
  color: var(--chilli);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.about-flavour {
  background: var(--paper);
  background-image:
    radial-gradient(720px 400px at 0% 18%, rgba(204, 154, 46, 0.14), transparent 58%),
    radial-gradient(640px 360px at 100% 85%, rgba(165, 57, 31, 0.07), transparent 62%);
  overflow: hidden;
}
.about-flavour__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2.5rem, 6vw, 4.5rem);
  align-items: center;
}
.about-flavour__visual {
  position: relative;
  min-height: 480px;
  padding: 1.5rem 2rem 3rem 0.5rem;
}
.about-flavour__shape {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}
.about-flavour__shape--a {
  width: 220px;
  height: 220px;
  top: -6%;
  right: 0;
  border: 1.5px dashed rgba(204, 154, 46, 0.45);
}
.about-flavour__shape--b {
  width: 160px;
  height: 160px;
  bottom: 4%;
  left: -4%;
  background: radial-gradient(circle, rgba(234, 210, 196, 0.85), transparent 70%);
}
.about-flavour__shape--c {
  width: 88px;
  height: 88px;
  top: 38%;
  left: 4%;
  background: rgba(76, 90, 55, 0.14);
  border: 1px solid rgba(76, 90, 55, 0.18);
}
.about-flavour__frame {
  position: absolute;
  right: 6%;
  top: 10%;
  width: 72%;
  aspect-ratio: 4 / 5;
  border: 1px solid rgba(204, 154, 46, 0.35);
  border-radius: calc(var(--radius-l) + 8px);
  z-index: 1;
  pointer-events: none;
  transform: rotate(3deg);
}
.about-flavour__main {
  position: relative;
  z-index: 2;
  width: 86%;
  margin-left: auto;
  border-radius: var(--radius-l);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  border: 4px solid var(--surface);
  box-shadow: var(--shadow-hero);
}
.about-flavour__main img,
.about-flavour__secondary img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease-premium);
}
.about-flavour__main:hover img,
.about-flavour__secondary:hover img {
  transform: scale(1.05);
}
.about-flavour__secondary {
  position: absolute;
  left: 0;
  bottom: 8%;
  z-index: 3;
  width: min(48%, 230px);
  aspect-ratio: 1;
  border-radius: 50%;
  overflow: hidden;
  border: 6px solid var(--surface);
  box-shadow: var(--shadow-lift);
}
.about-flavour__badge {
  position: absolute;
  right: 2%;
  bottom: 0;
  z-index: 4;
  width: 132px;
  height: 132px;
  border-radius: 50%;
  display: grid;
  place-content: center;
  text-align: center;
  gap: 0.15rem;
  background: var(--ink);
  color: var(--paper);
  border: 3px solid var(--turmeric);
  box-shadow: var(--shadow-gold);
  padding: 0.85rem;
}
.about-flavour__badge strong {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.2rem;
  line-height: 1;
  color: var(--turmeric-soft);
  font-weight: 600;
  text-transform: none;
  letter-spacing: -0.01em;
}
.about-flavour__badge span {
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(248, 239, 222, 0.78);
  max-width: 9ch;
  margin: 0 auto;
  line-height: 1.25;
}

.about-flavour__copy .kicker {
  margin-bottom: 1rem;
}
.about-flavour__copy .main-slider__title {
  max-width: 10ch;
  margin-bottom: 0;
}
.about-flavour__lede {
  margin: 1.25rem 0 1.85rem;
  color: var(--ink-muted);
  font-size: 1.02rem;
  line-height: 1.75;
  max-width: 48ch;
}
.about-flavour__features {
  display: grid;
  gap: 1rem;
  margin-bottom: 1.85rem;
}
.about-feature {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.15rem 1.2rem;
  background: var(--surface);
  border: 1px solid var(--cream-line);
  border-radius: var(--radius-m);
  box-shadow: var(--shadow-soft);
  transition:
    transform 0.4s var(--ease-premium),
    box-shadow 0.4s ease,
    border-color 0.4s ease;
}
.about-feature:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lift);
  border-color: var(--gold-line);
}
.about-feature__icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 1.35rem;
  background: linear-gradient(140deg, rgba(204, 154, 46, 0.22), rgba(165, 57, 31, 0.12));
  border: 1px dashed var(--gold-line);
  flex-shrink: 0;
}
.about-feature h3 {
  margin: 0 0 0.3rem;
  font-size: 1.05rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--ink);
}
.about-feature p {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.6;
  color: var(--ink-muted);
  text-transform: none;
  letter-spacing: 0.01em;
  font-weight: 400;
  font-family: var(--font-body);
}

.js .about-flavour__shape--a { animation: ff-float-x 9s ease-in-out infinite; }
.js .about-flavour__shape--b { animation: ff-float-y 7s ease-in-out infinite; }
.js .about-flavour__shape--c { animation: ff-float-y 8.5s ease-in-out infinite reverse; }
.js .about-flavour__secondary { animation: ff-float-y 6.5s ease-in-out infinite; }
.js .about-flavour__badge { animation: ff-float-x 8s ease-in-out infinite reverse; }
.js .about-flavour__frame { animation: ff-float-x 11s ease-in-out infinite; }

@keyframes ff-float-x {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(10px); }
}
@keyframes ff-float-y {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@media (max-width: 980px) {
  .about-flavour__grid {
    grid-template-columns: 1fr;
    gap: 2.25rem;
  }
  .about-flavour__visual {
    order: -1;
    max-width: 520px;
    margin: 0 auto;
    width: 100%;
    min-height: 400px;
  }
  .about-flavour__copy .main-slider__title { max-width: 12ch; }
}
@media (max-width: 620px) {
  .about-flavour__visual { padding: 0.5rem 0.5rem 2.75rem; min-height: 320px; }
  .about-flavour__main { width: 90%; }
  .about-flavour__secondary { width: min(44%, 160px); bottom: 6%; }
  .about-flavour__badge { width: 108px; height: 108px; right: 0; }
  .about-flavour__badge strong { font-size: 1rem; }
  .about-flavour__shape--a { width: 130px; height: 130px; }
  .about-flavour__shape--b { width: 96px; height: 96px; }
  .about-flavour__shape--c,
  .about-flavour__frame { display: none; }
}

/* ============================================================
   Healthy Range showcase (homepage)
   ============================================================ */
.healthy-range {
  background: #faf8f5;
}
.healthy-range .section-head {
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 1.75rem;
}
.healthy-range .section-head .kicker {
  color: #e86a1a;
}
.healthy-range .section-head .kicker::before,
.healthy-range .section-head .kicker::after {
  background: #e86a1a;
}
.healthy-range .section-head .main-slider__title {
  max-width: none;
  font-size: clamp(2rem, 4vw, 2.75rem);
}

.range-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0;
  margin: 0 auto 2.5rem;
  padding: 0.55rem 1.35rem;
  list-style: none;
  background: #fff;
  border-radius: var(--radius-pill);
  box-shadow: 0 8px 28px rgba(36, 28, 19, 0.08);
  width: fit-content;
  max-width: 100%;
}
.range-filters li {
  display: flex;
  align-items: center;
}
.range-filters li + li::before {
  content: "";
  width: 10px;
  height: 1.5px;
  margin: 0 0.85rem;
  background: rgba(36, 28, 19, 0.22);
  flex-shrink: 0;
}
.range-filter {
  appearance: none;
  border: 0;
  background: transparent;
  padding: 0.45rem 0.15rem;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink);
  cursor: pointer;
  transition: color 0.25s ease;
}
.range-filter:hover { color: #e86a1a; }
.range-filter.is-active { color: #e86a1a; }

.healthy-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(1.15rem, 2.4vw, 1.75rem);
}
.healthy-card {
  background: #fff;
  border-radius: 18px;
  padding: 0.85rem;
  display: flex;
  flex-direction: column;
  box-shadow: 0 10px 28px rgba(36, 28, 19, 0.06);
  transition:
    transform 0.4s var(--ease-premium),
    box-shadow 0.4s ease,
    opacity 0.35s ease;
}
.healthy-card.is-hidden {
  display: none;
}
.healthy-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 36px rgba(36, 28, 19, 0.1);
}
.healthy-card__media {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 14px;
  background: #f1ede6;
}
.healthy-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s var(--ease-premium);
}
.healthy-card:hover .healthy-card__media img {
  transform: scale(1.04);
}
.healthy-card__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 1rem;
  background: rgba(232, 106, 26, 0.42);
  opacity: 0;
  transition: opacity 0.35s ease;
  z-index: 2;
}
.healthy-card:hover .healthy-card__overlay {
  opacity: 1;
}
.healthy-card__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.55rem 1.35rem;
  border-radius: var(--radius-pill);
  border: 1.5px solid #fff;
  background: transparent;
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transform: translateY(8px);
  transition: transform 0.35s var(--ease-premium), background 0.25s ease, color 0.25s ease;
}
.healthy-card:hover .healthy-card__cta {
  transform: translateY(0);
}
.healthy-card__cta:hover {
  background: #fff;
  color: #e86a1a;
}
.healthy-card__body {
  padding: 1rem 0.35rem 0.55rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.healthy-card h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 1.4vw, 1.2rem);
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.3;
  text-transform: none;
  color: var(--ink);
}
.healthy-card__meta {
  margin: 0;
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 600;
  color: #e86a1a;
}

@media (max-width: 1024px) {
  .healthy-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 620px) {
  .healthy-grid { grid-template-columns: 1fr; max-width: 360px; margin-inline: auto; }
  .range-filters {
    padding: 0.5rem 1rem;
    margin-bottom: 1.75rem;
  }
  .range-filters li + li::before { margin: 0 0.55rem; width: 8px; }
  .range-filter { font-size: 0.7rem; }
}

/* ============================================================
   Showcase blocks (home + gifting)
   ============================================================ */
.showcase {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(2rem, 4vw, 3.25rem);
  align-items: center;
}
.showcase > img {
  border-radius: var(--radius-l);
  border: 4px solid var(--surface);
  box-shadow: var(--shadow-hero);
  width: 100%;
  max-width: 420px;
  max-height: 420px;
  margin-inline: auto;
  object-fit: contain;
  transition: transform 0.6s var(--ease-premium), box-shadow 0.6s ease;
}
.showcase > img:hover {
  transform: scale(1.02);
}
.showcase-copy {
  position: relative;
  padding-left: 1.75rem;
}
.showcase-copy::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5rem;
  bottom: 0.5rem;
  width: 3px;
  background: linear-gradient(180deg, var(--turmeric), var(--chilli));
  border-radius: 2px;
}
.showcase-copy .kicker { margin-bottom: 1rem; }
.showcase-copy h2,
.showcase-copy h2.main-slider__title {
  font-family: var(--font-display);
  font-optical-sizing: auto;
  font-size: clamp(1.65rem, 2.8vw, 2.35rem);
  margin-bottom: 1.1rem;
  color: var(--ink);
  line-height: 1.05;
  letter-spacing: 0.04em;
  font-weight: 700;
  text-transform: uppercase;
  max-width: 14ch;
}
.showcase-copy p {
  font-family: var(--font-body);
  color: var(--ink-muted);
  margin-bottom: 1rem;
  line-height: 1.75;
  font-size: 0.95rem;
}
.showcase-copy .btn { margin-top: 0.5rem; }

@media (max-width: 860px) {
  .showcase { grid-template-columns: 1fr; }
  .showcase > img {
    order: -1;
    max-width: 300px;
    max-height: 300px;
  }
}

/* ============================================================
   Gifting page — compact images, options, occasions
   ============================================================ */
.gifting-page .gift-section {
  padding: clamp(2.5rem, 4.5vw, 3.75rem) 0;
}
.gifting-page .gift-section--cta {
  padding-top: clamp(2rem, 3.5vw, 3rem);
  padding-bottom: clamp(2rem, 3.5vw, 3rem);
}
.gifting-page .section-head {
  margin-bottom: 1.75rem;
}
.gifting-page .section-head--center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.gifting-page .section-head--center .main-slider__title {
  max-width: 18ch;
  margin-inline: auto;
  font-size: clamp(1.65rem, 3vw, 2.35rem);
}

.showcase--gift {
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(1.5rem, 3.5vw, 2.75rem);
}
.showcase--gift-reverse {
  grid-template-columns: 1.15fr 0.85fr;
}
.showcase--gift .gift-media {
  margin: 0;
  justify-self: center;
  width: 100%;
  max-width: 340px;
}
.showcase--gift .gift-media img {
  display: block;
  width: 100%;
  max-width: 300px;
  max-height: 300px;
  margin-inline: auto;
  object-fit: contain;
  border: none;
  border-radius: var(--radius-m);
  box-shadow: var(--shadow-soft);
  background: transparent;
}

/* Gift box image slider — matched square frame */
.gift-media--slider {
  position: relative;
  display: block;
}
.gift-media--slider .gift-slider {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  min-height: 0;
  border-radius: var(--radius-m);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  background: var(--surface-warm);
}
.gift-media--slider .spec-slider__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  z-index: 0;
  transition: opacity 0.55s ease, visibility 0.55s ease;
  pointer-events: none;
}
.gift-media--slider .spec-slider__slide.is-active {
  opacity: 1;
  visibility: visible;
  z-index: 1;
  pointer-events: auto;
}
.gift-media--slider .spec-slider__slide img {
  width: 100%;
  height: 100%;
  max-width: none;
  max-height: none;
  margin: 0;
  object-fit: cover;
  object-position: center;
  border-radius: 0;
  box-shadow: none;
  background: transparent;
  padding: 0;
}
.gift-media--slider .gift-slider__dots {
  position: absolute;
  left: 50%;
  bottom: 0.75rem;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  gap: 0.4rem;
  padding: 0.35rem 0.55rem;
  border-radius: 999px;
  background: rgba(36, 28, 19, 0.45);
  backdrop-filter: blur(6px);
}
.gift-media--slider .gift-slider__dots .spec-slider__dot {
  width: 8px;
  height: 8px;
  background: rgba(255, 251, 245, 0.45);
  border: none;
}
.gift-media--slider .gift-slider__dots .spec-slider__dot.is-active {
  background: #fff;
}
.gift-jar-pair {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}
.gift-media--jar img {
  max-width: 150px !important;
  max-height: 220px !important;
}

.gift-options {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.gift-option {
  background: var(--surface);
  border-radius: var(--radius-m);
  padding: 1.25rem 1.2rem;
  border: 1px solid var(--cream-line);
  box-shadow: var(--shadow-soft);
  position: relative;
  overflow: hidden;
  transition: transform 0.35s var(--ease-premium), box-shadow 0.35s ease, border-color 0.35s ease;
}
.gift-option::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--chilli), var(--turmeric));
}
.gift-option::after { display: none; }
.gift-option h4 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  margin: 0 0 0.4rem;
  color: var(--ink);
  letter-spacing: 0;
  text-transform: none;
  font-weight: 600;
  padding-right: 0;
}
.gift-option p {
  font-size: 0.88rem;
  color: var(--ink-muted);
  line-height: 1.55;
  margin: 0;
}
.gift-option:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lift);
  border-color: var(--gold-line);
}
.gift-option:hover h4 { color: var(--chilli); }

.occasion-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin: 1.15rem 0 1.35rem;
}
.occasion-pill {
  display: inline-flex;
  align-items: center;
  padding: 0.35rem 0.75rem;
  border-radius: var(--radius-pill);
  background: rgba(255, 251, 245, 0.85);
  border: 1px solid rgba(165, 57, 31, 0.18);
  color: var(--ink);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: border-color 0.25s ease, color 0.25s ease;
}
.occasion-pill:hover {
  border-color: var(--chilli);
  color: var(--chilli);
  background: rgba(255, 251, 245, 0.95);
  transform: none;
  box-shadow: none;
}

@media (max-width: 960px) {
  .gift-options { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 860px) {
  .showcase--gift,
  .showcase--gift-reverse { grid-template-columns: 1fr; }
  .showcase--gift .gift-media { order: -1; max-width: 300px; }
  .showcase--gift .gift-media img {
    max-width: 240px;
    max-height: 240px;
  }
  .gift-media--jar img {
    max-width: 120px !important;
    max-height: 180px !important;
  }
}
@media (max-width: 620px) {
  .gift-options { grid-template-columns: 1fr; }
}

/* ============================================================
   Products page — spec cards (premium detailed spec-sheet)
   ============================================================ */
.spec-card {
  background: var(--surface);
  border: 1px solid var(--cream-line);
  border-radius: var(--radius-l);
  overflow: hidden;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  box-shadow: var(--shadow-soft);
  transition:
    transform 0.5s var(--ease-premium),
    box-shadow 0.5s ease,
    border-color 0.5s ease;
  position: relative;
  isolation: isolate;
}
.spec-card + .spec-card { margin-top: 2rem; }
.spec-card::before {
  content: "";
  position: absolute;
  top: 0; right: 0;
  width: 160px; height: 160px;
  background: radial-gradient(circle at top right, rgba(204, 154, 46, 0.16), transparent 65%);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.6s ease;
  z-index: 3;
}
.spec-card::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--chilli), var(--turmeric));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.6s var(--ease-premium);
  z-index: 3;
}
.spec-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hero);
  border-color: var(--gold-line);
}
.spec-card:hover::before { opacity: 1; }
.spec-card:hover::after { transform: scaleX(1); }

/* Media (image) side */
.spec-media {
  background: var(--paper-deep);
  overflow: hidden;
  min-height: 300px;
  position: relative;
  border-right: 1px solid var(--cream-line);
}
.spec-media::before {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: calc(var(--radius-l) - 6px);
  pointer-events: none;
  z-index: 2;
  opacity: 0.7;
  transition: inset 0.5s var(--ease-premium), opacity 0.4s ease;
}
.spec-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 45%, rgba(36, 28, 19, 0.42));
  pointer-events: none;
  z-index: 1;
  opacity: 0.55;
  transition: opacity 0.5s ease;
}
.spec-media img {
  width: 100%;
  height: 100%;
  min-height: 300px;
  object-fit: cover;
  transition: transform 0.9s var(--ease-premium);
}
.spec-card:hover .spec-media img { transform: scale(1.08); }
.spec-card:hover .spec-media::after { opacity: 0.8; }
.spec-card:hover .spec-media::before { inset: 20px; opacity: 0.9; }

/* Simple fade slider inside product media (saffron) */
.spec-media--slider {
  display: block;
}
.spec-slider {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 300px;
}
.spec-slider__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.55s ease, visibility 0.55s ease;
  z-index: 0;
}
.spec-slider__slide.is-active {
  opacity: 1;
  visibility: visible;
  z-index: 1;
}
.spec-media--slider .spec-slider__slide img {
  width: 100%;
  height: 100%;
  min-height: 300px;
  object-fit: cover;
  display: block;
}
.spec-card:hover .spec-media--slider .spec-slider__slide img {
  transform: none;
}
.spec-slider__dots {
  position: absolute;
  left: 50%;
  bottom: 26px;
  transform: translateX(-50%);
  z-index: 4;
  display: flex;
  gap: 8px;
  align-items: center;
  padding: 0.35rem 0.55rem;
  border-radius: 999px;
  background: rgba(36, 28, 19, 0.4);
  backdrop-filter: blur(6px);
}
.spec-slider__dot {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.45);
  cursor: pointer;
  transition: background 0.25s ease, transform 0.25s ease;
}
.spec-slider__dot.is-active {
  background: #fff;
  transform: scale(1.15);
}
.spec-slider__dot:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 2px;
}

/* Body (details) side */
.spec-body {
  padding: clamp(2rem, 3vw, 2.8rem);
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 2;
}

.spec-body .origin {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: var(--chilli);
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 1.1rem;
  padding: 0.45rem 1rem 0.45rem 0.9rem;
  background: rgba(165, 57, 31, 0.07);
  border: 1px solid rgba(165, 57, 31, 0.18);
  border-radius: var(--radius-pill);
  align-self: flex-start;
  transition: background 0.35s ease, border-color 0.35s ease, transform 0.35s var(--ease-premium);
}
.spec-body .origin::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--chilli);
  box-shadow: 0 0 0 3px rgba(165, 57, 31, 0.16);
}
.spec-card:hover .spec-body .origin {
  background: rgba(165, 57, 31, 0.12);
  border-color: rgba(165, 57, 31, 0.32);
}

.spec-body h3 {
  font-size: clamp(1.5rem, 2.2vw, 1.85rem);
  color: var(--ink);
  margin-bottom: 0.55rem;
  letter-spacing: -0.02em;
  line-height: 1.15;
  position: relative;
}
.spec-body h3::after {
  content: "";
  display: block;
  width: 42px;
  height: 3px;
  margin-top: 0.85rem;
  background: linear-gradient(90deg, var(--chilli), var(--turmeric));
  border-radius: 2px;
  transition: width 0.5s var(--ease-premium);
}
.spec-card:hover .spec-body h3::after { width: 72px; }

.spec-body p.desc {
  color: var(--ink-muted);
  margin-top: 1rem;
  margin-bottom: 1.6rem;
  line-height: 1.75;
  font-size: 0.98rem;
  padding-bottom: 1.4rem;
  border-bottom: 1px dashed var(--cream-line);
  max-width: 52ch;
}

/* Spec list — stacked label/value rows with dot indicators */
.spec-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.4rem 1.75rem;
  margin: 0;
}
.spec-list div {
  position: relative;
  padding: 0.85rem 0 0.85rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  border-bottom: 1px dashed var(--cream-line);
  transition: padding-left 0.35s var(--ease-premium);
}
.spec-list > div:last-child,
.spec-list > div:nth-last-child(2):nth-child(odd) { border-bottom: none; }
.spec-list div::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1.15rem;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--turmeric);
  box-shadow: 0 0 0 3px rgba(204, 154, 46, 0.16);
  transition:
    transform 0.35s var(--ease-out-back),
    background 0.3s ease,
    box-shadow 0.3s ease;
}
.spec-list div::after {
  content: "";
  position: absolute;
  left: 1.5rem; right: 0;
  bottom: -1px;
  height: 1px;
  background: linear-gradient(90deg, var(--turmeric), transparent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.45s var(--ease-premium);
}
.spec-list div:hover {
  padding-left: 1.75rem;
}
.spec-list div:hover::before {
  transform: scale(1.35);
  background: var(--chilli);
  box-shadow: 0 0 0 4px rgba(165, 57, 31, 0.18);
}
.spec-list div:hover::after { transform: scaleX(1); }

.spec-list dt {
  color: var(--ink-muted);
  font-family: var(--font-body);
  font-size: 0.66rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 700;
  margin: 0;
  line-height: 1;
}
.spec-list dd {
  margin: 0;
  font-weight: 600;
  text-align: left;
  color: var(--ink);
  font-size: 0.95rem;
  line-height: 1.35;
  letter-spacing: -0.005em;
}

@media (max-width: 780px) {
  .spec-card { grid-template-columns: 1fr; }
  .spec-media { min-height: 240px; border-right: none; border-bottom: 1px solid var(--cream-line); }
  .spec-media img { min-height: 240px; }
  .spec-slider,
  .spec-media--slider .spec-slider__slide img { min-height: 240px; }
  .spec-list { grid-template-columns: 1fr; gap: 0; }
  .spec-list > div:nth-last-child(2):nth-child(odd) { border-bottom: 1px dashed var(--cream-line); }
}

/* ============================================================
   CTA banner — bold, layered
   ============================================================ */
.cta-banner {
  background:
    radial-gradient(circle at 90% 15%, rgba(204, 154, 46, 0.35), transparent 55%),
    radial-gradient(circle at 5% 80%, rgba(165, 57, 31, 0.28), transparent 55%),
    linear-gradient(135deg, #2b2015 0%, #241C13 100%);
  color: var(--paper);
  border-radius: var(--radius-l);
  padding: clamp(2.6rem, 5vw, 4rem) clamp(2rem, 4.5vw, 3.6rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
  box-shadow: var(--shadow-hero);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(204, 154, 46, 0.2);
}
.cta-banner::before {
  content: "";
  position: absolute;
  top: -60%; right: -10%;
  width: 480px; height: 480px;
  border: 2px dashed rgba(204, 154, 46, 0.16);
  border-radius: 50%;
  pointer-events: none;
}
.cta-banner::after {
  content: "";
  position: absolute;
  bottom: -50%; left: -8%;
  width: 360px; height: 360px;
  border: 1px dashed rgba(245, 230, 200, 0.1);
  border-radius: 50%;
  pointer-events: none;
}
.cta-banner > * { position: relative; z-index: 1; }
.cta-banner h2 {
  font-size: clamp(1.7rem, 3.2vw, 2.6rem);
  max-width: 14ch;
  color: var(--paper);
  line-height: 0.98;
  letter-spacing: 0.045em;
  font-optical-sizing: auto;
  font-weight: 700;
  text-transform: uppercase;
}
.cta-banner .btn-outline,
.cta-banner .btn-outline.on-dark {
  background: var(--turmeric);
  border-color: var(--turmeric);
  color: var(--ink);
  box-shadow: var(--shadow-gold);
}
.cta-banner .btn-outline::after,
.cta-banner .btn-outline.on-dark::after {
  background: rgba(36, 28, 19, 0.18);
  color: var(--ink);
}
.cta-banner .btn-outline:hover,
.cta-banner .btn-outline.on-dark:hover {
  background: var(--paper);
  border-color: var(--paper);
  color: var(--ink);
  box-shadow: 0 16px 32px rgba(245, 230, 200, 0.35);
}

/* ============================================================
   Contact page — form left + details right (one view)
   ============================================================ */
.contact-view {
  position: relative;
  overflow: hidden;
  padding: clamp(2rem, 4vw, 3.25rem) 0 clamp(2.5rem, 5vw, 4rem);
  background:
    radial-gradient(720px 320px at 100% 0%, rgba(204, 154, 46, 0.08), transparent 60%),
    var(--paper);
  min-height: calc(100vh - 7.5rem);
}
.contact-view__head {
  text-align: left;
  margin-bottom: clamp(1.5rem, 3vw, 2.25rem);
  max-width: 40rem;
}
.contact-view__head h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.85rem);
  font-weight: 700;
  color: var(--ink);
  line-height: 1.1;
  letter-spacing: 0;
  text-transform: none;
  margin: 0 0 0.55rem;
}
.contact-view__head p {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--ink-muted);
  max-width: 42ch;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

form.enquiry,
form.enquiry.enquiry--panel {
  background: #fff;
  border: 1px solid var(--cream-line);
  border-radius: 16px;
  padding: clamp(1.35rem, 2.5vw, 1.85rem);
  box-shadow: 0 14px 36px rgba(36, 28, 19, 0.08);
  position: relative;
  overflow: hidden;
  max-width: 100%;
}
form.enquiry::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--chilli), var(--turmeric));
}
form.enquiry h3 { display: none; }

.field { margin-bottom: 1rem; }
.field label {
  display: block;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: none;
  margin-bottom: 0.4rem;
  color: var(--ink);
}
.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 0.7rem 0.9rem;
  border: 1.5px solid rgba(36, 28, 19, 0.14);
  border-radius: 10px;
  background: #fff;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--ink);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.field input::placeholder,
.field textarea::placeholder {
  color: rgba(36, 28, 19, 0.38);
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--chilli);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(165, 57, 31, 0.1);
  outline: none;
}
.field input.is-invalid,
.field textarea.is-invalid {
  border-color: var(--chilli);
  box-shadow: 0 0 0 3px rgba(165, 57, 31, 0.12);
}
.field-error {
  display: none;
  margin: 0.35rem 0 0;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--chilli-dark);
}
.field-error.is-visible {
  display: block;
}
.field textarea {
  resize: vertical;
  min-height: 120px;
  height: 120px;
}
.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.field-row--2 { grid-template-columns: 1fr 1fr; }
.enquiry--panel .btn {
  margin-top: 0.25rem;
}

.contact-aside {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.65rem;
  padding: 0.5rem 0;
}
.contact-aside__logo {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 0.5rem;
}
.contact-aside__email {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--ink);
  font-weight: 500;
  word-break: break-word;
}
.contact-aside__email:hover { color: var(--chilli); }
.contact-aside__phone {
  font-family: var(--font-body);
  font-size: clamp(1.35rem, 2.4vw, 1.7rem);
  font-weight: 700;
  color: var(--ink);
  line-height: 1.2;
  margin-bottom: 0.5rem;
}
.contact-aside__phone:hover { color: var(--chilli); }
.contact-aside__block {
  margin-top: 0.65rem;
}
.contact-aside__block h4 {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--ink);
  margin: 0 0 0.45rem;
  letter-spacing: 0;
  text-transform: none;
}
.contact-aside__block p {
  margin: 0;
  font-family: var(--font-body);
  font-size: 0.95rem;
  line-height: 1.55;
  color: var(--ink-muted);
  max-width: 28ch;
}
.contact-aside__social {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 1rem;
}
.contact-aside__social a {
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--chilli);
  border-bottom: 1px solid rgba(165, 57, 31, 0.25);
  padding-bottom: 1px;
}
.contact-aside__social a:hover {
  color: var(--chilli-dark);
  border-bottom-color: var(--chilli-dark);
}

.form-status {
  margin-top: 0.85rem;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-s);
  font-size: 0.88rem;
  display: none;
  font-weight: 500;
}
.form-status.is-visible {
  display: block;
  animation: ff-pop 0.5s var(--ease-out-back) both;
}
.form-status.success {
  background: rgba(76, 90, 55, 0.14);
  color: var(--coriander);
  border: 1.5px solid rgba(76, 90, 55, 0.35);
}
.form-status.error {
  background: rgba(165, 57, 31, 0.12);
  color: var(--chilli-dark);
  border: 1.5px solid rgba(165, 57, 31, 0.35);
}

@media (max-width: 860px) {
  .contact-view { min-height: 0; }
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .contact-aside {
    align-items: center;
    text-align: center;
  }
  .contact-aside__block p { max-width: none; }
  .contact-aside__social { justify-content: center; }
}
@media (max-width: 560px) {
  .field-row,
  .field-row--2 { grid-template-columns: 1fr; }
}

/* ============================================================
   Footer — image background (same approach as stats-banner)
   ============================================================ */
.site-footer {
  position: relative;
  overflow: hidden;
  color: var(--paper);
  padding: clamp(4rem, 6vw, 5.5rem) 0 2rem;
  border-top: 4px solid var(--turmeric);
  background-color: #1a120c;
  background-image:
    linear-gradient(180deg, rgba(26, 18, 12, 0.78), rgba(36, 28, 19, 0.86)),
    url("../assets/hero/slide-2.jpg");
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
}
.site-footer::before,
.site-footer::after {
  display: none;
}
.site-footer .wrap { position: relative; z-index: 1; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(245, 230, 200, 0.12);
}
.footer-brand {
  margin-top: -1.5rem;
}
.footer-brand .logo img { filter: none; }
.footer-brand p {
  margin-top: 1.2rem;
  font-size: 0.92rem;
  color: rgba(245, 230, 200, 0.7);
  max-width: 34ch;
  line-height: 1.7;
}
.footer-col h5 {
  font-family: var(--font-body);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--turmeric);
  margin-bottom: 1.2rem;
  font-weight: 700;
  position: relative;
  padding-bottom: 0.7rem;
}
.footer-col h5::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 28px;
  height: 2px;
  background: var(--turmeric);
}
.footer-col a,
.footer-col span {
  display: block;
  font-size: 0.92rem;
  color: rgba(245, 230, 200, 0.75);
  margin-bottom: 0.7rem;
  line-height: 1.5;
  transition: color 0.25s ease, transform 0.25s ease;
}
.footer-col a:hover {
  color: var(--turmeric-soft);
  transform: translateX(6px);
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1.8rem;
  font-size: 0.82rem;
  color: rgba(245, 230, 199, 0.55);
  flex-wrap: wrap;
  gap: 0.8rem;
  letter-spacing: 0.06em;
}
.footer-bottom a {
  color: var(--turmeric-soft);
  text-decoration: none;
  border-bottom: 1px solid rgba(229, 182, 85, 0.35);
  transition: color 0.25s ease, border-color 0.25s ease;
}
.footer-bottom a:hover {
  color: var(--paper);
  border-bottom-color: var(--turmeric);
}

@media (max-width: 900px) {
  .site-footer { background-attachment: scroll; }
}
@media (max-width: 780px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 500px) { .footer-grid { grid-template-columns: 1fr; } }

/* ============================================================
   Scroll progress + back to top (injected by JS)
   ============================================================ */
.scroll-progress {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 3px;
  z-index: 100;
  pointer-events: none;
}
.scroll-progress span {
  display: block;
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--chilli), var(--turmeric));
  box-shadow: 0 0 14px rgba(204, 154, 46, 0.6);
  transition: width 0.15s ease-out;
}
.to-top {
  position: fixed;
  right: clamp(1rem, 3vw, 2rem);
  bottom: clamp(1rem, 3vw, 2rem);
  z-index: 60;
  width: 52px;
  height: 52px;
  border: none;
  border-radius: 50%;
  background: var(--chilli);
  color: #fff;
  font-size: 1.2rem;
  cursor: pointer;
  display: grid;
  place-items: center;
  opacity: 0;
  transform: translateY(16px) scale(0.85);
  pointer-events: none;
  box-shadow: 0 16px 32px rgba(165, 57, 31, 0.45);
  transition:
    opacity 0.4s ease,
    transform 0.4s var(--ease-out-back),
    background 0.3s ease;
}
.to-top.is-visible {
  opacity: 1;
  transform: none;
  pointer-events: auto;
}
.to-top:hover {
  background: var(--chilli-dark);
  transform: translateY(-4px);
}
.to-top::after {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 1px dashed var(--turmeric);
  animation: ff-spin 12s linear infinite;
}

/* ============================================================
   Utility
   ============================================================ */
.center { text-align: center; }
.mt-lg { margin-top: clamp(2.5rem, 5vw, 3.5rem); }

/* ============================================================
   Mobile nav (≤860px)
   ============================================================ */
@media (max-width: 860px) {
  .nav-toggle { display: flex; }
  .nav-cta { display: none; }
  .nav-mobile-cta { display: block; }

  .nav-links {
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: rgba(248, 239, 222, 0.98);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--cream-line);
    box-shadow: 0 20px 40px rgba(36, 28, 19, 0.14);
    flex-direction: column;
    gap: 0;
    padding: 0 var(--gutter);
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transition:
      max-height 0.5s var(--ease-premium),
      opacity 0.4s ease,
      visibility 0.4s ease,
      padding 0.4s ease;
  }
  .nav-links.is-open {
    max-height: 480px;
    opacity: 1;
    visibility: visible;
    padding: 0.5rem var(--gutter) 1.25rem;
  }
  .nav-links a {
    padding: 1rem 0;
    border-bottom: 1px solid var(--cream-line);
    color: var(--ink);
    font-size: 1rem;
    letter-spacing: 0.08em;
    min-height: 44px;
  }
  .nav-links a::after { display: none; }
  .nav-mobile-cta a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin-top: 0.85rem;
    padding: 0.85rem 1.25rem;
    border: none;
    border-bottom: none;
    border-radius: var(--radius-pill);
    background: var(--chilli);
    color: #fff;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    box-shadow: 0 10px 24px rgba(165, 57, 31, 0.32);
    min-height: 48px;
  }

  .nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
}

/* ============================================================
   Mobile polish — sitewide (≤860px / ≤480px)
   ============================================================ */
@media (max-width: 860px) {
  :root {
    --gutter: clamp(1rem, 4.5vw, 1.5rem);
    --section-gap: clamp(2.75rem, 8vw, 4rem);
  }

  body { font-size: 16px; }

  .strip {
    font-size: 0.64rem;
    letter-spacing: 0.06em;
    line-height: 1.45;
    padding: 0.6rem var(--gutter);
    white-space: normal;
  }
  .strip strong {
    display: inline;
    margin-left: 0.15rem;
    letter-spacing: 0.06em;
  }

  .page-intro {
    padding-top: clamp(2rem, 5vw, 2.75rem);
    padding-bottom: clamp(2rem, 5vw, 2.75rem);
  }
  .section-head--page h1 {
    font-size: clamp(2rem, 9vw, 2.75rem);
    max-width: 11ch;
  }
  .section-head--page p {
    font-size: 0.98rem;
    margin-top: 1rem;
  }
  .page-intro-nav {
    margin-top: 0.75rem;
    gap: 0.55rem;
  }
  .page-intro-nav a {
    padding: 0.55rem 1rem;
    font-size: 0.75rem;
  }

  .cta-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.35rem;
    padding: 1.85rem 1.35rem;
  }
  .cta-banner h2 {
    max-width: none;
    font-size: clamp(1.45rem, 6.5vw, 1.9rem);
  }
  .cta-banner .btn,
  .cta-banner .btn-outline {
    width: 100%;
    justify-content: center;
  }
  .cta-banner::before,
  .cta-banner::after {
    width: 220px;
    height: 220px;
    opacity: 0.55;
  }

  .showcase-copy {
    padding-left: 1.15rem;
  }
  .showcase-copy h2,
  .showcase-copy h2.main-slider__title {
    max-width: none;
  }
  .showcase-copy .btn {
    width: 100%;
    max-width: 320px;
    justify-content: center;
  }

  .reason-list { grid-template-columns: 1fr; }

  .spec-card { grid-template-columns: 1fr; }
  .spec-media {
    min-height: 220px;
    border-right: none;
    border-bottom: 1px solid var(--cream-line);
  }
  .spec-media img { min-height: 220px; }
  .spec-slider,
  .spec-media--slider .spec-slider__slide img { min-height: 220px; }
  .spec-list { grid-template-columns: 1fr; gap: 0; }

  .footer-brand { margin-top: 0; }
  .footer-grid {
    gap: 1.75rem;
    padding-bottom: 2rem;
  }
  .site-footer {
    padding: clamp(2.5rem, 6vw, 3.5rem) 0 1.75rem;
    background-attachment: scroll;
  }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.65rem;
    text-align: left;
  }

  .contact-aside__logo {
    width: 96px;
    height: auto;
  }
  .enquiry--panel .btn,
  form.enquiry .btn {
    width: 100%;
    justify-content: center;
  }

  .range-filters {
    width: 100%;
    max-width: 100%;
    flex-wrap: wrap;
    justify-content: center;
    row-gap: 0.35rem;
  }

  .gift-options { grid-template-columns: 1fr; }

  .to-top {
    width: 46px;
    height: 46px;
    right: max(0.85rem, env(safe-area-inset-right));
    bottom: max(0.85rem, env(safe-area-inset-bottom));
  }

  .section--ink::before,
  .section--ink::after {
    width: 280px;
    height: 280px;
    opacity: 0.5;
  }
}

/* Touch devices: always show healthy-card CTA */
@media (hover: none), (pointer: coarse) {
  .healthy-card__overlay {
    opacity: 1;
    background: linear-gradient(to top, rgba(232, 106, 26, 0.78) 0%, rgba(232, 106, 26, 0.15) 55%, transparent 100%);
    align-items: flex-end;
  }
  .healthy-card__cta {
    transform: none;
  }
}

@media (max-width: 480px) {
  :root {
    --section-gap: 2.5rem;
    --gutter: 1rem;
  }

  .logo-text strong {
    font-size: 0.92rem;
    white-space: nowrap;
  }

  .btn {
    padding: 0.78rem 0.75rem 0.78rem 1.25rem;
    font-size: 0.74rem;
    min-height: 44px;
  }
  .btn::after {
    width: 1.75rem;
    height: 1.75rem;
    font-size: 0.8rem;
  }

  .hero-actions,
  .about-copy__cta,
  .gift-hero .hero-actions {
    width: 100%;
  }
  .hero-actions .btn,
  .about-copy__cta .btn,
  .gift-hero .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .stats-banner {
    padding: 2.25rem var(--gutter);
  }
  .stats-strip {
    gap: 1.25rem 0.75rem;
  }
  .stat-item strong {
    font-size: clamp(1.6rem, 8vw, 2rem);
  }

  .product-carousel .product-card,
  .product-track .product-card {
    flex-basis: 92%;
  }

  .spec-body { padding: 1.25rem; }
  .spec-media,
  .spec-media img { min-height: 200px; }
  .spec-slider,
  .spec-media--slider .spec-slider__slide img { min-height: 200px; }

  .footer-brand p {
    font-size: 0.88rem;
    max-width: none;
  }
  .footer-col h5 { margin-bottom: 0.9rem; }

  .contact-aside__logo {
    width: 80px;
  }

  .marquee::before,
  .marquee::after {
    width: 48px;
  }

  .gifting-page .gift-start .about-flavour__visual {
    min-height: 0;
  }
  .gifting-page .gift-start .about-flavour__main {
    width: 100%;
    min-height: 0;
    aspect-ratio: 1 / 1;
    max-height: none;
  }
  .showcase-copy {
    padding-left: 0.9rem;
  }
}

/* ============================================================
   MOTION — All scoped to html.js so no-JS = static visible
   ============================================================ */
@keyframes ff-fade {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes ff-rise {
  from { opacity: 0; transform: translate3d(0, 30px, 0); }
  to   { opacity: 1; transform: none; }
}
@keyframes ff-pop {
  0%   { opacity: 0; transform: scale(0.85); }
  60%  { transform: scale(1.04); }
  100% { opacity: 1; transform: none; }
}
@keyframes ff-in-up {
  from { opacity: 0; transform: translate3d(0, 40px, 0); }
  to   { opacity: 1; transform: none; }
}
@keyframes ff-in-left {
  from { opacity: 0; transform: translate3d(-40px, 0, 0); }
  to   { opacity: 1; transform: none; }
}
@keyframes ff-in-right {
  from { opacity: 0; transform: translate3d(40px, 0, 0); }
  to   { opacity: 1; transform: none; }
}
@keyframes ff-in-zoom {
  from { opacity: 0; transform: scale(0.92); }
  to   { opacity: 1; transform: none; }
}
@keyframes ff-in-pop {
  0%   { opacity: 0; transform: translate3d(0, 12px, 0) scale(0.88); }
  65%  { transform: scale(1.05); }
  100% { opacity: 1; transform: none; }
}
@keyframes ff-word-up {
  from { opacity: 0; transform: translate3d(0, 0.85em, 0); }
  to   { opacity: 1; transform: none; }
}
@keyframes ff-mask-reveal {
  from { clip-path: inset(0 100% 0 0); opacity: 0.9; }
  to   { clip-path: inset(0 0 0 0); opacity: 1; }
}
@keyframes ff-header-drop {
  from { transform: translateY(-100%); opacity: 0; }
  to   { transform: none; opacity: 1; }
}
@keyframes ff-marquee {
  from { transform: translate3d(0, 0, 0); }
  to   { transform: translate3d(-50%, 0, 0); }
}
@keyframes ff-float {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-10px); }
}
@keyframes ff-drift {
  0%   { transform: translate3d(0, 0, 0) scale(1); }
  50%  { transform: translate3d(20px, -20px, 0) scale(1.06); }
  100% { transform: translate3d(0, 0, 0) scale(1); }
}
@keyframes ff-ken-burns {
  from { transform: scale(1.02); }
  to   { transform: scale(1.09); }
}
@keyframes ff-pulse-accent {
  0%, 100% { opacity: 1; }
  50%      { opacity: 0.7; }
}
@keyframes ff-nav-panel {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: none; }
}
@keyframes ff-spin {
  to { transform: rotate(360deg); }
}
@keyframes ff-orbit {
  0%   { transform: rotate(0deg) translateX(0); }
  100% { transform: rotate(360deg) translateX(0); }
}
@keyframes ff-shine {
  from { transform: translateX(-130%) skewX(-18deg); }
  to   { transform: translateX(320%) skewX(-18deg); }
}

.js body { animation: ff-fade 0.6s var(--ease-premium) both; }
.js .site-header.is-entered { animation: ff-header-drop 0.7s var(--ease-premium) both; }

/* Pre-hide scroll reveal targets (must match JS REVEAL list) */
.js .section-head,
.js .product-card,
.js .healthy-card,
.js .range-filter,
.js .gift-option,
.js .reason-item,
.js .spec-card,
.js .contact-card,
.js .cta-banner,
.js .showcase-copy,
.js .occasion-pill,
.js .footer-brand,
.js .footer-col,
.js .marquee,
.js form.enquiry,
.js .showcase > img,
.js .gift-hero > img,
.js .gift-media,
.js .about-collage,
.js .about-copy,
.js .about-flavour__main,
.js .about-flavour__secondary,
.js .about-flavour__badge,
.js .about-feature,
.js .stat-item,
.js .experience-badge {
  opacity: 0;
}

.js .is-revealed {
  animation: ff-in-up 0.9s var(--ease-premium) both;
  animation-delay: calc(var(--i, 0) * 100ms);
}
.js .contact-card.is-revealed,
.js .showcase > img.is-revealed,
.js .about-copy.is-revealed,
.js .about-flavour__main.is-revealed { animation-name: ff-in-left; }
.js .showcase-copy.is-revealed,
.js form.enquiry.is-revealed,
.js .about-collage.is-revealed,
.js .about-flavour__secondary.is-revealed { animation-name: ff-in-right; }
.js .cta-banner.is-revealed,
.js .gift-hero > img.is-revealed,
.js .gift-media.is-revealed,
.js .experience-badge.is-revealed,
.js .about-flavour__badge.is-revealed { animation-name: ff-in-zoom; }
.js .occasion-pill.is-revealed { animation-name: ff-in-pop; }

.js .reveal-done,
.js img.reveal-done,
.js form.reveal-done { opacity: 1; animation: none; }

/* Hero entrance stagger — gifting page keeps rise; home slider has its own */
.js .gift-hero .hero-copy > * {
  animation: ff-rise 1s var(--ease-premium) both;
}
.js .gift-hero .hero-copy .kicker { animation-delay: 0.15s; }
.js .gift-hero .hero-copy h1 { animation-delay: 0.28s; }
.js .gift-hero .hero-copy p.lede { animation-delay: 0.42s; }
.js .gift-hero .hero-copy .occasion-row { animation-delay: 0.5s; }
.js .gift-hero .hero-copy .hero-actions { animation-delay: 0.58s; }

.js .hero-features {
  animation: ff-fade 0.8s var(--ease-premium) 0.45s both;
}

/* Image mask reveal — now merged into standard reveal path */
.js .showcase > img.is-revealed,
.js .gift-hero > img.is-revealed,
.js .gift-media.is-revealed {
  animation: ff-mask-reveal 1.1s var(--ease-premium) both;
}

/* Heading word reveal (JS wraps words in .word spans) */
.js h1 .word,
.js h2 .word {
  opacity: 0;
  transform: translate3d(0, 0.9em, 0);
  display: inline-block;
}
.js h1.is-words-revealed .word,
.js h2.is-words-revealed .word {
  animation: ff-word-up 0.7s var(--ease-premium) both;
  animation-delay: calc(var(--wi, 0) * 50ms);
}
.js h1.reveal-done .word,
.js h2.reveal-done .word {
  opacity: 1;
  transform: none;
  animation: none;
}

/* Ambient motion on decorative shapes */
.js .cta-banner::before { animation: ff-spin 50s linear infinite; }
.js .cta-banner::after { animation: ff-spin 70s linear infinite reverse; }
.js .site-footer::before { animation: ff-drift 22s ease-in-out infinite; }
.js .site-footer::after { animation: ff-drift 30s ease-in-out infinite reverse; }
.js .section--ink::before { animation: ff-drift 24s ease-in-out infinite; }
.js .section--ink::after { animation: ff-drift 30s ease-in-out infinite reverse; }

/* Marquee */
.js .marquee-track { animation: ff-marquee 40s linear infinite; }
.js .marquee:hover .marquee-track { animation-play-state: paused; }

/* Strip pulse */
.js .strip strong { animation: ff-pulse-accent 4s ease-in-out infinite; }

/* Button shine sweep on hover (subtle) */
.js .btn { position: relative; overflow: hidden; }
.js .btn > * { position: relative; z-index: 1; }
.js .btn:not(.btn-primary)::before {
  content: "";
  position: absolute;
  top: 0; bottom: 0; left: 0;
  width: 45%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.22), transparent);
  transform: translateX(-130%) skewX(-18deg);
  z-index: 0;
}
.js .btn:not(.btn-primary):hover::before { animation: ff-shine 0.85s ease; }

/* Mobile nav link fade-in when opening */
@media (max-width: 860px) {
  .js .nav-links.is-open a { animation: ff-nav-panel 0.4s var(--ease-premium) both; }
  .js .nav-links.is-open li:nth-child(1) a { animation-delay: 0.05s; }
  .js .nav-links.is-open li:nth-child(2) a { animation-delay: 0.12s; }
  .js .nav-links.is-open li:nth-child(3) a { animation-delay: 0.19s; }
  .js .nav-links.is-open li:nth-child(4) a { animation-delay: 0.26s; }
  .js .nav-links.is-open li:nth-child(5) a { animation-delay: 0.33s; }
}

/* ============================================================
   Reduced motion — final override
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  .js .section-head,
  .js .product-card,
  .js .healthy-card,
  .js .range-filter,
  .js .gift-option,
  .js .reason-item,
  .js .spec-card,
  .js .contact-card,
  .js .cta-banner,
  .js .showcase-copy,
  .js .occasion-pill,
  .js .footer-brand,
  .js .footer-col,
  .js .marquee,
  .js form.enquiry,
  .js .showcase > img,
  .js .gift-hero > img,
  .js .gift-media,
  .js .about-collage,
  .js .about-copy,
  .js .about-flavour__main,
  .js .about-flavour__secondary,
  .js .about-flavour__badge,
  .js .about-feature,
  .js .stat-item,
  .js .experience-badge,
  .js .gift-hero .hero-copy > *,
  .js .hero-slide .hero-copy > *,
  .js .hero-features,
  .js h1 .word,
  .js h2 .word {
    opacity: 1;
    transform: none;
    clip-path: none;
    animation: none;
  }
  .js .hero-slide.is-active .hero-slide__media img {
    animation: none !important;
    transform: scale(1.06);
  }
  .js .strip strong,
  .js .marquee-track,
  .js .about-flavour__shape--a,
  .js .about-flavour__shape--b,
  .js .about-flavour__shape--c,
  .js .about-flavour__secondary,
  .js .about-flavour__badge,
  .js .cta-banner::before,
  .js .cta-banner::after,
  .js .site-footer::before,
  .js .site-footer::after,
  .js .section--ink::before,
  .js .section--ink::after,
  .js .to-top::after,
  .js .is-revealed {
    animation: none !important;
  }
}
