/* ==========================================================================
   Iconiq Gifts — Corporate Diwali 2026 Landing Page
   Design System & Styles
   ========================================================================== */

/* ---------- 1. Design Tokens ---------- */
:root {
  /* Brand palette */
  --color-canvas-background: #FDFBF7; /* Champagne Ivory — page background */
  --color-primary-header: #5D1E21;    /* Imperial Burgundy — headers, dark accents */
  /* Logo-matched gold gradient stops */
  --color-cta-badge: #C9A24C;         /* Rich mid-gold — buttons & badges */
  --color-cta-badge-light: #EED88A;   /* Champagne highlight */
  --color-cta-badge-dark: #8E6A2E;    /* Deep antique shadow */
  --gold-gradient: linear-gradient(135deg, #E5C674 0%, #C9A24C 45%, #9E7A34 100%);
  --gold-gradient-hover: linear-gradient(135deg, #EED88A 0%, #D4AF5A 45%, #A6823A 100%);
  --color-secondary-surface: #154230; /* Emerald Green — secondary surface sections */
  --color-body-text: #101111;         /* Charcoal Black — body typography */

  /* Derived */
  --color-ivory-muted: rgba(253, 251, 247, 0.72);
  --color-burgundy-soft: rgba(93, 30, 33, 0.08);
  --color-line: rgba(16, 17, 17, 0.12);

  /* WhatsApp brand */
  --color-whatsapp: #25D366;
  --color-whatsapp-dark: #128C7E;

  /* Typography */
  --font-serif: "Playfair Display", Georgia, "Times New Roman", serif;
  --font-script: "Caveat", "Segoe Script", cursive;
  --font-sans: "Inter", "Plus Jakarta Sans", "Montserrat", system-ui, -apple-system, sans-serif;

  /* Type scale */
  --fs-h1: clamp(1.8rem, 3vw, 2.65rem);
  --fs-h2: clamp(1.35rem, 2vw, 1.9rem);
  --fs-h3: clamp(1.1rem, 1.5vw, 1.35rem);
  --fs-body: clamp(0.92rem, 0.95vw, 1rem);

  /* Layout */
  --container: 1200px;
  --radius: 14px;
  --radius-lg: 22px;
  --shadow-sm: 0 4px 14px rgba(16, 17, 17, 0.08);
  --shadow-md: 0 14px 40px rgba(16, 17, 17, 0.12);
  --shadow-gold: 0 10px 30px rgba(201, 162, 76, 0.36);
  --shadow-whatsapp: 0 10px 30px rgba(37, 211, 102, 0.35);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --announce-h: 46px;
  --nav-h: 60px;
}

/* ---------- 2. Base / Reset ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--announce-h) + var(--nav-h) + 16px);
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: var(--fs-body);
  line-height: 1.65;
  color: var(--color-body-text);
  background: var(--color-canvas-background);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img {
  max-width: 100%;
  display: block;
}

h1,
h2,
h3 {
  font-family: var(--font-serif);
  font-weight: 700;
  line-height: 1.12;
  color: var(--color-primary-header);
  margin: 0 0 0.5em;
}

h1 { font-size: var(--fs-h1); }
h2 { font-size: var(--fs-h2); }
h3 { font-size: var(--fs-h3); }

p { margin: 0 0 1em; }

a { color: inherit; }

.container {
  width: min(100% - 2.5rem, var(--container));
  margin-inline: auto;
}

.section {
  padding: clamp(1.75rem, 3vw, 2.6rem) 0;
}

.eyebrow {
  font-family: var(--font-script);
  font-size: clamp(1.25rem, 2vw, 1.6rem);
  color: var(--color-cta-badge);
  display: inline-block;
  margin-bottom: 0.35rem;
  line-height: 1;
}

.section-head {
  max-width: 760px;
  margin-bottom: 1.35rem;
}

.sub-head {
  font-size: 1.05rem;
  color: rgba(16, 17, 17, 0.72);
  margin: 0;
}

/* ---------- 3. Buttons & Badges ---------- */
.btn {
  --btn-pad-y: 0.85rem;
  --btn-pad-x: 1.6rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: var(--btn-pad-y) var(--btn-pad-x);
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.2;
  text-decoration: none;
  border: 2px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease),
    background-color 0.2s var(--ease), color 0.2s var(--ease);
}

.btn:focus-visible {
  outline: 3px solid var(--color-cta-badge);
  outline-offset: 3px;
}

.btn-gold {
  background: var(--gold-gradient);
  background-size: 200% 200%;
  background-position: 0% 0%;
  color: #3a1f0c;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.25);
  box-shadow: var(--shadow-gold);
  border-color: rgba(255, 255, 255, 0.35);
}
.btn-gold:hover {
  transform: translateY(-2px);
  background: var(--gold-gradient-hover);
  background-size: 200% 200%;
  background-position: 100% 100%;
  color: #3a1f0c;
}

.btn-whatsapp {
  background: linear-gradient(135deg, #25D366 0%, #1EBE5C 50%, #128C7E 100%);
  color: #fff;
  box-shadow: var(--shadow-whatsapp);
  border-color: transparent;
}
.btn-whatsapp:hover {
  transform: translateY(-2px);
  background: linear-gradient(135deg, #2FE074 0%, #22C765 50%, #14998A 100%);
  color: #fff;
}
.btn-whatsapp i { font-size: 1.15em; }

.btn-burgundy {
  background: var(--color-primary-header);
  color: var(--color-canvas-background);
}
.btn-burgundy:hover {
  transform: translateY(-2px);
  background: #4b1719;
}

.btn-outline {
  background: transparent;
  color: var(--color-primary-header);
  border-color: var(--color-primary-header);
}
.btn-outline:hover {
  background: var(--color-primary-header);
  color: var(--color-canvas-background);
}

.btn-ghost-light {
  background: transparent;
  color: var(--color-canvas-background);
  border-color: rgba(253, 251, 247, 0.55);
}
.btn-ghost-light:hover {
  background: var(--color-canvas-background);
  color: var(--color-primary-header);
}

.btn-block { width: 100%; }
.btn-lg { --btn-pad-y: 1.05rem; --btn-pad-x: 2rem; font-size: 1.05rem; }

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.9rem;
  border-radius: 999px;
  background: var(--color-burgundy-soft);
  color: var(--color-primary-header);
  font-size: 0.85rem;
  font-weight: 600;
  line-height: 1.25;
}
.badge i { color: var(--color-cta-badge); }

/* ---------- 4. Image Placeholders ---------- */
.img-placeholder {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  text-align: center;
  padding: 1.5rem;
  color: rgba(16, 17, 17, 0.55);
  background:
    linear-gradient(135deg, rgba(166, 130, 74, 0.10), rgba(93, 30, 33, 0.06)),
    repeating-linear-gradient(45deg, rgba(16,17,17,0.03) 0 12px, transparent 12px 24px);
  border: 1px dashed rgba(166, 130, 74, 0.5);
  border-radius: var(--radius);
  overflow: hidden;
}
.img-placeholder i { font-size: 2rem; color: var(--color-cta-badge); }
.img-placeholder .ph-label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--color-primary-header);
}
.img-placeholder .ph-desc { font-size: 0.8rem; max-width: 34ch; }
.ratio-1-1 { aspect-ratio: 1 / 1; }
.ratio-4-3 { aspect-ratio: 4 / 3; }

/* ---------- 5. Top bar (announcement + nav) ---------- */
.topbar {
  position: sticky;
  top: 0;
  z-index: 1000;
}
.announce-bar {
  background: var(--color-primary-header);
  color: var(--color-canvas-background);
  min-height: var(--announce-h);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0.4rem 1rem;
  font-size: 0.85rem;
  line-height: 1.35;
}
.announce-bar strong { color: var(--color-cta-badge); font-weight: 700; }

/* Navigation */
.site-nav {
  background: var(--color-canvas-background);
  border-bottom: 1px solid var(--color-line);
  min-height: var(--nav-h);
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.5rem clamp(1rem, 3vw, 2rem);
  box-shadow: 0 2px 12px rgba(16, 17, 17, 0.05);
}
.site-nav__brand {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: 0.06em;
  color: var(--color-primary-header);
  text-decoration: none;
  margin-right: auto;
  display: inline-flex;
  align-items: center;
}
.site-nav__brand img {
  height: 180px;
  width: auto;
  display: block;
  margin: -62px 0;
}
.site-nav__brand span {
  font-family: var(--font-script);
  font-weight: 500;
  color: var(--color-cta-badge);
  letter-spacing: 0;
}
.site-nav__menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 0.35rem;
}
.site-nav__menu a {
  display: inline-block;
  padding: 0.5rem 0.85rem;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--color-body-text);
  text-decoration: none;
  border-radius: 8px;
  transition: color 0.2s var(--ease), background-color 0.2s var(--ease);
}
.site-nav__menu a:not(.site-nav__cta):hover {
  color: var(--color-primary-header);
  background: var(--color-burgundy-soft);
}
.site-nav__cta { color: #3a1f0c; padding: 0.6rem 1.1rem; }
.site-nav__toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1.35rem;
  color: var(--color-primary-header);
  padding: 0.4rem;
  line-height: 1;
}
.site-nav__toggle:focus-visible {
  outline: 3px solid var(--color-cta-badge);
  outline-offset: 2px;
}

/* ---------- 6. Hero ---------- */
.hero {
  padding-top: clamp(2.5rem, 5vw, 4.5rem);
}
.hero__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  grid-template-areas:
    "copy  visual"
    "cta   visual";
  column-gap: clamp(2rem, 4vw, 4rem);
  row-gap: 1rem;
  align-items: center;
}
.hero__copy { grid-area: copy; align-self: end; }
.hero__title { margin-top: 0.4rem; }
.hero__sub {
  font-size: 1.1rem;
  color: rgba(16, 17, 17, 0.78);
  max-width: 42ch;
}
.hero__cta {
  grid-area: cta;
  align-self: start;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 0;
}
.trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}
.hero__visual { grid-area: visual; min-height: 420px; }

/* "Tap to change" hint above the interactive hero image */
.slide-hint {
  display: flex;
  width: fit-content;
  align-items: center;
  gap: 0.45rem;
  margin: 0 auto 0.75rem;
  padding: 0.4rem 0.9rem;
  background: var(--gold-gradient);
  color: #3a1f0c;
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  border-radius: 999px;
  box-shadow: var(--shadow-gold);
  animation: slideHintBob 2.2s var(--ease) infinite;
}
.slide-hint i { font-size: 0.95em; }
@keyframes slideHintBob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}
.hero__img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

/* Interactive hero slide stack */
.slide-stack {
  position: relative;
  width: 100%;
  aspect-ratio: 1122 / 1402; /* matches the portrait slide images — no crop */
  cursor: pointer;
  perspective: 1200px;
  outline: none;
  touch-action: pan-y; /* allow vertical page scroll, capture horizontal swipes */
  user-select: none;
}
.slide-stack:focus-visible {
  outline: 3px solid var(--color-cta-badge);
  outline-offset: 6px;
  border-radius: var(--radius-lg);
}
.slide-stack__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-lg);
  border: 3px solid #fff;
  box-shadow: var(--shadow-md);
  transform-origin: center bottom;
  /* pos = distance from top of stack; set via JS custom property */
  --pos: 0;
  transform: translate(calc(var(--pos) * 26px), calc(var(--pos) * 20px))
             scale(calc(1 - var(--pos) * 0.08));
  opacity: calc(1 - var(--pos) * 0.18);
  z-index: calc(100 - var(--pos));
  transition: transform 0.55s var(--ease), opacity 0.45s var(--ease), box-shadow 0.3s var(--ease);
  will-change: transform, opacity;
  -webkit-user-drag: none;
}
.slide-stack__img.is-top { opacity: 1; }
/* Cards deeper than the 3rd stay hidden behind */
.slide-stack__img.is-hidden { opacity: 0; }
.slide-stack.is-hoverable:hover .slide-stack__img.is-top {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 26px 55px rgba(16, 17, 17, 0.24);
}

.slide-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 3rem;
}
.slide-dots button {
  width: 9px;
  height: 9px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: rgba(93, 30, 33, 0.25);
  cursor: pointer;
  transition: transform 0.2s var(--ease), background-color 0.2s var(--ease), width 0.2s var(--ease);
}
.slide-dots button:hover { background: rgba(93, 30, 33, 0.45); }
.slide-dots button.is-active {
  width: 24px;
  border-radius: 999px;
  background: var(--color-cta-badge);
}
.slide-dots button:focus-visible {
  outline: 2px solid var(--color-cta-badge);
  outline-offset: 2px;
}

/* ---------- 7. Capacity Tracker (redesigned) ---------- */
.capacity {
  position: relative;
  background:
    radial-gradient(circle at top left, rgba(201, 162, 76, 0.08), transparent 55%),
    #fff;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  padding: clamp(1.25rem, 2.4vw, 1.9rem) clamp(1.1rem, 2.4vw, 1.9rem);
  overflow: hidden;
  isolation: isolate;
}
.capacity__glow {
  position: absolute;
  inset: auto -80px -80px auto;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 162, 76, 0.28), transparent 70%);
  filter: blur(30px);
  z-index: -1;
  pointer-events: none;
}
.capacity__head {
  text-align: center;
  margin-bottom: 1.25rem;
}
.capacity__head h2 {
  font-size: clamp(1.3rem, 1.9vw, 1.8rem);
  margin: 0.15rem 0 0;
}
.capacity__head .eyebrow i {
  margin-right: 0.3rem;
  color: var(--color-cta-badge);
}
.capacity__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  margin-bottom: 1.4rem;
}
.capacity__stat {
  text-align: center;
  padding: 0.9rem 0.5rem;
  background: linear-gradient(180deg, rgba(253, 251, 247, 0.6), rgba(253, 251, 247, 0.2));
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
}
.capacity__stat--divider {
  border-color: transparent;
  background: var(--gold-gradient);
  color: #3a1f0c;
  box-shadow: var(--shadow-gold);
}
.capacity__stat-num {
  display: block;
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 2.6vw, 2.25rem);
  font-weight: 800;
  line-height: 1;
  color: var(--color-primary-header);
}
.capacity__stat--divider .capacity__stat-num { color: #3a1f0c; }
.capacity__stat-lbl {
  display: block;
  margin-top: 0.35rem;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(16, 17, 17, 0.62);
  font-weight: 600;
}
.capacity__stat--divider .capacity__stat-lbl { color: rgba(58, 31, 12, 0.78); }
.capacity__bar-wrap { margin-bottom: 0.9rem; }
.capacity__bar-lbl {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0.55rem;
  font-size: 0.88rem;
  color: var(--color-primary-header);
  font-weight: 600;
}
.capacity__bar-lbl i { color: var(--color-cta-badge); margin-right: 0.3rem; }
.capacity__bar-pct {
  background: var(--gold-gradient);
  color: #3a1f0c;
  padding: 0.2rem 0.65rem;
  border-radius: 999px;
  font-size: 0.82rem;
  box-shadow: var(--shadow-gold);
}
.progress {
  position: relative;
  height: 22px;
  border-radius: 999px;
  background: rgba(93, 30, 33, 0.08);
  overflow: hidden;
  box-shadow: inset 0 1px 3px rgba(16, 17, 17, 0.08);
}
.progress__fill {
  position: absolute;
  inset: 0 auto 0 0;
  width: 0;
  border-radius: 999px;
  background: var(--gold-gradient);
  background-size: 200% 100%;
  box-shadow: 0 4px 12px rgba(201, 162, 76, 0.4);
  transition: width 1.4s var(--ease);
  animation: goldShimmer 3.5s ease-in-out infinite;
}
@keyframes goldShimmer {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}
.progress__pct {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 12px;
  font-size: 0.72rem;
  font-weight: 700;
  color: #3a1f0c;
}
.capacity__note {
  margin: 1rem 0 0;
  font-size: 0.88rem;
  color: rgba(16, 17, 17, 0.66);
  display: flex;
  gap: 0.5rem;
  align-items: flex-start;
}
.capacity__note i { color: var(--color-cta-badge); margin-top: 0.15rem; }

/* ---------- 8. Contrast Matrix (Emerald) ---------- */
.emerald {
  background: var(--color-secondary-surface);
  color: var(--color-canvas-background);
}
/* Compact the emerald section — text + imagery reduced for better fit on all screens */
section.section.emerald {
  padding: clamp(1.6rem, 2.8vw, 2.4rem) 0;
}
.emerald h1,
.emerald h2,
.emerald h3 { color: var(--color-canvas-background); }
.emerald h2 { font-size: clamp(1.35rem, 2vw, 1.85rem); }
.emerald .section-head {
  max-width: 620px;
  margin-inline: auto;
  margin-bottom: 1.1rem;
  text-align: center;
}
.emerald .sub-head { font-size: 0.95rem; }
.emerald .eyebrow { color: var(--color-cta-badge-light); }
.emerald .sub-head { color: var(--color-ivory-muted); }

.contrast-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.9rem;
  margin-top: 1.25rem;
  max-width: 900px;
  margin-inline: auto;
}
.contrast-visual {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 0.6rem;
  max-width: 720px;
  margin-inline: auto;
  width: 100%;
}
.contrast-visual .vs {
  align-self: center;
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--color-cta-badge-light);
}
.contrast-card {
  margin: 0;
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  background: rgba(253, 251, 247, 0.06);
  border: 1px solid rgba(253, 251, 247, 0.14);
}
.contrast-card__ {
  /* placeholder to avoid empty rule */
}
.contrast-card figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 0.5rem 0.75rem;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  color: #fff;
}
.contrast-card--bad figcaption {
  background: linear-gradient(180deg, rgba(93, 30, 33, 0) 0%, rgba(80, 12, 15, 0.85) 100%);
}
.contrast-card--bad figcaption i { color: #ff9d9d; }
.contrast-card--good figcaption {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(93, 30, 33, 0.9) 100%);
  color: var(--color-cta-badge-light);
}
.contrast-card--good figcaption i { color: var(--color-cta-badge-light); }
.contrast-card--good {
  border: 2px solid var(--color-cta-badge);
  box-shadow: var(--shadow-gold), var(--shadow-md);
}
.contrast-img {
  width: 100%;
  aspect-ratio: 1 / 1;
  max-height: 260px;
  object-fit: contain;
  background:
    radial-gradient(circle at 30% 20%, rgba(201, 162, 76, 0.14), transparent 60%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.28), rgba(0, 0, 0, 0.42));
  display: block;
}
.contrast-card--bad .contrast-img {
  filter: grayscale(0.85) brightness(0.85) contrast(0.9);
}
.contrast-card--good .contrast-img {
  background:
    radial-gradient(circle at 30% 20%, rgba(201, 162, 76, 0.18), transparent 60%),
    linear-gradient(180deg, rgba(93, 30, 33, 0.35), rgba(93, 30, 33, 0.5));
}
.matrix { grid-column: 1 / -1; display: grid; gap: 0.6rem; }
.matrix__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}
.matrix__head {
  padding: 0.6rem 1rem;
  border-radius: var(--radius);
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-align: center;
}
.matrix__head--bad {
  color: var(--color-canvas-background);
  background: rgba(253, 251, 247, 0.14);
  border: 1px solid rgba(253, 251, 247, 0.22);
}
.matrix__head--good {
  color: #3a1f0c;
  background: var(--gold-gradient);
  box-shadow: var(--shadow-gold);
}
.matrix__cell {
  background: rgba(253, 251, 247, 0.06);
  border: 1px solid rgba(253, 251, 247, 0.14);
  border-radius: var(--radius);
  padding: 0.85rem 1rem;
}
.matrix__cell h3 {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.45rem;
}
.matrix__cell p { margin: 0; font-size: 0.88rem; line-height: 1.5; }
.matrix__cell--bad {
  opacity: 0.82;
}
.matrix__cell--bad p {
  color: var(--color-ivory-muted);
  text-decoration: line-through;
  text-decoration-color: rgba(253, 251, 247, 0.35);
  text-decoration-thickness: 1px;
}
.matrix__cell--bad h3 { color: rgba(253, 251, 247, 0.6); }
.matrix__cell--good {
  border-left: 4px solid var(--color-cta-badge);
  background: rgba(166, 130, 74, 0.12);
}
.matrix__cell--good h3 { color: var(--color-cta-badge-light); }
.matrix__point {
  grid-column: 1 / -1;
  font-family: var(--font-serif);
  color: var(--color-cta-badge-light);
  font-size: 1.05rem;
  margin: 0.5rem 0 -0.25rem;
}

/* ---------- 9c. Our Hampers grid ---------- */
.hamper-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.25rem;
  margin-top: 1.5rem;
}
.hamper-card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  background: #fff;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.hamper-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.hamper-card__media { aspect-ratio: 1 / 1; overflow: hidden; }
.hamper-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s var(--ease);
}
.hamper-card:hover .hamper-card__media img { transform: scale(1.05); }
.hamper-card__media--swap { position: relative; }
.hamper-card__media--swap img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.35s var(--ease), transform 0.4s var(--ease);
}
.hamper-card__media--swap .swap-hover { opacity: 0; }
.hamper-card:hover .hamper-card__media--swap .swap-base { opacity: 0; }
.hamper-card:hover .hamper-card__media--swap .swap-hover { opacity: 1; }
.hamper-card__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 0.75rem 0.9rem 0.9rem;
  gap: 0.4rem;
  text-align: center;
}
.hamper-card__name {
  font-size: 0.94rem;
  line-height: 1.3;
  margin: 0;
  color: var(--color-primary-header);
  min-height: 2.5em;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hamper-card__sub {
  display: block;
  min-height: 1em;
  margin: 0;
  font-family: var(--font-script);
  font-size: 0.95rem;
  color: var(--color-cta-badge);
  line-height: 1;
}
.hamper-card__cta {
  margin-top: auto;
  --btn-pad-y: 0.55rem;
  --btn-pad-x: 1rem;
  font-size: 0.85rem;
}

/* ---------- 9. Anatomy — alternating text / image grid ---------- */
.anatomy-alt {
  display: grid;
  grid-template-columns: 1fr 1fr;
  max-width: 900px;
  margin-inline: auto;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.anatomy-alt__text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(1rem, 2.2vw, 1.75rem);
  background: #fff;
}
.anatomy-alt__text:nth-child(4n+1) { background: var(--color-canvas-background); }
.anatomy-alt__num {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  color: var(--color-cta-badge);
  margin-bottom: 0.35rem;
}
.anatomy-alt__text h3 {
  font-family: var(--font-serif);
  font-size: clamp(0.98rem, 1.3vw, 1.12rem);
  color: var(--color-primary-header);
  margin: 0 0 0.35rem;
  line-height: 1.25;
}
.anatomy-alt__text p {
  font-size: 0.85rem;
  color: rgba(16, 17, 17, 0.72);
  margin: 0;
  line-height: 1.5;
}
.anatomy-alt__media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--color-burgundy-soft);
}
.anatomy-alt__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ---------- 9b. Anatomy Hotspots (legacy) ---------- */
.anatomy__stage {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.hotspot {
  position: absolute;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 2px solid #fff;
  background: var(--color-cta-badge);
  color: #fff;
  font-size: 1.1rem;
  font-weight: 700;
  display: grid;
  place-items: center;
  cursor: pointer;
  transform: translate(-50%, -50%);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  animation: pulse 2.4s infinite;
  z-index: 2;
}
.hotspot:focus-visible { outline: 3px solid #fff; outline-offset: 2px; }
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(166, 130, 74, 0.55); }
  70% { box-shadow: 0 0 0 14px rgba(166, 130, 74, 0); }
  100% { box-shadow: 0 0 0 0 rgba(166, 130, 74, 0); }
}
.hotspot__tip {
  position: absolute;
  bottom: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%) translateY(6px);
  width: min(260px, 70vw);
  background: var(--color-primary-header);
  color: var(--color-canvas-background);
  padding: 0.9rem 1rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  font-size: 0.85rem;
  line-height: 1.45;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.2s var(--ease), transform 0.2s var(--ease);
  z-index: 3;
}
.hotspot__tip strong {
  display: block;
  color: var(--color-cta-badge-light);
  margin-bottom: 0.25rem;
  font-family: var(--font-serif);
}
.hotspot__tip::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border: 8px solid transparent;
  border-top-color: var(--color-primary-header);
}
.hotspot.is-open .hotspot__tip,
.hotspot:hover .hotspot__tip {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}

/* ---------- 10. Pricing Tiers ---------- */
.pricing-note {
  font-size: 0.85rem;
  color: rgba(16, 17, 17, 0.6);
  margin-top: 0.5rem;
}
.tier-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-top: 1.5rem;
}
.tier {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.tier:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.tier__media { position: relative; }
.tier__img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; display: block; }
.tier__media--swap { aspect-ratio: 1 / 1; overflow: hidden; }
.tier__media--swap img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.35s var(--ease);
}
.tier__media--swap .swap-hover { opacity: 0; }
.tier:hover .tier__media--swap .swap-base { opacity: 0; }
.tier:hover .tier__media--swap .swap-hover { opacity: 1; }
.tier__body { display: flex; flex-direction: column; flex: 1; padding: 0.9rem 1rem 1.05rem; gap: 0.4rem; }
.tier__name { font-size: 1.05rem; margin: 0; min-height: 2.5em; display: flex; align-items: center; }
.tier__price {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--color-cta-badge);
  line-height: 1;
  margin: 0;
}
.tier__price small {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  color: rgba(16, 17, 17, 0.6);
  font-weight: 500;
}
.tier__moq {
  display: inline-block;
  margin: 0.6rem 0;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--color-primary-header);
  background: var(--color-burgundy-soft);
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
}
.tier__audience { font-size: 0.9rem; color: rgba(16, 17, 17, 0.72); margin-bottom: 0.6rem; }
.tier__packaging {
  font-size: 0.85rem;
  color: rgba(16, 17, 17, 0.72);
  border-top: 1px solid var(--color-line);
  padding-top: 0.75rem;
  margin-bottom: 0.75rem;
}
.tier__packaging b { color: var(--color-primary-header); }
.tier__list { list-style: none; margin: 0 0 1.1rem; padding: 0; display: grid; gap: 0.4rem; }
.tier__list li { position: relative; padding-left: 1.4rem; font-size: 0.85rem; line-height: 1.4; }
.tier__list li::before {
  content: "\f00c";
  font-family: "Font Awesome 6 Free", "FontAwesome";
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 0.05rem;
  color: var(--color-cta-badge);
  font-size: 0.72rem;
}
.tier__cta {
  margin-top: auto;
  --btn-pad-y: 0.6rem;
  --btn-pad-x: 1rem;
  font-size: 0.9rem;
}
.tier--featured {
  border: 2px solid var(--color-cta-badge);
  box-shadow: var(--shadow-gold);
}
.tier__ribbon {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  background: var(--color-primary-header);
  color: var(--color-cta-badge-light);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
}

/* ---------- 11. Privileges & Logistics (3-col) ---------- */
.trio {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 1.5rem;
}
.trio-card {
  background: #fff;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.5rem;
  box-shadow: var(--shadow-sm);
}
.trio-card .ic {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: var(--color-burgundy-soft);
  color: var(--color-cta-badge);
  font-size: 1.35rem;
  margin-bottom: 1rem;
}
.trio-card h3 { font-size: 1.15rem; margin-bottom: 0.5rem; }
.trio-card p { font-size: 0.92rem; color: rgba(16, 17, 17, 0.74); margin: 0; }

/* Countdown */
.countdown {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}
.countdown__unit {
  min-width: 66px;
  text-align: center;
  background: var(--color-primary-header);
  color: var(--color-canvas-background);
  border-radius: var(--radius);
  padding: 0.65rem 0.5rem;
}
.countdown__unit b {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.6rem;
  line-height: 1;
  color: var(--color-cta-badge-light);
}
.countdown__unit span { font-size: 0.68rem; text-transform: uppercase; letter-spacing: 0.06em; }

/* ---------- 12. Logistics section with image ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.5rem, 3vw, 3rem);
  align-items: center;
}
.info-blocks { display: grid; gap: 1rem; }
.info-blocks--row { grid-template-columns: repeat(3, 1fr); }
.info-block {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  background: #fff;
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  padding: 0.9rem 1.05rem;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.info-block:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.info-block .ic {
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: var(--gold-gradient);
  color: #3a1f0c;
  font-size: 1.1rem;
  box-shadow: var(--shadow-gold);
}
.info-block > div { flex: 1; min-width: 0; }
.info-block h3 { font-size: 1.02rem; margin-bottom: 0.2rem; line-height: 1.25; color: var(--color-primary-header); }
.info-block p { font-size: 0.88rem; color: rgba(16, 17, 17, 0.74); margin: 0; line-height: 1.5; }
.emerald .info-block h3 { color: var(--color-primary-header); }
.emerald .info-block p { color: rgba(16, 17, 17, 0.74); }

/* ---------- 13. Sample Guarantee (burgundy band) ---------- */
.sample-band {
  background: var(--color-primary-header);
  color: var(--color-canvas-background);
  border-radius: var(--radius-lg);
  padding: clamp(2rem, 4vw, 3.25rem);
  text-align: center;
}
.sample-band h2 { color: var(--color-canvas-background); }
.sample-band p { color: var(--color-ivory-muted); max-width: 68ch; margin-inline: auto; }

/* ---------- 14. Lead Form ---------- */
.lead {
  background:
    radial-gradient(circle at top right, rgba(166, 130, 74, 0.08), transparent 55%),
    var(--color-canvas-background);
}
.lead__grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(2rem, 4vw, 3.5rem);
  align-items: start;
}
.form-card {
  background: #fff;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  padding: clamp(1.5rem, 3vw, 2.5rem);
}
.field { margin-bottom: 1.15rem; }
.field > label {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--color-primary-header);
  margin-bottom: 0.4rem;
}
.field .hint { font-weight: 400; color: rgba(16, 17, 17, 0.55); font-size: 0.8rem; }
.field input,
.field select {
  width: 100%;
  font-family: inherit;
  font-size: 1rem;
  color: var(--color-body-text);
  padding: 0.8rem 0.95rem;
  border: 1px solid var(--color-line);
  border-radius: 10px;
  background: #fff;
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.field input:focus,
.field select:focus {
  outline: none;
  border-color: var(--color-cta-badge);
  box-shadow: 0 0 0 3px rgba(166, 130, 74, 0.18);
}
.field input:user-invalid {
  border-color: #b3261e;
}
.checks {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 0.6rem;
}
.check {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 0.75rem;
  border: 1px solid var(--color-line);
  border-radius: 10px;
  font-size: 0.9rem;
  cursor: pointer;
  transition: border-color 0.2s var(--ease), background-color 0.2s var(--ease);
}
.check:has(input:checked) {
  border-color: var(--color-cta-badge);
  background: rgba(166, 130, 74, 0.08);
}
.check input { width: auto; accent-color: var(--color-cta-badge); }
.form-note { font-size: 0.78rem; color: rgba(16, 17, 17, 0.55); text-align: center; margin: 0.9rem 0 0; }
.form-status {
  margin-top: 1rem;
  padding: 0.85rem 1rem;
  border-radius: 10px;
  font-size: 0.9rem;
  font-weight: 600;
  display: none;
}
.form-status.is-success { display: block; background: rgba(21, 66, 48, 0.12); color: var(--color-secondary-surface); }
.form-status.is-error { display: block; background: rgba(179, 38, 30, 0.1); color: #b3261e; }

.lead__aside .badge { margin-bottom: 0.75rem; }
.lead-points { list-style: none; margin: 1.25rem 0 0; padding: 0; display: grid; gap: 0.85rem; }
.lead-points li { display: flex; gap: 0.75rem; align-items: flex-start; font-size: 0.95rem; }
.lead-points i { color: var(--color-cta-badge); margin-top: 0.2rem; }

/* ---------- 15. FAQ Accordion ---------- */
.faq { max-width: 860px; margin-inline: auto; }
.faq__item {
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  background: #fff;
  margin-bottom: 0.85rem;
  overflow: hidden;
}
.faq__q {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--color-primary-header);
  padding: 1.15rem 1.35rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.faq__q:focus-visible { outline: 3px solid var(--color-cta-badge); outline-offset: -3px; }
.faq__q .chev { transition: transform 0.25s var(--ease); color: var(--color-cta-badge); }
.faq__q[aria-expanded="true"] .chev { transform: rotate(180deg); }
.faq__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s var(--ease);
}
.faq__a-inner { padding: 0 1.35rem 1.25rem; color: rgba(16, 17, 17, 0.78); font-size: 0.95rem; }

/* ---------- 16. Footer ---------- */
.site-footer {
  background: var(--color-primary-header);
  color: var(--color-ivory-muted);
  padding: 2.5rem 0;
  text-align: center;
  font-size: 0.88rem;
}
.site-footer a { color: var(--color-cta-badge-light); text-decoration: none; }
.site-footer .foot-logo { font-family: var(--font-serif); font-size: 1.3rem; color: var(--color-canvas-background); margin-bottom: 0.5rem; }

/* ---------- 17. Scroll reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}
.reveal.is-visible { opacity: 1; transform: none; }

/* ---------- 17b. Best Sellers Carousel (auto-running slider) ---------- */
.tier-carousel {
  position: relative;
  margin-top: 1.25rem;
  padding: 1.2rem 2.8rem 1.6rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.85) 0%, rgba(253, 251, 247, 0.6) 100%),
    #fff;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  isolation: isolate;
}
.tier-carousel::before,
.tier-carousel::after {
  content: "";
  position: absolute;
  pointer-events: none;
  z-index: 0;
  border-radius: 50%;
  filter: blur(40px);
  opacity: 0.55;
}
.tier-carousel::before {
  top: -60px;
  left: -60px;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(201, 162, 76, 0.35), transparent 70%);
}
.tier-carousel::after {
  bottom: -60px;
  right: -60px;
  width: 240px;
  height: 240px;
  background: radial-gradient(circle, rgba(93, 30, 33, 0.25), transparent 70%);
}
.tier-carousel__viewport {
  position: relative;
  z-index: 1;
  overflow: hidden;
  border-radius: var(--radius);
}
.tier-carousel__track {
  display: flex;
  gap: 1.25rem;
  transition: transform 0.65s var(--ease);
  will-change: transform;
}
.tier-carousel .tier {
  flex: 0 0 auto;
  width: calc((100% - 3 * 1.25rem) / 4);
  min-height: 0;
}
.tier-carousel__arrow {
  position: absolute;
  top: calc(50% - 20px);
  transform: translateY(-50%);
  z-index: 3;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid var(--color-line);
  background: #fff;
  color: var(--color-primary-header);
  font-size: 1rem;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  display: grid;
  place-items: center;
  transition: transform 0.2s var(--ease), background-color 0.2s var(--ease), color 0.2s var(--ease);
}
.tier-carousel__arrow:hover {
  background: var(--gold-gradient);
  color: #3a1f0c;
  transform: translateY(-50%) scale(1.05);
  border-color: transparent;
}
.tier-carousel__arrow:focus-visible {
  outline: 3px solid var(--color-cta-badge);
  outline-offset: 3px;
}
.tier-carousel__arrow--prev { left: 0.55rem; }
.tier-carousel__arrow--next { right: 0.55rem; }
.tier-carousel__arrow[disabled] {
  opacity: 0.4;
  cursor: not-allowed;
  pointer-events: none;
}
.tier-carousel__dots {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  gap: 0.4rem;
  margin-top: 1.2rem;
}
.tier-carousel__dot {
  width: 9px;
  height: 9px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: rgba(93, 30, 33, 0.22);
  cursor: pointer;
  transition: transform 0.2s var(--ease), background 0.2s var(--ease), width 0.2s var(--ease);
}
.tier-carousel__dot:hover { background: rgba(93, 30, 33, 0.4); }
.tier-carousel__dot.is-active {
  width: 26px;
  border-radius: 999px;
  background: var(--gold-gradient);
}
.tier-carousel__dot:focus-visible {
  outline: 2px solid var(--color-cta-badge);
  outline-offset: 2px;
}

/* ---------- 17c. Floating WhatsApp Widget ---------- */
.whatsapp-float {
  position: fixed;
  bottom: 22px;
  right: 22px;
  z-index: 999;
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.55rem 1.1rem 0.55rem 0.55rem;
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  color: #fff;
  border-radius: 999px;
  text-decoration: none;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.95rem;
  box-shadow: var(--shadow-whatsapp), 0 4px 12px rgba(0, 0, 0, 0.14);
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease);
  animation: whatsapp-pulse 2.6s ease-out infinite;
}
.whatsapp-float__icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #fff;
  color: #25D366;
  display: grid;
  place-items: center;
  font-size: 1.4rem;
}
.whatsapp-float__label {
  padding-right: 0.25rem;
  white-space: nowrap;
  letter-spacing: 0.01em;
}
.whatsapp-float:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(37, 211, 102, 0.5), 0 4px 12px rgba(0, 0, 0, 0.16);
  color: #fff;
}
.whatsapp-float:focus-visible {
  outline: 3px solid #fff;
  outline-offset: 3px;
}
@keyframes whatsapp-pulse {
  0%   { box-shadow: var(--shadow-whatsapp), 0 0 0 0 rgba(37, 211, 102, 0.55); }
  70%  { box-shadow: var(--shadow-whatsapp), 0 0 0 18px rgba(37, 211, 102, 0); }
  100% { box-shadow: var(--shadow-whatsapp), 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* ---------- 17d. Early-Bird Privileges (Redesigned) ---------- */
.privileges {
  position: relative;
  padding: clamp(1.5rem, 3vw, 2.25rem) clamp(1.25rem, 2.5vw, 2rem);
  border-radius: var(--radius-lg);
  overflow: hidden;
  isolation: isolate;
  background:
    linear-gradient(180deg, rgba(93, 30, 33, 0.03), rgba(253, 251, 247, 0.9)),
    #fff;
  border: 1px solid var(--color-line);
  box-shadow: var(--shadow-md);
}
.privileges__glow {
  position: absolute;
  inset: -100px -100px auto auto;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 162, 76, 0.22), transparent 70%);
  filter: blur(40px);
  z-index: -1;
  pointer-events: none;
}
.privileges__head { text-align: center; max-width: 640px; margin: 0 auto 1.4rem; }
.privileges__head h2 { font-size: clamp(1.35rem, 2.1vw, 1.9rem); margin-bottom: 0.25rem; }
.privileges__head .sub-head { display: inline-flex; align-items: center; gap: 0.4rem; font-size: 0.95rem; }
.privileges__head .sub-head i { color: var(--color-cta-badge); }
.privileges__head .sub-head strong { color: var(--color-primary-header); }
.countdown--hero {
  margin: 1rem auto 0;
  justify-content: center;
  gap: 0.35rem;
}
.countdown--hero .countdown__unit {
  min-width: 66px;
  padding: 0.6rem 0.5rem;
  background: linear-gradient(180deg, var(--color-primary-header), #4a1417);
  border: 1px solid rgba(201, 162, 76, 0.35);
  box-shadow: 0 5px 16px rgba(93, 30, 33, 0.25);
}
.countdown--hero .countdown__unit b {
  font-size: clamp(1.25rem, 2.4vw, 1.7rem);
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.countdown--hero .countdown__unit span { font-size: 0.62rem; }
.countdown__sep {
  align-self: center;
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--color-cta-badge);
  padding-top: 0.3rem;
}

.privilege-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.privilege-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  padding: 1.4rem 1.15rem 1.25rem;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
  overflow: hidden;
}
.privilege-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 3px;
  background: var(--gold-gradient);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s var(--ease);
}
.privilege-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.privilege-card:hover::before { transform: scaleX(1); }
.privilege-card__num {
  position: absolute;
  top: 0.4rem;
  right: 0.8rem;
  font-family: var(--font-serif);
  font-size: 2.4rem;
  font-weight: 800;
  line-height: 1;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  opacity: 0.28;
  pointer-events: none;
}
.privilege-card__ic {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: var(--gold-gradient);
  color: #3a1f0c;
  font-size: 1.25rem;
  box-shadow: var(--shadow-gold);
  margin-bottom: 0.75rem;
}
.privilege-card h3 {
  font-size: 1.02rem;
  margin: 0 0 0.35rem;
  line-height: 1.25;
}
.privilege-card p {
  font-size: 0.86rem;
  color: rgba(16, 17, 17, 0.72);
  margin: 0 0 0.75rem;
  line-height: 1.5;
}
.privilege-card__save {
  display: inline-block;
  padding: 0.28rem 0.65rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--color-primary-header);
  background: var(--color-burgundy-soft);
  border-radius: 999px;
}
.privilege-card--featured {
  border: 2px solid var(--color-cta-badge);
  box-shadow: var(--shadow-gold);
}
.privilege-card--featured::before { transform: scaleX(1); }
.privilege-card--featured .privilege-card__save {
  background: var(--gold-gradient);
  color: #3a1f0c;
  box-shadow: var(--shadow-gold);
}

/* ---------- 17e. Lead Form field enhancements ---------- */
.form-row {
  display: grid;
  gap: 1.15rem;
  margin-bottom: 0.15rem;
}
.form-row--2 { grid-template-columns: 1fr 1fr; }
.field__input {
  position: relative;
  display: flex;
  align-items: center;
}
.field__icon {
  position: absolute;
  left: 0.95rem;
  color: var(--color-cta-badge);
  font-size: 0.95rem;
  pointer-events: none;
}
.field__input input,
.field__input select {
  padding-left: 2.55rem;
}

/* ---------- 17f. Portfolio / Past Work ---------- */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 1.75rem;
}
.portfolio-card {
  margin: 0;
  position: relative;
  background: #fff;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
  display: flex;
  flex-direction: column;
}
.portfolio-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.portfolio-card__media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}
.portfolio-card__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(93, 30, 33, 0.55) 100%);
  pointer-events: none;
}
.portfolio-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}
.portfolio-card:hover .portfolio-card__media img { transform: scale(1.06); }
.portfolio-card figcaption {
  padding: 1.15rem 1.25rem 1.35rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  flex: 1;
}
.portfolio-card__tag {
  align-self: flex-start;
  font-family: var(--font-sans);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.28rem 0.7rem;
  background: var(--gold-gradient);
  color: #3a1f0c;
  border-radius: 999px;
  box-shadow: var(--shadow-gold);
}
.portfolio-card figcaption h3 {
  font-family: var(--font-serif);
  font-size: 1.08rem;
  margin: 0.35rem 0 0.15rem;
  color: var(--color-primary-header);
}
.portfolio-card figcaption p {
  margin: 0;
  font-size: 0.88rem;
  color: rgba(16, 17, 17, 0.7);
  line-height: 1.5;
}

.portfolio-logos {
  margin-top: 2.5rem;
  padding: 1.5rem clamp(1rem, 3vw, 2rem);
  border-top: 1px solid var(--color-line);
  border-bottom: 1px solid var(--color-line);
  background: linear-gradient(180deg, rgba(253, 251, 247, 0.6), rgba(253, 251, 247, 0.2));
  border-radius: var(--radius);
  text-align: center;
}
.portfolio-logos__label {
  display: block;
  font-family: var(--font-script);
  font-size: 1.3rem;
  color: var(--color-cta-badge-dark);
  margin-bottom: 0.75rem;
}
.portfolio-logos__strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: clamp(1rem, 2.5vw, 2.25rem);
}
.portfolio-logos__strip img {
  max-height: 44px;
  width: auto;
  filter: grayscale(1) opacity(0.55);
  transition: filter 0.25s var(--ease), transform 0.25s var(--ease);
}
.portfolio-logos__strip img:hover {
  filter: grayscale(0) opacity(1);
  transform: scale(1.05);
}

/* Standalone clients band (extracted so it can reorder on mobile) */
.clients-band { padding-block: clamp(1.25rem, 2.5vw, 2rem); }
.clients-band .portfolio-logos { margin-top: 0; }

/* ---------- 17g. Catalogue Download Lightbox ---------- */
.catalogue-modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
}
.catalogue-modal.is-open { display: flex; }
.catalogue-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(16, 17, 17, 0.62);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  animation: fadeIn 0.25s var(--ease);
}
.catalogue-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(100%, 460px);
  max-height: calc(100vh - 2.5rem);
  overflow-y: auto;
  background:
    radial-gradient(circle at top right, rgba(201, 162, 76, 0.12), transparent 55%),
    #fff;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  padding: clamp(1.5rem, 3vw, 2.25rem);
  animation: popIn 0.3s var(--ease);
}
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes popIn {
  from { opacity: 0; transform: translateY(16px) scale(0.98); }
  to { opacity: 1; transform: none; }
}
.catalogue-modal__close {
  position: absolute;
  top: 0.85rem;
  right: 0.85rem;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--color-line);
  background: #fff;
  color: var(--color-primary-header);
  font-size: 1rem;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: background-color 0.2s var(--ease), color 0.2s var(--ease);
}
.catalogue-modal__close:hover { background: var(--color-primary-header); color: #fff; }
.catalogue-modal__close:focus-visible { outline: 3px solid var(--color-cta-badge); outline-offset: 2px; }
.catalogue-modal__head { text-align: center; margin-bottom: 1.25rem; }
.catalogue-modal__head h2 {
  font-size: clamp(1.25rem, 2vw, 1.6rem);
  margin: 0.1rem 0 0.4rem;
}
.catalogue-modal__head p {
  font-size: 0.9rem;
  color: rgba(16, 17, 17, 0.7);
  margin: 0;
}
.catalogue-form .field { margin-bottom: 0.9rem; }
.catalogue-form .btn { margin-top: 0.35rem; }

/* ---------- 18. Responsive ---------- */
@media (max-width: 900px) {
  .site-nav { gap: 0.5rem; position: relative; }
  .site-nav__brand img { height: 140px; margin: -48px 0; }
  .site-nav__toggle { display: block; order: 2; }
  .site-nav__menu {
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--color-canvas-background);
    border-bottom: 1px solid var(--color-line);
    box-shadow: var(--shadow-md);
    padding: 0.5rem;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
    transition: max-height 0.3s var(--ease), opacity 0.25s var(--ease);
  }
  .site-nav__menu.is-open {
    max-height: 80vh;
    opacity: 1;
    pointer-events: auto;
  }
  .site-nav__menu a { padding: 0.85rem 1rem; border-radius: 8px; }
  /* Standalone Download Catalogue button: stays visible after the menu icon */
  .site-nav__cta {
    order: 3;
    padding: 0.5rem 0.85rem;
    font-size: 0.8rem;
    white-space: nowrap;
  }
  .site-nav__cta i { font-size: 0.9em; }
}

@media (max-width: 420px) {
  .site-nav__brand img { height: 118px; margin: -40px 0; }
  .site-nav__cta { padding: 0.45rem 0.65rem; font-size: 0.72rem; }
}

@media (max-width: 992px) {
  .tier-grid { grid-template-columns: repeat(2, 1fr); }
  .tier-carousel { padding: 1.25rem 2.8rem 1.75rem; }
  .tier-carousel .tier { width: calc((100% - 2 * 1.25rem) / 3); }
  .hamper-grid { grid-template-columns: repeat(3, 1fr); }
  .trio { grid-template-columns: 1fr; }
  .privilege-grid { grid-template-columns: 1fr; }
  .lead__grid { grid-template-columns: 1fr; }
}

@media (max-width: 820px) {
  .hero__grid {
    grid-template-columns: 1fr;
    grid-template-areas:
      "copy"
      "visual"
      "cta";
    row-gap: 1.25rem;
  }
  .hero__copy, .hero__cta { align-self: auto; }
  .hero__visual { width: min(78%, 400px); justify-self: center; min-height: 0; }
  .split { grid-template-columns: 1fr; }
  .info-blocks--row { grid-template-columns: 1fr; }
  .matrix__cell--bad p { text-decoration-thickness: 1px; }
  .tier-carousel .tier { width: calc((100% - 1 * 1.25rem) / 2); }
  .capacity__stats { grid-template-columns: 1fr; }
  .form-row--2 { grid-template-columns: 1fr; }

  /* Mobile section reorder: bring the client logos up before the incentive window */
  main { display: flex; flex-direction: column; }
  #tiers { order: 1; }
  #compare { order: 2; }
  #anatomy { order: 3; }
  #hampers-all { order: 4; }
  #clients { order: 5; }
  #offers { order: 6; }
  #logistics { order: 7; }
  #capacity { order: 8; }
  #lead-form { order: 9; }
  #portfolio { order: 10; }
  #faq { order: 11; }
}

@media (max-width: 620px) {
  /* Scale the core type system down for a proper mobile feel */
  :root {
    --fs-h1: clamp(1.18rem, 4.4vw, 1.42rem);
    --fs-h2: clamp(1rem, 3.8vw, 1.2rem);
    --fs-h3: clamp(0.9rem, 3vw, 1rem);
    --fs-body: 0.82rem;
  }
  .section { padding-block: 1.75rem; }
  .eyebrow { font-size: clamp(0.8rem, 3.2vw, 0.95rem); }
  .sub-head { font-size: 0.8rem; line-height: 1.5; }
  .section-head { margin-bottom: 1.1rem; }
  .btn-lg { --btn-pad-y: 0.75rem; --btn-pad-x: 1.4rem; font-size: 0.9rem; }
  /* Trim oversized component text on phones */
  .privilege-card h3 { font-size: 0.95rem; }
  .privilege-card p { font-size: 0.8rem; }
  .privilege-card__save { font-size: 0.68rem; }
  .info-block h3 { font-size: 0.92rem; }
  .info-block p { font-size: 0.8rem; }
  .faq__q { font-size: 0.9rem; }
  .faq__a-inner { font-size: 0.83rem; }
  .lead-points li { font-size: 0.85rem; }
  .field > label { font-size: 0.83rem; }
  .form-note { font-size: 0.72rem; }
  .capacity__bar-lbl { font-size: 0.78rem; }
  .capacity__note { font-size: 0.8rem; }
  .trio-card h3 { font-size: 1rem; }
  .trio-card p { font-size: 0.82rem; }
  .site-footer { font-size: 0.8rem; }

  .tier-grid { grid-template-columns: 1fr; }
  /* Two best-seller cards per screen — compact content */
  .tier-carousel { padding: 0.85rem 1.9rem 1.2rem; }
  .tier-carousel__track { gap: 0.65rem; }
  .tier-carousel__arrow { width: 32px; height: 32px; font-size: 0.85rem; }
  .tier-carousel__arrow--prev { left: 0.2rem; }
  .tier-carousel__arrow--next { right: 0.2rem; }
  .tier-carousel .tier__body { padding: 0.55rem 0.6rem 0.7rem; gap: 0.3rem; }
  .tier-carousel .tier__name { font-size: 0.8rem; min-height: 2.4em; }
  .tier-carousel .tier__price { font-size: 1rem; }
  .tier-carousel .tier__price small { font-size: 0.68rem; }
  .tier-carousel .tier__cta { --btn-pad-y: 0.42rem; --btn-pad-x: 0.4rem; font-size: 0.7rem; }

  /* Anatomy: keep the alternating layout, tighter text on phones */
  .anatomy-alt__text { padding: 0.7rem 0.75rem; }
  .anatomy-alt__num { font-size: 0.78rem; margin-bottom: 0.2rem; }
  .anatomy-alt__text h3 { font-size: 0.82rem; margin-bottom: 0.25rem; }
  .anatomy-alt__text p { font-size: 0.7rem; line-height: 1.4; }

  .hamper-grid { grid-template-columns: repeat(2, 1fr); }
  .portfolio-grid { grid-template-columns: 1fr; }
  .announce-bar { font-size: 0.72rem; }

  /* Hero: tighter copy, balanced showcase image */
  .hero__sub { font-size: 0.82rem; }
  .hero__visual { width: min(78%, 380px); justify-self: center; min-height: 0; }
  /* CTAs sit under the image, side by side: Request Catalogue | WhatsApp */
  .hero__cta { flex-wrap: nowrap; gap: 0.5rem; margin: 0; }
  .hero__cta .btn { flex: 1; width: auto; }
  .hero__cta .btn-lg { --btn-pad-y: 0.6rem; --btn-pad-x: 0.5rem; font-size: 0.8rem; }
  .hero__cta .btn i { font-size: 0.9em; }

  .whatsapp-float { bottom: 16px; right: 16px; padding: 0.5rem; }
  .whatsapp-float__label { display: none; }
  .whatsapp-float__icon { width: 36px; height: 36px; font-size: 1.25rem; }

  /* Difference / contrast: keep the side-by-side comparison structure, scaled down */
  .emerald .section-head { margin-bottom: 0.9rem; }
  .contrast-grid { gap: 0.6rem; }
  .contrast-visual { gap: 0.4rem; margin-bottom: 0.5rem; }
  .contrast-visual .vs { font-size: 0.8rem; }
  .contrast-img { max-height: 118px; }
  .contrast-card figcaption { font-size: 0.58rem; padding: 0.3rem 0.35rem; gap: 0.2rem; letter-spacing: 0.02em; }
  .matrix { gap: 0.45rem; }
  .matrix__row { gap: 0.45rem; }
  .matrix__head { font-size: 0.58rem; padding: 0.4rem 0.3rem; letter-spacing: 0.03em; }
  .matrix__cell { padding: 0.55rem 0.5rem; }
  .matrix__cell p { font-size: 0.72rem; line-height: 1.4; }

  /* Incentive window */
  .privileges { padding: 1.25rem 1rem; }
  .countdown--hero { gap: 0.4rem; flex-wrap: wrap; }
  .countdown__sep { display: none; }
  .countdown--hero .countdown__unit {
    min-width: 0;
    flex: 1 1 calc(25% - 0.4rem);
    padding: 0.55rem 0.3rem;
  }
  .countdown--hero .countdown__unit b { font-size: 1.35rem; }
  .countdown--hero .countdown__unit span { font-size: 0.56rem; }

  .portfolio-logos__strip img { max-height: 32px; }
}

@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .hotspot { animation: none; }
  .progress__fill { transition: none; }
  .whatsapp-float { animation: none; }
  .tier-carousel__track { transition: none; }
  .slide-hint { animation: none; }
}
