/* ============================================================
   LUMEA SENSES — styles
   Warm, boutique, candle-lit aesthetic.
   ============================================================ */

:root {
  --cream: #FAF5EE;
  --sand: #F3EADD;
  --sand-deep: #E9DCC9;
  --espresso: #2A1F17;
  --espresso-2: #1E150F;
  --cocoa: #6B5642;
  --amber: #C08A3E;
  --amber-deep: #9E6E26;
  --amber-soft: #E8C98F;
  --orchid: #B93E8E;
  --white: #FFFFFF;
  --shadow: 0 18px 50px -18px rgba(42, 31, 23, .28);
  --shadow-sm: 0 8px 24px -12px rgba(42, 31, 23, .25);
  --radius: 18px;
  --radius-lg: 26px;
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "Manrope", system-ui, -apple-system, sans-serif;
  --header-h: 74px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
[hidden] { display: none !important; } /* the hidden attribute must always win over any display rule */
section[id], footer[id] { scroll-margin-top: calc(var(--header-h) + 12px); }
button, .btn, summary, select { touch-action: manipulation; -webkit-tap-highlight-color: rgba(192, 138, 62, .18); }
body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--espresso);
  line-height: 1.65;
  font-size: 16px;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
.container { width: min(1180px, 92vw); margin-inline: auto; }
.center { text-align: center; margin-top: 2.5rem; }

/* ---------- Type ---------- */
.eyebrow {
  font-size: .78rem; font-weight: 700; letter-spacing: .22em; text-transform: uppercase;
  color: var(--amber-deep); margin-bottom: .9rem;
}
.section-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2rem, 4.2vw, 3.1rem);
  line-height: 1.12;
  margin-bottom: 1.1rem;
}
.section-sub { color: var(--cocoa); max-width: 56ch; }
.section { padding: clamp(4rem, 8vw, 7rem) 0; }
.section-alt { background: var(--sand); }
.section-dark { background: var(--espresso-2); color: var(--cream); }
.section-dark .eyebrow { color: var(--amber-soft); }
.section-dark .section-sub { color: #CBBBA8; }
.section-head { max-width: 640px; margin-bottom: clamp(2rem, 4vw, 3.4rem); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  padding: .95rem 1.9rem; border-radius: 999px; border: 1.5px solid transparent;
  font-weight: 700; font-size: .95rem; letter-spacing: .02em;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease, color .25s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn-primary { background: var(--espresso); color: var(--cream); box-shadow: var(--shadow-sm); }
.btn-primary:hover { background: var(--amber-deep); }
.btn-ghost { border-color: rgba(42,31,23,.35); color: var(--espresso); background: transparent; }
.btn-ghost:hover { border-color: var(--espresso); background: rgba(42,31,23,.05); }
.btn-gold { background: var(--amber); color: var(--espresso-2); }
.btn-gold:hover { background: var(--amber-soft); }
.btn-block { width: 100%; }

/* ---------- Topbar marquee ---------- */
.topbar {
  background: var(--espresso-2); color: var(--amber-soft);
  overflow: hidden; font-size: .78rem; letter-spacing: .12em; text-transform: uppercase;
  padding: .5rem 0; white-space: nowrap;
}
.topbar-track { display: inline-flex; gap: 2.2rem; align-items: center; animation: marquee 38s linear infinite; padding-left: 100vw; }
.topbar-track i { font-style: normal; opacity: .55; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(250, 245, 238, .82);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(42,31,23,.08);
  transition: box-shadow .3s ease;
}
.site-header.scrolled { box-shadow: 0 10px 30px -18px rgba(42,31,23,.35); }
.nav { display: flex; align-items: center; justify-content: space-between; height: var(--header-h); gap: 1rem; }
.brand { display: inline-flex; align-items: center; gap: .55rem; }
.brand-name { font-family: var(--font-display); font-size: 1.32rem; font-weight: 700; letter-spacing: .12em; }
.brand-name em { font-style: normal; color: var(--amber-deep); font-weight: 500; }
.section-dark .brand-name em, .footer .brand-name em { color: var(--amber-soft); }

.brand-flame .flame-outer { fill: var(--amber); }
.brand-flame .flame-inner { fill: var(--cream); }
.brand-flame { animation: flicker 2.8s ease-in-out infinite; transform-origin: 50% 90%; }
@keyframes flicker {
  0%, 100% { transform: scale(1) rotate(0deg); }
  25% { transform: scale(1.05) rotate(-1.6deg); }
  55% { transform: scale(.97) rotate(1.4deg); }
  80% { transform: scale(1.03) rotate(-.8deg); }
}

.nav-links { display: flex; gap: 1.7rem; list-style: none; }
.nav-links a { font-size: .92rem; font-weight: 600; position: relative; padding: .3rem 0; }
.nav-links a::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 2px; width: 0%;
  background: var(--amber); transition: width .3s ease; border-radius: 2px;
}
.nav-links a:hover::after { width: 100%; }

.nav-actions { display: flex; align-items: center; gap: .8rem; }
.lang-toggle {
  border: 1.5px solid rgba(42,31,23,.25); background: transparent; border-radius: 999px;
  padding: .35rem .85rem; font-weight: 700; font-size: .8rem; letter-spacing: .05em;
  display: inline-flex; gap: .3rem; color: var(--cocoa);
  min-height: 40px; align-items: center;
}
.lang-toggle [data-lang-opt].active { color: var(--espresso); }
.lang-sep { opacity: .4; }
.cart-btn {
  position: relative; background: var(--espresso); color: var(--cream); border: none;
  width: 44px; height: 44px; border-radius: 50%; display: grid; place-items: center;
  transition: background .25s ease, transform .2s ease;
}
.cart-btn:hover { background: var(--amber-deep); transform: translateY(-1px); }
.cart-count {
  position: absolute; top: -4px; right: -4px; background: var(--orchid); color: #fff;
  font-size: .68rem; font-weight: 800; min-width: 19px; height: 19px; border-radius: 999px;
  display: grid; place-items: center; padding: 0 4px; border: 2px solid var(--cream);
}
.cart-count.bump { animation: bump .4s ease; }
@keyframes bump { 40% { transform: scale(1.35); } }

.burger { display: none; background: none; border: none; width: 40px; height: 40px; flex-direction: column; justify-content: center; gap: 5px; align-items: center; }
.burger span { width: 22px; height: 2px; background: var(--espresso); transition: .3s; border-radius: 2px; }

/* ---------- Hero ---------- */
.hero { position: relative; overflow: hidden; padding: clamp(3.5rem, 7vw, 6.5rem) 0 clamp(3rem, 6vw, 5.5rem); }
.hero-glow {
  position: absolute; inset: -20% -10% auto auto; width: 68vw; height: 68vw; max-width: 900px; max-height: 900px;
  background: radial-gradient(circle at center, rgba(232, 201, 143, .55), rgba(232, 201, 143, .18) 40%, transparent 68%);
  pointer-events: none; animation: breathe 7s ease-in-out infinite;
}
@keyframes breathe { 50% { transform: scale(1.07); opacity: .85; } }
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; position: relative; }
.hero-title {
  font-family: var(--font-display); font-weight: 600;
  font-size: clamp(2.9rem, 6.4vw, 5rem); line-height: 1.04; margin: .4rem 0 1.4rem;
}
.hero-title span { display: block; }
.hero-title-accent { color: var(--amber-deep); font-style: italic; }
.hero-sub { color: var(--cocoa); font-size: 1.06rem; max-width: 52ch; margin-bottom: 2rem; }
.hero-ctas { display: flex; gap: .9rem; flex-wrap: wrap; margin-bottom: 2.2rem; }
.hero-badges { display: flex; gap: 1.6rem; list-style: none; flex-wrap: wrap; }
.hero-badges li { display: flex; align-items: center; gap: .5rem; font-size: .88rem; font-weight: 600; color: var(--cocoa); }
.hero-badges i { font-style: normal; }

.hero-visual { position: relative; display: flex; justify-content: center; }
.hero-photo {
  width: min(340px, 68vw); border-radius: 180px 180px var(--radius-lg) var(--radius-lg);
  overflow: hidden; box-shadow: var(--shadow); position: relative; z-index: 2;
}
.hero-photo img, .hero-photo video { height: 100%; width: 100%; object-fit: cover; aspect-ratio: 3/4; transition: transform .8s ease; display: block; }
.hero-photo:hover img, .hero-photo:hover video { transform: scale(1.045); }
.hero-photo-sm {
  position: absolute; width: min(180px, 34vw); right: 2%; bottom: -6%; z-index: 3;
  border-radius: 120px 120px 18px 18px; border: 6px solid var(--cream);
  box-shadow: var(--shadow);
}

/* ---------- Marquee (scents) ---------- */
.marquee {
  background: var(--espresso); color: var(--cream); overflow: hidden;
  padding: .95rem 0; white-space: nowrap;
}
.marquee-track {
  display: inline-flex; gap: 2.6rem; align-items: center;
  font-family: var(--font-display); font-size: 1.25rem; font-style: italic; letter-spacing: .06em;
  animation: marquee 30s linear infinite;
}
.marquee-track i { font-style: normal; color: var(--amber); font-size: .9rem; }
.marquee:hover .marquee-track, .topbar:hover .topbar-track { animation-play-state: paused; }

/* ---------- Story ---------- */
.story-grid { display: grid; grid-template-columns: .82fr 1.18fr; gap: clamp(2.5rem, 5vw, 5rem); align-items: center; }
.story-photo { position: relative; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); }
.story-photo img { aspect-ratio: 3/4.4; object-fit: cover; transition: transform .8s ease; }
.story-photo:hover img { transform: scale(1.04); }
.story-photo-tag {
  position: absolute; bottom: 14px; left: 14px; background: rgba(250,245,238,.9); backdrop-filter: blur(6px);
  padding: .4rem .9rem; border-radius: 999px; font-size: .78rem; font-weight: 600; letter-spacing: .08em;
}
.story-copy p { color: var(--cocoa); margin-bottom: 1rem; }
.values-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem 1.8rem; margin-top: 1.8rem; }
.value h3 {
  font-family: var(--font-display); font-size: 1.22rem; font-weight: 700; margin-bottom: .25rem;
  display: flex; align-items: center; gap: .5rem;
}
.value h3::before { content: "✦"; color: var(--amber); font-size: .8rem; }
.value p { font-size: .9rem; margin: 0; }

/* ---------- Shop / product cards ---------- */
.product-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(258px, 1fr));
  gap: clamp(1.2rem, 2.5vw, 2rem);
}
.product-card {
  background: var(--white); border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-sm); display: flex; flex-direction: column;
  transition: transform .35s ease, box-shadow .35s ease;
}
.product-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.product-media { position: relative; overflow: hidden; aspect-ratio: 4/4.6; }
.product-media img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  transition: opacity .5s ease, transform .7s ease;
}
.product-media img.alt { opacity: 0; }
.product-card:hover .product-media img.alt { opacity: 1; }
.product-card:hover .product-media img { transform: scale(1.05); }
.product-badge {
  position: absolute; top: 12px; left: 12px; z-index: 2;
  background: rgba(250,245,238,.92); backdrop-filter: blur(6px);
  font-size: .7rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase;
  padding: .35rem .75rem; border-radius: 999px; color: var(--amber-deep);
}
.product-body { padding: 1.2rem 1.25rem 1.35rem; display: flex; flex-direction: column; gap: .7rem; flex: 1; }
.product-name { font-family: var(--font-display); font-size: 1.42rem; font-weight: 700; line-height: 1.15; }
.product-desc { font-size: .875rem; color: var(--cocoa); flex: 1; }
.product-row { display: flex; align-items: center; justify-content: space-between; gap: .8rem; }
.variant-select {
  appearance: none; -webkit-appearance: none;
  border: 1.5px solid rgba(42,31,23,.22); background: var(--cream) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%232A1F17' fill='none' stroke-width='1.6' stroke-linecap='round'/%3E%3C/svg%3E") no-repeat right .8rem center;
  border-radius: 999px; padding: .5rem 2rem .5rem 1rem; font-weight: 600; font-size: .85rem; color: var(--espresso);
}
.product-price { font-size: 1.3rem; font-weight: 800; font-family: var(--font-display); }
.add-btn {
  border: none; background: var(--espresso); color: var(--cream); border-radius: 999px;
  padding: .78rem 1.2rem; font-weight: 700; font-size: .88rem; width: 100%;
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  transition: background .25s ease, transform .2s ease;
}
.add-btn:hover { background: var(--amber-deep); transform: translateY(-1px); }

/* ---------- Gallery ---------- */
.gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.1rem; }
.gallery-item {
  position: relative; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm);
  aspect-ratio: 4/4.8;
}
.gallery-item.wide { grid-column: span 2; aspect-ratio: auto; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s ease; }
.gallery-item:hover img { transform: scale(1.06); }
.gallery-cap {
  position: absolute; inset: auto 0 0 0; padding: 2.2rem .95rem .85rem;
  background: linear-gradient(transparent, rgba(30, 21, 15, .78));
  color: var(--cream); font-size: .85rem; font-weight: 600; letter-spacing: .04em;
  opacity: 0; transform: translateY(8px); transition: .35s ease;
}
.gallery-item:hover .gallery-cap { opacity: 1; transform: none; }

/* ---------- Wholesale ---------- */
.wholesale-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2.5rem, 5vw, 4.5rem); align-items: center; }
.wholesale-note { font-size: .85rem; color: #B8A78F; }
.price-table-wrap { background: rgba(250,245,238,.05); border: 1px solid rgba(232,201,143,.2); border-radius: var(--radius-lg); padding: 1rem; overflow-x: auto; }
.price-table { width: 100%; border-collapse: collapse; font-size: .95rem; }
.price-table th {
  text-align: left; font-size: .74rem; letter-spacing: .16em; text-transform: uppercase;
  color: var(--amber-soft); padding: .8rem .9rem; border-bottom: 1px solid rgba(232,201,143,.25);
}
.price-table td { padding: .85rem .9rem; border-bottom: 1px solid rgba(250,245,238,.08); }
.price-table tr:last-child td { border-bottom: none; }
.price-table td:nth-child(2) { color: #D8C9B6; }
.price-table td:nth-child(3) { color: var(--amber-soft); font-weight: 800; }
.wholesale .btn { margin-top: 1.4rem; }
.wholesale .wholesale-note { margin: 1rem 0 0; }

/* ---------- Request form ---------- */
.request-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(2.5rem, 5vw, 4.5rem); align-items: start; }
.request-form {
  background: var(--white); border-radius: var(--radius-lg); box-shadow: var(--shadow);
  padding: clamp(1.4rem, 3vw, 2.2rem); display: flex; flex-direction: column; gap: 1.1rem;
}
.hp { position: absolute; left: -9999px; }
.req-type { border: none; display: flex; gap: .7rem; flex-wrap: wrap; }
.req-type legend {
  font-size: .78rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase;
  color: var(--amber-deep); margin-bottom: .6rem;
}
.radio-pill { position: relative; }
.radio-pill input { position: absolute; opacity: 0; }
.radio-pill span {
  display: inline-block; padding: .55rem 1.15rem; border-radius: 999px; font-weight: 700; font-size: .85rem;
  border: 1.5px solid rgba(42,31,23,.25); color: var(--cocoa); cursor: pointer; transition: .25s ease;
}
.radio-pill input:checked + span { background: var(--espresso); color: var(--cream); border-color: var(--espresso); }
.radio-pill input:focus-visible + span { outline: 2px solid var(--amber); outline-offset: 2px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
.form-field { display: flex; flex-direction: column; gap: .35rem; }
.form-field label { font-size: .82rem; font-weight: 700; color: var(--cocoa); }
.form-field input, .form-field select, .form-field textarea {
  font-family: inherit; font-size: .95rem; color: var(--espresso);
  border: 1.5px solid rgba(42,31,23,.18); border-radius: 12px; background: var(--cream);
  padding: .75rem .9rem; transition: border-color .25s ease, box-shadow .25s ease;
}
.form-field textarea { resize: vertical; }
.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
  outline: none; border-color: var(--amber); box-shadow: 0 0 0 3px rgba(192,138,62,.18);
}
.form-privacy { font-size: .78rem; color: var(--cocoa); text-align: center; }

/* ---------- FAQ ---------- */
.faq-wrap { max-width: 780px; }
.faq-list details {
  background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow-sm);
  padding: 1.1rem 1.4rem; margin-bottom: .8rem;
}
.faq-list summary {
  font-weight: 700; font-size: 1.02rem; cursor: pointer; list-style: none;
  display: flex; justify-content: space-between; align-items: center; gap: 1rem;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: "+"; font-size: 1.4rem; color: var(--amber-deep); transition: transform .3s ease; }
.faq-list details[open] summary::after { transform: rotate(45deg); }
.faq-list details p { margin-top: .7rem; color: var(--cocoa); font-size: .93rem; }

/* ---------- Footer ---------- */
.footer { padding: clamp(3rem, 6vw, 4.5rem) 0 0; }
.footer-grid {
  display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 2.5rem;
  padding-bottom: 2.5rem; border-bottom: 1px solid rgba(250,245,238,.12);
}
.footer-brand p { color: #CBBBA8; font-size: .92rem; margin-top: 1rem; max-width: 34ch; }
.footer-payments { font-size: .78rem !important; color: #98866F !important; }
.footer-col h4 {
  font-size: .78rem; letter-spacing: .18em; text-transform: uppercase; color: var(--amber-soft);
  margin-bottom: 1rem;
}
.footer-col a { display: block; color: #D8C9B6; font-size: .93rem; padding: .28rem 0; transition: color .25s ease; }
.footer-col a:hover { color: var(--cream); }
.insta-link { display: inline-flex !important; align-items: center; gap: .5rem; }
.footer-bottom { padding: 1.4rem 0; font-size: .82rem; color: #98866F; }

/* ---------- Cart drawer ---------- */
.cart-overlay {
  position: fixed; inset: 0; background: rgba(30,21,15,.55); backdrop-filter: blur(3px);
  z-index: 90; opacity: 0; transition: opacity .3s ease;
}
.cart-overlay.open { opacity: 1; }
.cart-drawer {
  position: fixed; top: 0; right: 0; bottom: 0; width: min(420px, 94vw); z-index: 100;
  background: var(--cream); box-shadow: -20px 0 60px rgba(30,21,15,.35);
  transform: translateX(105%); transition: transform .38s cubic-bezier(.22,.9,.3,1);
  display: flex; flex-direction: column;
}
.cart-drawer.open { transform: none; }
.cart-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.3rem 1.5rem; border-bottom: 1px solid rgba(42,31,23,.1);
}
.cart-head h3 { font-family: var(--font-display); font-size: 1.6rem; }
.cart-close { background: none; border: none; font-size: 1.1rem; color: var(--cocoa); padding: .4rem; }
.cart-items { flex: 1; overflow-y: auto; padding: 1.2rem 1.5rem; display: flex; flex-direction: column; gap: 1rem; }
.cart-empty-msg { color: var(--cocoa); text-align: center; margin-top: 2.5rem; font-size: .95rem; }
.cart-item { display: grid; grid-template-columns: 64px 1fr auto; gap: .9rem; align-items: center; }
.cart-item img { width: 64px; height: 64px; object-fit: cover; border-radius: 12px; }
.cart-item-name { font-weight: 700; font-size: .9rem; line-height: 1.3; }
.cart-item-variant { font-size: .78rem; color: var(--cocoa); }
.cart-item-qty { display: inline-flex; align-items: center; gap: .55rem; margin-top: .3rem; }
.cart-item-qty button {
  width: 22px; height: 22px; border-radius: 50%; border: 1.2px solid rgba(42,31,23,.3);
  background: none; font-size: .85rem; line-height: 1; display: grid; place-items: center; color: var(--espresso);
}
.cart-item-price { font-weight: 800; font-size: .92rem; text-align: right; }
.cart-item-remove { background: none; border: none; color: var(--cocoa); font-size: .72rem; text-decoration: underline; margin-top: .3rem; }
.cart-foot { padding: 1.2rem 1.5rem 1.5rem; border-top: 1px solid rgba(42,31,23,.1); display: flex; flex-direction: column; gap: .8rem; }
.cart-subtotal { display: flex; justify-content: space-between; font-size: 1.05rem; }
.cart-subtotal strong { font-family: var(--font-display); font-size: 1.35rem; }
.cart-shipnote { font-size: .78rem; color: var(--cocoa); }

/* ---------- Lightbox ---------- */
.lightbox {
  position: fixed; inset: 0; z-index: 110; background: rgba(20, 14, 10, .92);
  backdrop-filter: blur(8px); display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity .3s ease;
}
.lightbox.open { opacity: 1; }
.lb-stage { max-width: min(88vw, 900px); max-height: 86vh; text-align: center; }
.lb-stage img {
  max-width: 100%; max-height: 78vh; object-fit: contain; border-radius: var(--radius);
  box-shadow: 0 30px 90px rgba(0,0,0,.6); animation: lbIn .35s ease;
}
@keyframes lbIn { from { opacity: 0; transform: scale(.96); } }
.lb-stage figcaption {
  color: var(--amber-soft); font-family: var(--font-display); font-style: italic;
  font-size: 1.15rem; margin-top: 1rem; letter-spacing: .04em;
}
.lb-close, .lb-nav {
  position: fixed; background: rgba(250,245,238,.1); border: 1px solid rgba(250,245,238,.25);
  color: var(--cream); border-radius: 50%; display: grid; place-items: center;
  transition: background .25s ease, transform .2s ease;
}
.lb-close:hover, .lb-nav:hover { background: rgba(250,245,238,.22); transform: scale(1.06); }
.lb-close { top: 20px; right: 20px; width: 46px; height: 46px; font-size: 1.1rem; }
.lb-nav { top: 50%; transform: translateY(-50%); width: 52px; height: 52px; font-size: 2rem; line-height: 1; }
.lb-nav:hover { transform: translateY(-50%) scale(1.06); }
.lb-prev { left: 18px; }
.lb-next { right: 18px; }
.gallery-item { cursor: zoom-in; }
@media (max-width: 560px) { .lb-nav { width: 42px; height: 42px; } .lb-prev { left: 8px; } .lb-next { right: 8px; } }

/* ---------- Toast ---------- */
.toast {
  pointer-events: none;
  position: fixed; bottom: 24px; left: 50%; transform: translate(-50%, 140%);
  background: var(--espresso-2); color: var(--cream); padding: .9rem 1.5rem; border-radius: 14px;
  font-size: .9rem; font-weight: 600; z-index: 120; box-shadow: var(--shadow);
  transition: transform .4s cubic-bezier(.22,.9,.3,1); max-width: min(480px, 90vw); text-align: center;
}
.toast.show { transform: translate(-50%, 0); }

/* ---------- Legal pages ---------- */
.legal-wrap { max-width: 800px; margin-inline: auto; padding: 3rem 4vw 5rem; }
.legal-wrap h1 { font-family: var(--font-display); font-weight: 600; font-size: clamp(2rem, 5vw, 2.8rem); margin-bottom: .4rem; }
.legal-updated { color: var(--cocoa); font-size: .85rem; margin-bottom: 2.2rem; }
.legal-wrap h2 { font-family: var(--font-display); font-weight: 700; font-size: 1.45rem; margin: 2.2rem 0 .6rem; }
.legal-wrap p, .legal-wrap li { color: var(--cocoa); font-size: .95rem; margin-bottom: .7rem; }
.legal-wrap ul { padding-left: 1.3rem; margin-bottom: .8rem; }
.legal-wrap a { color: var(--amber-deep); text-decoration: underline; }
mark.fill { background: rgba(185, 62, 142, .12); color: #8D2A6B; padding: .12rem .45rem; border-radius: 6px; font-weight: 600; }
.legal-footer { border-top: 1px solid rgba(42,31,23,.1); padding: 1.5rem 4vw 2.5rem; text-align: center; font-size: .85rem; color: var(--cocoa); }
.legal-footer a { color: var(--amber-deep); text-decoration: underline; margin: 0 .5rem; }

/* ---------- Reveal animations ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .8s ease, transform .8s ease; }
.reveal.in { opacity: 1; transform: none; }
.delay-1 { transition-delay: .15s; }
.pop-in { animation: popIn .65s ease both; animation-delay: var(--d, 0ms); }
@keyframes popIn { from { opacity: 0; transform: translateY(18px) scale(.985); } }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .pop-in { animation: none !important; }
  .topbar-track, .marquee-track, .brand-flame, .hero-glow { animation: none !important; }
}

/* ---------- Responsive ---------- */
@media (max-width: 1000px) {
  .hero-grid, .story-grid, .wholesale-grid, .request-grid { grid-template-columns: 1fr; }
  .hero-visual { order: -1; }
  .hero-photo { width: min(300px, 70vw); }
  .story-photo { max-width: 420px; }
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 1080px) {
  .nav-links {
    position: fixed; inset: var(--header-h) 0 auto 0; z-index: 55;
    background: var(--cream); flex-direction: column; gap: 0; padding: .5rem 0 1rem;
    border-bottom: 1px solid rgba(42,31,23,.1); box-shadow: var(--shadow);
    transform: translateY(-130%); transition: transform .35s ease;
  }
  .nav-links.open { transform: none; }
  .nav-links a { display: block; padding: .85rem 6vw; font-size: 1.05rem; }
  .nav-links a::after { display: none; }
  .burger { display: flex; }
  .burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .burger.open span:nth-child(2) { opacity: 0; }
  .burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
}
@media (max-width: 820px) {
  /* 16px stops iOS Safari from zoom-jumping into form controls */
  .form-field input, .form-field select, .form-field textarea, .variant-select { font-size: 16px; }
  .variant-select { padding: .6rem 2.1rem .6rem 1rem; }
}
@media (max-width: 560px) {
  .gallery { grid-template-columns: 1fr 1fr; }
  .gallery-item.wide { grid-column: span 2; }
  .form-row { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 1.8rem; }
  .hero-photo-sm { right: -2%; }
}
