/* ==========================================================================
   Shop n Celebrate — visual identity
   Sections: 1 tokens · 2 reset · 3 typography · 4 utilities · 5 decor
   6 buttons · 7 header · 8 hero · 9 intent · 10 rail · 11 finder
   12 feature · 13 timeline · 14 hubs · 15 cards · 16 newsletter
   17 footer · 18 article · 19 responsive
   ========================================================================== */

/* ---------- 1. Tokens ---------------------------------------------------- */
:root {
  /* Brand core: deep festive maroon through to marigold */
  --maroon-900: #240817;
  --maroon-800: #3d0d24;
  --maroon-700: #5a0f2e;
  --maroon-600: #7a1740;
  --maroon-500: #9c2453;

  --marigold-600: #e07b0a;
  --marigold-500: #ffa415;
  --marigold-400: #ffbb47;
  --marigold-300: #ffd489;

  --vermilion: #e8442a;
  --rose: #c2185b;
  --emerald: #0f766e;
  --indigo: #3f3d8f;

  --gold-600: #b08428;
  --gold-500: #d9a343;
  --gold-300: #f0d69c;

  /* Warm neutrals — never pure white, never pure grey */
  --cream-50: #fffcf7;
  --cream-100: #fff8ef;
  --cream-200: #fdf0e1;
  --cream-300: #f6e4d1;
  --sand-400: #e4d0ba;

  --ink-900: #241019;
  --ink-700: #4a3340;
  --ink-500: #6f5b66;
  --ink-300: #9a8892;

  /* Semantic */
  --bg: var(--cream-100);
  --bg-raised: #fff;
  --text: var(--ink-900);
  --text-muted: var(--ink-500);
  --border: var(--cream-300);
  --accent: var(--marigold-500);

  /* Type scale — fluid, clamped */
  --font-display: "Fraunces", "Georgia", serif;
  --font-body: "Plus Jakarta Sans", system-ui, -apple-system, "Segoe UI", sans-serif;

  --t-hero: clamp(2.4rem, 1.2rem + 3.6vw, 4.5rem);
  --t-h1: clamp(2rem, 1.2rem + 2.4vw, 3.25rem);
  --t-h2: clamp(1.65rem, 1.1rem + 1.7vw, 2.5rem);
  --t-h3: clamp(1.2rem, 1rem + 0.7vw, 1.5rem);
  --t-lead: clamp(1.05rem, 0.98rem + 0.35vw, 1.22rem);
  --t-body: 1rem;
  --t-sm: 0.875rem;
  --t-xs: 0.78rem;

  /* Space */
  --sp-1: 0.25rem;
  --sp-2: 0.5rem;
  --sp-3: 0.75rem;
  --sp-4: 1rem;
  --sp-5: 1.5rem;
  --sp-6: 2rem;
  --sp-7: 3rem;
  --sp-8: 4rem;
  --sp-9: 6rem;
  --section-y: 3.5rem;

  --wrap: 1200px;
  --wrap-narrow: 760px;

  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 22px;
  --r-xl: 32px;
  --r-pill: 999px;

  --sh-sm: 0 1px 2px rgba(36, 16, 25, 0.06), 0 2px 6px rgba(36, 16, 25, 0.04);
  --sh-md: 0 4px 12px rgba(36, 16, 25, 0.07), 0 12px 28px rgba(36, 16, 25, 0.06);
  --sh-lg: 0 10px 24px rgba(36, 16, 25, 0.1), 0 28px 60px rgba(36, 16, 25, 0.1);
  --sh-glow: 0 0 0 1px rgba(217, 163, 67, 0.35), 0 8px 32px rgba(255, 164, 21, 0.22);

  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

/* ---------- 2. Reset ---------------------------------------------------- */
*,
*::before,
*::after { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  background: var(--maroon-900);
  overflow-x: visible;
  overflow-y: visible;
}
html:has(body.customize-preview) {
  scroll-behavior: auto;
}

html body {
  margin: 0;
  min-height: 100vh;
  display: block;
  font-family: var(--font-body);
  font-size: var(--t-body);
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: visible;
}

html.is-drawer-open,
html.is-drawer-open body {
  overflow: hidden !important;
}

#force-footer {
  display: none !important;
}

#main { min-height: 50vh; overflow-x: clip; }

img, svg, picture, video { display: block; max-width: 100%; height: auto; }
button, input, select, textarea { font: inherit; color: inherit; }
button { cursor: pointer; background: none; border: 0; padding: 0; touch-action: manipulation; }
a { color: inherit; text-decoration: none; touch-action: manipulation; }
ul, ol { list-style: none; margin: 0; padding: 0; }

:focus-visible {
  outline: 3px solid var(--marigold-500);
  outline-offset: 3px;
  border-radius: 4px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 999;
  background: var(--maroon-700);
  color: #fff;
  padding: var(--sp-3) var(--sp-5);
  border-radius: 0 0 var(--r-md) 0;
}
.skip-link:focus { left: 0; }

.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

/* ---------- 3. Typography ----------------------------------------------- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -0.018em;
  margin: 0;
  font-variation-settings: "SOFT" 20, "WONK" 1;
}

p { margin: 0 0 var(--sp-4); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  font-family: var(--font-body);
  font-size: var(--t-xs);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--maroon-600);
}
.eyebrow::before {
  content: "";
  width: 26px; height: 2px;
  background: linear-gradient(90deg, var(--marigold-500), var(--vermilion));
  border-radius: 2px;
}
.eyebrow--light { color: var(--marigold-300); }
.eyebrow--light::before { background: linear-gradient(90deg, var(--marigold-400), transparent); }

.lead {
  font-size: var(--t-lead);
  color: var(--ink-700);
  line-height: 1.6;
}

/* ---------- 4. Layout utilities ----------------------------------------- */
.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: var(--sp-5);
}

.section {
  padding-block: var(--section-y);
  position: relative;
}
.section--nudge { padding-top: var(--section-y); }
.section--tight { padding-block: 3rem; }
.section--cream { background: var(--cream-200); }
.section--dark {
  background: var(--maroon-900);
  color: var(--cream-200);
  overflow: hidden;
  padding-block: var(--section-y);
  padding-top: calc(var(--section-y) + 0.65rem);
}
.section--dark h2, .section--dark h3 { color: #fff; }
.section--dark .lead,
.section--dark .section-head p { color: rgba(255, 248, 239, 0.68); }

.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: var(--sp-5);
  margin-bottom: var(--sp-6);
  flex-wrap: wrap;
}
.section--dark .section-head { align-items: center; }
.section-head__text { max-width: 62ch; }
.section-head h2 { font-size: var(--t-h2); margin-block: var(--sp-3) var(--sp-2); }
.section-head p { margin: 0; color: var(--text-muted); }

.text-center { text-align: center; }
.center-col { margin-inline: auto; max-width: var(--wrap-narrow); }

/* ---------- 5. Decorative festival layer -------------------------------- */
/* Repeating rangoli / marigold motifs, all pure CSS+SVG so nothing to host */

.decor { position: absolute; inset: 0; pointer-events: none; overflow: hidden; z-index: 0; }
.decor > * { position: absolute; }

/* Soft bokeh light — imitates diya / fairy-light glow */
.glow {
  border-radius: 50%;
  filter: blur(46px);
  opacity: 0.5;
}
.glow--marigold { background: radial-gradient(circle, var(--marigold-400), transparent 68%); }
.glow--rose { background: radial-gradient(circle, var(--rose), transparent 68%); }
.glow--gold { background: radial-gradient(circle, var(--gold-500), transparent 68%); }

/* Rangoli mandala — the motif lives in assets/img/rangoli.svg */
.rangoli {
  width: 420px; aspect-ratio: 1;
  opacity: 0.3;
  background: url("../img/rangoli.svg") center / contain no-repeat;
}
.rangoli--spin {
  transform-origin: 50% 50%;
  animation: snc-rangoli-spin 80s linear infinite;
  opacity: 0.38;
}
.rangoli--spin-rev {
  animation-name: snc-rangoli-spin-rev;
  animation-duration: 96s;
}
/* Tablet and phone: the top-right motif sits behind the headline, so fade it */
@media (max-width: 1080px) {
  .rangoli--spin:not(.rangoli--spin-rev) { opacity: 0.15; }
}
@keyframes snc-rangoli-spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
@keyframes snc-rangoli-spin-rev {
  from { transform: rotate(0deg); }
  to { transform: rotate(-360deg); }
}
@media (prefers-reduced-motion: reduce) {
  .rangoli--spin { animation: none; }
}
.section--dark .rangoli, .signup .rangoli, .footer .rangoli { opacity: 0.14; }

/* Marigold garland strung across the top of dark sections */
.garland {
  left: 0; right: 0; top: 0;
  height: 26px;
  background-image: radial-gradient(circle at 50% 40%, var(--marigold-400) 30%, var(--marigold-600) 62%, transparent 68%);
  background-size: 26px 26px;
  background-repeat: repeat-x;
  opacity: 0.85;
  filter: drop-shadow(0 2px 3px rgba(0, 0, 0, 0.25));
}

/* Thin gold ornament divider */
.ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-3);
  color: var(--gold-500);
  margin: var(--sp-6) 0 0;
}
.ornament::before, .ornament::after {
  content: "";
  height: 1px;
  flex: 1;
  max-width: 160px;
  background: linear-gradient(90deg, transparent, var(--gold-300), transparent);
}
.ornament span { font-size: 1.1rem; line-height: 1; }

/* ---------- 6. Buttons -------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2);
  padding: 0.85rem 1.6rem;
  border-radius: var(--r-pill);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  border: 2px solid transparent;
  transition: transform 0.22s var(--ease), box-shadow 0.22s var(--ease),
              background-color 0.22s var(--ease), color 0.22s var(--ease);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn--primary {
  background: var(--marigold-500);
  color: #fff;
  box-shadow: 0 4px 14px rgba(255, 164, 21, 0.35);
}
.btn--primary:hover {
  background: var(--marigold-600);
  box-shadow: 0 8px 24px rgba(224, 123, 10, 0.38);
}

.btn--ghost {
  background: rgba(255, 255, 255, 0.72);
  color: var(--maroon-700);
  border-color: var(--maroon-700);
}
.btn--ghost:hover { background: var(--maroon-700); color: #fff; }

.btn--gold {
  background: var(--marigold-500);
  color: var(--maroon-900);
  box-shadow: 0 4px 14px rgba(255, 164, 21, 0.35);
}
.btn--gold:hover { background: var(--marigold-400); }

.btn--outline-light {
  border-color: rgba(255, 248, 239, 0.4);
  color: var(--cream-100);
}
.btn--outline-light:hover { background: rgba(255, 248, 239, 0.12); border-color: var(--marigold-400); }

.btn--sm { padding: 0.55rem 1.1rem; font-size: var(--t-sm); }

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 700;
  font-size: var(--t-sm);
  color: var(--maroon-600);
}
.link-arrow svg { transition: transform 0.22s var(--ease); }
.link-arrow:hover svg { transform: translateX(4px); }

/* Chips / tags */
.chip {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.3rem 0.7rem;
  border-radius: var(--r-pill);
  font-size: var(--t-xs);
  font-weight: 700;
  letter-spacing: 0.03em;
  background: var(--cream-200);
  color: var(--maroon-700);
  border: 1px solid var(--border);
}
.chip--solid { background: var(--maroon-700); color: var(--cream-100); border-color: transparent; }
.chip--gold { background: var(--marigold-300); color: var(--maroon-800); border-color: transparent; }
.chip--emerald { background: #d7ede9; color: var(--emerald); border-color: transparent; }
.chip--rose { background: #fbdce8; color: var(--rose); border-color: transparent; }
.card__body > .chip,
.feature__body > .chip {
  align-self: flex-start;
  width: auto;
  max-width: max-content;
}

/* ---------- 7. Header --------------------------------------------------- */
.site-head {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 90;
  background: var(--cream-50);
}
.admin-bar .site-head { top: 32px; }
@media screen and (max-width: 782px) {
  .admin-bar .site-head { top: 46px; }
}

@media (max-width: 900px) {
  html { scroll-behavior: auto; }
}

.topbar {
  position: relative;
  z-index: 70;
  background: var(--maroon-900);
  color: rgba(255, 248, 239, 0.82);
  font-size: 0.72rem;
}
.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-4);
  min-height: 28px;
}
.topbar__msg { display: flex; align-items: center; gap: var(--sp-2); }
.topbar__msg strong { color: var(--marigold-400); font-weight: 700; }
.topbar__msg img.emoji {
  width: 1em;
  height: 1em;
  display: inline;
  vertical-align: -0.12em;
  margin: 0 0.15em 0 0;
}
.topbar__social { display: flex; align-items: center; gap: var(--sp-1); }
.topbar__social a {
  display: grid;
  place-items: center;
  width: 26px; height: 26px;
  border-radius: 50%;
  opacity: 0.75;
  transition: opacity 0.2s, background-color 0.2s, transform 0.2s;
}
.topbar__social a:hover {
  opacity: 1;
  background: rgba(255, 164, 21, 0.18);
  transform: translateY(-1px);
}
.topbar__social svg { width: 15px; height: 15px; fill: currentColor; }

.masthead {
  position: relative;
  z-index: 90;
  background: var(--cream-50);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.25s var(--ease);
}
.masthead.is-stuck { box-shadow: var(--sh-md); }
.masthead-spacer { display: none; }

.masthead__inner {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  gap: var(--sp-4);
  min-height: 52px;
}
.brand {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 0.55rem;
  text-decoration: none;
  color: inherit;
  max-width: 220px;
}
.brand__mark {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  object-fit: cover;
  flex-shrink: 0;
  background: #3a0b28;
}
.brand__img {
  height: 28px;
  width: auto;
  max-width: 148px;
}
.brand__word {
  display: flex;
  flex-direction: column;
  gap: 0.22rem;
  line-height: 1.1;
  min-width: 0;
}
.brand__name {
  font-family: var(--font-display);
  font-size: 1.02rem;
  font-weight: 650;
  color: var(--maroon-800);
  white-space: nowrap;
}
.brand__tag {
  font-family: var(--font-body);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-600);
}
.brand--footer .brand__name { color: #fff; }
.brand--footer .brand__tag { color: var(--gold-300); }
.brand--drawer { max-width: none; }
.drawer,
.drawer a,
.drawer button {
  -webkit-tap-highlight-color: transparent;
}
.drawer .brand:focus,
.drawer .brand:focus-visible {
  outline: none;
  box-shadow: none;
}

.nav { margin-left: auto; }
.nav__list { display: flex; align-items: center; gap: var(--sp-1); }
.nav__item { position: relative; }
.nav__item:has(.nav__sub)::after,
.nav__item.menu-item-has-children::after {
  content: "";
  position: absolute;
  left: 0;
  top: 100%;
  width: max(100%, 232px);
  height: 18px;
}
.nav__link {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.35rem 0.65rem;
  border-radius: var(--r-sm);
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--ink-700);
  transition: color 0.2s, background-color 0.2s;
}
.nav__link:hover, .nav__item:hover > .nav__link { color: var(--maroon-700); background: var(--cream-200); }
.nav__link[aria-current="page"] { color: var(--maroon-700); }
.nav__link svg { width: 11px; height: 11px; opacity: 0.6; transition: transform 0.2s; }
.nav__item:hover > .nav__link svg { transform: rotate(180deg); }

.nav__sub {
  position: absolute;
  top: calc(100% - 2px);
  left: 0;
  min-width: 232px;
  background: var(--bg-raised);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  box-shadow: var(--sh-lg);
  padding: var(--sp-2);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-4px);
  transition:
    opacity 0.16s var(--ease) 0.16s,
    transform 0.16s var(--ease) 0.16s,
    visibility 0.16s 0.16s,
    pointer-events 0s 0.16s;
}
.nav__item:hover > .nav__sub,
.nav__item:focus-within > .nav__sub {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: none;
  transition-delay: 0s;
}
.nav__sub a {
  display: block;
  padding: 0.5rem 0.7rem;
  border-radius: var(--r-sm);
  font-size: 0.88rem;
  color: var(--ink-700);
}
.nav__sub a:hover { background: var(--cream-200); color: var(--maroon-700); }

.masthead__actions {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  gap: var(--sp-2);
}
.icon-btn {
  display: grid;
  place-items: center;
  width: 34px; height: 34px;
  border-radius: 50%;
  color: var(--maroon-700);
  transition: background-color 0.2s;
}
.icon-btn:hover { background: var(--cream-200); }
.icon-btn svg { width: 17px; height: 17px; }

.masthead .btn--sm { padding: 0.4rem 0.95rem; font-size: 0.8rem; }

.btn--wine {
  background: var(--maroon-700);
  color: var(--cream-100);
  box-shadow: 0 3px 10px rgba(90, 15, 46, 0.22);
}
.btn--wine:hover {
  background: var(--maroon-600);
  color: #fff;
  box-shadow: 0 6px 16px rgba(90, 15, 46, 0.28);
}

.nav-toggle {
  display: none;
  place-items: center;
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  border-radius: 12px;
  background: rgba(90, 15, 46, 0.08);
  border: 1px solid rgba(90, 15, 46, 0.16);
  color: var(--maroon-700);
  transition: background-color 0.2s, border-color 0.2s, transform 0.2s;
}
.nav-toggle:hover,
.nav-toggle:focus-visible {
  background: rgba(90, 15, 46, 0.14);
  border-color: rgba(90, 15, 46, 0.28);
}
.nav-toggle__bars {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 18px;
}
.nav-toggle__bars span {
  display: block;
  height: 2.4px;
  width: 100%;
  border-radius: 99px;
  background: currentColor;
  transform-origin: center;
  transition: transform 0.22s var(--ease), width 0.22s var(--ease), opacity 0.22s;
}
.nav-toggle__bars span:nth-child(2) { width: 13px; }
.nav-toggle[aria-expanded="true"] .nav-toggle__bars span:nth-child(1) {
  transform: translateY(7.4px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] .nav-toggle__bars span:nth-child(2) {
  opacity: 0;
  width: 0;
}
.nav-toggle[aria-expanded="true"] .nav-toggle__bars span:nth-child(3) {
  transform: translateY(-7.4px) rotate(-45deg);
}

/* Mobile drawer. Closed it must be hidden, not just pushed off-screen: a
   painted fixed layer above the header keeps iOS from drawing the header. */
.drawer {
  position: fixed;
  inset: 0 0 0 auto;
  width: min(360px, 88vw);
  background: var(--cream-50);
  z-index: 96;
  padding: var(--sp-5) 1.1rem 1.5rem;
  overflow-y: auto;
  transform: translateX(100%);
  visibility: hidden;
  transition: transform 0.3s var(--ease), visibility 0.3s var(--ease);
  box-shadow: var(--sh-lg);
  pointer-events: none;
}
.drawer.is-open {
  transform: translateX(0);
  visibility: visible;
  pointer-events: auto;
}
.drawer__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.15rem;
  padding-bottom: 0.85rem;
  border-bottom: 1px solid var(--cream-300);
}
.drawer .drawer__list,
.drawer .menu {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0.2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.drawer .drawer__list > .menu-item,
.drawer .menu > .menu-item {
  border-bottom: 1px solid var(--cream-300);
}
.drawer .drawer__list > .menu-item:last-child,
.drawer .menu > .menu-item:last-child { border-bottom: 0; }
.drawer .drawer__list > li > a,
.drawer .menu > .menu-item > a {
  display: block;
  padding: 0.95rem 0.45rem;
  font-weight: 700;
  font-size: 1.05rem;
  line-height: 1.25;
  color: var(--ink-900);
  border: 0;
  border-radius: var(--r-sm);
  background: transparent;
}
.drawer .drawer__list a:hover,
.drawer .drawer__list a:active,
.drawer .menu a:hover,
.drawer .menu a:active {
  background: var(--cream-200);
  color: var(--maroon-700);
}
.drawer .menu-item-has-children {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 44px;
  align-items: center;
}
.drawer .menu-item-has-children::after { display: none; }
.drawer .menu-item-has-children > a {
  grid-column: 1;
  min-width: 0;
}
.drawer__sub-toggle {
  display: grid;
  place-items: center;
  grid-column: 2;
  grid-row: 1;
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  border-radius: 50%;
  color: var(--maroon-700);
}
.drawer__sub-toggle:hover,
.drawer__sub-toggle:active { background: var(--cream-200); }
.drawer__sub-toggle svg {
  width: 12px;
  height: 12px;
  transition: transform 0.2s var(--ease);
}
.drawer .menu-item-has-children.is-open {
  background: var(--cream-200);
  border-radius: var(--r-md);
  border-bottom-color: transparent;
  margin: 0.25rem 0;
  padding-bottom: 0.35rem;
}
.drawer .menu-item-has-children.is-open > a {
  color: var(--maroon-700);
}
.drawer .menu-item-has-children.is-open > .drawer__sub-toggle svg { transform: rotate(180deg); }
.drawer .sub-menu {
  display: none;
  grid-column: 1 / -1;
  position: static;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: none;
  box-shadow: none;
  list-style: none;
  min-width: 0;
  width: auto;
  margin: 0 0.45rem 0.2rem 0.35rem;
  padding: 0.05rem 0 0.15rem;
  border: 0;
  background: transparent;
  flex-basis: auto;
}
.drawer .menu-item-has-children.is-open > .sub-menu {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}
.drawer .sub-menu .menu-item {
  border: 0;
  border-bottom: 1px solid rgba(90, 15, 46, 0.12);
  padding: 0.35rem 0;
  margin: 0;
}
.drawer .sub-menu .menu-item:last-child { border-bottom: 0; }
.drawer .sub-menu a,
.drawer .sub-menu .menu-item > a {
  display: block;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--ink-700);
  line-height: 1.45;
  padding: 0.55rem 0.45rem;
  border: 0;
  border-radius: 0;
}
/* backdrop-filter only while open: iOS keeps the compositing layer alive even
   when the scrim is hidden, and the sticky header beneath it stops painting. */
.scrim {
  position: fixed;
  inset: 0;
  background: rgba(36, 8, 23, 0.5);
  z-index: 95;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s, visibility 0.3s;
}
.scrim.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
}

/* ---------- 8. Hero ----------------------------------------------------- */
.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(1100px 620px at 12% -8%, #fff6e6 0%, transparent 60%),
    radial-gradient(900px 560px at 88% 6%, #ffe9d4 0%, transparent 62%),
    linear-gradient(168deg, var(--cream-100) 0%, var(--cream-200) 55%, #fce8d2 100%);
  padding-block: clamp(1.5rem, 3vh, 3rem);
}
.hero::after {
  /* gold hairline at the base */
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold-500), var(--marigold-500), var(--gold-500), transparent);
  opacity: 0.55;
}

.hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: clamp(2rem, 1rem + 3vw, 4rem);
  align-items: center;
}

.hero__copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-height: 0;
}

.hero__copy > .eyebrow {
  margin: 0 0 0.5rem;
}

.hero h1 {
  font-size: var(--t-hero);
  line-height: 1.08;
  max-width: 18ch;
  margin: 0 0 1rem;
}
.hero h1 em {
  font-style: normal;
  position: relative;
  color: var(--maroon-700);
  white-space: nowrap;
}
.hero h1 em::after {
  /* hand-drawn marigold underline */
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0.02em;
  height: 0.34em;
  background: linear-gradient(90deg, rgba(255, 164, 21, 0.45), rgba(255, 187, 71, 0.55));
  border-radius: var(--r-pill);
  z-index: -1;
}
.hero .lead {
  margin: 0;
  max-width: 44ch;
  line-height: 1.6;
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
  margin-top: 1.25rem;
}
.hero__cta .btn {
  padding: 0.74rem 1.5rem;
  font-size: 0.9rem;
}
.hero__cta .btn--primary {
  background: var(--maroon-700);
  color: var(--cream-100);
  box-shadow: 0 4px 14px rgba(90, 15, 46, 0.28);
}
.hero__cta .btn--primary:hover {
  background: var(--maroon-600);
  box-shadow: 0 8px 22px rgba(90, 15, 46, 0.32);
}

.hero__proof {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-5);
  margin-top: 1.35rem;
  padding-top: var(--sp-4);
  border-top: 1px dashed var(--sand-400);
}
.hero__proof div strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--maroon-700);
  line-height: 1.1;
}
.hero__proof div span { font-size: var(--t-xs); color: var(--text-muted); letter-spacing: 0.04em; text-transform: uppercase; }

/* Countdown card */
.countdown {
  position: relative;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
  background: linear-gradient(158deg, var(--maroon-800), var(--maroon-900) 62%, #1a050f);
  color: var(--cream-100);
  border-radius: var(--r-xl);
  padding: var(--sp-6) var(--sp-6) var(--sp-5);
  box-shadow: var(--sh-lg);
  overflow: hidden;
  border: 1px solid rgba(217, 163, 67, 0.28);
}
.countdown::before {
  content: "";
  position: absolute;
  top: -70px; right: -70px;
  width: 220px; height: 220px;
  background: radial-gradient(circle, rgba(255, 164, 21, 0.4), transparent 68%);
  filter: blur(18px);
}
.countdown { --cd-photo: url("../img/heroes/festive.png"); }
.countdown[data-fest="ganesh"] { --cd-photo: url("../img/heroes/ganesh-chaturthi.png"); }
.countdown[data-fest="diwali"],
.countdown[data-fest="karwa"],
.countdown[data-fest="chhath"] { --cd-photo: url("../img/heroes/diwali.png"); }
.countdown[data-fest="durga"] { --cd-photo: url("../img/heroes/durga-puja.png"); }
.countdown[data-fest="navratri"] { --cd-photo: url("../img/heroes/navratri.png"); }
.countdown[data-fest="christmas"] { --cd-photo: url("../img/heroes/christmas.png"); }
.countdown[data-fest="halloween"] { --cd-photo: url("../img/heroes/halloween.png"); }
.countdown[data-fest="holi"] { --cd-photo: url("../img/heroes/holi.png"); }
.countdown[data-fest="gurpurab"] { --cd-photo: url("../img/heroes/gurpurab.png"); }
.countdown[data-fest="festive"] { --cd-photo: url("../img/heroes/festive.png"); }
.countdown > * { position: relative; z-index: 1; }
.countdown > .countdown__mark {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.32;
  background: var(--cd-photo) 70% 18% / cover no-repeat;
  -webkit-mask-image: linear-gradient(100deg, transparent 8%, rgba(0,0,0,.35) 42%, #000 100%);
  mask-image: linear-gradient(100deg, transparent 8%, rgba(0,0,0,.35) 42%, #000 100%);
}

.countdown__label {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: var(--t-xs);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--marigold-400);
}
.countdown__label .dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--marigold-400);
  box-shadow: 0 0 0 0 rgba(255, 187, 71, 0.8);
  animation: pulse 2.4s infinite;
}
@keyframes pulse {
  70% { box-shadow: 0 0 0 9px rgba(255, 187, 71, 0); }
  100% { box-shadow: 0 0 0 0 rgba(255, 187, 71, 0); }
}

.countdown__name {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 1.4rem + 1.4vw, 2.6rem);
  line-height: 1.1;
  margin-block: var(--sp-3) var(--sp-1);
  color: #fff;
}
.countdown__date { font-size: var(--t-sm); color: rgba(255, 248, 239, 0.62); margin-bottom: var(--sp-5); }

.countdown__now {
  display: none;
  margin: 0 0 var(--sp-5);
  padding: 0.95rem 1rem;
  border-radius: var(--r-md);
  background: rgba(255, 187, 71, 0.14);
  border: 1px solid rgba(240, 214, 156, 0.28);
  color: var(--marigold-300);
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 1rem + 0.8vw, 1.55rem);
  font-weight: 600;
  line-height: 1.25;
  text-align: center;
}
.countdown.is-now .countdown__now { display: block; }
.countdown__now-detail {
  display: none;
  margin: -0.65rem 0 var(--sp-5);
  color: rgba(255, 248, 239, 0.78);
  font-size: var(--t-sm);
  line-height: 1.45;
  text-align: center;
}
.countdown.is-now .countdown__now-detail { display: block; }
.countdown.is-now .countdown__now-detail:empty { display: none; }
.countdown.is-now .countdown__clock { display: none; }
.countdown.is-now .countdown__date { margin-bottom: var(--sp-3); }

.countdown__clock {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-2);
  margin-bottom: var(--sp-5);
}
.countdown__unit {
  background: rgba(255, 248, 239, 0.07);
  border: 1px solid rgba(240, 214, 156, 0.18);
  border-radius: var(--r-md);
  padding: var(--sp-3) var(--sp-2);
  text-align: center;
}
.countdown__unit b {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 1.2rem + 1vw, 2.1rem);
  font-weight: 600;
  color: var(--marigold-300);
  font-variant-numeric: tabular-nums;
  line-height: 1;
}
.countdown__unit span {
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 248, 239, 0.55);
}

.countdown__todo { display: flex; flex-direction: column; gap: var(--sp-2); margin-bottom: var(--sp-5); }
.countdown__todo li {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  font-size: 0.9rem;
  color: rgba(255, 248, 239, 0.85);
}
.countdown__todo svg { width: 17px; height: 17px; flex-shrink: 0; color: var(--marigold-400); }
.countdown__todo a { border-bottom: 1px solid rgba(255, 187, 71, 0.35); }
.countdown__todo a:hover { color: var(--marigold-300); }
.countdown > .btn,
.countdown [data-cd-cta] { margin-top: auto; align-self: flex-start; }

/* ---------- 9. Intent cards --------------------------------------------- */
.intent-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-4);
}
.intent {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
  padding: var(--sp-6) var(--sp-5) var(--sp-5);
  background: var(--bg-raised);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: transform 0.28s var(--ease), box-shadow 0.28s var(--ease), border-color 0.28s;
}
.intent::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: var(--tint, var(--marigold-500));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.32s var(--ease);
}
@media (hover: hover) and (pointer: fine) {
  .intent:hover { transform: translateY(-6px); box-shadow: var(--sh-md); border-color: var(--sand-400); }
  .intent:hover::before { transform: scaleX(1); }
}

.intent__icon {
  display: grid;
  place-items: center;
  width: 54px; height: 54px;
  border-radius: var(--r-md);
  background: var(--tint-soft, var(--cream-200));
  color: var(--tint, var(--maroon-700));
}
.intent__icon svg { width: 26px; height: 26px; }
.intent h3 { font-size: var(--t-h3); }
.intent p { font-size: 0.92rem; color: var(--text-muted); margin: 0; flex: 1; }
.intent .link-arrow { color: var(--tint, var(--maroon-600)); }

.intent--outfits { --tint: var(--rose); --tint-soft: #fbdce8; }
.intent--gifts { --tint: var(--vermilion); --tint-soft: #fde0da; }
.intent--decor { --tint: var(--emerald); --tint-soft: #d7ede9; }
.intent--rituals { --tint: var(--indigo); --tint-soft: #e0dff2; }

/* ---------- 10. Festival rail ------------------------------------------- */
.rail-shell { position: relative; }
.rail {
  display: flex;
  gap: var(--sp-4);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-block: var(--sp-2) var(--sp-5);
  scrollbar-width: thin;
  scrollbar-color: var(--sand-400) transparent;
}
.rail::-webkit-scrollbar { height: 6px; }
.rail::-webkit-scrollbar-thumb { background: var(--sand-400); border-radius: var(--r-pill); }
.rail::-webkit-scrollbar-track { background: transparent; }

.fest {
  scroll-snap-align: start;
  flex: 0 0 auto;
  width: clamp(232px, 22vw, 268px);
  aspect-ratio: 1 / 1;
  box-sizing: border-box;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
  padding: var(--sp-5);
  border-radius: var(--r-lg);
  background: linear-gradient(155deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(240, 214, 156, 0.2);
  transition: transform 0.26s var(--ease), border-color 0.26s, background-color 0.26s;
}
.fest:hover { transform: translateY(-5px); border-color: rgba(255, 187, 71, 0.55); }
.fest.is-next { border-color: var(--marigold-500); box-shadow: var(--sh-glow); }

.fest__top { display: flex; align-items: flex-start; justify-content: space-between; gap: var(--sp-3); }
.fest__glyph {
  display: grid;
  place-items: center;
  width: 44px; height: 44px;
  border-radius: var(--r-sm);
  background: rgba(255, 164, 21, 0.14);
  font-size: 1.35rem;
  line-height: 1;
}
.fest__days {
  text-align: right;
  font-size: var(--t-xs);
  color: rgba(255, 248, 239, 0.6);
}
.fest__days b {
  display: block;
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--marigold-300);
  font-variant-numeric: tabular-nums;
}
.fest h3 { font-size: 1.18rem; color: #fff; }
.fest__name { color: inherit; }
.fest__name:hover { color: var(--marigold-300); }
.fest__date { font-size: var(--t-sm); color: rgba(255, 248, 239, 0.6); }
.fest__links { display: flex; flex-wrap: wrap; gap: var(--sp-1); margin-top: auto; padding-top: var(--sp-2); }
.fest__links a {
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.22rem 0.55rem;
  border-radius: var(--r-pill);
  background: rgba(255, 248, 239, 0.1);
  color: rgba(255, 248, 239, 0.8);
  transition: background-color 0.2s, color 0.2s;
}
.fest__links a:hover { background: var(--marigold-500); color: var(--maroon-900); }
.fest.is-past { opacity: 0.42; }

.rail-nav { display: flex; gap: var(--sp-2); }
.rail-nav button {
  display: grid;
  place-items: center;
  width: 42px; height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(240, 214, 156, 0.3);
  color: var(--cream-100);
  transition: background-color 0.2s, border-color 0.2s, opacity 0.2s;
}
.rail-nav button:hover { background: var(--marigold-500); color: var(--maroon-900); border-color: transparent; }
.rail-nav button svg { width: 18px; height: 18px; }

/* ---------- 11. Gift finder --------------------------------------------- */
.finder {
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  gap: 0;
  background: var(--bg-raised);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  box-shadow: var(--sh-md);
  overflow: hidden;
}
.finder__form {
  padding: clamp(1.5rem, 1rem + 2vw, 2.75rem);
  display: flex;
  flex-direction: column;
}
.finder__step { margin-bottom: var(--sp-5); }
.finder__foot {
  margin: var(--sp-6) 0 0;
  padding-top: var(--sp-4);
  border-top: 1px dashed var(--sand-400);
  font-size: 0.88rem;
  color: var(--text-muted);
}
.finder__foot a { color: var(--maroon-600); font-weight: 700; border-bottom: 1.5px solid var(--marigold-400); }
.finder__foot a:hover { background: var(--marigold-300); }
.finder__step > h3 {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  margin-bottom: var(--sp-3);
}
.finder__step > h3 i {
  display: grid;
  place-items: center;
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--maroon-700);
  color: #fff;
  font-style: normal;
  font-size: 0.78rem;
  font-weight: 700;
  flex-shrink: 0;
}

.opts { display: flex; flex-wrap: wrap; gap: var(--sp-2); }
.opt {
  padding: 0.55rem 1.05rem;
  border-radius: var(--r-pill);
  border: 1.5px solid var(--border);
  background: var(--cream-50);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--ink-700);
  transition: all 0.2s var(--ease);
}
.opt:hover { border-color: var(--marigold-500); color: var(--maroon-700); }
.opt[aria-pressed="true"] {
  background: var(--maroon-700);
  border-color: var(--maroon-700);
  color: #fff;
}

.finder__result {
  background: linear-gradient(160deg, var(--cream-200), #fce6cf);
  padding: clamp(1.5rem, 1rem + 2vw, 2.75rem);
  border-left: 1px solid var(--border);
  display: flex;
  flex-direction: column;
}
.finder__result h3 { font-size: 1.3rem; margin-bottom: var(--sp-3); }
.finder__hint { font-size: 0.9rem; color: var(--text-muted); }
.finder__picks { display: flex; flex-direction: column; gap: var(--sp-2); margin-top: var(--sp-2); }
.finder__pick {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  padding: var(--sp-3);
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: var(--r-md);
  transition: transform 0.2s var(--ease), box-shadow 0.2s;
}
.finder__pick:hover { transform: translateX(4px); box-shadow: var(--sh-sm); }
.finder__pick img { width: 56px; height: 56px; border-radius: var(--r-sm); object-fit: cover; flex-shrink: 0; }
.finder__pick span { font-size: 0.88rem; font-weight: 600; line-height: 1.4; }

/* ---------- 12. Feature block ------------------------------------------- */
.feature {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: var(--sp-5);
}
.feature__main {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  min-height: 440px;
  display: flex;
  align-items: flex-end;
  color: #fff;
  isolation: isolate;
}
.feature__main img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: -2;
  transition: transform 0.7s var(--ease);
}
.feature__main::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(to top, rgba(36, 8, 23, 0.94) 4%, rgba(36, 8, 23, 0.62) 42%, rgba(36, 8, 23, 0.12) 78%);
}
.feature__main:hover img { transform: scale(1.045); }
.feature__body { padding: var(--sp-6); }
.feature__main h3 {
  font-size: clamp(1.5rem, 1.2rem + 1.4vw, 2.15rem);
  color: #fff;
  margin-block: var(--sp-3);
  max-width: 26ch;
}
.feature__main p { color: rgba(255, 255, 255, 0.78); font-size: 0.95rem; max-width: 52ch; margin: 0; }

.feature__side { display: flex; flex-direction: column; gap: var(--sp-4); }

/* ---------- 13. Prep timeline ------------------------------------------- */
.timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-5);
  position: relative;
}
.timeline::before {
  content: "";
  position: absolute;
  left: 0; right: 0;
  top: 27px;
  height: 2px;
  background: repeating-linear-gradient(90deg, var(--gold-300) 0 8px, transparent 8px 16px);
}
.step { position: relative; }
.step__num {
  position: relative;
  display: grid;
  place-items: center;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--bg-raised);
  border: 2px solid var(--gold-500);
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--maroon-700);
  margin-bottom: var(--sp-4);
  z-index: 1;
}
.section--cream .step__num { background: var(--cream-200); }
.step h3 { font-size: 1.18rem; margin-bottom: var(--sp-2); }
.step__when {
  display: block;
  font-family: var(--font-body);
  font-size: var(--t-xs);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--vermilion);
  margin-bottom: var(--sp-1);
}
.step p { font-size: 0.92rem; color: var(--text-muted); margin-bottom: var(--sp-3); }
.step ul { display: flex; flex-direction: column; gap: 0.4rem; }
.step ul li {
  position: relative;
  padding-left: 1.15rem;
  font-size: 0.88rem;
  color: var(--ink-700);
}
.step ul li::before {
  content: "";
  position: absolute;
  left: 0; top: 0.62em;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--marigold-500);
}

/* ---------- 14. Category hubs ------------------------------------------- */
.hub-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-4);
}
.hub {
  position: relative;
  display: flex;
  align-items: center;
  gap: var(--sp-4);
  padding: var(--sp-5);
  border-radius: var(--r-lg);
  background: var(--bg-raised);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: transform 0.26s var(--ease), box-shadow 0.26s var(--ease);
}
.hub:hover { transform: translateY(-4px); box-shadow: var(--sh-md); }
.hub__icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  background: linear-gradient(160deg, #fff6e8, var(--marigold-300));
  color: var(--maroon-700);
  box-shadow: inset 0 0 0 1px rgba(122, 23, 64, 0.08);
}
.hub__icon svg { width: 26px; height: 26px; }
.hub__icon--diwali,
.hub__icon--karwa-chauth,
.hub__icon--chhath-puja { background: linear-gradient(160deg, #fff1d6, #ffbb47); }
.hub__icon--durga-puja,
.hub__icon--navratri,
.hub__icon--dussehra { background: linear-gradient(160deg, #fde8ee, #f0b3c4); color: var(--maroon-800); }
.hub__icon--ganesh-chaturthi { background: linear-gradient(160deg, #fff0d4, #e07b0a); color: #5a0f2e; }
.hub__icon--christmas,
.hub__icon--new-year { background: linear-gradient(160deg, #e8f4ea, #f0d69c); color: #0f766e; }
.hub__icon--halloween { background: linear-gradient(160deg, #ffe8d2, #e07b0a); }
.hub__icon--holi { background: linear-gradient(160deg, #fde8f4, #ffd489); }
.hub__icon--gurpurab { background: linear-gradient(160deg, #fff6d8, #d9a343); }
.hub__thumb {
  width: 74px; height: 74px;
  border-radius: var(--r-md);
  object-fit: cover;
  flex-shrink: 0;
}
.hub h3 { font-size: 1.12rem; margin-bottom: 0.15rem; }
.hub p { font-size: var(--t-xs); color: var(--text-muted); margin: 0; }
.hub__count {
  margin-left: auto;
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--sand-400);
  flex-shrink: 0;
}

.country-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: var(--sp-5);
}
.country-tab {
  padding: 0.55rem 1.15rem;
  border-radius: var(--r-pill);
  border: 1px solid var(--border);
  background: var(--bg-raised);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--ink-700);
}
.country-tab:hover { border-color: var(--maroon-500); color: var(--maroon-700); }
.country-tab[aria-selected="true"] {
  background: var(--maroon-700);
  color: #fff;
  border-color: var(--maroon-700);
}
.hub-panel[hidden] { display: none !important; }
.hub-panel.is-active { display: block; }
.hub-panel__more { margin-top: var(--sp-5); }

.country-explore {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-4);
}
.country-card {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
  padding: var(--sp-5);
  border-radius: var(--r-lg);
  background: var(--bg-raised);
  border: 1px solid var(--border);
  min-height: 180px;
  transition: transform 0.26s var(--ease), box-shadow 0.26s var(--ease);
}
.country-card:hover { transform: translateY(-4px); box-shadow: var(--sh-md); }
.country-card h3 { font-size: 1.15rem; margin: 0; }
.country-card p { margin: 0; font-size: var(--t-sm); color: var(--text-muted); }
.country-card__meta {
  margin-top: auto;
  font-size: var(--t-xs);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--maroon-600);
}

/* ---------- 15. Post cards ---------------------------------------------- */
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-5);
}
.card-grid--4 { grid-template-columns: repeat(4, 1fr); }

.card {
  display: flex;
  flex-direction: column;
  background: var(--bg-raised);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: transform 0.26s var(--ease), box-shadow 0.26s var(--ease);
}
.card:hover { transform: translateY(-5px); box-shadow: var(--sh-md); }
.card__media { position: relative; aspect-ratio: 16 / 10; overflow: hidden; background: var(--cream-300); }
.card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.55s var(--ease); }
.card:hover .card__media img { transform: scale(1.06); }
.card__media .chip { position: absolute; top: var(--sp-3); left: var(--sp-3); backdrop-filter: blur(6px); }

.card__body { padding: var(--sp-5); display: flex; flex-direction: column; gap: var(--sp-2); flex: 1; }
.card__body h3 { font-size: 1.14rem; line-height: 1.28; }
.card__body h3 a:hover { color: var(--maroon-600); }
.card__body p { font-size: 0.9rem; color: var(--text-muted); margin: 0; flex: 1; }
.card__meta {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  font-size: var(--t-xs);
  color: var(--ink-300);
  padding-top: var(--sp-2);
  border-top: 1px solid var(--border);
}
.card__meta span { display: inline-flex; align-items: center; gap: 0.3rem; }
.card__meta svg { width: 13px; height: 13px; }

/* Compact horizontal card */
.card--row { flex-direction: row; align-items: stretch; }
.card--row .card__media { aspect-ratio: auto; width: 132px; flex-shrink: 0; }
.card--row .card__body { padding: var(--sp-4); }
.card--row .card__body h3 { font-size: 1rem; }

/* ---------- 16. Newsletter ---------------------------------------------- */
.signup {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  background: linear-gradient(140deg, var(--maroon-700), var(--maroon-900) 70%);
  color: var(--cream-100);
  padding: clamp(2rem, 1rem + 4vw, 4rem);
  text-align: center;
  border: 1px solid rgba(217, 163, 67, 0.3);
}
.signup > * { position: relative; z-index: 1; }
.signup h2 { font-size: var(--t-h2); margin-block: var(--sp-3) var(--sp-3); color: #fff; }
.signup p { color: rgba(255, 248, 239, 0.76); max-width: 54ch; margin-inline: auto; }

.signup__form {
  display: flex;
  gap: var(--sp-2);
  max-width: 500px;
  margin: var(--sp-5) auto var(--sp-3);
  background: rgba(255, 252, 247, 0.1);
  border: 1px solid rgba(240, 214, 156, 0.28);
  border-radius: var(--r-pill);
  padding: 5px;
}
.signup__form input {
  flex: 1;
  min-width: 0;
  background: none;
  border: 0;
  padding: 0.7rem 1.15rem;
  color: #fff;
  border-radius: var(--r-pill);
}
.signup__form input::placeholder { color: rgba(255, 248, 239, 0.5); }
.signup__form input:focus { outline: none; }
.signup__form:focus-within { border-color: var(--marigold-400); }
.signup__note { font-size: var(--t-xs); color: rgba(255, 248, 239, 0.5); }

/* ---------- 17. Footer -------------------------------------------------- */
.footer {
  position: relative;
  background: var(--maroon-900);
  color: rgba(255, 248, 239, 0.68);
  padding-block: var(--sp-8) var(--sp-5);
  font-size: 0.9rem;
  overflow: hidden;
  margin: 0;
  flex-shrink: 0;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: var(--sp-6);
  padding-bottom: var(--sp-7);
}
.footer__brand .brand { margin-bottom: var(--sp-4); }
.footer__brand .brand__img { width: 200px; }
.footer__brand p { max-width: 34ch; }
.footer h4 {
  font-family: var(--font-body);
  font-size: var(--t-xs);
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--marigold-400);
  margin-bottom: var(--sp-4);
}
.footer__links { display: flex; flex-direction: column; gap: 0.65rem; }
.footer__links a { transition: color 0.2s, padding-left 0.2s; }
.footer__links a:hover { color: var(--marigold-300); padding-left: 4px; }

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-4);
  padding-top: var(--sp-5);
  border-top: 1px solid rgba(255, 248, 239, 0.1);
  font-size: var(--t-xs);
  color: rgba(255, 248, 239, 0.48);
  flex-wrap: wrap;
}
.footer__disclosure {
  background: rgba(255, 248, 239, 0.05);
  border-left: 3px solid var(--marigold-500);
  border-radius: 0 var(--r-sm) var(--r-sm) 0;
  padding: var(--sp-3) var(--sp-4);
  font-size: var(--t-xs);
  line-height: 1.6;
  margin-bottom: var(--sp-5);
}

/* ---------- 18. Article page -------------------------------------------- */
.post-hero {
  background: linear-gradient(168deg, var(--cream-100), var(--cream-200));
  padding-block: var(--sp-7) var(--sp-6);
  border-bottom: 1px solid var(--border);
}
.breadcrumb { display: flex; flex-wrap: wrap; gap: 0.4rem; font-size: var(--t-xs); color: var(--text-muted); margin-bottom: var(--sp-4); }
.breadcrumb a:hover { color: var(--maroon-600); text-decoration: underline; }
.breadcrumb li:not(:last-child)::after { content: "/"; margin-left: 0.4rem; color: var(--sand-400); }
.breadcrumb ol, .breadcrumb { list-style: none; }

.post-hero h1 { font-size: var(--t-h1); max-width: 28ch; margin-block: var(--sp-3) var(--sp-4); }
.post-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--sp-4);
  font-size: var(--t-sm);
  color: var(--text-muted);
}
.post-meta .avatar {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--marigold-500), var(--vermilion));
  display: grid;
  place-items: center;
  color: #fff;
  font-weight: 700;
  font-size: 0.9rem;
}
.post-meta__author { display: flex; align-items: center; gap: var(--sp-3); }
.post-meta__author b { color: var(--text); display: block; font-size: 0.9rem; }

.post-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: var(--sp-7);
  padding-block: var(--sp-7);
  align-items: stretch;
}
.post-layout > aside {
  display: flex;
  flex-direction: column;
  gap: var(--sp-5);
  min-height: 100%;
}

.post-figure { border-radius: var(--r-lg); overflow: hidden; margin-bottom: var(--sp-6); box-shadow: var(--sh-md); }

.prose { font-size: 1.06rem; line-height: 1.78; color: var(--ink-700); max-width: 70ch; }
.prose figure { margin: var(--sp-6) 0; }
.prose figure img { border-radius: var(--r-md); width: 100%; }
.prose figcaption { font-size: 0.88rem; color: var(--text-muted); margin-top: 0.5rem; }
.prose h2 {
  font-size: 1.7rem;
  color: var(--text);
  margin-block: var(--sp-7) var(--sp-4);
  padding-bottom: var(--sp-3);
  border-bottom: 1px solid var(--border);
}
.prose h3 { font-size: 1.3rem; color: var(--text); margin-block: var(--sp-6) var(--sp-3); }
.prose a { color: var(--maroon-600); font-weight: 600; border-bottom: 1.5px solid var(--marigold-400); }
.prose a:hover { background: var(--marigold-300); }
.prose ul { display: flex; flex-direction: column; gap: var(--sp-2); margin-bottom: var(--sp-5); }
.prose ul li { position: relative; padding-left: 1.6rem; }
.prose ul li::before {
  content: "";
  position: absolute;
  left: 0.2rem; top: 0.66em;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--marigold-500);
  box-shadow: 0 0 0 3px rgba(255, 164, 21, 0.2);
}
.prose blockquote {
  margin: var(--sp-6) 0;
  padding: var(--sp-5) var(--sp-6);
  background: var(--cream-200);
  border-left: 4px solid var(--marigold-500);
  border-radius: 0 var(--r-md) var(--r-md) 0;
  font-family: var(--font-display);
  font-size: 1.16rem;
  line-height: 1.55;
  color: var(--maroon-700);
}
.prose blockquote p:last-child { margin: 0; }

/* Affiliate product callout — pairs with AffiliateX output */
.product {
  display: grid;
  grid-template-columns: 150px 1fr auto;
  gap: var(--sp-5);
  align-items: center;
  padding: var(--sp-5);
  margin-block: var(--sp-6);
  background: var(--bg-raised);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  box-shadow: var(--sh-sm);
}
.product img { border-radius: var(--r-md); aspect-ratio: 1; object-fit: cover; width: 100%; }
.product h4 { font-size: 1.15rem; margin-bottom: var(--sp-2); }
.product__why { font-size: 0.9rem; color: var(--text-muted); margin: 0; }
.product__side { text-align: center; }
.product__score {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--maroon-700);
  line-height: 1;
}
.product__side small { display: block; font-size: var(--t-xs); color: var(--text-muted); margin-bottom: var(--sp-3); }

.ez-toc, .ez-toc-container, #ez-toc-container, .ez-toc-title,
.joli-toc, .wpjoli-joli-toc, .joli-toc-wrapper, #joli-toc,
[class*="joli-toc"], [class*="wpj-jtoc"], [class*="wpjoli"],
.lwptoc, .table-of-contents-from-plugin,
.prose [class*="jtoc"],
.prose [id*="joli-toc"],
.prose [id*="ez-toc"] { display: none !important; }

.toc-fab,
.toc-scrim,
.toc__close { display: none; }

.toc {
  position: static;
  background: var(--bg-raised);
  border: 1px solid var(--border);
  border-radius: var(--r-pill);
  padding: 0.15rem 0.45rem 0.15rem 1.15rem;
  margin: 0 0 var(--sp-6);
  z-index: 4;
  box-shadow: var(--sh-sm);
}
.toc.is-open {
  padding: 0.35rem 1rem 0.85rem;
  border-radius: var(--r-lg);
  box-shadow: var(--sh-sm);
}
.toc__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-3);
  margin-bottom: 0;
}
.toc.is-open .toc__head { margin-bottom: 0.55rem; }
.toc__toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  width: 100%;
  min-height: 2.6rem;
  padding: 0.2rem 0.45rem 0.2rem 0;
  text-align: left;
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: none;
  color: var(--maroon-700);
}
.toc__toggle span {
  display: inline-block;
  letter-spacing: 0.01em;
  word-spacing: 0.12em;
  white-space: nowrap;
}
.toc__toggle svg {
  width: 12px;
  height: 12px;
  flex-shrink: 0;
  transition: transform 0.2s var(--ease);
}
.toc.is-open .toc__toggle svg { transform: rotate(180deg); }
.toc h4 {
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  word-spacing: 0.12em;
  text-transform: none;
  color: var(--maroon-700);
  margin-bottom: var(--sp-4);
}
.toc ol { display: flex; flex-direction: column; gap: 0.15rem; counter-reset: toc; }
.toc:not(.is-open) ol { display: none; }
.toc a {
  display: block;
  padding: 0.45rem 0.6rem 0.45rem 1.9rem;
  border-radius: var(--r-sm);
  font-size: 0.88rem;
  color: var(--ink-700);
  position: relative;
  border-left: 2px solid transparent;
}
.toc a::before {
  counter-increment: toc;
  content: counter(toc);
  position: absolute;
  left: 0.6rem;
  color: var(--ink-300);
  font-size: var(--t-xs);
  font-weight: 700;
}
.toc a:hover, .toc a.is-active {
  background: var(--cream-200);
  color: var(--maroon-700);
  border-left-color: var(--marigold-500);
}

.aside-card {
  background: var(--bg-raised);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: var(--sp-5);
  margin-top: 0;
}

/* ---------- 18b. Product finds ------------------------------------------ */
.pick-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-5);
}
.pick-grid--teaser { grid-template-columns: repeat(4, 1fr); }

.pick-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
  background: var(--bg-raised);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: transform 0.26s var(--ease), box-shadow 0.26s var(--ease);
}
.pick-card:hover { transform: translateY(-5px); box-shadow: var(--sh-md); }
.pick-card__media {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--cream-300);
  display: block;
}
.pick-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s var(--ease);
}
.pick-card:hover .pick-card__media img { transform: scale(1.06); }
.pick-card__media .chip { position: absolute; top: var(--sp-3); left: var(--sp-3); }
.pick-card__body {
  padding: 1.15rem 1.15rem 1.05rem;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  flex: 1;
  min-width: 0;
}
.pick-card__body h3 {
  font-size: 1.2rem;
  line-height: 1.28;
  margin: 0;
  color: var(--ink-900);
}
.pick-card__body h3 a:hover { color: var(--maroon-600); }
.pick-card__body p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin: 0;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.pick-card__body h3 a {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.pick-card__buy {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding-top: 0.85rem;
  margin-top: 0.35rem;
  border-top: 1px solid var(--border);
  min-width: 0;
}
.pick-card__price {
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--maroon-700);
  font-weight: 700;
  line-height: 1;
  min-width: 0;
}
.pick-card__buy .btn {
  flex: 0 0 auto;
  width: auto;
  padding: 0.58rem 1.15rem;
}

.ad-stack { display: flex; flex-direction: column; gap: 0.85rem; }
.aside-card--ads { padding: var(--sp-4); }
.ad-card {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 0.75rem;
  align-items: stretch;
  padding: 0.6rem;
  border-radius: var(--r-md);
  background: var(--cream-100);
  border: 1px solid var(--border);
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease), border-color 0.2s;
}
.ad-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--sh-sm);
  border-color: var(--marigold-400);
}
.ad-card__media {
  display: block;
  aspect-ratio: 1;
  border-radius: 10px;
  overflow: hidden;
  background: var(--cream-300);
}
.ad-card__media img { width: 100%; height: 100%; object-fit: cover; }
.ad-card__body {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  min-width: 0;
}
.ad-card__hook {
  font-size: 0.9rem;
  line-height: 1.32;
  color: var(--maroon-800);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.ad-card__meta {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.4rem;
  margin-top: auto;
}
.ad-card__meta b {
  font-family: var(--font-display);
  color: var(--maroon-700);
  font-size: 1.05rem;
}
.ad-card__cta {
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--marigold-600);
}
.finds-note {
  margin-top: var(--sp-7);
  font-size: 0.88rem;
  color: var(--text-muted);
  max-width: 62ch;
}
.finds-empty {
  text-align: center;
  padding: 3rem 1.25rem;
  background: var(--bg-raised);
  border: 1px dashed var(--border);
  border-radius: var(--r-lg);
}
.finds-empty p { color: var(--text-muted); margin-bottom: 1.25rem; }

.explore-jump {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: var(--sp-6);
}
.explore-block {
  margin-bottom: var(--sp-8);
  scroll-margin-top: 5.5rem;
}
.explore-block .section-head { margin-bottom: var(--sp-4); }
.finds-teaser-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  align-items: center;
}

/* ---------- 19. Responsive ---------------------------------------------- */
@media (min-width: 901px) {
  .post-layout > aside {
    position: sticky;
    top: calc(var(--site-head-h, 3.25rem) + 0.75rem);
    align-self: start;
    max-height: calc(100svh - var(--site-head-h, 3.25rem) - 1.5rem);
    overflow-y: auto;
  }
  .toc-fab,
  .toc-scrim,
  .toc__close { display: none !important; }
  .toc--article {
    position: static !important;
    transform: none !important;
    width: auto;
    height: auto;
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
    overflow: visible;
  }
  .hero {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: min(38rem, calc(100svh - var(--topbar-h, 1.75rem) - var(--site-head-h, 3.25rem)));
    box-sizing: border-box;
  }
  .hero__grid {
    flex: 0 1 auto;
    width: 100%;
    align-items: center;
  }
  .countdown {
    align-self: auto;
    height: auto;
    max-height: none;
  }
}

@media (min-width: 901px) and (max-height: 900px) {
  .hero { padding-block: 1.35rem; }
  .hero__proof { display: none; }
}

@media (max-width: 1080px) {
  .intent-grid { grid-template-columns: repeat(2, 1fr); }
  .hub-grid { grid-template-columns: repeat(2, 1fr); }
  .country-explore { grid-template-columns: repeat(2, 1fr); }
  .card-grid { grid-template-columns: repeat(2, 1fr); }
  .card-grid--4 { grid-template-columns: repeat(2, 1fr); }
  .timeline { grid-template-columns: repeat(2, 1fr); row-gap: var(--sp-6); }
  .timeline::before { display: none; }
  .post-layout { grid-template-columns: minmax(0, 1fr) 260px; }
  .pick-grid,
  .pick-grid--teaser { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  .nav, .masthead__actions .icon-btn--search { display: none; }
  .nav-toggle { display: grid; }
  .masthead__inner { gap: 0.55rem; min-height: 56px; }
  .masthead__actions { margin-left: auto; gap: 0.55rem; }
  .masthead .btn { width: auto; flex-shrink: 0; padding: 0.5rem 1rem; font-size: 0.82rem; }
  .brand { max-width: min(58vw, 190px); }
  .brand__img { height: 30px; max-width: 140px; }
  .brand__mark { width: 30px; height: 30px; border-radius: 7px; }
  .brand__name { font-size: 0.95rem; }
  .post-hero { padding-block: 1rem 1.15rem; }
  .post-hero h1 { margin-block: 0.55rem 0.7rem; }
  .breadcrumb { margin-bottom: 0.55rem; }
  .post-layout { padding-block: 1.25rem 2rem; grid-template-columns: 1fr; }
  .space-hero__body { padding-top: 1rem; }
  .toc-fab {
    display: inline-flex;
    align-items: center;
    gap: 0.28rem;
    position: fixed;
    right: 0;
    top: 150px;
    bottom: auto;
    z-index: 55;
    padding: 0.48rem 0.55rem 0.48rem 0.7rem;
    border-radius: 999px 0 0 999px;
    background: var(--maroon-700);
    color: #fff;
    box-shadow: -6px 6px 20px rgba(36, 8, 23, 0.22);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.02em;
  }
  .toc-fab svg { width: 13px; height: 13px; }
  .toc-scrim {
    display: block;
    position: fixed;
    inset: 0;
    z-index: 110;
    background: rgba(36, 8, 23, 0.45);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.25s, visibility 0.25s;
  }
  .toc-scrim.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
  .toc {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: auto;
    width: min(320px, 88vw);
    height: 100%;
    z-index: 4;
    margin: 0;
    border-radius: var(--r-lg) 0 0 var(--r-lg);
    transform: translateX(105%);
    transition: transform 0.28s var(--ease);
    overflow-y: auto;
    box-shadow: var(--sh-lg);
  }
  .toc.is-open {
    transform: none;
    z-index: 111;
  }
  .toc__close {
    display: grid;
    place-items: center;
    width: 36px;
    height: 36px;
    margin: -0.35rem -0.2rem 0 0;
    border-radius: 50%;
    color: var(--maroon-700);
  }
  .toc__close:hover { background: var(--cream-200); }
  .toc__close svg { width: 18px; height: 18px; }
  .toc__toggle {
    pointer-events: none;
    cursor: default;
  }
  .toc__toggle svg { display: none; }
  .hero__grid { grid-template-columns: 1fr; }
  .fest {
    width: min(72vw, 280px);
    aspect-ratio: 1 / 1;
    padding: var(--sp-4);
    gap: var(--sp-2);
  }
  .fest__glyph { width: 38px; height: 38px; font-size: 1.15rem; }
  .fest__days b { font-size: 1.15rem; }
  .fest h3 { font-size: 1.05rem; }
  .feature { grid-template-columns: 1fr; }
  .feature__main { min-height: 340px; }
  .finder { grid-template-columns: 1fr; }
  .finder__result { border-left: 0; border-top: 1px solid var(--border); }
}

@media (max-width: 620px) {
  :root { --section-y: 2.75rem; --sp-9: 3.5rem; --sp-8: 2.5rem; }
  .topbar__msg span { display: none; }
  .intent-grid, .hub-grid, .card-grid, .card-grid--4, .timeline, .country-explore { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; gap: var(--sp-5); }
  .hero__proof { gap: var(--sp-4); }
  .hero__proof div strong { font-size: 1.25rem; }
  .countdown { padding: var(--sp-5) var(--sp-4); }
  .countdown > .countdown__mark { opacity: 0.32; }
  .countdown__clock { gap: 6px; }
  .product { grid-template-columns: 1fr; text-align: center; }
  .product img { max-width: 180px; margin-inline: auto; }
  .btn { width: 100%; }
  .masthead .btn,
  .drawer .btn,
  .hero__cta .btn,
  .finds-empty .btn,
  .pick-card__buy .btn { width: auto; flex: 0 0 auto; }
  .hero__cta .btn { flex: 1 1 auto; }
  .rangoli { width: 260px; }
  .section-head { flex-direction: column; align-items: flex-start; }
  .finds-teaser-actions { width: 100%; }
  .finds-teaser-actions .btn { width: auto; }
}

@media (max-width: 720px) {
  .pick-grid,
  .pick-grid--teaser {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
  }
  .pick-card { min-width: 0; }
  .pick-card__media { aspect-ratio: 1; }
  .pick-card__body { padding: 0.95rem 1rem 1rem; gap: 0.4rem; }
  .pick-card__body h3 { font-size: 1.08rem; line-height: 1.28; }
  .pick-card__body p {
    font-size: 0.82rem;
    line-height: 1.45;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    flex: 0 1 auto;
  }
  .pick-card__buy {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 0.65rem;
    padding-top: 0.75rem;
  }
  .pick-card__price { font-size: 1.2rem; }
  .pick-card__buy .btn {
    width: auto !important;
    flex: 0 0 auto;
    padding: 0.52rem 0.95rem;
    font-size: 0.82rem;
    white-space: nowrap;
  }
  .finds-hero .space-hero__grid { min-height: 0; }
  .finds-hero .space-hero__visual { display: none; }
  .finds-hero .space-hero__body { padding-block: 1.35rem 1.5rem; }
  .explore-jump {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 0.35rem;
    -webkit-overflow-scrolling: touch;
  }
  .explore-jump .chip { flex-shrink: 0; }
}

@media (max-width: 540px) {
  .pick-grid,
  .pick-grid--teaser { grid-template-columns: minmax(0, 1fr); }
  .pick-card__body { padding: 1.15rem 1.15rem 1.1rem; gap: 0.5rem; }
  .pick-card__body h3 { font-size: 1.32rem; line-height: 1.25; }
  .pick-card__body p { font-size: 0.92rem; -webkit-line-clamp: 3; }
  .pick-card__buy { padding-top: 0.9rem; }
  .pick-card__price { font-size: 1.45rem; }
  .pick-card__buy .btn { padding: 0.62rem 1.2rem; font-size: 0.9rem; }
  .finds-teaser-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .finds-teaser-actions .btn { width: 100%; }
}

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

/* WordPress nav menu (wp_nav_menu) uses .menu / .sub-menu */
.nav .menu {
  display: flex;
  align-items: center;
  gap: var(--sp-1);
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav .menu-item { position: relative; }
.nav .menu-item > a {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.6rem 0.8rem;
  border-radius: var(--r-sm);
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--ink-700);
}
.nav .menu-item > a:hover,
.nav .menu-item:hover > a { color: var(--maroon-700); background: var(--cream-200); }
.nav .menu-item-has-children > a::after {
  content: "";
  display: inline-block;
  width: 0.38em;
  height: 0.38em;
  margin-left: 0.28em;
  border-right: 1.7px solid currentColor;
  border-bottom: 1.7px solid currentColor;
  transform: translateY(-0.14em) rotate(45deg);
  opacity: 0.5;
  transition: transform 0.2s var(--ease), opacity 0.2s;
}
.nav .menu-item-has-children:hover > a::after,
.nav .menu-item-has-children:focus-within > a::after {
  opacity: 0.85;
  transform: translateY(0.06em) rotate(225deg);
}
.nav .menu-item-has-children::after {
  content: "";
  position: absolute;
  left: 0;
  top: 100%;
  width: max(100%, 232px);
  height: 18px;
}
.nav .sub-menu {
  position: absolute;
  top: calc(100% - 2px);
  left: 0;
  min-width: 232px;
  background: var(--bg-raised);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  box-shadow: var(--sh-lg);
  padding: var(--sp-2);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-4px);
  list-style: none;
  margin: 0;
  z-index: 8;
  transition:
    opacity 0.16s var(--ease) 0.16s,
    transform 0.16s var(--ease) 0.16s,
    visibility 0.16s 0.16s,
    pointer-events 0s 0.16s;
}
.nav .menu-item:hover > .sub-menu,
.nav .menu-item:focus-within > .sub-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: none;
  transition-delay: 0s;
}
.nav .sub-menu a {
  display: block;
  padding: 0.5rem 0.7rem;
  border-radius: var(--r-sm);
  font-size: 0.88rem;
  color: var(--ink-700);
}
.nav .sub-menu a:hover { background: var(--cream-200); color: var(--maroon-700); }

.days-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: var(--sp-3);
}
.day-card {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  padding: var(--sp-4);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  background: var(--bg-raised);
  min-height: 120px;
}
.day-card.is-today {
  border-color: var(--marigold-500);
  box-shadow: var(--sh-glow);
}
.day-card__n {
  font-size: var(--t-xs);
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--vermilion);
}
.day-card h3 { font-size: 1.05rem; }
.day-card p { margin: 0; font-size: var(--t-sm); color: var(--text-muted); }
.day-card__note { color: var(--ink-700); }

.space-hero {
  position: relative;
  color: #fff;
  overflow: hidden;
  background: #3d0d24;
}
.space-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(360px, 42vw);
  align-items: stretch;
  min-height: 440px;
  gap: 0;
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0;
  position: relative;
}
.space-hero__body {
  position: relative;
  z-index: 2;
  grid-column: 1;
  grid-row: 1;
  padding: var(--sp-7) var(--sp-6) var(--sp-7) max(var(--sp-5), calc((100vw - var(--wrap)) / 2 + var(--sp-5)));
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.space-hero h1 { font-size: var(--t-h1); color: #fff; margin-block: var(--sp-3); }
.space-hero p { color: rgba(255,248,239,0.78); max-width: 48ch; }
.space-hero__dates {
  margin-top: 1rem;
  color: var(--marigold-300);
  font-weight: 600;
}
.space-hero__today {
  margin-top: 0.85rem;
  max-width: 46ch;
  padding: 0.85rem 1rem;
  border-radius: var(--r-md);
  background: rgba(255, 187, 71, 0.14);
  border: 1px solid rgba(240, 214, 156, 0.28);
}
.space-hero__today strong {
  display: block;
  color: var(--marigold-300);
  font-size: 1.05rem;
}
.space-hero__today span {
  display: block;
  margin-top: 0.35rem;
  color: rgba(255, 248, 239, 0.78);
  font-size: var(--t-sm);
}
.space-hero__visual {
  position: relative;
  grid-column: 2;
  grid-row: 1;
  width: 100%;
  min-height: 440px;
  height: 100%;
  align-self: stretch;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 14%, #000 100%);
  mask-image: linear-gradient(90deg, transparent 0%, #000 14%, #000 100%);
}
.space-hero__visual img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 12%;
  opacity: 1;
}
.space-hero__veil {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(
    90deg,
    #3d0d24 0%,
    rgba(61, 13, 36, 0.45) 16%,
    rgba(61, 13, 36, 0.08) 42%,
    transparent 68%
  );
}
.space-hero__glow {
  position: absolute;
  z-index: 2;
  inset: auto -16% -22% 8%;
  height: 48%;
  pointer-events: none;
  mix-blend-mode: screen;
  background: radial-gradient(ellipse at center, rgba(255, 180, 60, 0.26), transparent 68%);
}
.space-hero--diwali .space-hero__glow {
  background: radial-gradient(ellipse at center, rgba(255, 196, 72, 0.5), transparent 70%);
}
.space-hero--holi {
  background:
    radial-gradient(800px 400px at 18% 80%, rgba(194, 24, 91, 0.28), transparent 55%),
    linear-gradient(118deg, #1a0611 0%, #4a0d2e 50%, #7a1740 100%);
}
.space-hero--christmas .space-hero__glow {
  background: radial-gradient(ellipse at center, rgba(240, 214, 156, 0.42), transparent 68%);
}
.space-hero--halloween {
  background:
    radial-gradient(800px 400px at 80% 20%, rgba(224, 123, 10, 0.22), transparent 50%),
    linear-gradient(118deg, #14080c 0%, #3d0d24 55%, #241019 100%);
}

@media (max-width: 900px) {
  .space-hero__grid {
    grid-template-columns: 1fr;
    min-height: 0;
  }
  .space-hero__visual {
    grid-column: 1;
    grid-row: 1;
    width: 100%;
    min-height: 220px;
    height: 220px;
    -webkit-mask-image: linear-gradient(180deg, #000 0%, #000 62%, transparent 100%);
    mask-image: linear-gradient(180deg, #000 0%, #000 62%, transparent 100%);
  }
  .space-hero__body {
    grid-column: 1;
    grid-row: 2;
    padding: 1rem var(--sp-5) var(--sp-5);
  }
  .space-hero__visual img {
    object-position: center 18%;
  }
  .space-hero__veil {
    background: linear-gradient(
      180deg,
      transparent 0%,
      rgba(61, 13, 36, 0.12) 45%,
      rgba(61, 13, 36, 0.7) 100%
    );
  }
}

.wp-block-image img, .aligncenter { margin-inline: auto; }
.entry-content > * { max-width: 70ch; }
.alignfull { max-width: none; }

.card__media:empty,
.card__media:not(:has(img)) { min-height: 140px; background: linear-gradient(135deg, var(--cream-200), var(--marigold-300)); }
.feature__main:not(:has(img)) { min-height: 280px; background: linear-gradient(160deg, var(--maroon-800), var(--maroon-900)); }
.hub:not(:has(img)) { background: var(--cream-100); }
.nav-links, .pager .nav-links { display: flex; gap: 0.75rem; flex-wrap: wrap; }
.comment-form textarea, .comment-form input[type="text"], .comment-form input[type="email"] {
  width: 100%; max-width: 40rem;
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  padding: 0.7rem 0.9rem;
  font-family: inherit;
}
.comment-form .form-submit .submit {
  appearance: none;
  background: var(--maroon-700);
  color: #fff;
  border: 0;
  border-radius: 999px;
  padding: 0.7rem 1.2rem;
  font-weight: 700;
  cursor: pointer;
}
.footer .footer__links, .footer .menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}
.footer .menu a { color: inherit; }

/* Drawer submenu rows — last so desktop .nav .sub-menu a cannot collapse them */
aside.drawer ul.sub-menu > li.menu-item {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  margin: 0;
  border-bottom: 1px solid rgba(90, 15, 46, 0.12);
}
aside.drawer ul.sub-menu > li.menu-item:last-child { border-bottom: 0; }
aside.drawer ul.sub-menu > li.menu-item > a {
  display: block !important;
  padding: 0.45rem 0.4rem !important;
  line-height: 1.45 !important;
  border: 0 !important;
  margin: 0 !important;
}

/* Touch devices: first tap must follow the link, not a hover animation */
@media (hover: none), (pointer: coarse) {
  .btn:hover,
  .intent:hover,
  .fest:hover,
  .hub:hover,
  .country-card:hover,
  .card:hover,
  .pick-card:hover,
  .finder__pick:hover,
  .ad-card:hover,
  .topbar__social a:hover {
    transform: none !important;
  }
  .intent:hover::before,
  .link-arrow:hover svg,
  .card:hover .card__media img,
  .pick-card:hover .pick-card__media img,
  .feature__main:hover img {
    transform: none !important;
    transition: none !important;
  }
}
