/* ═══════════════════════════════════════════════════
   LESSYU — Atelier
   A clean-build luxury storefront.
   Bone · Espresso · Champagne gold.
   Fraunces display / Jost interface.
═══════════════════════════════════════════════════ */
@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,300;0,9..144,400;0,9..144,500;0,9..144,600;1,9..144,300;1,9..144,400&family=Jost:wght@300;400;500;600;700&display=swap');

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
img, svg, canvas { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font-family: inherit; font-size: inherit; color: inherit; }
button { cursor: pointer; background: none; border: none; }
ul { list-style: none; }

/* ── TOKENS ── */
:root {
  --bone:    #F3EEE4;   /* page background — warm paper */
  --bone-2:  #E9E1D3;   /* raised panels */
  --cream:   #FBF8F1;   /* lightest surfaces */
  --ink:     #17130E;   /* near-black espresso */
  --ink-2:   #4C443A;   /* secondary text */
  --ink-3:   #8C8170;   /* muted text */
  --gold:    #C6A15B;   /* champagne gold */
  --gold-lt: #DCC089;   /* light gold (on dark) */
  --gold-dp: #A07C38;   /* deep gold */
  --line:    rgba(23,19,14,.12);
  --line-2:  rgba(23,19,14,.07);
  --line-lt: rgba(243,238,228,.14);

  --serif: 'Fraunces', Georgia, serif;
  --sans:  'Jost', system-ui, -apple-system, sans-serif;

  --ease:   cubic-bezier(.22,.61,.36,1);
  --ease-2: cubic-bezier(.65,.05,.36,1);
  --ease-apple: cubic-bezier(.16,1,.3,1);   /* calm, precise easeOutExpo */

  --pad:    clamp(20px, 5vw, 64px);   /* horizontal page rhythm */
  --maxw:   1560px;
}

/* ── BASE ── */
body {
  background: var(--bone);
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 400;
  font-size: 15px;
  line-height: 1.65;
  letter-spacing: .005em;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body.no-scroll { overflow: hidden; }

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

/* Lenis */
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }
.lenis.lenis-stopped { overflow: hidden; }

/* ── TYPOGRAPHY HELPERS ── */
.display {
  font-family: var(--serif);
  font-weight: 300;
  line-height: .98;
  letter-spacing: -.025em;
  font-optical-sizing: auto;
}
.display em { font-style: italic; font-weight: 300; }
.serif { font-family: var(--serif); font-weight: 300; }
.serif em { font-style: italic; }

.eyebrow {
  font-size: .66rem; font-weight: 600;
  letter-spacing: .26em; text-transform: uppercase;
  color: var(--gold-dp); display: inline-flex; align-items: center; gap: .8em;
}
.eyebrow::before {
  content: ''; width: 28px; height: 1px; background: currentColor; opacity: .6;
}
.eyebrow.center { justify-content: center; }
.eyebrow.no-rule::before { display: none; }

/* ── CURSOR ── native, for Apple-clean precision ── */
.cursor, .cursor-ring { display: none !important; }

/* ── BUTTONS ── */
.btn {
  position: relative; display: inline-flex; align-items: center; gap: .9em;
  padding: 1.08em 2.1em; font-size: .68rem; font-weight: 600;
  letter-spacing: .2em; text-transform: uppercase;
  border-radius: 100px; overflow: hidden; isolation: isolate;
  transition: color .45s var(--ease), border-color .45s var(--ease);
  white-space: nowrap;
}
.btn .ar { transition: transform .45s var(--ease); }
.btn:hover .ar { transform: translateX(5px); }
.btn::after {
  content: ''; position: absolute; inset: 0; z-index: -1;
  border-radius: 100px; transform: scale(1.02);
  transition: transform .5s var(--ease), background .45s var(--ease);
}
.btn-solid { color: var(--cream); border: 1px solid var(--ink); }
.btn-solid::after { background: var(--ink); }
.btn-solid:hover { color: var(--ink); }
.btn-solid:hover::after { background: transparent; transform: scale(1); }

.btn-gold { color: var(--ink); border: 1px solid var(--gold); }
.btn-gold::after { background: var(--gold); }
.btn-gold:hover { color: var(--ink); border-color: var(--gold-dp); }
.btn-gold:hover::after { background: var(--gold-lt); transform: scale(1); }

.btn-ghost { color: var(--ink); border: 1px solid var(--line); }
.btn-ghost::after { background: var(--ink); transform: scale(1.02); opacity: 0; }
.btn-ghost:hover { color: var(--cream); border-color: var(--ink); }
.btn-ghost:hover::after { opacity: 1; transform: scale(1); }

.btn-light { color: var(--ink); border: 1px solid transparent; }
.btn-light::after { background: var(--cream); }
.btn-light:hover { color: var(--ink); }
.btn-light:hover::after { background: var(--gold-lt); transform: scale(1); }

/* underline link */
.link-u {
  position: relative; display: inline-flex; align-items: center; gap: .7em;
  font-size: .68rem; font-weight: 600; letter-spacing: .2em; text-transform: uppercase;
  padding-bottom: 4px;
}
.link-u::after {
  content: ''; position: absolute; left: 0; bottom: 0; height: 1px; width: 100%;
  background: currentColor; transform-origin: right; transform: scaleX(1);
  transition: transform .5s var(--ease);
}
.link-u:hover::after { transform-origin: left; transform: scaleX(0); }
.link-u .ar { transition: transform .4s var(--ease); }
.link-u:hover .ar { transform: translateX(5px); }

/* ── NAV ── */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 500;
  display: grid; grid-template-columns: 1fr auto 1fr; align-items: center;
  height: 78px; padding: 0 var(--pad);
  transition: background .6s var(--ease), backdrop-filter .6s var(--ease),
              border-color .6s var(--ease), height .5s var(--ease);
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(243,238,228,.72);
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  border-bottom-color: var(--line-2);
  height: 66px;
}
.nav-left, .nav-right { display: flex; align-items: center; }
.nav-right { justify-content: flex-end; gap: clamp(14px, 2vw, 28px); }
.nav-links { display: flex; gap: clamp(20px, 2.4vw, 40px); }
.nav-links a {
  font-size: .68rem; font-weight: 500; letter-spacing: .18em; text-transform: uppercase;
  color: var(--ink-2); position: relative; padding: 6px 0; transition: color .3s;
}
.nav-links a::after {
  content: ''; position: absolute; left: 0; bottom: 0; height: 1px; width: 0;
  background: var(--gold); transition: width .4s var(--ease);
}
.nav-links a:hover, .nav-links a.active { color: var(--ink); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }

.brand {
  justify-self: center; font-family: var(--serif); font-weight: 400;
  font-size: clamp(1.3rem, 2vw, 1.7rem); letter-spacing: .42em;
  text-transform: uppercase; padding-left: .42em; color: var(--ink);
  line-height: 1; transition: opacity .3s;
}
.brand:hover { opacity: .68; }
.brand sup {
  font-size: .42em; letter-spacing: .1em; vertical-align: super;
  color: var(--gold-dp); margin-left: -.2em;
}

.nav-icon {
  font-size: .68rem; font-weight: 600; letter-spacing: .16em; text-transform: uppercase;
  color: var(--ink-2); position: relative; transition: color .3s; display: inline-flex; align-items: center; gap: .5em;
}
.nav-icon:hover { color: var(--ink); }
.bag-count {
  min-width: 17px; height: 17px; padding: 0 4px; border-radius: 9px;
  background: var(--gold); color: var(--ink); font-size: .56rem; font-weight: 700;
  display: none; align-items: center; justify-content: center; letter-spacing: 0;
}
.bag-count.show { display: inline-flex; }

/* nav over the dark hero (home only, before scroll) — flips to dark once scrolled */
body.page-home .nav:not(.scrolled) .nav-links a,
body.page-home .nav:not(.scrolled) .nav-icon { color: rgba(243,238,228,.72); }
body.page-home .nav:not(.scrolled) .nav-links a:hover,
body.page-home .nav:not(.scrolled) .nav-icon:hover { color: var(--cream); }
body.page-home .nav:not(.scrolled) .brand { color: var(--cream); }
body.page-home .nav:not(.scrolled) .brand sup { color: var(--gold-lt); }
body.page-home .nav:not(.scrolled) .burger span { background: var(--cream); }
body.page-home .nav:not(.scrolled) .bag-count { background: var(--gold-lt); color: var(--ink); }

/* hamburger */
.burger { display: none; width: 26px; height: 14px; position: relative; }
.burger span { position: absolute; left: 0; width: 100%; height: 1.5px; background: var(--ink); transition: transform .4s var(--ease), opacity .3s; }
.burger span:nth-child(1) { top: 0; }
.burger span:nth-child(2) { bottom: 0; }
.burger.open span:nth-child(1) { top: 6px; transform: rotate(45deg); }
.burger.open span:nth-child(2) { bottom: 6px; transform: rotate(-45deg); }

.mobile-menu {
  position: fixed; inset: 0; z-index: 480; background: var(--bone);
  display: flex; flex-direction: column; justify-content: center; align-items: flex-start;
  gap: 6px; padding: 0 var(--pad);
  clip-path: inset(0 0 100% 0); transition: clip-path .7s var(--ease-2);
}
.mobile-menu.open { clip-path: inset(0 0 0 0); }
.mobile-menu a {
  font-family: var(--serif); font-weight: 300; font-size: clamp(2.4rem, 11vw, 4rem);
  line-height: 1.18; color: var(--ink); transition: color .3s, padding-left .4s var(--ease);
}
.mobile-menu a:hover { color: var(--gold-dp); padding-left: 14px; }
.mm-foot { position: absolute; bottom: 36px; left: var(--pad); right: var(--pad); display: flex; justify-content: space-between; font-size: .68rem; letter-spacing: .14em; text-transform: uppercase; color: var(--ink-3); }

/* ── LANGUAGE TOGGLE ── */
.lang-toggle { display: inline-flex; align-items: center; gap: 6px; font-size: .62rem; font-weight: 600; letter-spacing: .14em; }
.lang-toggle button { color: var(--ink-3); transition: color .25s; padding: 2px; }
.lang-toggle button.on { color: var(--ink); }
.lang-toggle span { color: var(--ink-3); opacity: .5; }
body.page-home .nav:not(.scrolled) .lang-toggle button { color: rgba(243,238,228,.5); }
body.page-home .nav:not(.scrolled) .lang-toggle button.on { color: var(--cream); }
body.page-home .nav:not(.scrolled) .lang-toggle span { color: rgba(243,238,228,.4); }
.lang-toggle.dark button { color: var(--ink-3); } .lang-toggle.dark button.on { color: var(--ink); }
.nav-bag { display: inline-flex; align-items: center; gap: .5em; }
.mm-foot { display: flex; align-items: center; gap: 20px; }

/* ── NAV ICONS ── */
.nav-ic { position: relative; display: inline-flex; align-items: center; justify-content: center; color: var(--ink-2); transition: color .25s; }
.nav-ic svg { width: 21px; height: 21px; fill: none; stroke: currentColor; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.nav-ic:hover { color: var(--ink); }
.ic-count { position: absolute; top: -6px; right: -8px; min-width: 16px; height: 16px; padding: 0 4px; border-radius: 8px; background: var(--gold); color: var(--ink); font-size: .54rem; font-weight: 700; display: none; align-items: center; justify-content: center; }
.ic-count.show { display: inline-flex; }
body.page-home .nav:not(.scrolled) .nav-ic { color: rgba(243,238,228,.78); }
body.page-home .nav:not(.scrolled) .nav-ic:hover { color: var(--cream); }
.nav-ic.signed::after { content:''; position:absolute; bottom:-1px; right:-1px; width:7px; height:7px; border-radius:50%; background:var(--gold); box-shadow:0 0 0 2px var(--bone); }
body.page-home .nav:not(.scrolled) .nav-ic.signed::after { box-shadow:0 0 0 2px #1a140d; }

/* ── SEARCH OVERLAY ── */
.search-ov { position: fixed; top: 0; left: 0; right: 0; z-index: 520; background: rgba(243,238,228,.96); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); border-bottom: 1px solid var(--line); transform: translateY(-100%); transition: transform .5s var(--ease-apple); }
.search-ov.open { transform: none; }
.search-box { max-width: var(--maxw); margin: 0 auto; display: flex; align-items: center; gap: 16px; padding: 26px var(--pad); }
.search-box svg { width: 24px; height: 24px; fill: none; stroke: var(--ink-3); stroke-width: 1.5; flex-shrink: 0; }
.search-box input { flex: 1; background: none; border: none; outline: none; font-family: var(--serif); font-weight: 300; font-size: clamp(1.5rem, 3.5vw, 2.6rem); color: var(--ink); }
.search-box input::placeholder { color: var(--ink-3); font-style: italic; }
.search-close { font-size: 1.1rem; color: var(--ink-3); transition: color .25s; } .search-close:hover { color: var(--ink); }

/* ── MEGA MENU ── */
.has-mega { position: static; }
.mega {
  position: absolute; top: 100%; left: 0; right: 0; z-index: 490;
  background: rgba(243,238,228,.86); backdrop-filter: blur(22px) saturate(1.4); -webkit-backdrop-filter: blur(22px) saturate(1.4);
  border-top: 1px solid var(--line-2); border-bottom: 1px solid var(--line);
  opacity: 0; visibility: hidden; transform: translateY(-10px);
  transition: opacity .4s var(--ease-apple), transform .4s var(--ease-apple), visibility .4s;
}
.has-mega:hover .mega, .mega:hover { opacity: 1; visibility: visible; transform: translateY(0); }
.mega-inner { max-width: var(--maxw); margin: 0 auto; padding: clamp(28px,4vw,52px) var(--pad); display: grid; grid-template-columns: 1.4fr 1fr; gap: clamp(30px,5vw,80px); }
.mega-col h4 { font-size: .58rem; font-weight: 600; letter-spacing: .24em; text-transform: uppercase; color: var(--gold-dp); margin-bottom: 22px; }
.mega-links { display: grid; grid-template-columns: 1fr 1fr; gap: 12px 30px; margin-bottom: 26px; }
.mega-links a { font-family: var(--serif); font-weight: 300; font-size: 1.45rem; letter-spacing: -.01em; color: var(--ink); transition: color .25s, padding-left .3s var(--ease-apple); }
.mega-links a:hover { color: var(--gold-dp); padding-left: 6px; }
.mega-all { font-size: .64rem; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; display: inline-flex; align-items: center; gap: .6em; color: var(--ink); }
.mega-all .ar { transition: transform .4s var(--ease-apple); } .mega-all:hover .ar { transform: translateX(5px); }
.mega-feature { position: relative; border-radius: 16px; overflow: hidden; min-height: 230px; display: block; }
.mega-feature img { width: 100%; height: 100%; position: absolute; inset: 0; object-fit: cover; transition: transform 1.2s var(--ease-apple); }
.mega-feature:hover img { transform: scale(1.05); }
.mega-feature-cap { position: absolute; left: 18px; bottom: 16px; z-index: 2; color: var(--cream); font-size: .66rem; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; display: inline-flex; align-items: center; gap: .6em; text-shadow: 0 1px 12px rgba(0,0,0,.4); }
@media (max-width: 860px) { .mega { display: none; } }

/* ── CART DRAWER ── */
.drawer-overlay { position: fixed; inset: 0; z-index: 590; background: rgba(23,19,14,.4); opacity: 0; visibility: hidden; transition: opacity .5s var(--ease-apple), visibility .5s; }
.drawer-overlay.open { opacity: 1; visibility: visible; }
.drawer {
  position: fixed; top: 0; right: 0; z-index: 600; height: 100svh; width: min(440px, 94vw);
  background: var(--cream); display: flex; flex-direction: column;
  transform: translateX(100%); transition: transform .55s var(--ease-apple);
  box-shadow: -30px 0 80px rgba(23,19,14,.16);
}
.drawer.open { transform: none; }
.drawer-head { display: flex; align-items: center; justify-content: space-between; padding: 26px var(--pad); border-bottom: 1px solid var(--line); }
.drawer-head span:first-child { font-family: var(--serif); font-size: 1.5rem; font-weight: 300; }
.drawer-x { font-size: .9rem; color: var(--ink-3); transition: color .25s; } .drawer-x:hover { color: var(--ink); }
.drawer-lines { flex: 1; overflow-y: auto; padding: 8px var(--pad); }
.drawer-empty { text-align: center; padding: 70px 10px; }
.drawer-empty .d { font-size: 1.6rem; color: var(--gold); opacity: .4; }
.drawer-empty p { font-family: var(--serif); font-style: italic; font-size: 1.3rem; color: var(--ink-3); margin: 14px 0 26px; }
.dline { display: grid; grid-template-columns: 66px 1fr auto; gap: 16px; padding: 20px 0; border-bottom: 1px solid var(--line-2); }
.dline img { width: 66px; aspect-ratio: 3/4; object-fit: cover; border-radius: 8px; background: var(--bone-2); }
.dline-name { font-size: .86rem; font-weight: 500; margin-bottom: 3px; }
.dline-meta { font-size: .66rem; letter-spacing: .04em; color: var(--ink-3); text-transform: capitalize; margin-bottom: 12px; }
.qty { display: inline-flex; align-items: center; border: 1px solid var(--line); border-radius: 100px; }
.qty button { width: 28px; height: 28px; font-size: .95rem; color: var(--ink); transition: color .2s; } .qty button:hover { color: var(--gold-dp); }
.qty span { min-width: 26px; text-align: center; font-size: .76rem; font-weight: 600; }
.dline-right { text-align: right; display: flex; flex-direction: column; align-items: flex-end; gap: 10px; }
.dline-price { font-family: var(--serif); font-size: 1rem; }
.dline-x { font-size: .66rem; color: var(--ink-3); transition: color .2s; } .dline-x:hover { color: #b4452f; }
.drawer-foot { padding: 22px var(--pad) 28px; border-top: 1px solid var(--line); }
.drawer-sub { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 6px; }
.drawer-sub span:first-child { font-size: .64rem; letter-spacing: .16em; text-transform: uppercase; color: var(--ink-3); }
.drawer-sub span:last-child { font-family: var(--serif); font-size: 1.4rem; }
.drawer-note { font-size: .64rem; color: var(--ink-3); margin-bottom: 18px; line-height: 1.6; }
.drawer-cont { display: block; width: 100%; text-align: center; margin-top: 12px; font-size: .62rem; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; color: var(--ink-2); padding: 8px; transition: color .25s; }
.drawer-cont:hover { color: var(--ink); }

/* ── REVEAL ── calm, precise (Apple-like) ── */
[data-reveal] { opacity: 0; transform: translateY(22px) scale(.992); transition: opacity .85s var(--ease-apple), transform .85s var(--ease-apple); will-change: opacity, transform; }
[data-reveal].in { opacity: 1; transform: none; }
[data-reveal-stagger] > * { opacity: 0; transform: translateY(20px) scale(.992); transition: opacity .8s var(--ease-apple), transform .8s var(--ease-apple); }
[data-reveal-stagger].in > * { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  [data-reveal], [data-reveal-stagger] > * { transition: none; opacity: 1; transform: none; }
}

.reveal-mask { overflow: hidden; display: inline-block; }
.reveal-mask > * { display: inline-block; transform: translateY(105%); transition: transform 1.1s var(--ease-2); }
.in .reveal-mask > * { transform: none; }

/* ── PRODUCT CARD ── */
.card { display: block; position: relative; min-width: 0; }
.card-media {
  position: relative; aspect-ratio: 3/4; overflow: hidden;
  background: var(--bone-2); border-radius: 14px;
}
.card-media img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: center 18%;
  transition: transform 1.2s var(--ease);
}
.card:hover .card-media img { transform: scale(1.06); }
.card-tag {
  position: absolute; top: 14px; left: 14px; z-index: 3;
  font-size: .56rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase;
  padding: .42em .9em; border-radius: 100px;
  background: var(--cream); color: var(--ink);
}
.card-tag.sale { background: var(--ink); color: var(--gold-lt); }
.card-add {
  position: absolute; left: 14px; right: 14px; bottom: 14px; z-index: 3;
  padding: 1em; border-radius: 100px; text-align: center;
  background: rgba(23,19,14,.86); color: var(--cream);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  font-size: .6rem; font-weight: 600; letter-spacing: .2em; text-transform: uppercase;
  opacity: 0; transform: translateY(12px); transition: opacity .45s var(--ease), transform .45s var(--ease), background .3s;
}
.card:hover .card-add { opacity: 1; transform: none; }
.card-add:hover { background: var(--gold); color: var(--ink); }
.card-info { padding: 16px 2px 4px; display: flex; justify-content: space-between; align-items: baseline; gap: 14px; }
.card-info > div:first-child { min-width: 0; }
.card-name { font-size: .82rem; font-weight: 500; letter-spacing: .01em; color: var(--ink); }
.card-cat { font-size: .62rem; font-weight: 500; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-3); margin-top: 4px; }
.card-sw { display: flex; align-items: center; gap: 5px; margin-top: 10px; }
.card-sw .sw { width: 11px; height: 11px; border-radius: 50%; border: 1px solid rgba(23,19,14,.18); box-shadow: inset 0 0 0 1.5px var(--bone); }
.card-sw .sw-more { font-size: .58rem; color: var(--ink-3); letter-spacing: .04em; margin-left: 2px; }
.card-wish { position: absolute; top: 12px; right: 12px; z-index: 3; width: 34px; height: 34px; border-radius: 50%; background: rgba(251,248,241,.82); backdrop-filter: blur(6px); display: flex; align-items: center; justify-content: center; opacity: 0; transform: translateY(-4px); transition: opacity .35s var(--ease-apple), transform .35s var(--ease-apple), background .25s; }
.card:hover .card-wish, .card-wish.on { opacity: 1; transform: none; }
.card-wish svg { width: 17px; height: 17px; fill: none; stroke: var(--ink); stroke-width: 1.6; transition: fill .25s, stroke .25s; }
.card-wish.on svg { fill: var(--gold-dp); stroke: var(--gold-dp); }
.card-wish:hover { background: var(--cream); }
.rate { display: inline-flex; align-items: center; gap: 6px; margin-top: 8px; }
.rate .st { font-size: .7rem; color: var(--line); letter-spacing: -1px; }
.rate .st.on { color: var(--gold); }
.rate-n { font-size: .62rem; color: var(--ink-3); }
.card-price { font-family: var(--serif); font-size: 1.05rem; font-weight: 400; color: var(--ink); white-space: nowrap; }
.card-price .was { color: var(--ink-3); text-decoration: line-through; margin-right: 7px; font-size: .92rem; }
.card-price .now { color: var(--gold-dp); }

/* ── FOOTER ── */
.footer { background: var(--ink); color: var(--bone); padding: clamp(56px, 8vw, 110px) var(--pad) 40px; }
.footer-top { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.3fr; gap: clamp(28px, 4vw, 64px); padding-bottom: clamp(40px, 6vw, 80px); border-bottom: 1px solid var(--line-lt); }
.footer-brand { font-family: var(--serif); font-size: clamp(2.4rem, 5vw, 4rem); font-weight: 300; letter-spacing: .04em; line-height: 1; margin-bottom: 22px; }
.footer-brand em { font-style: italic; color: var(--gold-lt); }
.footer-tag { font-size: .82rem; color: rgba(243,238,228,.5); max-width: 30ch; line-height: 1.8; }
.footer-col h4 { font-size: .6rem; font-weight: 600; letter-spacing: .24em; text-transform: uppercase; color: var(--gold-lt); margin-bottom: 22px; }
.footer-col ul { display: flex; flex-direction: column; gap: 13px; }
.footer-col a { font-size: .84rem; color: rgba(243,238,228,.62); transition: color .3s, padding-left .3s var(--ease); }
.footer-col a:hover { color: var(--bone); padding-left: 6px; }
.footer-news p { font-size: .84rem; color: rgba(243,238,228,.5); line-height: 1.75; margin-bottom: 20px; }
.news-form { display: flex; align-items: center; border-bottom: 1px solid rgba(243,238,228,.28); transition: border-color .4s; }
.news-form:focus-within { border-color: var(--gold-lt); }
.news-form input { flex: 1; background: none; border: none; outline: none; padding: 12px 0; font-family: var(--serif); font-size: 1.05rem; font-weight: 300; color: var(--bone); }
.news-form input::placeholder { color: rgba(243,238,228,.34); font-style: italic; }
.news-form button { color: var(--gold-lt); font-size: 1.2rem; padding: 8px; transition: transform .4s var(--ease); }
.news-form button:hover { transform: translateX(4px); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 14px; padding-top: 28px; }
.footer-bottom span, .footer-bottom a { font-size: .64rem; letter-spacing: .14em; text-transform: uppercase; color: rgba(243,238,228,.34); }
.footer-social { display: flex; gap: 22px; }
.footer-social a { transition: color .3s; }
.footer-social a:hover { color: var(--gold-lt); }

/* ── TOAST ── */
.toast {
  position: fixed; bottom: 28px; left: 50%; z-index: 9000;
  transform: translate(-50%, 24px); opacity: 0;
  display: flex; align-items: center; gap: 12px;
  background: var(--ink); color: var(--bone);
  padding: 15px 24px; border-radius: 100px;
  font-size: .72rem; letter-spacing: .06em; pointer-events: none; white-space: nowrap;
  box-shadow: 0 18px 50px rgba(23,19,14,.28);
  transition: opacity .5s var(--ease), transform .5s var(--ease);
}
.toast.show { opacity: 1; transform: translate(-50%, 0); }
.toast .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--gold-lt); }

/* ── WHATSAPP FAB ── */
.fab {
  position: fixed; right: 22px; bottom: 22px; z-index: 450;
  width: 54px; height: 54px; border-radius: 50%; background: #25D366;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 30px rgba(37,211,102,.3); transition: transform .35s var(--ease);
}
.fab:hover { transform: translateY(-4px) scale(1.04); }
.fab svg { width: 27px; fill: #fff; }

/* ── MARQUEE ── */
.marquee { overflow: hidden; background: var(--ink); color: var(--bone); padding: 16px 0; white-space: nowrap; }
.marquee-track { display: inline-flex; animation: marquee 38s linear infinite; }
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-track span { display: inline-flex; align-items: center; font-family: var(--serif); font-style: italic; font-weight: 300; font-size: clamp(1.3rem, 2.6vw, 2.1rem); padding: 0 32px; color: rgba(243,238,228,.92); }
.marquee-track span::after { content: '✦'; font-style: normal; font-size: .5em; color: var(--gold-lt); margin-left: 64px; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ── SECTION SCAFFOLD ── */
.section { padding: clamp(70px, 10vw, 150px) var(--pad); }
.section-head { display: flex; justify-content: space-between; align-items: flex-end; flex-wrap: wrap; gap: 20px; margin-bottom: clamp(36px, 5vw, 64px); }
.section-head h2 { font-size: clamp(2.1rem, 5vw, 4rem); }

/* ── RESPONSIVE BASE ── */
@media (max-width: 1024px) {
  .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; }
  .footer-news { grid-column: 1 / -1; }
}
@media (max-width: 860px) {
  .nav-links, .nav-right .desk { display: none; }
  .burger { display: block; }
  .nav { grid-template-columns: auto 1fr auto; }
  .brand { justify-self: start; margin-left: 14px; }
}
@media (max-width: 560px) {
  .footer-top { grid-template-columns: 1fr; }
  .section-head { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 480px) {
  /* stack name above price so long names never collide with the price */
  .card-info { flex-direction: column; align-items: flex-start; gap: 7px; padding-top: 13px; }
  .card-price { font-size: 1rem; }
  .card-name { font-size: .84rem; }
  /* full-width hero CTAs */
  .footer-bottom { justify-content: flex-start; }
}
/* never allow a horizontal scrollbar on small screens */
@media (max-width: 900px) {
  html, body { max-width: 100%; overflow-x: hidden; }
}
