/* ===================================================
   RootOrigin — Premium Makhana Brand Site
   Palette pulled from packaging:
     cream:     #F5EDE0
     cream-2:   #FAF4EA
     gold:      #C9A267
     gold-dk:   #8A6B2E
     navy:      #1A1F2E
     ink:       #2E2A24
   =================================================== */

:root {
  --cream: #F5EDE0;
  --cream-2: #FAF4EA;
  --cream-3: #EFE3CE;
  --gold: #C9A267;
  --gold-2: #B8893C;
  --gold-dk: #8A6B2E;
  --navy: #1A1F2E;
  --navy-2: #252B3D;
  --ink: #2E2A24;
  --muted: #6B5E4B;
  --wa: #25D366;

  --serif: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
  --sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --radius: 14px;
  --radius-lg: 22px;
  --shadow-sm: 0 4px 18px rgba(60,42,12,0.08);
  --shadow-md: 0 14px 40px rgba(60,42,12,0.12);
  --shadow-lg: 0 28px 60px rgba(60,42,12,0.18);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

/* Paper texture — applied at body level, blends with section colours.
   Subtle SVG fractal noise gives the cream tone a real packaging feel. */
:root {
  --paper: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='240' height='240'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' seed='7' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.62  0 0 0 0 0.46  0 0 0 0 0.22  0 0 0 0.07 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
}

body {
  font-family: var(--sans);
  color: var(--ink);
  background-color: var(--cream-2);
  background-image: var(--paper);
  background-attachment: fixed;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

.container { width: 90%; max-width: 1200px; margin: 0 auto; }
.eyebrow {
  font-family: var(--sans);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-dk);
  font-size: 0.78rem;
  font-weight: 500;
  margin-bottom: 1rem;
}
.eyebrow.center { text-align: center; }
.eyebrow.light { color: var(--gold); }

.display {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(2.4rem, 5.5vw, 4.4rem);
  line-height: 1.05;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.display em { font-style: italic; color: var(--gold-2); font-weight: 500; }
.display-2 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(1.9rem, 3.6vw, 2.9rem);
  line-height: 1.15;
  color: var(--ink);
  letter-spacing: -0.005em;
}
.display-2.light { color: var(--cream); }

.lead { font-size: 1.1rem; color: var(--muted); margin: 1.25rem 0 2rem; max-width: 46ch; }

/* ============== NAV ============== */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 0.9rem 0;
  transition: background 0.3s ease, box-shadow 0.3s ease, padding 0.3s ease;
  background: transparent;
}
.nav.scrolled {
  background: rgba(250,244,234,0.96);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 2px 16px rgba(60,42,12,0.06);
  padding: 0.6rem 0;
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; }
.logo { display: flex; align-items: center; gap: 0.6rem; }
.logo-mark { width: 36px; height: 36px; }
.logo-text {
  font-family: var(--serif);
  font-size: 1.45rem;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: 0.01em;
}
.logo-text sup { font-size: 0.55em; color: var(--gold-dk); }
.logo-light .logo-text { color: var(--cream); }

.nav-links { display: flex; gap: 2rem; }
.nav-links a {
  font-size: 0.95rem;
  color: var(--ink);
  font-weight: 400;
  position: relative;
  padding: 0.3rem 0;
}
.nav-links a::after {
  content: ''; position: absolute; left: 0; bottom: 0; height: 1.5px; width: 0;
  background: var(--gold); transition: width 0.3s ease;
}
.nav-links a:hover::after { width: 100%; }

.nav-toggle { display: none; background: none; border: 0; width: 38px; height: 38px; cursor: pointer; }
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--ink); margin: 4px auto; transition: 0.3s; }

/* ============== BUTTONS ============== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  font-family: var(--sans);
  font-size: 0.95rem;
  font-weight: 500;
  padding: 0.85rem 1.6rem;
  border-radius: 999px;
  transition: transform 0.2s ease, box-shadow 0.25s ease, background 0.25s ease;
  cursor: pointer;
  letter-spacing: 0.02em;
  border: 1.5px solid transparent;
}
.btn-gold {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-2) 100%);
  color: #fff;
  box-shadow: 0 8px 22px rgba(184,137,60,0.35);
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 14px 28px rgba(184,137,60,0.45); }
.btn-outline {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.btn-outline:hover { background: var(--ink); color: var(--cream); }
.btn-sm { padding: 0.6rem 1.2rem; font-size: 0.85rem; }
.btn-lg { padding: 1.05rem 2.2rem; font-size: 1.05rem; }
.btn-block { width: 100%; }

/* ============== HERO ============== */
.hero {
  position: relative;
  padding: 9rem 0 5rem;
  background:
    var(--paper),
    radial-gradient(ellipse at top right, rgba(201,162,103,0.22), transparent 60%),
    linear-gradient(180deg, var(--cream-2) 0%, var(--cream) 100%);
  overflow: hidden;
}
.hero::after {
  content: '';
  position: absolute; inset: 24px;
  border: 1px solid rgba(201,162,103,0.35);
  pointer-events: none;
  z-index: 1;
}
.hero-bg-leaves {
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 12% 80%, rgba(201,162,103,0.10), transparent 18%),
    radial-gradient(circle at 88% 30%, rgba(201,162,103,0.12), transparent 22%);
  pointer-events: none;
}
.hero::before {
  content: '';
  position: absolute; top: 50%; left: -120px; width: 320px; height: 320px;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'><path d='M50 5 C 65 25, 75 45, 50 95 C 25 45, 35 25, 50 5 Z' fill='none' stroke='%23C9A267' stroke-width='0.5' opacity='0.35'/></svg>") center/contain no-repeat;
  transform: translateY(-50%) rotate(-20deg);
  opacity: 0.4;
  pointer-events: none;
}

.hero-grid {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 4rem; align-items: center;
}
.hero-copy { max-width: 600px; }
.hero-cta { display: flex; gap: 1rem; flex-wrap: wrap; }
.trust-pills {
  display: flex; flex-wrap: wrap; gap: 0.6rem;
  margin-top: 2.5rem;
}
.trust-pills li {
  background: rgba(255,255,255,0.7);
  border: 1px solid rgba(201,162,103,0.4);
  color: var(--gold-dk);
  padding: 0.45rem 1.1rem;
  border-radius: 999px;
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  font-weight: 500;
}
.trust-pills li::before { content: '✦ '; color: var(--gold); }

.hero-visual { position: relative; display: flex; justify-content: center; align-items: center; }
.hero-product-card {
  position: relative;
  width: 100%; max-width: 460px;
  aspect-ratio: 2 / 3;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  transform: rotate(-2deg);
  transition: transform 0.5s ease;
  background: var(--cream);
}
.hero-product-card:hover { transform: rotate(0deg) translateY(-6px); }
.hero-product-card img { width: 100%; height: 100%; object-fit: cover; }
.hero-badge {
  position: absolute; top: -10px; right: -10px;
  width: 110px; height: 110px;
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  color: #fff;
  border-radius: 50%;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  box-shadow: var(--shadow-md);
  font-family: var(--serif);
  border: 3px solid var(--cream);
  transform: rotate(8deg);
  z-index: 3;
}
.hero-badge-top { font-size: 1.9rem; font-weight: 700; line-height: 1; }
.hero-badge-bot { font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase; margin-top: 0.2rem; }

/* ============== GOLD STRIP ============== */
.gold-strip {
  background: linear-gradient(90deg, var(--gold-2), var(--gold), var(--gold-2));
  color: #fff;
  overflow: hidden;
  padding: 0.95rem 0;
  border-top: 1px solid rgba(255,255,255,0.2);
  border-bottom: 1px solid rgba(255,255,255,0.2);
}
.strip-track {
  display: flex; gap: 3rem;
  white-space: nowrap;
  animation: scroll-strip 38s linear infinite;
  font-family: var(--sans);
  font-size: 0.85rem;
  letter-spacing: 0.25em;
  font-weight: 500;
}
@keyframes scroll-strip {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ============== SECTIONS ============== */
.section { padding: 6rem 0; }
.section-cream {
  background-color: var(--cream);
  background-image: var(--paper);
}
.section-dark {
  background: linear-gradient(180deg, var(--navy) 0%, var(--navy-2) 100%);
  color: var(--cream);
  position: relative;
}
.section-dark::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(circle at 15% 20%, rgba(201,162,103,0.10), transparent 40%),
    radial-gradient(circle at 85% 80%, rgba(201,162,103,0.10), transparent 40%);
  pointer-events: none;
}
.section-dark .container { position: relative; z-index: 1; }

.section-head { margin-bottom: 3.5rem; }
.section-head.center { text-align: center; max-width: 640px; margin-left: auto; margin-right: auto; }
.section-head.center .display-2::after,
.hero-copy .display::after {
  content: '';
  display: block;
  width: 64px; height: 22px;
  margin: 1.3rem auto 0;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 22'><path d='M2 11 L24 11' stroke='%23C9A267' stroke-width='0.6' opacity='0.7' fill='none'/><path d='M40 11 L62 11' stroke='%23C9A267' stroke-width='0.6' opacity='0.7' fill='none'/><path d='M32 3 C28 7, 26 13, 32 19 C38 13, 36 7, 32 3 Z' fill='%23C9A267'/><circle cx='32' cy='11' r='1.6' fill='%238A6B2E'/></svg>") center/contain no-repeat;
}
.hero-copy .display::after { margin-left: 0; }
.section-sub { color: var(--muted); font-size: 1.05rem; margin-top: 1rem; }
.section-sub.light { color: rgba(245,237,224,0.75); }

/* ============== PRODUCTS ============== */
.product-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 2.5rem;
}
.product-card {
  background: var(--cream-2);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  border: 1px solid rgba(201,162,103,0.25);
  position: relative;
  display: flex; flex-direction: column;
}
.product-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.product-card-flag {
  position: absolute; top: 1.2rem; left: 1.2rem; z-index: 4;
  background: var(--ink); color: var(--cream);
  font-size: 0.7rem; letter-spacing: 0.18em; text-transform: uppercase;
  padding: 0.4rem 0.9rem; border-radius: 999px;
}
.product-img-wrap {
  background: var(--cream-3);
  aspect-ratio: 1 / 1.2;
  overflow: hidden;
  position: relative;
}

/* ========= Product Carousel ========= */
.product-carousel { position: absolute; inset: 0; }
.product-slides {
  display: flex;
  width: 100%; height: 100%;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE/Edge */
}
.product-slides::-webkit-scrollbar { display: none; }
.product-slide {
  flex: 0 0 100%;
  scroll-snap-align: start;
  scroll-snap-stop: always;
  display: flex; align-items: center; justify-content: center;
  padding: 1.5rem;
}
.product-slide img {
  max-width: 100%; max-height: 100%;
  width: auto; height: 100%;
  object-fit: contain;
  transition: transform 0.5s ease;
  filter: drop-shadow(0 12px 24px rgba(60,42,12,0.18));
}
.product-card:hover .product-slide img { transform: scale(1.03); }

/* Arrows */
.slide-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 40px; height: 40px;
  background: rgba(255,255,255,0.85);
  border: 1px solid rgba(201,162,103,0.4);
  border-radius: 50%;
  color: var(--gold-dk);
  font-size: 1.6rem;
  font-family: var(--serif);
  line-height: 1;
  cursor: pointer;
  display: grid; place-items: center;
  z-index: 3;
  opacity: 0;
  transition: opacity 0.25s ease, background 0.2s ease, transform 0.2s ease;
  backdrop-filter: blur(4px);
  box-shadow: 0 4px 10px rgba(60,42,12,0.12);
}
.slide-arrow.prev { left: 10px; padding-bottom: 4px; }
.slide-arrow.next { right: 10px; padding-bottom: 4px; }
.product-card:hover .slide-arrow { opacity: 1; }
.slide-arrow:hover { background: var(--gold); color: #fff; transform: translateY(-50%) scale(1.08); }

/* Dots */
.slide-dots {
  position: absolute; bottom: 14px; left: 50%; transform: translateX(-50%);
  display: flex; gap: 8px;
  z-index: 3;
}
.dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(138,107,46,0.3);
  border: 0;
  cursor: pointer;
  padding: 0;
  transition: background 0.25s ease, width 0.25s ease;
}
.dot.active { background: var(--gold-2); width: 22px; border-radius: 4px; }

/* Front / Back label */
.slide-label {
  position: absolute; top: 14px; left: 14px;
  display: flex; gap: 0;
  background: rgba(255,255,255,0.8);
  border: 1px solid rgba(201,162,103,0.3);
  border-radius: 999px;
  padding: 3px;
  z-index: 3;
  backdrop-filter: blur(4px);
}
.slide-label span {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
  transition: background 0.25s ease, color 0.25s ease;
  font-weight: 500;
}
.slide-label span.active { background: var(--gold); color: #fff; }

/* On touch devices show arrows always (no hover) */
@media (hover: none) {
  .slide-arrow { opacity: 1; background: rgba(255,255,255,0.75); }
}
.veg-mark {
  position: absolute; top: 1rem; right: 1rem;
  width: 22px; height: 22px;
  border: 2px solid #3E7C3A;
  background: #fff;
  display: grid; place-items: center;
}
.veg-mark span { width: 10px; height: 10px; background: #3E7C3A; border-radius: 50%; }

.product-body { padding: 1.8rem 1.8rem 2rem; }
.product-body h3 {
  font-family: var(--serif); font-weight: 600;
  font-size: 1.7rem; color: var(--ink); margin-bottom: 0.4rem;
}
.product-tagline { color: var(--muted); font-size: 0.95rem; margin-bottom: 1.2rem; min-height: 2.8em; }
.badge-row { display: flex; flex-wrap: wrap; gap: 0.4rem; margin-bottom: 1.4rem; }
.badge-row li {
  font-size: 0.7rem; letter-spacing: 0.12em; text-transform: uppercase;
  background: rgba(201,162,103,0.12);
  color: var(--gold-dk);
  padding: 0.35rem 0.7rem;
  border-radius: 4px;
  font-weight: 500;
}
.product-meta {
  display: flex; justify-content: space-between; align-items: baseline;
  padding: 1rem 0 1.4rem;
  border-top: 1px dashed rgba(201,162,103,0.4);
}
.product-meta .weight { color: var(--muted); font-size: 0.9rem; }
.product-meta .price {
  font-family: var(--serif); font-size: 1.8rem; font-weight: 600; color: var(--gold-2);
}

/* ============== BENEFITS / PILLARS ============== */
.pillar-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 2.5rem;
  margin-bottom: 4rem;
}
.pillar { text-align: center; padding: 1rem; }
.pillar-seal { width: 96px; height: 96px; margin: 0 auto 1.2rem; }
.pillar-seal svg { width: 100%; height: 100%; }
.pillar h3 {
  font-family: var(--serif); font-size: 1.35rem; font-weight: 600;
  color: var(--ink); margin-bottom: 0.5rem;
  letter-spacing: 0.01em;
}
.pillar p { color: var(--muted); font-size: 0.95rem; max-width: 26ch; margin: 0 auto; }

.pillar-row {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.2rem;
  padding-top: 3rem;
  border-top: 1px solid rgba(201,162,103,0.3);
}
.mini-pillar {
  text-align: center; padding: 1.5rem 1rem;
  background: var(--cream-2);
  border-radius: var(--radius);
  border: 1px solid rgba(201,162,103,0.25);
  display: flex; flex-direction: column; gap: 0.3rem;
}
.mini-pillar span { font-size: 1.8rem; margin-bottom: 0.3rem; }
.mini-pillar strong {
  font-family: var(--serif); font-size: 1.15rem; color: var(--ink); font-weight: 600;
}
.mini-pillar em { color: var(--gold-dk); font-style: normal; font-size: 0.85rem; letter-spacing: 0.05em; }

/* ============== STORY ============== */
.story-grid {
  display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 4rem; align-items: center;
}
.story-image { position: relative; }
.story-image-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  aspect-ratio: 3 / 4;
  background: var(--cream);
}
.story-image-frame img { width: 100%; height: 100%; object-fit: cover; }
.story-stat {
  position: absolute; bottom: -28px; right: -28px;
  background: var(--cream-2);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  padding: 1.2rem 1.5rem;
  border-left: 4px solid var(--gold);
  max-width: 220px;
}
.story-stat strong {
  font-family: var(--serif); font-size: 1.4rem; color: var(--ink); display: block;
}
.story-stat span { font-size: 0.8rem; color: var(--muted); letter-spacing: 0.08em; }

.story-copy p { color: var(--ink); margin-bottom: 1.1rem; font-size: 1.02rem; line-height: 1.75; }
.story-copy p:first-of-type { margin-top: 1.4rem; }
.story-signature {
  margin-top: 2rem;
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.25rem;
  color: var(--gold-2);
}

/* ============== NUTRITION ============== */
.nutrition-card {
  max-width: 640px; margin: 0 auto;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(201,162,103,0.4);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  backdrop-filter: blur(6px);
}
.nutrition-table { width: 100%; border-collapse: collapse; }
.nutrition-table th {
  font-family: var(--serif); font-size: 1.05rem; font-weight: 600;
  text-align: left; padding: 1rem 0.5rem;
  border-bottom: 1px solid rgba(201,162,103,0.4);
  color: var(--gold);
  letter-spacing: 0.05em;
}
.nutrition-table td {
  padding: 0.85rem 0.5rem;
  border-bottom: 1px dashed rgba(201,162,103,0.2);
  font-size: 1rem;
}
.nutrition-table tr:last-child td { border-bottom: 0; }
.nutrition-table td:last-child { text-align: right; font-family: var(--serif); font-weight: 500; color: var(--gold); }
.nutrition-note {
  margin-top: 1.5rem; text-align: center;
  font-size: 0.85rem; color: rgba(245,237,224,0.6); font-style: italic;
}

/* ============== CTA BANNER ============== */
.cta-banner {
  background: linear-gradient(135deg, var(--cream) 0%, var(--cream-3) 100%);
  padding: 4.5rem 0;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: ''; position: absolute; top: -80px; right: -80px;
  width: 280px; height: 280px;
  background: radial-gradient(circle, rgba(201,162,103,0.25), transparent 70%);
  border-radius: 50%;
}
.cta-inner {
  display: flex; align-items: center; justify-content: space-between; gap: 2rem;
  position: relative; z-index: 2;
}
.cta-inner p { color: var(--muted); margin-top: 0.5rem; }

/* ============== FOOTER ============== */
.footer {
  background: linear-gradient(180deg, var(--navy) 0%, #0F1320 100%);
  color: rgba(245,237,224,0.85);
  padding: 5rem 0 0;
  position: relative;
}
.footer::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--gold-2), var(--gold), var(--gold-2));
}
.footer-grid {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.3fr; gap: 3rem;
  padding-bottom: 3.5rem;
}
.footer-col h4 {
  font-family: var(--serif); font-size: 1.2rem; font-weight: 600;
  color: var(--gold); margin-bottom: 1.2rem;
}
.footer-col ul li { margin-bottom: 0.7rem; font-size: 0.95rem; }
.footer-col ul li a { transition: color 0.2s ease; }
.footer-col ul li a:hover { color: var(--gold); }
.footer-tagline {
  margin-top: 1rem; font-family: var(--serif); font-size: 1.05rem;
  font-style: italic; color: rgba(245,237,224,0.7);
  max-width: 30ch;
}
.contact-list li { display: flex; align-items: center; gap: 0.6rem; }

.footer-bottom {
  border-top: 1px solid rgba(201,162,103,0.2);
  padding: 1.5rem 0;
}
.footer-bottom-inner {
  display: flex; justify-content: space-between; align-items: center;
  gap: 1rem; flex-wrap: wrap;
  font-size: 0.82rem;
  color: rgba(245,237,224,0.55);
}
.fssai { color: var(--gold); letter-spacing: 0.05em; }

/* ====================================================
   WRAPPER / PACKAGING-STYLE ORNAMENTS
   ==================================================== */

/* Gold L-bracket corner ornaments — like the corners on the
   actual packaging. Drop 4 spans inside any .framed container. */
.framed { position: relative; }
.framed > .corner {
  position: absolute;
  width: 26px; height: 26px;
  border: 0 solid var(--gold);
  pointer-events: none;
  z-index: 4;
}
.framed > .corner.tl { top: 12px;    left: 12px;   border-top-width: 2px;    border-left-width: 2px; }
.framed > .corner.tr { top: 12px;    right: 12px;  border-top-width: 2px;    border-right-width: 2px; }
.framed > .corner.bl { bottom: 12px; left: 12px;   border-bottom-width: 2px; border-left-width: 2px; }
.framed > .corner.br { bottom: 12px; right: 12px;  border-bottom-width: 2px; border-right-width: 2px; }

/* Inner thin gold rectangle inside the framed card */
.framed::before {
  content: '';
  position: absolute;
  top: 20px; right: 20px; bottom: 20px; left: 20px;
  border: 1px solid rgba(201,162,103,0.35);
  pointer-events: none;
  z-index: 3;
}

/* Section ornament divider — gold line + leaf + gold line.
   Mirrors the leaf-and-line dividers on the packaging. */
.ornament {
  display: flex; align-items: center; justify-content: center;
  gap: 1.2rem;
  padding: 1rem 0 0.5rem;
  color: var(--gold);
}
.ornament::before, .ornament::after {
  content: '';
  flex: 0 1 160px;
  height: 1px;
  background: linear-gradient(90deg, transparent, currentColor, transparent);
  opacity: 0.7;
}
.ornament-leaf { width: 32px; height: 22px; flex: 0 0 32px; color: var(--gold); }

/* Leaf flourish placed under section eyebrows / titles */
.flourish {
  display: block;
  width: 44px; height: 22px;
  margin: 0.8rem auto 0;
  color: var(--gold);
}
.flourish.left { margin-left: 0; margin-right: 0; }

/* Tab-style section label (like the navy tab on packaging) */
.tab-label {
  display: inline-block;
  background: var(--navy);
  color: var(--cream);
  padding: 0.45rem 1.4rem;
  border-radius: 0 0 14px 14px;
  font-family: var(--serif);
  font-size: 0.85rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
}

/* ====================================================
   Override: product cards get the wrapper treatment
   ==================================================== */
.product-card {
  background-image: var(--paper);
  background-color: var(--cream-2);
}
.product-card::before {
  content: '';
  position: absolute;
  top: 16px; right: 16px; bottom: 16px; left: 16px;
  border: 1px solid rgba(201,162,103,0.3);
  pointer-events: none;
  z-index: 2;
}
.product-card .corner {
  position: absolute;
  width: 24px; height: 24px;
  border: 0 solid var(--gold);
  pointer-events: none;
  z-index: 3;
}
.product-card .corner.tl { top: 10px;    left: 10px;   border-top-width: 2px;    border-left-width: 2px; }
.product-card .corner.tr { top: 10px;    right: 10px;  border-top-width: 2px;    border-right-width: 2px; }
.product-card .corner.bl { bottom: 10px; left: 10px;   border-bottom-width: 2px; border-left-width: 2px; }
.product-card .corner.br { bottom: 10px; right: 10px;  border-bottom-width: 2px; border-right-width: 2px; }

.product-img-wrap { background: transparent; }
.product-slide { padding: 2rem 1.8rem 1.4rem; }

/* Hero product card — frame it like a label */
.hero-product-card {
  background: var(--cream-2);
  background-image: var(--paper);
  padding: 18px;
  border: 1px solid rgba(201,162,103,0.35);
}
.hero-product-card .corner {
  position: absolute;
  width: 22px; height: 22px;
  border: 0 solid var(--gold);
  pointer-events: none;
  z-index: 3;
}
.hero-product-card .corner.tl { top: 8px;    left: 8px;    border-top-width: 2px;    border-left-width: 2px; }
.hero-product-card .corner.tr { top: 8px;    right: 8px;   border-top-width: 2px;    border-right-width: 2px; }
.hero-product-card .corner.bl { bottom: 8px; left: 8px;    border-bottom-width: 2px; border-left-width: 2px; }
.hero-product-card .corner.br { bottom: 8px; right: 8px;   border-bottom-width: 2px; border-right-width: 2px; }
.hero-product-card img {
  border-radius: calc(var(--radius-lg) - 18px);
}

/* Story image gets corner brackets */
.story-image-frame { position: relative; padding: 14px; background: var(--cream-2); background-image: var(--paper); border: 1px solid rgba(201,162,103,0.35); }
.story-image-frame .corner {
  position: absolute;
  width: 20px; height: 20px;
  border: 0 solid var(--gold);
  pointer-events: none;
  z-index: 3;
}
.story-image-frame .corner.tl { top: 6px;    left: 6px;    border-top-width: 2px;    border-left-width: 2px; }
.story-image-frame .corner.tr { top: 6px;    right: 6px;   border-top-width: 2px;    border-right-width: 2px; }
.story-image-frame .corner.bl { bottom: 6px; left: 6px;    border-bottom-width: 2px; border-left-width: 2px; }
.story-image-frame .corner.br { bottom: 6px; right: 6px;   border-bottom-width: 2px; border-right-width: 2px; }

/* Nutrition panel — restyle to mirror the back-of-pack
   nutrition box (cream, gold header, ornate frame). */
.section-dark {
  background: linear-gradient(180deg, var(--cream) 0%, var(--cream-3) 100%);
  background-image: var(--paper);
  color: var(--ink);
}
.section-dark::before {
  background:
    radial-gradient(circle at 15% 20%, rgba(201,162,103,0.18), transparent 40%),
    radial-gradient(circle at 85% 80%, rgba(201,162,103,0.18), transparent 40%);
}
.section-dark .eyebrow.light { color: var(--gold-dk); }
.display-2.light, .section-sub.light { color: var(--ink); }
.section-sub.light { color: var(--muted); }

.nutrition-card {
  background: var(--cream-2);
  background-image: var(--paper);
  border: 1px solid var(--gold);
  position: relative;
  padding: 2.8rem 2.5rem 2.2rem;
  border-radius: 6px;
}
.nutrition-card::before,
.nutrition-card::after {
  content: '';
  position: absolute;
  left: 14px; right: 14px;
  height: 8px;
  border: 1px solid rgba(201,162,103,0.4);
  border-radius: 4px;
}
.nutrition-card::before { top: 14px; border-bottom: 0; }
.nutrition-card::after { bottom: 14px; border-top: 0; }
.nutrition-card .nut-header {
  background: var(--gold-2);
  color: #fff;
  display: inline-block;
  padding: 0.5rem 1.4rem;
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  border-radius: 4px;
  margin-bottom: 1.4rem;
}
.nutrition-table th {
  color: var(--gold-dk);
  border-bottom: 1px solid rgba(138,107,46,0.4);
}
.nutrition-table td {
  color: var(--ink);
  border-bottom: 1px dashed rgba(138,107,46,0.25);
}
.nutrition-table td:last-child {
  color: var(--gold-2);
}
.nutrition-note { color: var(--muted); }

/* ============== FLOAT WA ============== */
.float-wa {
  position: fixed; bottom: 24px; right: 24px; z-index: 90;
  width: 58px; height: 58px;
  background: var(--wa);
  border-radius: 50%;
  display: grid; place-items: center;
  box-shadow: 0 8px 26px rgba(37,211,102,0.5);
  transition: transform 0.2s ease;
  animation: pulse 2.4s ease-in-out infinite;
}
.float-wa:hover { transform: scale(1.08); }
.float-wa svg { width: 32px; height: 32px; }
@keyframes pulse {
  0%, 100% { box-shadow: 0 8px 26px rgba(37,211,102,0.5), 0 0 0 0 rgba(37,211,102,0.5); }
  50% { box-shadow: 0 8px 26px rgba(37,211,102,0.5), 0 0 0 14px rgba(37,211,102,0); }
}

/* ============== REVEAL ============== */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.in { opacity: 1; transform: translateY(0); }

/* ============== RESPONSIVE ============== */
@media (max-width: 960px) {
  .hero { padding: 8rem 0 4rem; }
  .hero-grid { grid-template-columns: 1fr; gap: 3rem; }
  .hero-visual { order: -1; max-width: 360px; margin: 0 auto; }
  .hero-badge { width: 92px; height: 92px; }
  .hero-badge-top { font-size: 1.6rem; }

  .nav-links { display: none; }
  .nav-toggle { display: block; }
  .nav.open .nav-links {
    display: flex; flex-direction: column;
    position: absolute; top: 100%; left: 0; right: 0;
    background: var(--cream-2);
    padding: 1.5rem;
    gap: 1.2rem;
    box-shadow: var(--shadow-md);
  }

  .product-grid { grid-template-columns: 1fr; gap: 2rem; }
  .pillar-grid { grid-template-columns: 1fr; gap: 2.5rem; margin-bottom: 3rem; }
  .pillar-row { grid-template-columns: repeat(2, 1fr); gap: 1rem; padding-top: 2rem; }
  .story-grid { grid-template-columns: 1fr; gap: 3rem; }
  .story-stat { right: 0; bottom: -20px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .cta-inner { flex-direction: column; text-align: center; }
  .section { padding: 4.5rem 0; }
  .nutrition-card { padding: 1.6rem; }
}

@media (max-width: 540px) {
  .container { width: 92%; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .pillar-row { grid-template-columns: 1fr 1fr; }
  .hero-cta .btn { width: 100%; }
  .float-wa { width: 52px; height: 52px; bottom: 16px; right: 16px; }
}

/* ============================================================
   LUXURY ELEVATION LAYER
   Patisserie-grade refinement of typography, whitespace rhythm,
   hero, cards, buttons, motion and accessibility. Appended last
   so it intentionally overrides the base rules above.
   ============================================================ */

/* --- Base rendering polish --- */
html { -webkit-text-size-adjust: 100%; overflow-x: hidden; }
body { overflow-x: hidden; }
body {
  text-rendering: optimizeLegibility;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.62;
}
::selection { background: rgba(201,162,103,0.28); color: var(--ink); }

/* --- Accessibility: visible focus + reduced motion --- */
a:focus-visible,
button:focus-visible,
.btn:focus-visible {
  outline: 2px solid var(--gold-2);
  outline-offset: 3px;
  border-radius: 6px;
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
  .reveal { opacity: 1 !important; transform: none !important; }
}

/* --- Typography: airier, more editorial --- */
.eyebrow {
  letter-spacing: 0.34em;
  font-size: 0.72rem;
  font-weight: 500;
  margin-bottom: 1.25rem;
}
.display {
  font-weight: 500;
  font-size: clamp(2.6rem, 6vw, 5rem);
  line-height: 1.04;
  letter-spacing: -0.015em;
}
.display em { font-weight: 400; }
.display-2 {
  font-weight: 500;
  font-size: clamp(2rem, 3.8vw, 3.15rem);
  letter-spacing: -0.01em;
}
.lead {
  font-size: 1.15rem;
  line-height: 1.75;
  color: var(--muted);
  margin: 1.5rem 0 2.4rem;
  max-width: 44ch;
  font-weight: 300;
}
.section-sub { font-weight: 300; font-size: 1.1rem; }

/* --- Whitespace rhythm --- */
.section { padding: 7.5rem 0; }
.section-head { margin-bottom: 4.5rem; }

/* --- Nav refinement --- */
.nav-links { gap: 2.4rem; }
.nav-links a { font-size: 0.9rem; letter-spacing: 0.04em; }
.logo-text { letter-spacing: 0.015em; }

/* --- Hero: more air, calmer product card --- */
.hero { padding: 11rem 0 6.5rem; }
.hero-grid { gap: 5rem; }
.hero-copy { max-width: 620px; }
.trust-pills { margin-top: 3rem; gap: 0.7rem; }
.hero-product-card {
  transform: rotate(-1.5deg);
  box-shadow: 0 40px 80px rgba(60,42,12,0.20);
}
.hero-product-card:hover { transform: rotate(0deg) translateY(-8px); }

/* --- Buttons: refined proportions --- */
.btn {
  padding: 0.95rem 2rem;
  letter-spacing: 0.06em;
  font-weight: 500;
  font-size: 0.9rem;
}
.btn-lg { padding: 1.1rem 2.4rem; font-size: 1rem; }
.btn-gold { box-shadow: 0 10px 30px rgba(184,137,60,0.26); }
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 16px 36px rgba(184,137,60,0.38); }

/* --- Gold strip: quieter, more elegant --- */
.gold-strip { padding: 0.8rem 0; }
.strip-track { font-size: 0.72rem; letter-spacing: 0.35em; gap: 3.5rem; }

/* --- Products: softer, calmer --- */
.product-grid { gap: 3rem; }
.product-card { box-shadow: 0 10px 34px rgba(60,42,12,0.07); }
.product-card:hover { transform: translateY(-6px); box-shadow: 0 26px 56px rgba(60,42,12,0.16); }
.product-body { padding: 2rem 2rem 2.2rem; }
.product-body h3 { font-size: 1.85rem; font-weight: 500; }
.product-tagline { font-weight: 300; }
.product-meta .price { font-size: 1.95rem; font-weight: 500; }

/* --- Benefits pillars --- */
.pillar h3 { font-weight: 500; }
.mini-pillar strong { font-weight: 500; }

/* --- Story: lighter body for elegance --- */
.story-copy p { font-weight: 300; font-size: 1.07rem; line-height: 1.82; }
.story-signature { font-size: 1.35rem; }

/* --- Nutrition --- */
.nutrition-card .nut-header { font-weight: 500; }

/* --- CTA banner --- */
.cta-banner { padding: 5.5rem 0; }

/* --- Footer refinement --- */
.footer { padding: 5.5rem 0 0; }
.footer-col h4 { font-weight: 500; letter-spacing: 0.02em; }

/* --- Elevation responsive corrections --- */
@media (max-width: 960px) {
  .hero { padding: 7.5rem 0 4rem; }
  .hero-grid { gap: 3rem; }
  .section { padding: 5.5rem 0; }
  .section-head { margin-bottom: 3.5rem; }
  .nav-links { gap: 1.4rem; }
}
@media (max-width: 640px) {
  /* On phones the header order CTA crowds out the menu toggle.
     Ordering stays available via the floating WhatsApp button,
     the product cards and the CTA banner. */
  .nav-inner .btn-gold.btn-sm { display: none; }
  .nav-toggle { margin-left: auto; }
}
@media (max-width: 540px) {
  .hero { padding: 6.5rem 0 3rem; }
  .section { padding: 4.5rem 0; }
  .lead { font-size: 1.08rem; }
  .hero-badge { display: none; }
}

/* ============================================================
   STORYTELLING — SOURCING JOURNEY (Chapter II)
   ============================================================ */
.journey {
  list-style: none;
  padding: 0; margin-top: 0;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.6rem;
  margin-bottom: 4.5rem;
  position: relative;
}
.journey::before {
  content: '';
  position: absolute;
  top: 62px; left: 9%; right: 9%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201,162,103,0.55), transparent);
  z-index: 0;
}
.journey-step {
  position: relative; z-index: 1;
  text-align: center;
  padding: 0 0.4rem;
}
.journey-num {
  display: block;
  font-family: var(--serif);
  font-size: 0.9rem;
  letter-spacing: 0.22em;
  color: var(--gold-2);
  margin-bottom: 0.7rem;
}
.journey-ico {
  display: grid; place-items: center;
  width: 76px; height: 76px;
  margin: 0 auto 1.15rem;
  background: var(--cream-2);
  background-image: var(--paper);
  border: 1px solid rgba(201,162,103,0.45);
  border-radius: 50%;
  font-size: 1.85rem;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.journey-step:hover .journey-ico { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.journey-step h3 {
  font-family: var(--serif); font-weight: 500;
  font-size: 1.22rem; color: var(--ink);
  margin-bottom: 0.5rem;
}
.journey-step p {
  color: var(--muted);
  font-size: 0.9rem; line-height: 1.62; font-weight: 300;
  max-width: 23ch; margin: 0 auto;
}
.journey-quote {
  text-align: center;
  max-width: 44rem; margin: 0 auto;
  padding-top: 3rem;
  border-top: 1px solid rgba(201,162,103,0.3);
  font-family: var(--serif); font-style: italic;
  font-size: clamp(1.4rem, 2.6vw, 2.05rem);
  line-height: 1.5; color: var(--ink);
}
.journey-quote cite {
  display: block; font-style: normal;
  font-size: 0.8rem; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--gold-2); margin-top: 1.3rem;
}

/* ============================================================
   FOOTER — NEWSLETTER · CREST · FOLLOW · ORNAMENT BAND
   ============================================================ */
.footer-news {
  text-align: center;
  padding: 0.5rem 0 3.5rem;
  border-bottom: 1px solid rgba(201,162,103,0.18);
}
.footer-eyebrow {
  font-family: var(--sans);
  letter-spacing: 0.32em; text-transform: uppercase;
  font-size: 0.72rem; font-weight: 500;
  color: var(--gold); margin-bottom: 1rem;
}
.footer-news-title {
  font-family: var(--serif); font-weight: 500;
  font-size: clamp(1.9rem, 3.4vw, 2.8rem);
  color: var(--cream); letter-spacing: -0.01em; line-height: 1.1;
}
.footer-news-sub {
  color: rgba(245,237,224,0.7); font-weight: 300;
  max-width: 44ch; margin: 1rem auto 2.2rem;
}
.news-form { max-width: 30rem; margin: 0 auto; }
.news-hp { display: none; }
.news-row {
  display: flex; align-items: center; gap: 0.5rem;
  border-bottom: 1px solid rgba(201,162,103,0.5);
  padding-bottom: 0.35rem;
}
.news-row input[type="email"] {
  flex: 1; background: transparent; border: 0;
  color: var(--cream); font-family: var(--sans);
  font-size: 1rem; padding: 0.55rem 0.2rem; outline: none;
}
.news-row input::placeholder { color: rgba(245,237,224,0.5); }
.news-btn {
  flex: 0 0 auto;
  background: transparent; border: 0;
  color: var(--gold); font-size: 1.5rem; line-height: 1; cursor: pointer;
  width: 42px; height: 42px; border-radius: 50%;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}
.news-btn:hover { background: var(--gold); color: var(--navy); transform: translateX(2px); }
.news-consent {
  display: flex; align-items: flex-start; gap: 0.6rem;
  margin-top: 1.1rem; text-align: left; cursor: pointer;
}
.news-consent input { margin-top: 0.2rem; accent-color: var(--gold); flex: 0 0 auto; }
.news-consent span {
  font-size: 0.78rem; color: rgba(245,237,224,0.6);
  line-height: 1.5; font-weight: 300;
}

/* Brand crest */
.footer-crest {
  text-align: center;
  padding: 3.5rem 0 3rem;
  border-bottom: 1px solid rgba(201,162,103,0.18);
}
.crest { position: relative; display: inline-block; width: 244px; }
.crest-wreath { width: 100%; height: auto; display: block; }
.crest-text {
  position: absolute; inset: 0;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 0.35rem; padding-bottom: 6%;
}
.crest-est {
  font-size: 0.52rem; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--gold); white-space: nowrap;
}
.crest-name {
  font-family: var(--serif); font-weight: 500;
  font-size: 1.3rem; color: var(--cream); letter-spacing: 0.01em;
}
.crest-sub {
  font-family: var(--serif); font-style: italic;
  font-size: 0.78rem; color: rgba(245,237,224,0.65);
}
.follow { margin-top: 2.6rem; }
.follow-label {
  display: block; font-size: 0.72rem; letter-spacing: 0.3em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 1rem;
}
.follow-icons { display: flex; justify-content: center; gap: 1.4rem; }
.follow-icons a {
  width: 44px; height: 44px;
  border: 1px solid rgba(201,162,103,0.4);
  border-radius: 50%;
  display: grid; place-items: center;
  color: var(--cream);
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}
.follow-icons a:hover {
  background: var(--gold); color: var(--navy);
  border-color: var(--gold); transform: translateY(-2px);
}
.follow-icons svg { width: 20px; height: 20px; }

/* Decorative ornamental band at the very bottom */
.footer-band {
  height: 30px;
  border-top: 1px solid rgba(201,162,103,0.28);
  background-color: #0F1320;
  background-repeat: repeat-x;
  background-position: center;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='44' height='30'%3E%3Cg fill='none' stroke='%23C9A267' stroke-width='1' opacity='0.6'%3E%3Cpath d='M0 15 H44'/%3E%3Cpath d='M22 7 L28 15 L22 23 L16 15 Z'/%3E%3C/g%3E%3Cg fill='%23C9A267' opacity='0.7'%3E%3Ccircle cx='22' cy='15' r='1.5'/%3E%3Ccircle cx='4' cy='15' r='1.3'/%3E%3Ccircle cx='40' cy='15' r='1.3'/%3E%3C/g%3E%3C/svg%3E");
}

/* ---- Nav: black packaging logo badge ---- */
.logo-badge {
  height: 52px; width: auto; display: block;
  transition: height 0.3s ease;
}
.nav.scrolled .logo-badge { height: 44px; }

/* ---- Promo offer bar (highlighted + animated) ---- */
.promo-bar {
  position: relative; overflow: hidden;
  display: inline-flex; align-items: center; justify-content: center; gap: 0.8rem;
  margin: 2rem auto 0;
  padding: 0.85rem 1.9rem;
  background: linear-gradient(100deg, rgba(201,162,103,0.16), rgba(201,162,103,0.28), rgba(201,162,103,0.16));
  border: 1px solid rgba(201,162,103,0.6);
  border-radius: 999px;
  color: var(--gold-dk);
  font-size: 0.96rem; font-weight: 400; letter-spacing: 0.01em;
  text-align: center;
  animation: promo-glow 2.8s ease-in-out infinite;
}
/* moving shine sweep */
.promo-bar::after {
  content: ''; position: absolute; top: 0; left: -60%;
  width: 45%; height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255,255,255,0.6), transparent);
  transform: skewX(-20deg);
  animation: promo-shine 3.6s ease-in-out infinite;
  pointer-events: none;
}
.promo-bar strong { color: var(--gold-2); font-weight: 700; }
.promo-ico { color: var(--gold); display: inline-block; animation: promo-twinkle 2.8s ease-in-out infinite; }
.promo-ico:last-child { animation-delay: 1.4s; }
@keyframes promo-glow {
  0%, 100% { box-shadow: 0 4px 14px rgba(201,162,103,0.10); }
  50% { box-shadow: 0 8px 26px rgba(201,162,103,0.38); }
}
@keyframes promo-shine {
  0% { left: -60%; }
  55%, 100% { left: 130%; }
}
@keyframes promo-twinkle {
  0%, 100% { opacity: 0.5; transform: scale(0.85); }
  50% { opacity: 1; transform: scale(1.15); }
}

/* ---- Discounted pricing (e-commerce style) ---- */
.product-meta { align-items: center; }
.price-block { display: flex; flex-direction: column; align-items: flex-end; gap: 0.25rem; }
.price-row { display: flex; align-items: baseline; gap: 0.5rem; }
.price-mrp {
  font-family: var(--serif); font-size: 1.1rem;
  color: var(--muted); text-decoration: line-through; opacity: 0.75;
}
.price-off {
  align-self: center;
  font-family: var(--sans);
  font-size: 0.62rem; letter-spacing: 0.08em; text-transform: uppercase; font-weight: 700;
  background: var(--gold-2); color: #fff;
  padding: 0.3rem 0.55rem; border-radius: 4px;
  white-space: nowrap;
}
.price-save {
  font-family: var(--sans);
  font-size: 0.78rem; font-weight: 500; letter-spacing: 0.01em;
  color: #3E7C3A;
}

/* ---- Brand film section ---- */
.film-frame {
  position: relative;
  max-width: 340px; margin: 0 auto;
  padding: 14px;
  background: var(--cream-2);
  background-image: var(--paper);
  border: 1px solid rgba(201,162,103,0.35);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.film-frame .corner {
  position: absolute; width: 20px; height: 20px;
  border: 0 solid var(--gold); pointer-events: none; z-index: 3;
}
.film-frame .corner.tl { top: 6px;    left: 6px;    border-top-width: 2px;    border-left-width: 2px; }
.film-frame .corner.tr { top: 6px;    right: 6px;   border-top-width: 2px;    border-right-width: 2px; }
.film-frame .corner.bl { bottom: 6px; left: 6px;    border-bottom-width: 2px; border-left-width: 2px; }
.film-frame .corner.br { bottom: 6px; right: 6px;   border-bottom-width: 2px; border-right-width: 2px; }
.brand-film {
  width: 100%; height: auto; display: block;
  aspect-ratio: 478 / 850; object-fit: cover;
  border-radius: calc(var(--radius-lg) - 14px);
  background: #14100b;
}
.film-sound {
  position: absolute; bottom: 26px; right: 26px; z-index: 4;
  width: 42px; height: 42px; border-radius: 50%;
  background: rgba(20,16,11,0.5);
  border: 1px solid rgba(255,255,255,0.35);
  color: #fff; cursor: pointer;
  display: grid; place-items: center;
  -webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px);
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}
.film-sound:hover { background: var(--gold); border-color: var(--gold); color: var(--navy); transform: scale(1.06); }
.film-sound svg { width: 20px; height: 20px; grid-column: 1; grid-row: 1; }
.film-sound .ico-sound { display: none; }
.film-sound.sound-on .ico-muted { display: none; }
.film-sound.sound-on .ico-sound { display: block; }

/* Storytelling / footer responsive */
@media (max-width: 960px) {
  .journey { grid-template-columns: repeat(3, 1fr); gap: 2.2rem 1.2rem; }
  .journey::before { display: none; }
}
@media (max-width: 560px) {
  .journey { grid-template-columns: repeat(2, 1fr); }
  .journey-ico { width: 66px; height: 66px; font-size: 1.6rem; }
}
