@import url("../assets/fonts/fonts.css");

/* ============================================================
   LUMI — warm "Gleam" design system
   Palette sampled from brand imagery: warm ivory/blush editorial
   sections + neutral #EEF0F2 wells that match the pastel packshots.
   ============================================================ */

:root {
  /* ink / text */
  --ink:        #221C19;
  --ink-soft:   #5C524B;
  --ink-faint:  #8E837B;

  /* warm surfaces */
  --cream:      #FBF6EF;
  --cream-2:    #F6EDDF;
  --sand:       #F0E5D3;
  --sand-deep:  #E7D8BF;
  --blush:      #F6E4DE;
  --blush-deep: #EFCFC6;

  /* product image well — matches the packshot background exactly */
  --well:       #EEF0F2;

  /* gold "gleam" accents */
  --gold:       #A9772F;   /* deep gold — AA for large/bold text on cream */
  --gold-mid:   #C79A4C;
  --gold-bright:#DCAD54;
  --gold-soft:  #ECD8A9;

  /* utility */
  --sale:       #A8463C;
  --line:       #E8DBC8;
  --line-soft:  #F0E7D8;
  --white:      #ffffff;
  --espresso:   #211A15;   /* dark footer */

  --maxw: 1280px;
  --gut: clamp(20px, 4.6vw, 56px);
  --head-h: 100px;

  --r-sm: 12px;
  --r-md: 18px;
  --r-lg: 26px;
  --r-xl: 34px;
  --pill: 999px;

  --sh-sm: 0 2px 10px -4px rgba(80,54,24,.18);
  --sh-md: 0 20px 44px -26px rgba(80,54,24,.34);
  --sh-lg: 0 40px 80px -40px rgba(70,46,20,.40);

  --ease: cubic-bezier(.22,.61,.36,1);
  --font-body: "Manrope", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --font-disp: "Fraunces", ui-serif, Georgia, "Times New Roman", serif;
}

@media (max-width: 760px) { :root { --head-h: 100px; } }

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
}
html { overflow-x: clip; }

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

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

::selection { background: var(--gold-soft); color: var(--ink); }

/* ---------- typography ---------- */
h1, h2, h3, h4 {
  font-family: var(--font-disp);
  font-weight: 500;
  line-height: 1.06;
  letter-spacing: -0.015em;
  font-optical-sizing: auto;
  color: var(--ink);
}
.display {
  font-size: clamp(2.9rem, 6.6vw, 5.7rem);
  line-height: 0.98;
  letter-spacing: -0.022em;
}
h2, .h2 { font-size: clamp(2rem, 4.2vw, 3.5rem); }
h3, .h3 { font-size: clamp(1.35rem, 2.4vw, 1.9rem); letter-spacing: -0.01em; }
.serif-i { font-style: italic; }

.eyebrow {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.74rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
}
.eyebrow--ink { color: var(--ink-soft); }

.lead { font-size: clamp(1.05rem, 1.5vw, 1.24rem); line-height: 1.6; color: var(--ink-soft); }
.muted { color: var(--ink-soft); }
.small { font-size: 0.86rem; }
p { text-wrap: pretty; }
.measure { max-width: 46ch; }
.measure-sm { max-width: 34ch; }

/* ---------- layout ---------- */
.container { width: min(var(--maxw), calc(100% - var(--gut) * 2)); margin-inline: auto; }
.container--wide { width: min(1480px, calc(100% - var(--gut) * 2)); margin-inline: auto; }
.section { padding-block: clamp(64px, 8.5vw, 132px); }
.section--tight { padding-block: clamp(48px, 6vw, 88px); }
main { display: block; }

.icon-list { display: grid; gap: 1rem; }

/* section header row (shared, reused sparingly) */
.sec-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 2rem; flex-wrap: wrap; margin-bottom: clamp(2rem, 4vw, 3.4rem); }
.sec-head h2 { max-width: 18ch; }
.sec-head p { max-width: 40ch; }

/* ---------- icons ---------- */
.ico { width: 1.25em; height: 1.25em; display: inline-block; vertical-align: middle; fill: none; stroke: currentColor; stroke-width: 1.75; stroke-linecap: round; stroke-linejoin: round; flex: none; }
.ico-f { fill: currentColor; stroke: none; }
.spark { color: var(--gold-mid); }

/* ---------- buttons ---------- */
.btn {
  --bg: var(--ink); --fg: var(--cream);
  display: inline-flex; align-items: center; justify-content: center; gap: 0.55em;
  padding: 0.92em 1.7em;
  background: var(--bg); color: var(--fg);
  border-radius: var(--pill);
  font-weight: 600; font-size: 0.92rem; letter-spacing: 0.01em;
  border: 1.5px solid var(--bg);
  transition: transform .35s var(--ease), background .3s var(--ease), color .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
  will-change: transform;
}
.btn .ico { width: 1.1em; height: 1.1em; stroke-width: 2; }
.btn:hover { transform: translateY(-2px); box-shadow: var(--sh-md); }
.btn:active { transform: translateY(0); }
.btn--gold { --bg: var(--gold); --fg: #fff; border-color: var(--gold); }
.btn--gold:hover { --bg: #96671f; border-color: #96671f; }
.btn--ghost { --bg: transparent; --fg: var(--ink); border-color: rgba(34,28,25,.28); }
.btn--ghost:hover { --bg: var(--ink); --fg: var(--cream); border-color: var(--ink); }
.btn--light { --bg: var(--cream); --fg: var(--ink); border-color: var(--cream); }
.btn--outline-light { --bg: transparent; --fg: var(--cream); border-color: rgba(251,246,239,.4); }
.btn--outline-light:hover { --bg: var(--cream); --fg: var(--ink); border-color: var(--cream); }
.btn--block { width: 100%; }
.btn--lg { padding: 1.05em 2.1em; font-size: 1rem; }
.btn--sm { padding: 0.7em 1.2em; font-size: 0.82rem; }

.link-arrow { display: inline-flex; align-items: center; gap: 0.5em; font-weight: 600; font-size: 0.9rem; color: var(--ink); border-bottom: 1.5px solid transparent; padding-bottom: 2px; transition: gap .3s var(--ease), border-color .3s var(--ease); }
.link-arrow .ico { width: 1.05em; height: 1.05em; stroke-width: 2; transition: transform .3s var(--ease); }
.link-arrow:hover { gap: 0.75em; border-color: var(--gold); }
.link-arrow:hover .ico { transform: translateX(2px); }

.tag { display: inline-flex; align-items: center; gap: 0.4em; font-family: var(--font-body); font-weight: 600; font-size: 0.68rem; letter-spacing: 0.12em; text-transform: uppercase; padding: 0.42em 0.85em; border-radius: var(--pill); }
.tag--best { background: var(--ink); color: var(--cream); }
.tag--new  { background: var(--gold-soft); color: #6f4e14; }
.tag--sale { background: var(--sale); color: #fff; }

/* ============================================================
   HEADER
   ============================================================ */
.site-header { position: sticky; top: 0; z-index: 60; }
.announce {
  background: var(--ink); color: var(--cream);
  font-size: 0.76rem; letter-spacing: 0.04em;
  height: 38px; display: flex; align-items: center; overflow: hidden;
}
.announce__track { display: flex; align-items: center; gap: 2.4rem; white-space: nowrap; padding-left: 100%; animation: marquee 46s linear infinite; }
.announce__track span { display: inline-flex; align-items: center; gap: 2.4rem; }
.announce .ico { width: 12px; height: 12px; color: var(--gold-bright); }
@keyframes marquee { to { transform: translateX(-100%); } }
@media (prefers-reduced-motion: reduce) {
  .announce__track { animation: none; padding-left: 0; justify-content: center; width: 100%; }
}

.nav {
  background: color-mix(in srgb, var(--cream) 78%, transparent);
  backdrop-filter: blur(14px) saturate(1.2);
  -webkit-backdrop-filter: blur(14px) saturate(1.2);
  border-bottom: 1px solid transparent;
  transition: border-color .4s var(--ease), background .4s var(--ease);
}
.site-header.scrolled .nav { border-bottom-color: var(--line); background: color-mix(in srgb, var(--cream) 92%, transparent); }
.nav__inner { height: 62px; display: flex; align-items: center; gap: 1.5rem; }
.nav__logo { display: inline-flex; align-items: center; }
.nav__logo img { height: 26px; width: auto; }
.nav__links { display: flex; align-items: center; gap: clamp(1rem, 1.9vw, 2.1rem); margin-inline: auto; }
.nav__links a { position: relative; font-size: 0.92rem; font-weight: 500; color: var(--ink); padding-block: 0.4rem; transition: color .25s; }
.nav__links a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -2px; height: 1.5px; background: var(--gold); transition: right .3s var(--ease); }
.nav__links a:hover::after, .nav__links a[aria-current="page"]::after { right: 0; }
.nav__links a[aria-current="page"] { color: var(--gold); font-weight: 600; }
.nav__actions { display: flex; align-items: center; gap: 0.35rem; }
.icon-btn { display: inline-flex; align-items: center; justify-content: center; width: 42px; height: 42px; border-radius: var(--pill); color: var(--ink); position: relative; transition: background .25s; }
.icon-btn:hover { background: rgba(34,28,25,.07); }
.icon-btn .ico { width: 21px; height: 21px; }
.cart-count {
  position: absolute; top: 4px; right: 3px; min-width: 18px; height: 18px; padding: 0 4px;
  background: var(--gold); color: #fff; border-radius: var(--pill);
  font-family: var(--font-body); font-size: 0.66rem; font-weight: 700; line-height: 18px; text-align: center;
  transform: scale(0); transition: transform .3s var(--ease);
}
.cart-count.show { transform: scale(1); }
.nav__burger { display: none; }

@media (max-width: 1000px) {
  .nav__links { display: none; }
  .nav__burger { display: inline-flex; }
  .nav__logo { margin-right: auto; }
}

/* mobile drawer */
.m-nav { position: fixed; inset: 0; z-index: 80; visibility: hidden; }
.m-nav__scrim { position: absolute; inset: 0; background: rgba(33,26,21,.42); opacity: 0; transition: opacity .4s var(--ease); }
.m-nav__panel {
  position: absolute; top: 0; right: 0; height: 100%; width: min(400px, 86vw);
  background: var(--cream); box-shadow: var(--sh-lg);
  transform: translateX(100%); transition: transform .45s var(--ease);
  display: flex; flex-direction: column; padding: 1.4rem var(--gut) 2rem;
  overflow-y: auto;
}
.m-nav.open { visibility: visible; }
.m-nav.open .m-nav__scrim { opacity: 1; }
.m-nav.open .m-nav__panel { transform: translateX(0); }
.m-nav__top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1.6rem; }
.m-nav__top img { height: 24px; }
.m-nav__links { display: flex; flex-direction: column; }
.m-nav__links a { font-family: var(--font-disp); font-size: 1.7rem; font-weight: 500; padding: 0.55rem 0; border-bottom: 1px solid var(--line-soft); display: flex; align-items: center; justify-content: space-between; }
.m-nav__links a[aria-current="page"] { color: var(--gold); }
.m-nav__links a .ico { width: 18px; height: 18px; color: var(--gold); }
.m-nav__foot { margin-top: auto; padding-top: 1.8rem; display: flex; flex-direction: column; gap: 1rem; }
.m-nav__social { display: flex; gap: 0.6rem; }

/* ============================================================
   HERO (home)
   ============================================================ */
.hero { min-height: calc(100svh - var(--head-h)); display: grid; grid-template-columns: 1fr 1fr; align-items: stretch; position: relative; }
.hero__text { display: flex; flex-direction: column; justify-content: center; padding-block: clamp(2rem, 5vw, 4.5rem); padding-left: max(var(--gut), calc((100vw - var(--maxw)) / 2)); padding-right: clamp(1.5rem, 4vw, 3.5rem); }
.hero__text .container-l { width: 100%; max-width: 620px; margin: 0; padding-inline: 0; }
.hero__eyebrow { margin-bottom: 1.5rem; }
.hero h1 { margin-bottom: 1.4rem; }
.hero h1 em { font-style: italic; color: var(--gold); }
.hero__sub { max-width: 42ch; margin-bottom: 2.2rem; }
.hero__cta { display: flex; gap: 0.8rem; flex-wrap: wrap; align-items: center; }
.hero__trust { display: flex; gap: 1.8rem; margin-top: 2.6rem; flex-wrap: wrap; }
.hero__trust li { display: flex; align-items: center; gap: 0.5rem; font-size: 0.84rem; color: var(--ink-soft); font-weight: 500; }
.hero__trust .ico { width: 18px; height: 18px; color: var(--gold); }
.hero__media { position: relative; overflow: hidden; background: var(--blush); }
.hero__media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 28%; }
.hero__media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(105deg, var(--cream) 0%, rgba(251,246,239,.15) 22%, transparent 42%); }
.hero__badge {
  position: absolute; left: clamp(1rem, 3vw, 2.4rem); bottom: clamp(1rem, 3vw, 2.4rem); z-index: 2;
  background: color-mix(in srgb, var(--cream) 90%, transparent); backdrop-filter: blur(8px);
  border-radius: var(--r-md); padding: 0.9rem 1.15rem; box-shadow: var(--sh-md);
  display: flex; align-items: center; gap: 0.8rem; max-width: 260px;
}
.hero__badge .stars { color: var(--gold-bright); display: flex; gap: 1px; }
.hero__badge .stars .ico { width: 14px; height: 14px; }
.hero__badge strong { font-size: 0.92rem; }
.hero__badge span { font-size: 0.76rem; color: var(--ink-soft); }
.hero__scroll { position: absolute; left: 50%; bottom: 1.2rem; transform: translateX(-50%); z-index: 3; display: flex; flex-direction: column; align-items: center; gap: 0.4rem; font-size: 0.68rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--ink-faint); }
.hero__scroll .ico { width: 16px; height: 16px; animation: bob 2s var(--ease) infinite; }
@keyframes bob { 0%,100%{transform:translateY(0)} 50%{transform:translateY(5px)} }
@media (prefers-reduced-motion: reduce) { .hero__scroll .ico { animation: none; } }

@media (max-width: 900px) {
  /* mobile hero: full-bleed photo with overlaid text + scrim (guaranteed 100vh) */
  .hero { display: block; position: relative; height: calc(100svh - var(--head-h)); min-height: 0; }
  .hero__media { position: absolute; inset: 0; }
  .hero__media img { object-position: center 26%; }
  .hero__media::after { background: linear-gradient(0deg, rgba(24,16,10,.9) 0%, rgba(24,16,10,.68) 42%, rgba(24,16,10,.38) 66%, rgba(24,16,10,.1) 100%); }
  .hero__text { position: absolute; inset: 0; z-index: 2; justify-content: flex-end; padding: 0 0 clamp(1.6rem, 5vw, 2.6rem); }
  .hero__text .container-l { width: 100%; margin-inline: 0; padding-inline: var(--gut); }
  .hero__eyebrow { color: var(--gold-bright); margin-bottom: 1rem; }
  .hero h1, .hero__sub { color: #fff; }
  .hero h1 em { color: var(--gold-bright); }
  .hero__sub { color: rgba(255,255,255,.9); margin-bottom: 1.6rem; }
  .hero__cta .btn:not(.btn--ghost) { --bg: var(--cream); --fg: var(--ink); border-color: var(--cream); }
  .hero__cta .btn--ghost { --fg: #fff; border-color: rgba(255,255,255,.55); }
  .hero__trust { display: none; }
  .hero__badge { top: clamp(1rem, 4vw, 1.6rem); bottom: auto; left: auto; right: clamp(1rem, 4vw, 1.6rem); max-width: 200px; padding: 0.7rem 0.9rem; }
  .hero__badge .stars .ico { width: 12px; height: 12px; }
  .hero__badge strong { font-size: 0.84rem; }
  .hero__scroll { display: none; }
}
/* short laptop heights: keep header + hero within 100vh */
@media (min-width: 901px) and (max-height: 860px) {
  .hero__text { padding-block: clamp(1rem, 2.2vh, 2rem); }
  .hero h1.display { font-size: clamp(2.6rem, 5vw, 4.4rem); }
  .hero__eyebrow { margin-bottom: 0.9rem; }
  .hero h1 { margin-bottom: 1rem; }
  .hero__sub { margin-bottom: 1.5rem; font-size: 1.02rem; }
  .hero__trust { margin-top: 1.5rem; gap: 1.2rem 1.6rem; }
}

/* ============================================================
   PRODUCT CARD (shared)
   ============================================================ */
.card { position: relative; display: flex; flex-direction: column; }
.card__media { position: relative; background: var(--well); border-radius: var(--r-md); overflow: hidden; aspect-ratio: 4 / 5; }
.card__media img { width: 100%; height: 100%; object-fit: contain; padding: 6% 9%; transition: transform .6s var(--ease); }
.card:hover .card__media img { transform: scale(1.045); }
.card__tags { position: absolute; top: 0.75rem; left: 0.75rem; display: flex; flex-direction: column; gap: 0.35rem; align-items: flex-start; z-index: 2; }
.card__wish { position: absolute; top: 0.7rem; right: 0.7rem; width: 34px; height: 34px; border-radius: var(--pill); background: color-mix(in srgb,var(--cream) 82%,transparent); backdrop-filter: blur(6px); display: inline-flex; align-items: center; justify-content: center; color: var(--ink); opacity: 0; transform: translateY(-4px); transition: .3s var(--ease); z-index: 2; }
.card__wish .ico { width: 17px; height: 17px; }
.card:hover .card__wish { opacity: 1; transform: translateY(0); }
.card__add {
  position: absolute; left: 0.75rem; right: 0.75rem; bottom: 0.75rem; z-index: 2;
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5em;
  padding: 0.8em 1em; background: var(--cream); color: var(--ink); border-radius: var(--pill);
  font-weight: 600; font-size: 0.86rem; box-shadow: var(--sh-sm);
  opacity: 0; transform: translateY(10px); transition: .35s var(--ease);
}
.card__add .ico { width: 17px; height: 17px; }
.card:hover .card__add, .card:focus-within .card__add { opacity: 1; transform: translateY(0); }
.card__add:hover { background: var(--ink); color: var(--cream); }
.card__body { padding: 1rem 0.15rem 0; display: flex; flex-direction: column; gap: 0.25rem; }
.card__type { font-size: 0.74rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--gold); font-weight: 600; }
.card__title { font-family: var(--font-body); font-size: 0.98rem; font-weight: 600; line-height: 1.3; letter-spacing: 0; }
.card__title a::after { content: ""; position: absolute; inset: 0; z-index: 1; }
.card__price { display: flex; align-items: baseline; gap: 0.5rem; margin-top: 0.2rem; }
.card__price .now { font-weight: 600; font-size: 0.98rem; }
.card__price .was { font-size: 0.85rem; color: var(--ink-faint); text-decoration: line-through; }
.card__price .off { font-size: 0.72rem; font-weight: 700; color: var(--sale); }

.product-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(1rem, 2vw, 1.9rem) clamp(0.9rem, 1.6vw, 1.6rem); }
@media (max-width: 1000px) { .product-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 680px)  { .product-grid { grid-template-columns: repeat(2, 1fr); gap: 1.4rem 1rem; } }

/* horizontal scroller (home best sellers) */
.scroller { display: grid; grid-auto-flow: column; grid-auto-columns: minmax(230px, 1fr); gap: 1.3rem; overflow-x: auto; scroll-snap-type: x mandatory; padding-bottom: 1rem; margin-inline: calc(var(--gut) * -1); padding-inline: var(--gut); scrollbar-width: none; }
.scroller::-webkit-scrollbar { display: none; }
.scroller > * { scroll-snap-align: start; }
@media (min-width: 1001px) { .scroller { grid-auto-columns: minmax(0, 1fr); grid-template-columns: repeat(4, 1fr); grid-auto-flow: row; overflow: visible; margin-inline: 0; padding-inline: 0; } }

/* ============================================================
   MISSION / QUOTE block
   ============================================================ */
.mission { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: clamp(2rem, 5vw, 5rem); align-items: center; }
.mission__quote { font-family: var(--font-disp); font-weight: 500; font-size: clamp(1.7rem, 3.3vw, 3rem); line-height: 1.18; letter-spacing: -0.015em; }
.mission__quote .mark { color: var(--gold); }
.mission__by { margin-top: 1.8rem; display: flex; align-items: center; gap: 0.9rem; }
.mission__by .rule { width: 42px; height: 1.5px; background: var(--gold); }
.mission__by span { font-weight: 600; font-size: 0.9rem; }
.mission__by em { display: block; font-style: normal; font-size: 0.8rem; color: var(--ink-soft); }
.mission__media { position: relative; aspect-ratio: 4/5; border-radius: 200px 200px var(--r-lg) var(--r-lg); overflow: hidden; box-shadow: var(--sh-md); }
.mission__media img { width: 100%; height: 100%; object-fit: cover; }
.mission__media .float-spark { position: absolute; top: -14px; right: -14px; color: var(--gold-bright); }
@media (max-width: 820px) { .mission { grid-template-columns: 1fr; } .mission__media { max-width: 380px; margin-inline: auto; order: -1; } }

/* ============================================================
   BENTO series grid
   ============================================================ */
.bento { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: minmax(180px, auto); gap: clamp(0.8rem, 1.4vw, 1.2rem); }
.bento__tile { position: relative; border-radius: var(--r-md); overflow: hidden; display: flex; align-items: flex-end; min-height: 220px; isolation: isolate; }
.bento__tile img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; transition: transform .7s var(--ease); }
.bento__tile::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(0deg, rgba(40,28,20,.62) 4%, rgba(40,28,20,.12) 46%, transparent 72%); }
.bento__tile:hover img { transform: scale(1.06); }
.bento__tile .body { padding: clamp(1.1rem, 2vw, 1.8rem); color: var(--cream); position: relative; z-index: 1; }
.bento__tile .kick { font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase; opacity: .85; }
.bento__tile h3 { color: #fff; font-size: clamp(1.3rem, 1.9vw, 1.9rem); margin-top: 0.2rem; }
.bento__tile .go { display: inline-flex; align-items: center; gap: 0.4em; margin-top: 0.5rem; font-size: 0.82rem; font-weight: 600; }
.bento__tile .go .ico { width: 15px; height: 15px; transition: transform .3s var(--ease); }
.bento__tile:hover .go .ico { transform: translateX(3px); }
.bento__tile--tall { grid-row: span 2; }
.bento__tile--wide { grid-column: span 2; }
.bento__tile--pale { background: var(--sand); align-items: stretch; }
.bento__tile--pale::after { display: none; }
.bento__tile--pale .body { color: var(--ink); display: flex; flex-direction: column; justify-content: space-between; width: 100%; }
.bento__tile--pale .kick { color: var(--gold); opacity: 1; }
.bento__tile--pale h3 { color: var(--ink); }
@media (max-width: 900px) { .bento { grid-template-columns: repeat(2, 1fr); } .bento__tile--wide { grid-column: span 2; } }
@media (max-width: 560px) { .bento { grid-template-columns: 1fr; } .bento__tile--wide, .bento__tile--tall { grid-column: auto; grid-row: auto; } }

/* ============================================================
   VALUE band (icon row on colored band)
   ============================================================ */
.band { background: var(--sand); }
.band--blush { background: var(--blush); }
.band--ink { background: var(--espresso); color: var(--cream); }
.values { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1.6rem, 3vw, 3.4rem); }
.value { display: flex; flex-direction: column; gap: 0.7rem; }
.value__ic { width: 52px; height: 52px; border-radius: var(--pill); background: color-mix(in srgb, var(--gold-soft) 60%, var(--cream)); display: inline-flex; align-items: center; justify-content: center; color: var(--gold); }
.value__ic .ico { width: 24px; height: 24px; }
.value h3 { font-size: 1.25rem; }
.value p { font-size: 0.92rem; color: var(--ink-soft); }
.band--ink .value p { color: color-mix(in srgb, var(--cream) 74%, transparent); }
.band--ink .value__ic { background: rgba(220,173,84,.16); }
@media (max-width: 720px) { .values { grid-template-columns: 1fr; gap: 1.6rem; } .value { flex-direction: row; align-items: flex-start; } .value__ic { flex: none; } }

/* ============================================================
   FEATURE overlap (award product)
   ============================================================ */
.feature { position: relative; display: grid; grid-template-columns: 0.95fr 1.05fr; align-items: center; gap: clamp(1.5rem, 4vw, 4rem); }
.feature__media { position: relative; background: var(--blush); border-radius: var(--r-lg); aspect-ratio: 1/1; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.feature__media img { width: 74%; height: auto; filter: drop-shadow(0 30px 40px rgba(90,60,20,.22)); }
.feature__badges { position: absolute; display: flex; flex-direction: column; gap: 0.7rem; left: -18px; top: 50%; transform: translateY(-50%); }
.feature__badge { background: var(--cream); box-shadow: var(--sh-md); border-radius: var(--pill); padding: 0.55rem 0.95rem 0.55rem 0.55rem; display: flex; align-items: center; gap: 0.6rem; }
.feature__badge .ring { width: 40px; height: 40px; border-radius: var(--pill); background: var(--gold-soft); color: #6f4e14; display: inline-flex; align-items: center; justify-content: center; font-family: var(--font-disp); font-weight: 600; font-size: 0.82rem; flex: none; }
.feature__badge b { font-size: 0.8rem; display: block; line-height: 1.2; }
.feature__badge span { font-size: 0.7rem; color: var(--ink-soft); }
.feature__body h2 { margin-bottom: 1.1rem; }
.feature__body .points { margin: 1.6rem 0; display: grid; gap: 0.7rem; }
.feature__body .points li { display: flex; gap: 0.7rem; align-items: flex-start; font-size: 0.96rem; }
.feature__body .points .ico { color: var(--gold); width: 20px; height: 20px; margin-top: 2px; flex: none; }
@media (max-width: 820px) { .feature { grid-template-columns: 1fr; } .feature__media { max-width: 460px; margin-inline: auto; width: 100%; } .feature__badges { left: 0; } }

/* ============================================================
   UGC gallery (#LUMILOVE) — lightbox enabled
   ============================================================ */
.ugc-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: clamp(0.6rem, 1.2vw, 1rem); }
.ugc-item { position: relative; border-radius: var(--r-sm); overflow: hidden; cursor: pointer; aspect-ratio: 1/1; }
.ugc-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.ugc-item::after { content: ""; position: absolute; inset: 0; background: rgba(33,26,21,.14); opacity: 0; transition: opacity .3s; }
.ugc-item:hover img { transform: scale(1.07); }
.ugc-item:hover::after { opacity: 1; }
.ugc-item .ig { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%) scale(.8); color: #fff; opacity: 0; transition: .3s var(--ease); }
.ugc-item:hover .ig { opacity: 1; transform: translate(-50%,-50%) scale(1); }
.ugc-item--big { grid-column: span 2; grid-row: span 2; }
@media (max-width: 720px) { .ugc-grid { grid-template-columns: repeat(3, 1fr); } .ugc-item--big { grid-column: span 2; grid-row: span 2; } }

/* ============================================================
   CTA band / newsletter
   ============================================================ */
.cta-band { position: relative; overflow: hidden; background: linear-gradient(135deg, #2A2019, #3d2c1c 60%, #55371c); color: var(--cream); border-radius: var(--r-xl); padding: clamp(2.6rem, 6vw, 5.5rem); text-align: center; isolation: isolate; }
.cta-band .sparkfield { position: absolute; inset: 0; z-index: -1; opacity: .5; }
.cta-band .sparkfield .ico { position: absolute; color: var(--gold-bright); }
.cta-band h2 { color: #fff; max-width: 20ch; margin: 0 auto 1rem; }
.cta-band p { max-width: 46ch; margin: 0 auto 2rem; color: color-mix(in srgb, var(--cream) 80%, transparent); }
.newsletter { display: flex; gap: 0.6rem; max-width: 480px; margin: 0 auto; }
.newsletter input { flex: 1; padding: 0.95em 1.3em; border-radius: var(--pill); border: 1.5px solid rgba(251,246,239,.28); background: rgba(251,246,239,.08); color: var(--cream); }
.newsletter input::placeholder { color: rgba(251,246,239,.6); }
.newsletter input:focus-visible { outline-color: var(--gold-bright); background: rgba(251,246,239,.14); }
@media (max-width: 540px) { .newsletter { flex-direction: column; } }

/* ============================================================
   PAGE BANNER (interior pages)
   ============================================================ */
.page-banner { position: relative; }
.page-banner__inner { padding-block: clamp(3rem, 7vw, 6rem); }
.page-banner .crumbs { display: flex; align-items: center; gap: 0.5rem; font-size: 0.8rem; color: var(--ink-soft); margin-bottom: 1.4rem; }
.page-banner .crumbs a:hover { color: var(--gold); }
.page-banner .crumbs .ico { width: 14px; height: 14px; }
.page-banner h1 { font-size: clamp(2.5rem, 5.5vw, 4.6rem); max-width: 16ch; }
.page-banner p { max-width: 48ch; margin-top: 1.2rem; }

/* editorial hero for About/Series/Rewards = full height */
.ed-hero { min-height: calc(100svh - var(--head-h)); display: grid; align-items: center; position: relative; overflow: hidden; }
.ed-hero__bg { position: absolute; inset: 0; z-index: -2; }
.ed-hero__bg img { width: 100%; height: 100%; object-fit: cover; }
.ed-hero::after { content: ""; position: absolute; inset: 0; z-index: -1; }
.ed-hero--left::after { background: linear-gradient(95deg, rgba(28,20,14,.72) 0%, rgba(28,20,14,.35) 40%, transparent 70%); }
.ed-hero--center::after { background: linear-gradient(0deg, rgba(28,20,14,.6), rgba(28,20,14,.28)); }
.ed-hero__body { color: var(--cream); padding-block: 3rem; }
.ed-hero__body h1 { color: #fff; }
.ed-hero__body .eyebrow { color: var(--gold-bright); }
.ed-hero--center .ed-hero__body { text-align: center; max-width: 760px; margin-inline: auto; }
.ed-hero__body p { color: color-mix(in srgb, #fff 84%, transparent); }

/* ============================================================
   TOOLBAR (shop filters)
   ============================================================ */
.toolbar { position: sticky; top: var(--head-h); z-index: 40; background: color-mix(in srgb, var(--cream) 92%, transparent); backdrop-filter: blur(12px); border-block: 1px solid var(--line); }
.toolbar__inner { display: flex; align-items: center; gap: 1rem; padding-block: 0.85rem; flex-wrap: wrap; }
.chips { display: flex; gap: 0.5rem; flex-wrap: wrap; overflow-x: auto; scrollbar-width: none; }
.chips::-webkit-scrollbar { display: none; }
.chip { white-space: nowrap; padding: 0.5em 1.05em; border-radius: var(--pill); border: 1.5px solid var(--line); font-size: 0.86rem; font-weight: 500; color: var(--ink-soft); transition: .25s var(--ease); }
.chip:hover { border-color: var(--ink); color: var(--ink); }
.chip.active { background: var(--ink); border-color: var(--ink); color: var(--cream); }
.toolbar__right { margin-left: auto; display: flex; align-items: center; gap: 0.8rem; }
.toolbar__count { font-size: 0.85rem; color: var(--ink-soft); }
.select { position: relative; }
.select select { appearance: none; padding: 0.55em 2.3em 0.55em 1em; border-radius: var(--pill); border: 1.5px solid var(--line); background: var(--cream); font-size: 0.85rem; font-weight: 500; cursor: pointer; }
.select .ico { position: absolute; right: 0.8em; top: 50%; transform: translateY(-50%); width: 16px; height: 16px; pointer-events: none; color: var(--ink-soft); }
@media (max-width: 640px) { .toolbar__right { width: 100%; justify-content: space-between; margin-left: 0; } }

/* inline promo strip */
.promo-strip { grid-column: 1 / -1; background: linear-gradient(120deg, var(--blush), var(--sand)); border-radius: var(--r-md); padding: clamp(1.4rem, 3vw, 2.2rem); display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; flex-wrap: wrap; }
.promo-strip .ico { color: var(--gold); width: 26px; height: 26px; }
.promo-strip h3 { font-size: clamp(1.3rem, 2.2vw, 1.8rem); }
.promo-strip .txt { display: flex; align-items: center; gap: 1rem; }

/* ============================================================
   PRODUCT DETAIL
   ============================================================ */
.pdp { display: grid; grid-template-columns: 1.08fr 0.92fr; gap: clamp(1.6rem, 4vw, 4rem); align-items: start; padding-top: clamp(1.5rem, 3vw, 2.5rem); }
.pdp__gallery { position: sticky; top: calc(var(--head-h) + 1.2rem); display: grid; grid-template-columns: 72px 1fr; gap: 1rem; }
.pdp__thumbs { display: flex; flex-direction: column; gap: 0.7rem; }
.pdp__thumb { border-radius: var(--r-sm); overflow: hidden; background: var(--well); aspect-ratio: 1/1; border: 1.5px solid transparent; padding: 6%; cursor: pointer; transition: border-color .25s; }
.pdp__thumb img { width: 100%; height: 100%; object-fit: contain; }
.pdp__thumb.active { border-color: var(--ink); }
.pdp__stage { position: relative; background: var(--well); border-radius: var(--r-lg); aspect-ratio: 4/5; overflow: hidden; cursor: zoom-in; }
.pdp__stage img { width: 100%; height: 100%; object-fit: contain; padding: 6% 8%; }
.pdp__zoom { position: absolute; bottom: 1rem; right: 1rem; width: 40px; height: 40px; border-radius: var(--pill); background: color-mix(in srgb,var(--cream) 85%,transparent); backdrop-filter: blur(6px); display: flex; align-items: center; justify-content: center; box-shadow: var(--sh-sm); }
.pdp__info .card__type { font-size: 0.78rem; margin-bottom: 0.6rem; }
.pdp__info h1 { font-size: clamp(1.9rem, 3.2vw, 2.8rem); margin-bottom: 0.9rem; }
.pdp__rating { display: flex; align-items: center; gap: 0.6rem; margin-bottom: 1.3rem; font-size: 0.85rem; color: var(--ink-soft); }
.pdp__rating .stars { color: var(--gold-bright); display: flex; gap: 1px; }
.pdp__rating .stars .ico { width: 15px; height: 15px; }
.pdp__price { display: flex; align-items: baseline; gap: 0.7rem; margin-bottom: 1.4rem; }
.pdp__price .now { font-size: 1.6rem; font-weight: 600; }
.pdp__price .was { font-size: 1.05rem; color: var(--ink-faint); text-decoration: line-through; }
.pdp__desc { color: var(--ink-soft); margin-bottom: 1.6rem; max-width: 48ch; }
.pdp__buy { display: flex; gap: 0.8rem; align-items: stretch; margin-bottom: 1.4rem; }
.qty { display: inline-flex; align-items: center; border: 1.5px solid var(--line); border-radius: var(--pill); }
.qty button { width: 44px; height: 100%; display: inline-flex; align-items: center; justify-content: center; color: var(--ink); }
.qty button .ico { width: 16px; height: 16px; }
.qty input { width: 34px; text-align: center; border: none; background: none; font-weight: 600; -moz-appearance: textfield; }
.qty input::-webkit-outer-spin-button, .qty input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.pdp__ship { display: flex; align-items: center; gap: 0.6rem; font-size: 0.86rem; color: var(--ink-soft); margin-bottom: 1.6rem; }
.pdp__ship .ico { color: var(--gold); width: 18px; height: 18px; }
.pdp__mini { display: grid; grid-template-columns: repeat(4,1fr); gap: 0.6rem; margin-bottom: 1.6rem; }
.pdp__mini li { text-align: center; background: var(--cream-2); border-radius: var(--r-sm); padding: 0.9rem 0.4rem; }
.pdp__mini .ico { color: var(--gold); width: 22px; height: 22px; margin: 0 auto 0.4rem; }
.pdp__mini span { font-size: 0.74rem; font-weight: 600; line-height: 1.2; display: block; }

.accordion { border-top: 1px solid var(--line); }
.accordion__item { border-bottom: 1px solid var(--line); }
.accordion__btn { width: 100%; display: flex; align-items: center; justify-content: space-between; padding: 1.15rem 0; font-weight: 600; font-size: 1rem; text-align: left; }
.accordion__btn .ico { width: 20px; height: 20px; transition: transform .3s var(--ease); color: var(--gold); }
.accordion__btn[aria-expanded="true"] .ico { transform: rotate(45deg); }
.accordion__panel { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .35s var(--ease); }
.accordion__panel > div { overflow: hidden; }
.accordion__panel p { padding-bottom: 1.15rem; color: var(--ink-soft); font-size: 0.94rem; }
.accordion__btn[aria-expanded="true"] + .accordion__panel { grid-template-rows: 1fr; }
@media (max-width: 860px) { .pdp { grid-template-columns: 1fr; } .pdp__gallery { position: static; } }
@media (max-width: 460px) { .pdp__gallery { grid-template-columns: 1fr; } .pdp__thumbs { flex-direction: row; order: 2; } .pdp__thumb { width: 62px; } }

/* how-to steps */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1.2rem, 2.5vw, 2.4rem); counter-reset: step; }
.step { position: relative; padding-top: 2.4rem; }
.step::before { counter-increment: step; content: "0" counter(step); position: absolute; top: 0; left: 0; font-family: var(--font-disp); font-size: 2rem; color: var(--gold); font-weight: 500; }
.step h3 { font-size: 1.2rem; margin-bottom: 0.4rem; }
.step p { font-size: 0.92rem; color: var(--ink-soft); }
@media (max-width: 720px) { .steps { grid-template-columns: 1fr; gap: 1rem; } .step { padding-top: 0; padding-left: 3rem; } }

/* ============================================================
   ABOUT / editorial split (reusable, alternating handled per-instance)
   ============================================================ */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.6rem, 4vw, 4.5rem); align-items: center; }
.split__media { border-radius: var(--r-lg); overflow: hidden; aspect-ratio: 5/6; box-shadow: var(--sh-md); }
.split__media img { width: 100%; height: 100%; object-fit: cover; }
.split--rev .split__media { order: 2; }
.split__body h2 { margin-bottom: 1.1rem; }
.split__body p + p { margin-top: 1rem; }
@media (max-width: 800px) { .split { grid-template-columns: 1fr; } .split--rev .split__media { order: -1; } .split__media { max-width: 460px; margin-inline: auto; } }

/* stat row */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.stat { text-align: center; }
.stat b { font-family: var(--font-disp); font-weight: 500; font-size: clamp(2.2rem, 4vw, 3.4rem); color: var(--ink); display: block; line-height: 1; }
.stat span { font-size: 0.84rem; color: var(--ink-soft); letter-spacing: 0.02em; }
.band--ink .stat b { color: var(--gold-bright); }
.band--ink .stat span { color: color-mix(in srgb,var(--cream) 76%,transparent); }
@media (max-width: 640px) { .stats { grid-template-columns: repeat(2,1fr); gap: 2rem 1rem; } }

/* press logos */
.press { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: clamp(1.6rem, 5vw, 4.5rem); }
.press span { font-family: var(--font-disp); font-size: clamp(1.1rem, 2vw, 1.5rem); letter-spacing: 0.04em; color: var(--ink-faint); font-weight: 500; }

/* ============================================================
   REWARDS
   ============================================================ */
.tiers { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1rem, 2vw, 1.6rem); align-items: end; }
.tier { background: var(--cream); border: 1.5px solid var(--line); border-radius: var(--r-lg); padding: clamp(1.4rem, 2.5vw, 2rem); }
.tier--mid { background: var(--sand); border-color: var(--sand-deep); padding-block: clamp(2rem, 4vw, 3rem); box-shadow: var(--sh-md); }
.tier .kick { font-size: 0.74rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold); font-weight: 600; }
.tier h3 { font-size: 1.7rem; margin: 0.3rem 0 0.2rem; }
.tier .spend { font-size: 0.86rem; color: var(--ink-soft); margin-bottom: 1.2rem; }
.tier ul { display: grid; gap: 0.7rem; }
.tier li { display: flex; gap: 0.6rem; align-items: flex-start; font-size: 0.9rem; }
.tier li .ico { color: var(--gold); width: 18px; height: 18px; margin-top: 2px; flex: none; }
@media (max-width: 780px) { .tiers { grid-template-columns: 1fr; } }

.how { display: grid; grid-template-columns: repeat(3,1fr); gap: clamp(1.4rem,3vw,2.6rem); }
.how__step { text-align: center; }
.how__num { width: 60px; height: 60px; margin: 0 auto 1rem; border-radius: var(--pill); background: var(--cream); border: 1.5px solid var(--gold-soft); color: var(--gold); display: inline-flex; align-items: center; justify-content: center; font-family: var(--font-disp); font-size: 1.4rem; }
.how__step h3 { font-size: 1.2rem; margin-bottom: 0.4rem; }
.how__step p { font-size: 0.9rem; color: var(--ink-soft); }
@media (max-width: 720px) { .how { grid-template-columns: 1fr; } }

.perks { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
.perk { display: flex; gap: 1rem; align-items: flex-start; background: var(--cream); border: 1px solid var(--line); border-radius: var(--r-md); padding: 1.2rem 1.3rem; }
.perk .ico { color: var(--gold); width: 24px; height: 24px; flex: none; }
.perk h3 { font-size: 1.05rem; margin-bottom: 0.2rem; }
.perk p { font-size: 0.86rem; color: var(--ink-soft); }
@media (max-width: 640px) { .perks { grid-template-columns: 1fr; } }

/* ============================================================
   CART DRAWER
   ============================================================ */
.cart { position: fixed; inset: 0; z-index: 90; visibility: hidden; }
.cart__scrim { position: absolute; inset: 0; background: rgba(33,26,21,.44); opacity: 0; transition: opacity .4s var(--ease); }
.cart__panel { position: absolute; top: 0; right: 0; height: 100%; width: min(420px, 92vw); background: var(--cream); box-shadow: var(--sh-lg); transform: translateX(100%); transition: transform .45s var(--ease); display: flex; flex-direction: column; }
.cart.open { visibility: visible; }
.cart.open .cart__scrim { opacity: 1; }
.cart.open .cart__panel { transform: translateX(0); }
.cart__head { display: flex; align-items: center; justify-content: space-between; padding: 1.3rem var(--gut); border-bottom: 1px solid var(--line); }
.cart__head h2 { font-size: 1.3rem; }
.cart__ship { padding: 1rem var(--gut); background: var(--sand); font-size: 0.84rem; }
.cart__ship .bar { height: 6px; border-radius: var(--pill); background: color-mix(in srgb,var(--ink) 12%, transparent); margin-top: 0.6rem; overflow: hidden; }
.cart__ship .bar span { display: block; height: 100%; background: var(--gold); border-radius: var(--pill); transition: width .5s var(--ease); }
.cart__items { flex: 1; overflow-y: auto; padding: 0.5rem var(--gut); }
.cart__empty { text-align: center; color: var(--ink-soft); padding: 3rem 1rem; }
.cart__empty .ico { width: 40px; height: 40px; color: var(--gold); margin: 0 auto 1rem; }
.c-item { display: grid; grid-template-columns: 64px 1fr auto; gap: 0.9rem; padding: 1rem 0; border-bottom: 1px solid var(--line-soft); align-items: center; }
.c-item__img { background: var(--well); border-radius: var(--r-sm); aspect-ratio: 1/1; padding: 8%; }
.c-item__img img { width: 100%; height: 100%; object-fit: contain; }
.c-item__t { font-size: 0.88rem; font-weight: 600; line-height: 1.25; }
.c-item__p { font-size: 0.82rem; color: var(--ink-soft); margin-top: 0.15rem; }
.c-item__q { display: inline-flex; align-items: center; gap: 0.5rem; margin-top: 0.4rem; font-size: 0.82rem; }
.c-item__q button { width: 24px; height: 24px; border-radius: 6px; border: 1px solid var(--line); display: inline-flex; align-items: center; justify-content: center; }
.c-item__q button .ico { width: 13px; height: 13px; }
.c-item__rm { color: var(--ink-faint); }
.c-item__rm .ico { width: 16px; height: 16px; }
.c-item__rm:hover { color: var(--sale); }
.cart__foot { padding: 1.2rem var(--gut) 1.6rem; border-top: 1px solid var(--line); }
.cart__sub { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 1rem; }
.cart__sub b { font-size: 1.2rem; font-weight: 600; }
.cart__foot .note { text-align: center; font-size: 0.76rem; color: var(--ink-faint); margin-top: 0.7rem; }

/* ============================================================
   LIGHTBOX
   ============================================================ */
.lightbox { position: fixed; inset: 0; z-index: 100; background: rgba(24,18,14,.88); display: flex; align-items: center; justify-content: center; opacity: 0; visibility: hidden; transition: opacity .3s var(--ease); }
.lightbox.open { opacity: 1; visibility: visible; }
.lightbox img { max-width: 90vw; max-height: 84vh; border-radius: var(--r-sm); box-shadow: var(--sh-lg); }
.lightbox__btn { position: absolute; width: 52px; height: 52px; border-radius: var(--pill); background: rgba(251,246,239,.12); color: var(--cream); display: inline-flex; align-items: center; justify-content: center; transition: background .25s; }
.lightbox__btn:hover { background: rgba(251,246,239,.24); }
.lightbox__btn .ico { width: 24px; height: 24px; }
.lightbox__close { top: 1.4rem; right: 1.4rem; }
.lightbox__prev { left: 1.4rem; top: 50%; transform: translateY(-50%); }
.lightbox__next { right: 1.4rem; top: 50%; transform: translateY(-50%); }
.lightbox__count { position: absolute; bottom: 1.4rem; left: 50%; transform: translateX(-50%); color: var(--cream); font-size: 0.84rem; letter-spacing: 0.05em; }
@media (max-width: 560px) { .lightbox__prev { left: 0.6rem; } .lightbox__next { right: 0.6rem; } }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--espresso); color: color-mix(in srgb, var(--cream) 78%, transparent); padding-top: clamp(3.5rem, 6vw, 5.5rem); }
.footer a { transition: color .2s; }
.footer a:hover { color: var(--gold-bright); }
.footer__top { display: grid; grid-template-columns: 1.6fr repeat(3, 1fr); gap: clamp(2rem, 4vw, 3.5rem); padding-bottom: 3rem; border-bottom: 1px solid rgba(251,246,239,.12); }
.footer__brand img { height: 26px; filter: brightness(0) invert(1); margin-bottom: 1.2rem; }
.footer__brand p { max-width: 32ch; font-size: 0.9rem; margin-bottom: 1.4rem; }
.footer__social { display: flex; gap: 0.6rem; }
.footer__social a { width: 42px; height: 42px; border-radius: var(--pill); border: 1px solid rgba(251,246,239,.2); display: inline-flex; align-items: center; justify-content: center; color: var(--cream); }
.footer__social a:hover { background: var(--gold); border-color: var(--gold); color: #fff; }
.footer__col h4 { font-family: var(--font-body); font-size: 0.78rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--cream); margin-bottom: 1.1rem; font-weight: 600; }
.footer__col ul { display: grid; gap: 0.7rem; }
.footer__col a { font-size: 0.9rem; }
.footer__bot { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; flex-wrap: wrap; padding-block: 1.8rem; font-size: 0.82rem; }
.footer__region { display: flex; align-items: center; gap: 0.5rem; }
.footer__region .ico { width: 15px; height: 15px; color: var(--gold-bright); }
.footer__region select { appearance: none; background: none; border: none; color: color-mix(in srgb,var(--cream) 78%,transparent); cursor: pointer; padding-right: 0.4rem; }
.footer__sign a { color: var(--gold-bright); font-weight: 600; }
/* keep the signature clear of the floating WhatsApp button on desktop */
@media (min-width: 861px) { .footer__bot { padding-inline-end: 84px; } }
@media (max-width: 860px) { .footer__top { grid-template-columns: 1fr 1fr; } .footer__brand { grid-column: 1 / -1; } }
@media (max-width: 520px) { .footer__top { grid-template-columns: 1fr; } .footer__bot { flex-direction: column; align-items: flex-start; } }

/* ============================================================
   FLOATING WHATSAPP
   ============================================================ */
.wa-float { position: fixed; right: clamp(16px, 3vw, 28px); bottom: clamp(16px, 3vw, 28px); z-index: 70; width: 58px; height: 58px; border-radius: var(--pill); background: #25D366; color: #fff; display: inline-flex; align-items: center; justify-content: center; box-shadow: 0 12px 30px -8px rgba(37,211,102,.6); transition: transform .3s var(--ease); }
.wa-float .ico { width: 30px; height: 30px; }
.wa-float::before { content: ""; position: absolute; inset: 0; border-radius: inherit; background: #25D366; z-index: -1; animation: wapulse 2.4s var(--ease) infinite; }
.wa-float:hover { transform: scale(1.08); }
.wa-float__tip { position: absolute; right: calc(100% + 12px); top: 50%; transform: translateY(-50%); white-space: nowrap; background: var(--ink); color: var(--cream); font-size: 0.8rem; font-weight: 500; padding: 0.5em 0.9em; border-radius: var(--pill); opacity: 0; pointer-events: none; transition: opacity .3s; box-shadow: var(--sh-sm); }
.wa-float:hover .wa-float__tip { opacity: 1; }
@keyframes wapulse { 0% { transform: scale(1); opacity: .5; } 70%,100% { transform: scale(1.7); opacity: 0; } }
@media (prefers-reduced-motion: reduce) { .wa-float::before { animation: none; } }

/* ============================================================
   REVEAL animations
   ============================================================ */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal[data-d="1"] { transition-delay: .08s; }
.reveal[data-d="2"] { transition-delay: .16s; }
.reveal[data-d="3"] { transition-delay: .24s; }
.reveal[data-d="4"] { transition-delay: .32s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
  .card:hover .card__media img, .bento__tile:hover img, .ugc-item:hover img { transform: none; }
}

/* utils */
.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; }
.center { text-align: center; }
.mt-1 { margin-top: 0.5rem; } .mt-2 { margin-top: 1rem; } .mt-3 { margin-top: 1.6rem; } .mt-4 { margin-top: 2.4rem; }
.sparkle-divider { display: flex; align-items: center; justify-content: center; gap: 0.8rem; color: var(--gold-mid); }
.sparkle-divider .line { height: 1px; width: min(80px, 12vw); background: linear-gradient(90deg, transparent, var(--gold-mid)); }
.sparkle-divider .line:last-child { background: linear-gradient(90deg, var(--gold-mid), transparent); }
.hidden-sprite { position: absolute; width: 0; height: 0; overflow: hidden; }
