/* ============================================================
   EVORA — brand system (locked palette, mobile-first)
   ============================================================ */
:root {
  --forest: #16362F;      /* Deep Forest Green — primary */
  --gold:   #F3C77D;      /* Warm Sand Gold — accent */
  --taupe:  #C4B3A0;      /* Soft Taupe Beige — neutral */
  --sage:   #44524A;      /* Sage Grey — secondary */
  --teal:   #23493D;      /* Evergreen Teal — support */
  --cream:  #F7F3EC;      /* Cream — light backgrounds */
  --maroon: #4A1E24;      /* Vivhaah bridge */
  --ink:    #1C2422;

  --serif: "Fraunces", "Georgia", serif;
  --sans:  "Inter", "Helvetica Neue", Helvetica, Arial, sans-serif;

  --nav-h: 64px;
  --pad: clamp(20px, 5vw, 64px);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }

h1, h2, h3 { font-family: var(--serif); font-weight: 500; line-height: 1.15; }
h1 { font-size: clamp(2.1rem, 7vw, 4rem); letter-spacing: -0.01em; }
h2 { font-size: clamp(1.6rem, 4.5vw, 2.6rem); }
h3 { font-size: clamp(1.15rem, 3vw, 1.5rem); }

.eyebrow {
  font-family: var(--sans);
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.9rem;
  font-weight: 600;
}
.eyebrow--sage { color: var(--sage); }

.section { padding: clamp(56px, 10vw, 110px) var(--pad); }
.section--tight { padding-top: clamp(36px, 6vw, 64px); padding-bottom: clamp(36px, 6vw, 64px); }
.container { max-width: 1180px; margin: 0 auto; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  padding: 0.85rem 1.9rem;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  transition: transform 0.15s ease, background 0.2s ease, color 0.2s ease;
  text-align: center;
}
.btn:active { transform: scale(0.97); }
.btn--gold { background: var(--gold); color: var(--forest); }
.btn--gold:hover { background: #f6d296; }
.btn--ghost { border: 1px solid rgba(247, 243, 236, 0.55); color: var(--cream); }
.btn--ghost:hover { border-color: var(--gold); color: var(--gold); }
.btn--forest { background: var(--forest); color: var(--cream); }
.btn--forest:hover { background: var(--teal); }

/* ---------- Nav ---------- */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 var(--pad);
  transition: background 0.3s ease, box-shadow 0.3s ease;
  color: var(--cream);
}
.nav.is-solid, .nav.nav--solid {
  background: var(--forest);
  box-shadow: 0 2px 20px rgba(22, 54, 47, 0.35);
}
.nav__logo {
  font-family: var(--serif);
  font-size: 1.35rem;
  letter-spacing: 0.28em;
  color: var(--gold);
  font-weight: 600;
  display: flex; align-items: center; gap: 2px;
}
.nav__logo .star { font-size: 0.95em; }
.nav__links { display: none; align-items: center; gap: 1.8rem; font-size: 0.86rem; font-weight: 500; }
.nav__links a:not(.btn):hover { color: var(--gold); }
.btn--weddings { padding: 0.5rem 1.2rem; font-size: 0.82rem; }
.nav__right { display: flex; align-items: center; gap: 1rem; }
.nav__cart { position: relative; font-size: 1.15rem; color: inherit; }
.nav__cart .dot {
  position: absolute; top: -7px; right: -10px;
  min-width: 16px; height: 16px; padding: 0 4px;
  border-radius: 999px; background: var(--gold); color: var(--forest);
  font-family: var(--sans); font-size: 10px; font-weight: 600;
  display: flex; align-items: center; justify-content: center;
}
.nav__cart .dot:empty { display: none; }
.nav__burger { display: flex; flex-direction: column; gap: 5px; padding: 6px; }
.nav__burger span { width: 22px; height: 2px; background: currentColor; border-radius: 2px; }

@media (min-width: 900px) {
  .nav__links { display: flex; }
  .nav__burger { display: none; }
}

/* Mobile slide-in menu */
.menu {
  position: fixed; inset: 0; z-index: 200;
  background: var(--forest); color: var(--cream);
  padding: calc(var(--nav-h) + 24px) var(--pad) 40px;
  transform: translateX(100%);
  transition: transform 0.32s cubic-bezier(0.22, 1, 0.36, 1);
  display: flex; flex-direction: column; gap: 0.4rem;
}
.menu.is-open { transform: translateX(0); }
.menu a { font-family: var(--serif); font-size: 1.7rem; padding: 0.55rem 0; border-bottom: 1px solid rgba(247,243,236,0.12); }
.menu a.gold { color: var(--gold); }
.menu__close { position: absolute; top: 18px; right: var(--pad); color: var(--cream); font-size: 1.6rem; }

/* ---------- Hero ---------- */
.hero {
  min-height: 100svh;
  background:
    radial-gradient(120% 90% at 80% 10%, rgba(35, 73, 61, 0.9), transparent 60%),
    radial-gradient(90% 70% at 15% 90%, rgba(243, 199, 125, 0.14), transparent 55%),
    var(--forest);
  color: var(--cream);
  display: flex; flex-direction: column; justify-content: center;
  padding: calc(var(--nav-h) + 40px) var(--pad) 80px;
  position: relative;
  overflow: hidden;
}
.hero__star {
  position: absolute;
  right: -8%; top: 50%;
  transform: translateY(-50%);
  width: clamp(260px, 45vw, 560px);
  opacity: 0.9;
  pointer-events: none;
}
.hero__inner { max-width: 640px; position: relative; }
.hero p.sub { margin: 1.2rem 0 2rem; font-size: clamp(0.98rem, 2.5vw, 1.15rem); color: rgba(247,243,236,0.82); max-width: 46ch; }
.hero__ctas { display: flex; flex-wrap: wrap; gap: 0.9rem; }

/* ---------- Marquee ---------- */
.marquee {
  background: var(--teal); color: var(--cream);
  overflow: hidden; white-space: nowrap;
  padding: 0.65rem 0;
  font-size: 0.8rem; letter-spacing: 0.14em; text-transform: uppercase;
}
.marquee__track { display: inline-flex; gap: 2.5rem; padding-right: 2.5rem; animation: marquee 28s linear infinite; }
.marquee__track .sep { color: var(--gold); }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- Occasion cards ---------- */
.occasions { background: var(--cream); }
.cards {
  display: grid; gap: 14px;
  grid-template-columns: repeat(2, 1fr);
  margin-top: 2rem;
}
@media (min-width: 900px) { .cards { grid-template-columns: repeat(4, 1fr); gap: 20px; } }
.card {
  border-radius: 14px; overflow: hidden;
  aspect-ratio: 4 / 5;
  position: relative; display: flex; align-items: flex-end;
  padding: 1.1rem; color: var(--cream);
  transition: transform 0.2s ease;
}
.card:hover { transform: translateY(-4px); }
.card h3 { font-size: clamp(1.05rem, 2.5vw, 1.3rem); position: relative; }
.card span { font-size: 0.78rem; color: var(--gold); position: relative; }
.card::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(22,54,47,0.85) 0%, rgba(22,54,47,0.05) 55%);
}
.card > * { z-index: 1; }
.card--corp   { background: linear-gradient(150deg, var(--sage), var(--forest)); }
.card--pers   { background: linear-gradient(150deg, var(--taupe), var(--sage)); }
.card--themed { background: linear-gradient(150deg, var(--teal), var(--forest) 70%), radial-gradient(circle at 70% 30%, var(--gold), transparent 60%); background-blend-mode: overlay; }
.card--custom { background: linear-gradient(150deg, var(--forest), var(--teal)); }

/* ---------- Featured collection (Japan) ---------- */
.featured {
  background: var(--forest); color: var(--cream);
  position: relative; overflow: hidden;
}
.featured .kintsugi-line { position: absolute; inset: 0; opacity: 0.5; pointer-events: none; }
.featured__grid { display: grid; gap: 2.2rem; position: relative; }
@media (min-width: 900px) { .featured__grid { grid-template-columns: 1.1fr 1fr; align-items: center; gap: 4rem; } }
.featured__visual {
  border-radius: 16px;
  aspect-ratio: 4 / 3;
  background:
    radial-gradient(circle at 30% 35%, rgba(243,199,125,0.35), transparent 45%),
    linear-gradient(160deg, var(--teal), var(--forest));
  border: 1px solid rgba(243,199,125,0.35);
  display: flex; align-items: center; justify-content: center;
}
.featured p { color: rgba(247,243,236,0.82); margin: 1rem 0 1.8rem; max-width: 52ch; }

/* ---------- Corporate band ---------- */
.corporate { background: var(--teal); color: var(--cream); text-align: center; }
.corporate .stats {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1rem; margin: 2.4rem 0;
}
.stat b { font-family: var(--serif); font-size: clamp(1.6rem, 5vw, 2.6rem); color: var(--gold); display: block; }
.stat span { font-size: 0.78rem; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(247,243,236,0.75); }
.moq {
  display: inline-block; margin-bottom: 1.6rem;
  border: 1px solid var(--gold); color: var(--gold);
  border-radius: 999px; padding: 0.45rem 1.2rem;
  font-size: 0.8rem; letter-spacing: 0.1em; text-transform: uppercase;
}

/* ---------- Behind the scenes ---------- */
.bts__row {
  display: flex; gap: 14px; overflow-x: auto;
  padding: 1.6rem var(--pad) 0.6rem;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}
.bts__row::-webkit-scrollbar { display: none; }
.short {
  flex: 0 0 min(52vw, 220px);
  aspect-ratio: 9 / 16;
  border-radius: 14px;
  scroll-snap-align: start;
  position: relative; overflow: hidden;
  display: flex; align-items: flex-end; padding: 0.9rem;
  color: var(--cream); font-size: 0.82rem; font-weight: 500;
}
.short::before {
  content: "▶"; position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(22,54,47,0.65); color: var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem; padding-left: 3px;
  border: 1px solid rgba(243,199,125,0.5);
}
.short--1 { background: linear-gradient(170deg, var(--sage), var(--forest)); }
.short--2 { background: linear-gradient(170deg, var(--taupe), var(--sage)); }
.short--3 { background: linear-gradient(170deg, var(--teal), var(--forest)); }
.short--4 { background: linear-gradient(170deg, var(--forest), var(--teal)); }
.short--5 { background: linear-gradient(170deg, var(--sage), var(--taupe)); }

/* ---------- Custom teaser ---------- */
.custom-teaser { background: var(--cream); text-align: center; }
.custom-teaser p { max-width: 54ch; margin: 1rem auto 1.8rem; color: var(--sage); }

/* ---------- Vivhaah bridge ---------- */
.vivhaah { background: var(--maroon); color: #F3E4D4; text-align: center; }
.vivhaah .eyebrow { color: var(--gold); }
.vivhaah p { max-width: 50ch; margin: 1rem auto 1.8rem; color: rgba(243,228,212,0.8); }

/* ---------- Newsletter ---------- */
.newsletter { background: var(--forest); color: var(--cream); text-align: center; }
.newsletter form {
  display: flex; gap: 10px; max-width: 460px;
  margin: 1.8rem auto 0; flex-wrap: wrap; justify-content: center;
}
.newsletter input {
  flex: 1 1 240px;
  padding: 0.85rem 1.2rem; border-radius: 999px;
  border: 1px solid rgba(247,243,236,0.3);
  background: rgba(247,243,236,0.08); color: var(--cream);
  font: inherit; font-size: 0.9rem;
}
.newsletter input::placeholder { color: rgba(247,243,236,0.5); }

/* ---------- Footer ---------- */
.footer { background: var(--ink); color: rgba(247,243,236,0.75); font-size: 0.85rem; }
.footer__grid { display: grid; gap: 2rem; grid-template-columns: 1fr 1fr; }
@media (min-width: 900px) { .footer__grid { grid-template-columns: 2fr 1fr 1fr 1fr; } }
.footer h4 { color: var(--cream); font-size: 0.8rem; letter-spacing: 0.14em; text-transform: uppercase; margin-bottom: 0.9rem; }
.footer a { display: block; padding: 0.22rem 0; }
.footer a:hover { color: var(--gold); }
.footer__brand { grid-column: 1 / -1; }
@media (min-width: 900px) { .footer__brand { grid-column: auto; } }
.footer__logo { font-family: var(--serif); letter-spacing: 0.28em; color: var(--gold); font-size: 1.2rem; margin-bottom: 0.7rem; }
.footer__badges { display: flex; gap: 0.8rem; margin-top: 1.4rem; flex-wrap: wrap; }
.badge {
  border: 1px solid rgba(247,243,236,0.25); border-radius: 999px;
  padding: 0.3rem 0.9rem; font-size: 0.72rem; letter-spacing: 0.06em;
}
.footer__bottom {
  border-top: 1px solid rgba(247,243,236,0.12);
  margin-top: 2.5rem; padding-top: 1.4rem;
  font-size: 0.75rem; color: rgba(247,243,236,0.45);
}

/* ============================================================
   PDP
   ============================================================ */
.pdp { padding-top: var(--nav-h); }
.pdp__grid { display: grid; gap: 2rem; }
@media (min-width: 900px) { .pdp__grid { grid-template-columns: 1.15fr 1fr; gap: 4rem; align-items: start; } }
.gallery { display: grid; gap: 10px; }
.gallery__main {
  aspect-ratio: 1; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  color: var(--cream); font-size: 0.85rem; letter-spacing: 0.08em;
  background: linear-gradient(150deg, var(--sage), var(--forest));
}
.gallery__thumbs { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.thumb {
  aspect-ratio: 1; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.66rem; text-align: center; padding: 6px;
  color: var(--cream); letter-spacing: 0.04em;
  border: 2px solid transparent; cursor: pointer;
}
.thumb.is-active { border-color: var(--gold); }
.thumb--1 { background: linear-gradient(150deg, var(--sage), var(--forest)); }
.thumb--2 { background: linear-gradient(150deg, var(--taupe), var(--sage)); }
.thumb--3 { background: linear-gradient(150deg, var(--teal), var(--forest)); }
.pdp__info .price { font-family: var(--serif); font-size: 1.5rem; color: var(--forest); margin: 0.6rem 0 1rem; }
.pdp__info .desc { color: var(--sage); max-width: 52ch; }
.whats-inside { margin: 1.8rem 0; border-top: 1px solid var(--taupe); padding-top: 1.4rem; }
.whats-inside h3 { margin-bottom: 0.8rem; }
.whats-inside li { padding: 0.45rem 0 0.45rem 1.6rem; position: relative; border-bottom: 1px dashed rgba(196,179,160,0.5); font-size: 0.92rem; }
.whats-inside li::before { content: "✦"; position: absolute; left: 0; color: var(--gold); }
.variants { margin: 1.4rem 0; display: grid; gap: 1rem; }
.variants label { font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--sage); display: block; margin-bottom: 0.45rem; }
.pill-row { display: flex; gap: 8px; flex-wrap: wrap; }
.pill {
  border: 1px solid var(--taupe); border-radius: 999px;
  padding: 0.5rem 1.1rem; font-size: 0.85rem; background: transparent;
}
.pill.is-active { background: var(--forest); color: var(--cream); border-color: var(--forest); }
.trust-row {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 8px; margin: 1.6rem 0; text-align: center;
  font-size: 0.72rem; color: var(--sage);
}
.trust-row div { border: 1px solid rgba(196,179,160,0.5); border-radius: 10px; padding: 0.7rem 0.4rem; }
.trust-row b { display: block; color: var(--forest); font-size: 0.8rem; }
.sticky-atc {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 90;
  background: var(--cream); border-top: 1px solid var(--taupe);
  padding: 0.8rem var(--pad);
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  box-shadow: 0 -6px 24px rgba(22,54,47,0.12);
}
.sticky-atc .p { font-family: var(--serif); font-size: 1.1rem; color: var(--forest); }
@media (min-width: 900px) { .sticky-atc { display: none; } }
.pairs { background: #EFE8DC; }
.pairs .cards { grid-template-columns: repeat(2, 1fr); }
@media (min-width: 900px) { .pairs .cards { grid-template-columns: repeat(4, 1fr); } }

/* ============================================================
   Japan / Kintsugi themed page
   ============================================================ */
.jp-hero {
  min-height: 92svh;
  background:
    radial-gradient(100% 80% at 75% 20%, rgba(243,199,125,0.22), transparent 55%),
    linear-gradient(165deg, #101F1B 0%, var(--forest) 55%, var(--teal) 100%);
  color: var(--cream);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: calc(var(--nav-h) + 40px) var(--pad) clamp(56px, 10vw, 100px);
  position: relative; overflow: hidden;
}
.jp-hero__inner { max-width: 700px; position: relative; }
.jp-hero p { margin-top: 1.2rem; color: rgba(247,243,236,0.85); max-width: 50ch; }
.kintsugi-divider { display: block; width: 100%; height: 46px; }
.narrative { max-width: 720px; margin: 0 auto; }
.narrative + .narrative { margin-top: clamp(40px, 8vw, 80px); }
.narrative p { color: var(--sage); margin-top: 0.9rem; }
.jp-products { background: var(--forest); color: var(--cream); }
.jp-product {
  display: grid; gap: 1.8rem; margin-top: 2.4rem;
  border: 1px solid rgba(243,199,125,0.3); border-radius: 16px;
  padding: clamp(20px, 4vw, 40px);
  background: rgba(35,73,61,0.4);
}
@media (min-width: 900px) { .jp-product { grid-template-columns: 1fr 1.2fr; align-items: center; } }
.jp-product__visual {
  aspect-ratio: 1; border-radius: 12px;
  background:
    radial-gradient(circle at 60% 40%, rgba(243,199,125,0.3), transparent 50%),
    linear-gradient(150deg, var(--teal), var(--forest));
  display: flex; align-items: center; justify-content: center;
  border: 1px solid rgba(243,199,125,0.25);
}
.jp-product p { color: rgba(247,243,236,0.8); margin: 0.8rem 0 1.4rem; }
.jp-product .price { font-family: var(--serif); font-size: 1.4rem; color: var(--gold); margin-bottom: 1.2rem; }

/* ============================================================
   Shop / collection page
   ============================================================ */
.shop__intro { max-width: 62ch; color: var(--sage); margin: 1rem 0 1.8rem; }

.chips { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 1.2rem; }
.chip {
  border: 1px solid var(--taupe); border-radius: 999px;
  padding: 0.45rem 1.1rem; font-size: 0.82rem; font-weight: 500;
  color: var(--sage); transition: all 0.15s ease;
}
.chip:hover { border-color: var(--forest); color: var(--forest); }
.chip.is-active { background: var(--forest); color: var(--cream); border-color: var(--forest); }

/* minmax(0,1fr), not 1fr. A grid track defaults to min-width:auto, so the
   selects' intrinsic text width ("Recipient — all", "Sort — featured") pushed
   the tracks wider than the column and the whole shop page scrolled sideways
   on a phone by 46px. */
.filterbar {
  display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 8px;
  margin-bottom: 1.8rem;
}
@media (min-width: 900px) { .filterbar { display: flex; } }
.filterbar select {
  font: inherit; font-size: 0.82rem; color: var(--ink);
  padding: 0.55rem 0.9rem; border-radius: 999px;
  border: 1px solid var(--taupe); background: transparent;
  appearance: none; cursor: pointer;
  width: 100%; min-width: 0; text-overflow: ellipsis;
}
.filterbar select:focus { outline: 2px solid var(--gold); }

/* Product grid — 2 cols mobile, 4 desktop (brief §4.2) */
.pgrid { display: grid; gap: 16px 12px; grid-template-columns: repeat(2, 1fr); }
@media (min-width: 700px)  { .pgrid { grid-template-columns: repeat(3, 1fr); gap: 24px 18px; } }
@media (min-width: 1000px) { .pgrid { grid-template-columns: repeat(4, 1fr); } }
.pgrid__empty { color: var(--sage); padding: 3rem 0; text-align: center; }

.pcard { display: block; }
.pcard__img {
  aspect-ratio: 4 / 5; border-radius: 12px; overflow: hidden;
  position: relative; display: flex; align-items: center; justify-content: center;
  margin-bottom: 0.7rem; transition: transform 0.2s ease;
}
.pcard:hover .pcard__img { transform: translateY(-3px); }
.pcard__ph {
  font-size: 0.68rem; letter-spacing: 0.08em; text-transform: uppercase;
  color: rgba(247,243,236,0.75); text-align: center; line-height: 1.7;
}
.pcard__add {
  position: absolute; right: 8px; bottom: 8px;
  background: var(--cream); color: var(--forest);
  border-radius: 999px; padding: 0.45rem 0.95rem;
  font-size: 0.78rem; font-weight: 600;
  box-shadow: 0 2px 10px rgba(22,54,47,0.25);
  transition: background 0.15s ease, transform 0.1s ease;
}
.pcard__add:hover { background: var(--gold); }
.pcard__add:active { transform: scale(0.94); }
.pcard__sub { font-size: 0.68rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--taupe); }
.pcard__name { font-size: 1.02rem; color: var(--ink); margin: 0.15rem 0; }
.pcard__price { font-size: 0.9rem; color: var(--sage); }
.pairs .pcard__sub, .pairs .pcard__name { color: var(--ink); }

/* Placeholder gradients (until real photography arrives) */
.g1 { background: linear-gradient(150deg, var(--sage), var(--forest)); }
.g2 { background: linear-gradient(150deg, var(--taupe), var(--sage)); }
.g3 { background: linear-gradient(150deg, var(--teal), var(--forest)); }
.g4 { background: linear-gradient(150deg, var(--forest), var(--teal)); }
.g5 { background: radial-gradient(circle at 65% 30%, rgba(243,199,125,0.4), transparent 55%), linear-gradient(150deg, var(--teal), var(--forest)); }

/* ============================================================
   Cart drawer
   ============================================================ */
.cartd__scrim {
  position: fixed; inset: 0; z-index: 300;
  background: rgba(22,54,47,0.55);
  opacity: 0; pointer-events: none; transition: opacity 0.25s ease;
}
.cartd.is-open .cartd__scrim { opacity: 1; pointer-events: auto; }
.cartd__panel {
  position: fixed; top: 0; right: 0; bottom: 0; z-index: 301;
  width: min(400px, 92vw);
  background: var(--cream);
  transform: translateX(105%);
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
  display: flex; flex-direction: column;
  box-shadow: -10px 0 40px rgba(22,54,47,0.3);
}
.cartd.is-open .cartd__panel { transform: none; }
.cartd__head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 20px; border-bottom: 1px solid var(--taupe);
}
.cartd__head h3 { color: var(--forest); }
.cartd__close { font-size: 1.1rem; color: var(--sage); padding: 4px 8px; }
.cartd__items { flex: 1; overflow-y: auto; padding: 12px 20px; }
.cartd__empty { color: var(--sage); text-align: center; padding: 3rem 0; line-height: 2; }
.cartd__row {
  display: flex; gap: 12px; padding: 12px 0;
  border-bottom: 1px dashed rgba(196,179,160,0.6);
}
.cartd__thumb { flex: 0 0 64px; height: 76px; border-radius: 8px; }
.cartd__name { font-family: var(--serif); font-size: 0.98rem; color: var(--ink); }
.cartd__price { font-size: 0.82rem; color: var(--sage); margin: 2px 0 6px; }
.cartd__qty { display: flex; align-items: center; gap: 10px; font-size: 0.85rem; }
.cartd__qty button {
  width: 24px; height: 24px; border-radius: 50%;
  border: 1px solid var(--taupe); color: var(--forest);
  display: flex; align-items: center; justify-content: center; line-height: 1;
}
.cartd__qty .cartd__rm {
  width: auto; height: auto; border: none;
  font-size: 0.72rem; color: var(--taupe); text-decoration: underline;
  margin-left: auto;
}
.cartd__foot { padding: 16px 20px 20px; border-top: 1px solid var(--taupe); }
.cartd__total {
  display: flex; justify-content: space-between; align-items: baseline;
  margin-bottom: 12px; font-size: 0.9rem; color: var(--sage);
}
.cartd__total b { font-family: var(--serif); font-size: 1.4rem; color: var(--forest); }
.cartd__pay { width: 100%; }
.cartd__pay:disabled { opacity: 0.45; cursor: default; }
.cartd__note {
  font-size: 0.72rem; color: var(--sage); text-align: center; margin-top: 10px;
  transition: color 0.2s ease;
}
.cartd__note.is-flash { color: var(--forest); font-weight: 600; }

/* ============================================================
   VIVAAH — wedding sub-brand ("Every gift wrapped in a
   thousand blessings"). Palette from the Vivaah theme deck:
   night green, sindoor red, sona gold, violet, ivory.
   ============================================================ */
.viv {
  /* "The Colours of the Night" — straight off page 3 of the Vivaah
     catalogue. These are the brand's own colours, drawn from the objects and
     rituals of Indian ceremony; they are not interchangeable with Evora's
     forest-and-sand palette, and they are not a light red either. */
  --night:   #083B32;   /* night green  */
  --sindoor: #BF152C;   /* sindoor      */
  --blood:   #8C0902;   /* blood red    */
  --vgold:   #D9A431;   /* sona gold    */
  --vgold2:  #D8B45B;   /* taar sona    */
  --violet:  #4E1A81;
  --henna:   #7C3918;
  --magenta: #A10668;
  --ivory:   #FAECD7;
  background: var(--ivory);
  color: #33221A;
}
.viv .nav--viv { background: var(--night); box-shadow: 0 2px 20px rgba(8,59,50,0.4); }
.viv .nav__logo { color: var(--vgold); letter-spacing: 0.3em; }
.viv .menu { background: var(--night); }
.viv .eyebrow { color: var(--vgold); }
.viv .eyebrow--dark { color: var(--henna); }
.btn--vgold { background: var(--vgold); color: var(--night); }
.btn--vgold:hover { background: var(--vgold2); }
.btn--sindoor { background: var(--sindoor); color: var(--ivory); }
.btn--sindoor:hover { background: var(--blood); }

.viv-hero {
  min-height: 100svh;
  background:
    radial-gradient(110% 80% at 85% 15%, rgba(78,26,129,0.55), transparent 55%),
    radial-gradient(90% 70% at 10% 95%, rgba(191,21,44,0.35), transparent 50%),
    var(--night);
  color: var(--ivory);
  display: flex; flex-direction: column; justify-content: center;
  padding: calc(var(--nav-h) + 40px) var(--pad) 80px;
  position: relative; overflow: hidden;
}
.viv-hero__inner { max-width: 720px; position: relative; }
.viv-hero h1 { font-size: clamp(2rem, 6.5vw, 3.8rem); font-style: italic; font-weight: 400; }
.viv-hero .sub { margin: 1.4rem 0 2.2rem; color: rgba(250,236,215,0.85); max-width: 52ch; font-size: clamp(0.98rem, 2.5vw, 1.12rem); }
.viv-hero__ctas { display: flex; flex-wrap: wrap; gap: 0.9rem; }
.viv-hero__motif { position: absolute; right: -6%; top: 50%; transform: translateY(-50%); width: clamp(240px, 40vw, 520px); opacity: 0.55; pointer-events: none; }

/* Marigold rule: a row of gold dots used as a section divider */
.viv-rule {
  height: 10px; margin: 0 auto; width: min(280px, 60vw);
  background: radial-gradient(circle 3px, var(--vgold) 95%, transparent) 0 0 / 20px 10px repeat-x;
}

.viv-story { background: var(--ivory); text-align: center; }
.viv-story h2 { color: var(--henna); max-width: 22ch; margin: 0 auto; }
.viv-story .lead { max-width: 62ch; margin: 1.4rem auto 0; color: #5A4433; }
.viv-pillars { display: grid; gap: 14px; margin-top: 2.6rem; grid-template-columns: 1fr; }
@media (min-width: 800px) { .viv-pillars { grid-template-columns: repeat(3, 1fr); } }
.viv-pillar {
  border: 1px solid var(--vgold2); border-radius: 14px;
  padding: 1.6rem 1.3rem; background: rgba(216,180,91,0.08);
}
.viv-pillar b { font-family: var(--serif); font-size: 1.15rem; color: var(--sindoor); display: block; margin-bottom: 0.5rem; letter-spacing: 0.08em; }
.viv-pillar p { font-size: 0.9rem; color: #5A4433; }

/* Seven Sacred Gifts */
.viv-seven { background: var(--night); color: var(--ivory); }
.viv-seven__grid { display: grid; gap: 16px; margin-top: 2.4rem; grid-template-columns: 1fr; }
@media (min-width: 720px)  { .viv-seven__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1050px) { .viv-seven__grid { grid-template-columns: repeat(3, 1fr); } }
.viv-gift {
  border-radius: 14px; padding: 1.5rem 1.4rem;
  background: rgba(250,236,215,0.05);
  border: 1px solid rgba(216,180,91,0.35);
  border-top: 3px solid var(--accent, var(--vgold));
  display: flex; flex-direction: column;
  transition: transform 0.2s ease, background 0.2s ease;
}
.viv-gift:hover { transform: translateY(-4px); background: rgba(250,236,215,0.09); }
.viv-gift .num {
  font-family: var(--serif); font-size: 0.85rem; letter-spacing: 0.2em;
  color: var(--vgold);
  color: color-mix(in srgb, var(--accent, var(--vgold)) 45%, #FAECD7);
}
.viv-gift h3 { margin: 0.35rem 0 0.1rem; font-size: 1.25rem; }
.viv-gift .sub {
  font-style: italic; font-size: 0.9rem; margin-bottom: 0.7rem;
  color: rgba(250,236,215,0.78);
  color: color-mix(in srgb, var(--accent, var(--vgold)) 35%, #FAECD7);
}
.viv-gift .line { color: rgba(250,236,215,0.8); font-size: 0.9rem; flex: 1; }
.viv-gift .price { font-family: var(--serif); color: var(--ivory); font-size: 1.15rem; margin: 0.9rem 0 0.8rem; }
.viv-gift .go { font-size: 0.82rem; font-weight: 600; color: var(--vgold); }
.viv-gift .go:hover { color: var(--vgold2); }

/* Collections of the Maison */
.viv-maison { background: var(--ivory); }
.viv-maison__grid { display: grid; gap: 14px; margin-top: 2.4rem; grid-template-columns: 1fr; }
@media (min-width: 800px) { .viv-maison__grid { grid-template-columns: repeat(2, 1fr); } }
.viv-tier {
  border-radius: 14px; padding: 1.6rem 1.5rem;
  color: var(--ivory); position: relative; overflow: hidden;
}
.viv-tier--favour { background: linear-gradient(150deg, var(--sindoor), var(--blood)); }
.viv-tier--gift   { background: linear-gradient(150deg, #0B4A3F, var(--night)); }
.viv-tier--hamper { background: linear-gradient(150deg, var(--violet), #2A0E4A); }
.viv-tier--grand  { background: linear-gradient(150deg, var(--henna), #3A1608); }
.viv-tier .range { font-family: var(--serif); font-size: 1.3rem; color: var(--vgold2); }
.viv-tier h3 { margin: 0.2rem 0 0.3rem; }
.viv-tier .for { font-size: 0.75rem; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(250,236,215,0.7); }
.viv-tier p { font-size: 0.88rem; color: rgba(250,236,215,0.85); margin-top: 0.7rem; }

/* Voices — for the bride / mother / in-laws / guests */
.viv-voices { background: linear-gradient(160deg, var(--violet), #2A0E4A); color: var(--ivory); }
.viv-voices__grid { display: grid; gap: 1.6rem; margin-top: 2.2rem; grid-template-columns: 1fr; }
@media (min-width: 800px) { .viv-voices__grid { grid-template-columns: repeat(2, 1fr); gap: 2.2rem; } }
.viv-voice b { display: block; font-size: 0.75rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--vgold); margin-bottom: 0.5rem; }
.viv-voice p { font-family: var(--serif); font-size: 1.1rem; font-style: italic; color: rgba(250,236,215,0.9); }

.viv-bridge { background: var(--ivory); text-align: center; }
.viv-bridge p { max-width: 50ch; margin: 1rem auto 1.8rem; color: #5A4433; }

.viv .footer { background: #041F1A; }

/* Vivaah homepage card + product gradients */
.card--vivaah {
  grid-column: 1 / -1; aspect-ratio: auto; min-height: 150px;
  background:
    radial-gradient(80% 120% at 90% 10%, rgba(217,164,49,0.35), transparent 55%),
    linear-gradient(120deg, #4E1A81, #8C0902 65%, #BF152C);
}
.card--vivaah::after { background: linear-gradient(to top, rgba(8,59,50,0.55), transparent 60%); }
.g6 { background: linear-gradient(150deg, #BF152C, #8C0902); }
.g7 { background: linear-gradient(150deg, #4E1A81, #083B32); }
.g8 { background: linear-gradient(150deg, #D9A431, #7C3918); }

/* ============================================================
   V3 — real photography, motion & conversion layer
   ============================================================ */

/* scroll reveals */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.22, 1, 0.36, 1); }
.reveal.is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } }

/* ambient particle canvas */
.fx-canvas { position: fixed; inset: 0; z-index: 5; pointer-events: none; }

/* product cards with real photos (gradient placeholders keep their g-class bg)
   Catalogue photos are mostly LANDSCAPE (1.25–1.5). A 4:5 portrait frame with
   object-fit:cover threw away ~45% of the width, which is why products looked
   cropped and over-zoomed. Frame is 4:3 and the fit is `contain` with padding,
   so the whole product is always visible. */
.pcard__img { aspect-ratio: 4 / 3; }
.pcard__img:has(> img) { background: #F1EADE; }
.pcard__img > img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: contain; padding: 6%;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.35s ease;
}
.pcard__alt { opacity: 0; }
.pcard:hover .pcard__img > img { transform: scale(1.04); }
.pcard:hover .pcard__alt { opacity: 1; }
.pcard__badge {
  position: absolute; top: 8px; left: 8px; z-index: 2;
  background: var(--forest); color: var(--gold);
  font-size: 0.64rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase;
  padding: 0.28rem 0.7rem; border-radius: 999px;
}
.pcard__badge--low { top: auto; bottom: 52px; background: #8C0902; color: #FAECD7; }
.pcard__heart {
  position: absolute; top: 8px; right: 8px; z-index: 2;
  width: 32px; height: 32px; border-radius: 50%;
  background: rgba(247,243,236,0.9); color: #8C0902;
  font-size: 1rem; line-height: 1; display: flex; align-items: center; justify-content: center;
  transition: transform 0.15s ease;
}
.pcard__heart.is-on { background: #FAECD7; }
.pcard__heart.pop { animation: heart-pop 0.4s ease; }
@keyframes heart-pop { 40% { transform: scale(1.45); } }
.pcard__add { z-index: 2; }
.pcard__name { font-size: 0.98rem; line-height: 1.3; }

/* horizontal reels row (snap scroll) */
.reel {
  display: flex; gap: 14px; overflow-x: auto;
  padding: 1.4rem var(--pad) 0.8rem;
  scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch;
}
.reel::-webkit-scrollbar { display: none; }
.reel__item { flex: 0 0 min(58vw, 240px); scroll-snap-align: start; }

/* shop feed progress */
.feed-progress {
  text-align: center; color: var(--sage); font-size: 0.82rem;
  padding: 1.6rem 0 0.4rem; letter-spacing: 0.04em;
}

/* PDP photo gallery — 4:3 to match the catalogue photography, and `contain`
   so the full product is in frame at rest. Click-to-zoom is what crops in,
   and only on purpose. */
.gallery__main { aspect-ratio: 4 / 3; }
.gallery__main--photo { background: #F1EADE; overflow: hidden; cursor: zoom-in; position: relative; }
.gallery__main--photo img { width: 100%; height: 100%; object-fit: contain; padding: 4%; transition: transform 0.35s ease; }
.gallery__main--photo.is-zoomed { cursor: zoom-out; }
.gallery__main--photo.is-zoomed img { transform: scale(1.9); }
.thumb--photo { overflow: hidden; padding: 0; background: #F1EADE; }
.thumb--photo img { width: 100%; height: 100%; object-fit: contain; padding: 5%; }

/* live viewers + scarcity */
.p-viewers { font-size: 0.8rem; color: var(--sage); margin: 0.7rem 0 0; display: flex; align-items: center; gap: 6px; }
.pulse-dot { width: 8px; height: 8px; border-radius: 50%; background: #2E7D32; display: inline-block; animation: pulse 1.8s ease infinite; }
@keyframes pulse { 50% { box-shadow: 0 0 0 6px rgba(46,125,50,0.15); } }
.p-stock { font-size: 0.82rem; color: #8C0902; margin-top: 0.8rem; }
.stock-bar { display: block; height: 5px; border-radius: 99px; background: rgba(196,179,160,0.4); margin-top: 5px; overflow: hidden; }
.stock-bar i { display: block; height: 100%; background: linear-gradient(90deg, #8C0902, #BF152C); border-radius: 99px; }

/* discount popup */
.gift-pop { position: fixed; inset: 0; z-index: 400; display: flex; align-items: center; justify-content: center; padding: 20px; opacity: 0; pointer-events: none; transition: opacity 0.3s ease; }
.gift-pop.is-open { opacity: 1; pointer-events: auto; }
.gift-pop__scrim { position: absolute; inset: 0; background: rgba(12,26,22,0.65); backdrop-filter: blur(4px); }
.gift-pop__panel {
  position: relative; width: min(420px, 94vw); text-align: center;
  background: linear-gradient(160deg, var(--forest), var(--teal));
  color: var(--cream); border: 1px solid rgba(243,199,125,0.5);
  border-radius: 18px; padding: 2.4rem 1.8rem 1.6rem;
  transform: translateY(18px) scale(0.97); transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
  box-shadow: 0 30px 80px rgba(0,0,0,0.45);
}
.gift-pop.is-open .gift-pop__panel { transform: none; }
.gift-pop__star { font-size: 2rem; color: var(--gold); animation: star-spin 6s linear infinite; }
@keyframes star-spin { to { transform: rotate(360deg); } }
.gift-pop__panel h3 { font-size: 1.5rem; margin: 0.3rem 0 0.5rem; }
.gift-pop__sub { color: rgba(247,243,236,0.8); font-size: 0.9rem; margin-bottom: 1.4rem; }
.gift-pop__close { position: absolute; top: 12px; right: 14px; color: rgba(247,243,236,0.7); font-size: 1rem; }
.gift-pop__code { margin: 0.6rem 0 1rem; display: flex; align-items: center; justify-content: center; gap: 10px; flex-wrap: wrap; }
.gift-pop__code .code {
  font-family: var(--serif); font-size: 1.5rem; letter-spacing: 0.14em; color: var(--gold);
  border: 1.5px dashed var(--gold); border-radius: 10px; padding: 0.4rem 1rem;
}
.gift-pop__code .copy { color: var(--cream); font-size: 0.8rem; border: 1px solid rgba(247,243,236,0.4); border-radius: 999px; padding: 0.35rem 0.9rem; }
.gift-pop__code .timer { width: 100%; font-size: 0.8rem; color: #F6D296; letter-spacing: 0.2em; }
.gift-pop__cta { display: block; margin: 0.4rem auto 0; background: var(--gold); color: var(--forest); }
.gift-pop__no { display: block; margin: 0.9rem auto 0; color: rgba(247,243,236,0.5); font-size: 0.74rem; text-decoration: underline; }

/* social-proof toasts */
.proof-toast {
  position: fixed; left: 14px; bottom: 14px; z-index: 350;
  display: flex; align-items: center; gap: 10px;
  background: var(--cream); color: var(--ink);
  border: 1px solid var(--taupe); border-radius: 14px;
  padding: 10px 14px 10px 10px; max-width: 320px;
  box-shadow: 0 12px 40px rgba(22,54,47,0.3);
  transform: translateY(120%); opacity: 0; transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.4s ease;
}
.proof-toast.is-in { transform: none; opacity: 1; }
.proof-toast img { width: 46px; height: 46px; border-radius: 8px; object-fit: cover; }
.proof-toast b { display: block; font-size: 0.78rem; }
.proof-toast span { font-size: 0.74rem; color: var(--sage); display: block; line-height: 1.35; }
.proof-toast i { font-style: normal; color: var(--taupe); font-size: 0.8rem; padding: 4px; }

/* cart: free-shipping goal bar + photo thumbs */
.cartd__ship { padding: 10px 20px 0; }
.cartd__ship-label { font-size: 0.78rem; color: var(--sage); margin-bottom: 6px; }
.cartd__ship-label b { color: var(--forest); }
.cartd__ship-bar { height: 6px; border-radius: 99px; background: rgba(196,179,160,0.4); overflow: hidden; }
.cartd__ship-bar i { display: block; height: 100%; width: 0; border-radius: 99px; background: linear-gradient(90deg, var(--gold), #E3A93F); transition: width 0.5s cubic-bezier(0.22, 1, 0.36, 1); }
.cartd__thumb { overflow: hidden; }
.cartd__thumb img { width: 100%; height: 100%; object-fit: cover; }

/* homepage: hero floats + photo occasion cards + 6-card grid */
.hero__floats { position: absolute; inset: 0; pointer-events: none; }
.hero__float {
  position: absolute; border-radius: 14px; overflow: hidden;
  border: 1px solid rgba(243,199,125,0.45);
  box-shadow: 0 24px 60px rgba(0,0,0,0.45);
  animation: floaty 7s ease-in-out infinite;
}
.hero__float img { width: 100%; height: 100%; object-fit: cover; display: block; }
.hero__float--1 { width: clamp(120px, 17vw, 230px); aspect-ratio: 4/5; right: 8%; top: 16%; rotate: 4deg; }
.hero__float--2 { width: clamp(100px, 14vw, 190px); aspect-ratio: 1; right: 26%; bottom: 14%; rotate: -5deg; animation-delay: 1.4s; }
.hero__float--3 { width: clamp(84px, 11vw, 150px); aspect-ratio: 4/5; right: 4%; bottom: 24%; rotate: 8deg; animation-delay: 2.6s; }
@keyframes floaty { 50% { transform: translateY(-14px); } }
@media (max-width: 899px) {
  .hero__float--1 { right: 4%; top: 12%; opacity: 0.9; }
  .hero__float--2 { display: none; }
  .hero__float--3 { right: 32%; top: 20%; opacity: 0.85; }
}
@media (prefers-reduced-motion: reduce) { .hero__float, .gift-pop__star { animation: none; } }

.cards--home { grid-template-columns: repeat(2, 1fr); }
@media (min-width: 900px) { .cards--home { grid-template-columns: repeat(3, 1fr); } }
.card__photo { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1); }
.card:hover .card__photo { transform: scale(1.06); }

/* ============================================================
   Sakura scene — Japan collection hero
   ============================================================ */
.jp-moon {
  position: absolute; top: 4%; right: 16%;
  width: clamp(180px, 26vw, 340px);
  pointer-events: none; will-change: transform;
}
.jp-branch__wrap {
  position: absolute; top: -8px; right: -3%;
  width: clamp(340px, 54vw, 700px);
  pointer-events: none; will-change: transform;
}
.jp-branch {
  width: 100%; display: block;
  transform-origin: 92% 4%;
  animation: branch-sway 11s ease-in-out infinite alternate;
  filter: drop-shadow(0 10px 24px rgba(0, 0, 0, 0.35));
}
@keyframes branch-sway {
  from { transform: rotate(-0.5deg); }
  to   { transform: rotate(1.1deg); }
}

/* staged hero entrance (Apple-style: fade, rise, settle) */
.jp-enter {
  opacity: 0; transform: translateY(20px);
  animation: jp-enter 1.1s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
@keyframes jp-enter { to { opacity: 1; transform: none; } }

@media (max-width: 720px) {
  .jp-moon { right: 4%; top: 2%; }
  .jp-branch__wrap { right: -14%; width: 118vw; opacity: 0.85; }
}
@media (prefers-reduced-motion: reduce) {
  .jp-branch { animation: none; }
  .jp-enter { opacity: 1; transform: none; animation: none; }
}

/* ============================================================
   Fūrin — glass wind chime (Japan hero)
   ============================================================ */
.furin {
  position: absolute;
  top: clamp(84px, 15vh, 150px);          /* clear of the fixed nav */
  right: clamp(18px, 17vw, 260px);
  width: clamp(78px, 9vw, 116px);
  z-index: 3;
  filter: drop-shadow(0 14px 26px rgba(0, 0, 0, 0.4));
}
.furin__svg { width: 100%; overflow: visible; cursor: grab; touch-action: none; }
.furin__svg:active { cursor: grabbing; }
.furin__body { transition: filter 0.22s ease; }
.furin.is-ringing .furin__body { filter: drop-shadow(0 0 12px rgba(243, 199, 125, 0.75)); }


@media (max-width: 720px) {
  .furin { right: 8px; top: clamp(40px, 7vh, 70px); width: 74px; }
}

/* ============================================================
   Site-wide sound toggle (nav) — labelled, so it reads as a control
   ============================================================ */
.sound-toggle {
  display: inline-flex; align-items: center; gap: 7px;
  height: 30px; padding: 0 0.85rem;
  border: 1px solid rgba(247, 243, 236, 0.4);
  border-radius: 999px;
  color: inherit; opacity: 0.85;
  font-size: 0.68rem; letter-spacing: 0.1em; text-transform: uppercase; font-weight: 600;
  white-space: nowrap;
  transition: opacity 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}
.sound-toggle:hover { opacity: 1; border-color: var(--gold); color: var(--gold); }
.sound-toggle:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; opacity: 1; }
.sound-toggle.is-on { opacity: 1; color: var(--gold); border-color: var(--gold); }
.viv .sound-toggle.is-on { color: var(--vgold); border-color: var(--vgold); }

.sound-toggle__bars { display: flex; align-items: center; gap: 2.5px; height: 13px; }
.sound-toggle__bars i {
  display: block; width: 2px; height: 4px; border-radius: 2px;
  background: currentColor;
  transition: height 0.25s ease;
}
.sound-toggle.is-on .sound-toggle__bars i { animation: eq 1.5s ease-in-out infinite; }
.sound-toggle.is-on .sound-toggle__bars i:nth-child(2) { animation-delay: 0.25s; }
.sound-toggle.is-on .sound-toggle__bars i:nth-child(3) { animation-delay: 0.5s; }
@keyframes eq {
  0%, 100% { height: 4px; }
  50%      { height: 12px; }
}
@media (max-width: 560px) {
  .sound-toggle__lbl { display: none; }
  .sound-toggle { padding: 0 0.55rem; }
}
@media (prefers-reduced-motion: reduce) {
  .sound-toggle.is-on .sound-toggle__bars i { animation: none; height: 9px; }
}

/* ============================================================
   Themed country pages — India & Italy
   ============================================================ */


/* ---------- India ---------- */
.in-hero {
  background:
    radial-gradient(95% 75% at 72% 22%, rgba(232,163,61,0.24), transparent 58%),
    radial-gradient(80% 60% at 12% 92%, rgba(155,45,32,0.34), transparent 55%),
    linear-gradient(168deg, #2A1A10 0%, #3E2415 52%, #55301A 100%);
}
.in-jaali { position: absolute; inset: 0; pointer-events: none; opacity: 0.75; }
.in-jaali svg { width: 100%; height: 100%; }
.in-arch {
  position: absolute; right: 6%; top: 2%;
  width: clamp(180px, 30vw, 380px); pointer-events: none;
}
.in-products { background: #2A1A10; }
.in-products .eyebrow { color: #E8A33D; }
@media (max-width: 720px) { .in-arch { right: -8%; opacity: 0.5; } }

/* ---------- Italy ---------- */
.it-hero {
  background:
    radial-gradient(90% 70% at 78% 16%, rgba(233,199,138,0.3), transparent 58%),
    radial-gradient(85% 65% at 10% 95%, rgba(126,139,90,0.32), transparent 55%),
    linear-gradient(170deg, #1E2A1C 0%, #2E3826 55%, #4A4A2E 100%);
}
.it-sun {
  position: absolute; right: 14%; top: 8%;
  width: clamp(180px, 26vw, 330px); aspect-ratio: 1; border-radius: 50%;
  background: radial-gradient(circle, rgba(247,226,178,0.42) 0%, rgba(233,199,138,0.16) 48%, transparent 72%);
  pointer-events: none;
}
.it-shutter {
  position: absolute; right: 8%; top: 4%;
  width: clamp(160px, 24vw, 300px); pointer-events: none; opacity: 0.9;
}
.it-products { background: #1E2A1C; }
.it-products .eyebrow { color: #C6B27E; }
@media (max-width: 720px) { .it-shutter { right: -6%; opacity: 0.55; } .it-sun { right: 2%; } }
.card--india { background: linear-gradient(150deg, #8A4A1E, #3E2415 75%), radial-gradient(circle at 70% 28%, #E8A33D, transparent 58%); background-blend-mode: overlay; }
.card--italy { background: linear-gradient(150deg, #6E7F4E, #2E3826 78%), radial-gradient(circle at 68% 26%, #E9C78A, transparent 56%); background-blend-mode: overlay; }

/* ============================================================
   Policy, legal and contact pages
   Long-form reading: one narrow column, generous leading, and a
   sticky contents rail on wide screens.
   ============================================================ */
.legal { padding-top: calc(var(--nav-h) + clamp(30px, 6vw, 64px)); background: var(--cream); }
.legal__head { border-bottom: 1px solid rgba(28,36,34,0.12); padding-bottom: 2rem; margin-bottom: 2.6rem; }
.legal__head h1 { font-size: clamp(1.9rem, 5.5vw, 3.1rem); }
.legal__meta { margin-top: 0.9rem; font-size: 0.8rem; letter-spacing: 0.06em; color: var(--sage); }
.legal__grid { display: grid; gap: 2.6rem; }
@media (min-width: 940px) { .legal__grid { grid-template-columns: 210px 1fr; gap: 3.4rem; } }

.legal__toc { align-self: start; }
@media (min-width: 940px) { .legal__toc { position: sticky; top: calc(var(--nav-h) + 26px); } }
.legal__toc b {
  display: block; font-family: var(--sans); font-size: 0.66rem;
  letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.9rem;
}
.legal__toc a {
  display: block; padding: 0.4rem 0; font-size: 0.84rem; color: var(--sage);
  border-bottom: 1px solid rgba(28,36,34,0.07); transition: color 0.2s ease, padding-left 0.2s ease;
}
.legal__toc a:hover { color: var(--forest); padding-left: 5px; }

.legal__body h2 {
  font-size: clamp(1.15rem, 2.6vw, 1.5rem); margin: 2.6rem 0 0.8rem;
  scroll-margin-top: calc(var(--nav-h) + 20px);
}
.legal__body h2:first-child { margin-top: 0; }
.legal__body h3 { font-size: 1rem; margin: 1.5rem 0 0.5rem; font-family: var(--sans); font-weight: 600; }
.legal__body p, .legal__body li { color: #34423D; line-height: 1.8; font-size: 0.94rem; }
.legal__body p { margin-bottom: 0.9rem; }
.legal__body ul { margin: 0 0 1.1rem; }
.legal__body ul li { padding-left: 1.2rem; position: relative; margin-bottom: 0.4rem; }
.legal__body ul li::before { content: "—"; position: absolute; left: 0; color: var(--gold); }
.legal__body a { color: var(--forest); border-bottom: 1px solid var(--gold); }

.legal__table { width: 100%; border-collapse: collapse; margin: 1rem 0 1.6rem; font-size: 0.88rem; }
.legal__table th, .legal__table td { text-align: left; padding: 0.75rem 0.9rem; border-bottom: 1px solid rgba(28,36,34,0.1); vertical-align: top; }
.legal__table th { background: rgba(22,54,47,0.05); font-weight: 600; color: var(--forest); }

/* A fact only Evora can supply — company registration, GSTIN, the registered
   address. Deliberately loud: these must not reach production unfilled. */
/* Was loud dev-yellow to stop placeholders reaching production. The ones
   that remain are now honest customer-facing phrases ("to be published on
   registration"), so they read as normal text with a light emphasis rather
   than as an unfinished field. data-pending marks them for the follow-up. */
.tbc {
  color: #6B5A3E; font-style: italic;
  border-bottom: 1px dotted rgba(107,90,62,0.4);
}
.legal__notice {
  background: #FFF3D6; border: 1px solid #E3C57F; border-radius: 10px;
  padding: 1.1rem 1.3rem; margin-bottom: 2rem; font-size: 0.86rem; color: #6B4E10; line-height: 1.7;
}
.legal__notice b { display: block; margin-bottom: 0.3rem; }

.contact__grid { display: grid; gap: 1.2rem; margin: 1.6rem 0 2.4rem; }
@media (min-width: 700px) { .contact__grid { grid-template-columns: repeat(2, 1fr); } }
.contact__card {
  background: #fff; border: 1px solid rgba(28,36,34,0.1); border-radius: 12px; padding: 1.4rem;
}
.contact__card b { display: block; font-family: var(--sans); font-size: 0.66rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.6rem; }

/* Enquiry form — the only genuinely new component on the contact page.
   Everything else there reuses the .legal / .contact__card system. */
.form__row { display: grid; gap: 6px; margin-bottom: 0.9rem; }
.form__row label {
  font-size: 0.68rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--sage);
}
.form__row input, .form__row select, .form__row textarea {
  font: inherit; font-size: 0.94rem; color: var(--ink);
  padding: 0.75rem 0.9rem; border: 1px solid rgba(28,36,34,0.18);
  border-radius: 8px; background: var(--cream); width: 100%;
}
.form__row textarea { min-height: 130px; resize: vertical; }
.form__row input:focus, .form__row select:focus, .form__row textarea:focus {
  outline: 2px solid var(--gold); outline-offset: 1px; border-color: transparent;
}
.contact__row { display: grid; gap: 2px; padding: 0.75rem 0; border-bottom: 1px solid rgba(28,36,34,0.08); }
.contact__row:last-child { border-bottom: none; }
.contact__row b {
  font-family: var(--sans); font-size: 0.66rem; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--gold); margin: 0;
}
.contact__row span, .contact__row a { color: #34423D; font-size: 0.94rem; line-height: 1.65; }

/* WhatsApp enquiry button. Its own colour, not the brand's — people recognise
   this green and that recognition is the whole point of the shortcut. */
.btn--wa {
  background: #25D366; color: #08301A;
  display: inline-flex; align-items: center; justify-content: center;
}
.btn--wa:hover { background: #1EBE5A; }
