/* ============================================================
   LEBLON — design system v2
   Warm paper ground, hairline structure, Didone display
   (Bodoni Moda pinned to its text-optical cut so hairlines
   survive at display sizes),
   letterspaced caps, photography multiply-blended onto paper.
   Motion: slow, sparse, scroll-choreographed. Everything
   respects prefers-reduced-motion.
   ============================================================ */

:root {
  --ink: #141210;
  --bone: #F2ECE1;
  --page: #EFE9DC;
  --paper: #FAF7F1;
  --hair: #C9C0B2;
  --chocolate: #4A3428;
  --taupe: #9A8C7A;
  --gray: #6B6157;
  --stone: #A89A8A;
  --oxblood: #4E2A2A;
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

* { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  font-size: 15px;
  line-height: 1.7;
  animation: pageIn 0.45s var(--ease);
  transition: opacity 0.18s ease;
}

body.fade-out { opacity: 0; }

@keyframes pageIn { from { opacity: 0; } }

::selection { background: var(--bone); color: var(--chocolate); }

.serif {
  font-family: "Bodoni Moda", Didot, "Bodoni MT", "Playfair Display", serif;
  font-weight: 400;
  /* pin the variable font's optical size to its ~text cut: same
     letterforms as the wordmark, hairlines that survive 76px */
  font-variation-settings: "opsz" 22;
}

.caps {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gray);
}

a { color: var(--ink); text-decoration: none; }

.wrap { max-width: 1240px; margin: 0 auto; padding: 0 40px; }

hr.hair { border: 0; border-top: 1px solid var(--hair); margin: 0; }

/* underline-slide for text links */
.ul {
  background-image: linear-gradient(currentColor, currentColor);
  background-size: 0% 1px;
  background-repeat: no-repeat;
  background-position: left bottom;
  transition: background-size 0.45s var(--ease);
  padding-bottom: 3px;
}

.ul:hover { background-size: 100% 1px; }

.textlink {
  display: inline-block;
  border-bottom: 1px solid var(--ink);
  padding-bottom: 3px;
  color: var(--ink);
  transition: color 0.3s ease, border-color 0.3s ease;
}

.textlink:hover { color: var(--chocolate); border-color: var(--chocolate); }

.btn {
  display: inline-block;
  background: var(--ink);
  color: var(--bone);
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  padding: 17px 34px;
  border: 0;
  cursor: pointer;
  font-family: inherit;
  transition: background 0.4s ease, letter-spacing 0.4s var(--ease);
}

.btn:hover { background: var(--chocolate); letter-spacing: 0.3em; color: var(--bone); }

/* ---------- preloader (home, once per session) ---------- */

#loader {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: var(--paper);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
  transition: opacity 0.55s ease, visibility 0.55s;
}

#loader .ld-em { width: 118px; display: block; }

#loader .ld {
  /* same cut and weight as the wordmark and display headlines */
  font-weight: 450;
  font-size: 26px;
  letter-spacing: 0.1em;
  opacity: 0;
  animation: ldIn 1.1s var(--ease) 0.55s forwards;
}

@keyframes ldIn { to { opacity: 1; letter-spacing: 0.44em; } }

#loader.done { opacity: 0; visibility: hidden; }

/* ---------- header ---------- */

header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: background 0.4s ease, box-shadow 0.4s ease, padding 0.4s ease;
}

.hd {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 26px 40px;
  transition: padding 0.4s ease;
}

.utility {
  display: flex;
  justify-content: flex-end;
  padding: 12px 40px 0;
}

header.scrolled .utility { display: none; }

.langs { display: flex; gap: 16px; }

.langs button {
  background: none;
  border: 0;
  cursor: pointer;
  font-family: inherit;
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--stone);
  padding: 0 0 2px;
}

.langs button:hover { color: var(--ink); }

.langs button.on { color: var(--ink); border-bottom: 1px solid var(--ink); }

header.scrolled, body.sub header {
  background: rgba(250, 247, 241, 0.92);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--hair);
}

header.scrolled .hd { padding-top: 16px; padding-bottom: 16px; }

.hd nav { display: flex; gap: 30px; }

.hd nav.right { justify-content: flex-end; }

.hd nav a, .hd nav span { color: var(--gray); }

.hd nav a:hover { color: var(--ink); }

.hd .bag {
  color: var(--stone);
  background: none;
  border: 0;
  font: inherit;
  letter-spacing: inherit;
  text-transform: inherit;
  cursor: pointer;
  padding: 0;
}

.hd .bag:hover { color: var(--ink); }

/* ---------- bag drawer ---------- */

#bagOverlay {
  position: fixed;
  inset: 0;
  background: rgba(20, 18, 16, 0.32);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s;
  z-index: 150;
}

body.bagopen #bagOverlay { opacity: 1; visibility: visible; }

#bagDrawer {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  width: min(420px, 92vw);
  background: var(--paper);
  border-left: 1px solid var(--hair);
  z-index: 160;
  transform: translateX(102%);
  transition: transform 0.5s var(--ease);
  display: flex;
  flex-direction: column;
}

body.bagopen #bagDrawer { transform: none; }

.bd-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 26px;
  border-bottom: 1px solid var(--hair);
}

.bd-close {
  background: none;
  border: 0;
  font-size: 24px;
  color: var(--gray);
  cursor: pointer;
  line-height: 1;
  padding: 0;
}

.bd-close:hover { color: var(--ink); }

#bagItems { flex: 1; overflow-y: auto; padding: 6px 26px; }

.bd-item {
  display: grid;
  grid-template-columns: 76px 1fr auto;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid var(--hair);
  align-items: start;
}

.bd-item img {
  width: 76px;
  height: 76px;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.bd-name { font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--ink); }

.bd-var { font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--stone); margin-top: 5px; }

.bd-qty { display: flex; align-items: center; gap: 12px; margin-top: 12px; font-size: 13px; color: var(--gray); }

.bd-qty button {
  width: 24px; height: 24px;
  border: 1px solid var(--hair);
  background: none;
  color: var(--gray);
  cursor: pointer;
  font-family: inherit;
  line-height: 1;
}

.bd-qty button:hover { border-color: var(--ink); color: var(--ink); }

.bd-remove {
  font-size: 9px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--stone);
  background: none;
  border: 0;
  border-bottom: 1px solid var(--hair);
  cursor: pointer;
  margin-top: 12px;
  padding: 0 0 2px;
}

.bd-remove:hover { color: var(--oxblood); border-color: var(--oxblood); }

.bd-price { font-size: 13px; color: var(--gray); padding-top: 2px; }

.bd-empty { padding: 46px 0; color: var(--gray); font-size: 14px; text-align: center; }

.bd-foot { border-top: 1px solid var(--hair); padding: 20px 26px 26px; }

.bd-ship { font-size: 11px; color: var(--gray); }

.bd-meter { height: 1px; background: var(--hair); margin: 8px 0 4px; position: relative; }

.bd-meter i {
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 0;
  background: var(--chocolate);
  transition: width 0.5s var(--ease);
}

.bd-sub { display: flex; justify-content: space-between; align-items: baseline; margin: 16px 0 14px; }

.bd-sub .k { font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gray); }

.bd-sub .v { font-size: 18px; }

.bd-note { font-size: 11px; color: var(--stone); text-align: center; margin-top: 12px; min-height: 15px; }

.wordmark {
  /* same cut and weight as the display headlines */
  font-weight: 450;
  font-size: 23px;
  letter-spacing: 0.4em;
  margin-right: -0.4em;
  color: var(--ink);
  white-space: nowrap;
}

/* ---------- reveal system ---------- */

html.js [data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.95s var(--ease), transform 0.95s var(--ease);
  transition-delay: var(--d, 0s);
}

html.js [data-reveal].inview { opacity: 1; transform: none; }

/* ---------- hero ---------- */

.hero {
  background: var(--bone);
  border-bottom: 1px solid var(--hair);
  padding-top: 118px;
}

.herogrid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 56px;
  align-items: center;
  padding-top: 34px;
  padding-bottom: 58px;
  min-height: calc(88vh - 118px);
}

.kicker { margin-bottom: 26px; color: var(--taupe); }

.hero h1 {
  font-size: clamp(46px, 5.6vw, 76px);
  line-height: 1.08;
  font-weight: 450;
  margin: 0 0 24px;
  letter-spacing: 0.01em;
}

.hero .lede { color: var(--gray); max-width: 44ch; margin: 0 0 36px; font-size: 16px; }

.heroctas { display: flex; align-items: center; gap: 34px; flex-wrap: wrap; }

.hero-stage { position: relative; }

.hero-stage a.stage {
  display: block;
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
}

.heroimg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  mix-blend-mode: multiply;
  opacity: 0;
  transition: opacity 1.8s ease;
  /* one shared, synchronized drift on every slide: crossfades always
     happen between identical zoom states, so nothing can snap */
  animation: herodrift 13s ease-in-out infinite alternate;
}

.heroimg.on { opacity: 1; }

@keyframes herodrift { from { transform: scale(1); } to { transform: scale(1.05); } }

.herometa {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 14px;
}

.herometa .idx { color: var(--stone); font-size: 10px; }

.herometa .herocap { color: var(--taupe); font-size: 10px; }

.heroprog {
  flex: 1;
  height: 1px;
  background: var(--hair);
  position: relative;
  overflow: hidden;
}

.heroprog i {
  position: absolute;
  inset: 0;
  background: var(--chocolate);
  transform-origin: left;
  animation: prog 6.5s linear forwards;
}

@keyframes prog { from { transform: scaleX(0); } to { transform: scaleX(1); } }

/* ---------- marquee ---------- */

.marquee {
  overflow: hidden;
  border-bottom: 1px solid var(--hair);
  background: var(--paper);
  padding: 13px 0;
}

.mq { display: flex; white-space: nowrap; width: max-content; animation: mq 70s linear infinite; }

.mq span {
  font-size: 10px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--stone);
  padding-right: 2em;
}

@keyframes mq { to { transform: translateX(-50%); } }

/* ---------- collection ---------- */

.shop { padding: 92px 0 40px; }

.shophead {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 46px;
}

.shophead h2 { font-size: clamp(30px, 3vw, 42px); font-weight: 450; margin: 12px 0 0; }

.shophead .count { color: var(--stone); }

.feature {
  display: grid;
  grid-template-columns: 7fr 5fr;
  gap: 56px;
  align-items: center;
  margin-bottom: 76px;
}

.featside .bigline {
  font-size: clamp(22px, 2.2vw, 30px);
  line-height: 1.5;
  color: var(--chocolate);
  font-style: italic;
  margin: 0 0 30px;
}

/* product card */

.card { display: block; }

.card .ph {
  display: block;
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
}

.card .ph img.a {
  width: 100%;
  height: 100%;
  object-fit: contain;
  mix-blend-mode: multiply;
  padding: 7%;
  transition: transform 1.2s var(--ease);
}

.card .ph img.b {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.045);
  transition: opacity 0.65s ease, transform 1.6s var(--ease);
}

.card:hover .ph img.b { opacity: 1; transform: scale(1); }

/* flip variant: model shot leads, product shot appears on hover */
.card.flip .ph img.a { object-fit: cover; mix-blend-mode: normal; padding: 0; }

.card .meta {
  display: flex;
  align-items: baseline;
  gap: 14px;
  margin-top: 16px;
}

.card .idx { color: var(--stone); font-size: 10px; }

.card .pname { color: var(--ink); }

.card .pprice { margin-left: auto; font-size: 12px; letter-spacing: 0.08em; color: var(--gray); }

.trio {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  padding-bottom: 86px;
}

/* ---------- details editorial ---------- */

.details-ed { padding: 92px 0 84px; border-top: 1px solid var(--hair); }

.dhead { text-align: center; margin-bottom: 52px; }

.dhead h2 { font-size: clamp(26px, 2.6vw, 36px); font-weight: 450; margin: 12px 0 0; }

.dgrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.dgrid figure { margin: 0; }

.dgrid img { width: 100%; display: block; mix-blend-mode: multiply; }

.dgrid figcaption { margin-top: 16px; }

.dgrid .dlabel { color: var(--stone); display: block; margin-bottom: 6px; }

.dgrid p { color: var(--gray); font-size: 13px; margin: 0; }

/* ---------- brand strip ---------- */

.brandstrip { background: var(--bone); border-top: 1px solid var(--hair); }

.brandstrip .inner {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  padding: 84px 40px;
}

.brandstrip .emblem { width: 92px; margin: 0 auto 30px; display: block; }

.brandstrip p {
  font-size: clamp(19px, 2vw, 24px);
  line-height: 1.75;
  color: var(--chocolate);
  margin: 0;
}

html.js .brandstrip p {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 1.4s ease 0.5s, transform 1.4s ease 0.5s;
}

html.js .brandstrip.inview p { opacity: 1; transform: none; }

html.js .brandstrip img.emblem { opacity: 0; transition: opacity 1.2s ease; }

html.js .brandstrip.inview img.emblem { opacity: 1; }

/* ---------- PDP ---------- */

.pdpmain { padding-top: 130px; }

.crumbs { padding: 6px 0 26px; }

.crumbs a { color: var(--stone); }

.crumbs span { color: var(--gray); }

.pdp {
  display: grid;
  grid-template-columns: 7fr 5fr;
  gap: 64px;
  align-items: start;
  padding-bottom: 40px;
}

.gal { display: grid; gap: 40px; }

.gal img { width: 100%; display: block; }

.gal img.truth { mix-blend-mode: multiply; }

.buy { position: sticky; top: 104px; }

.galdots { display: none; }

/* hover/tap video over the model still — container carries the
   watermark-cropped aspect so still and clip stay aligned */

.vidwrap {
  position: relative;
  display: block;
  aspect-ratio: 856 / 1000;
  overflow: hidden;
}

.vidwrap img,
.vidwrap video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

.vidwrap video {
  opacity: 0;
  transition: opacity 0.45s ease;
  pointer-events: none;
}

.vidwrap.playing video { opacity: 1; }

.buy h1 { font-size: clamp(30px, 3vw, 40px); font-weight: 450; margin: 8px 0 10px; }

.buy .price { font-size: 17px; margin-bottom: 28px; }

.optlabel { margin: 24px 0 10px; }

.optlabel .sel { color: var(--ink); }

.swatches, .sizes { display: flex; flex-wrap: wrap; gap: 10px; }

.swatches button, .sizes button {
  font-family: inherit;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  background: none;
  border: 1px solid var(--hair);
  color: var(--gray);
  padding: 10px 18px;
  cursor: pointer;
  transition: border-color 0.3s ease, color 0.3s ease;
}

.swatches button:hover, .sizes button:hover { border-color: var(--taupe); color: var(--ink); }

.swatches button.on, .sizes button.on { border-color: var(--ink); color: var(--ink); }

.purchase-actions {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(140px, 1fr);
  gap: 10px;
  margin-top: 30px;
}

.purchase-actions .addbag {
  width: 100%;
  margin: 0;
  min-height: 54px;
  padding-left: 18px;
  padding-right: 18px;
  border: 1px solid var(--ink);
  background: var(--paper);
  color: var(--ink);
}

.purchase-actions .addbag:hover {
  background: var(--bone);
  color: var(--ink);
  letter-spacing: 0.24em;
}

.apple-pay-button {
  display: block;
  width: 100%;
  min-width: 140px;
  min-height: 54px;
  border: 0;
  border-radius: 0;
  cursor: pointer;
  background: #000;
  color: #fff;
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
  font-size: 17px;
  font-weight: 500;
  letter-spacing: -0.02em;
}

.apple-pay-button:hover { opacity: 0.86; }

.apple-pay-fallback {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  white-space: nowrap;
}

.apple-pay-lead {
  font-size: 16px;
  font-weight: 400;
  letter-spacing: -0.02em;
}

.apple-pay-wordmark {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  font-size: 24px;
  font-weight: 600;
  letter-spacing: -0.04em;
}

.apple-pay-logo {
  display: block;
  width: 19px;
  height: 25px;
  fill: currentColor;
  flex: 0 0 auto;
}

@supports (-webkit-appearance: -apple-pay-button) {
  .apple-pay-button {
    -webkit-appearance: -apple-pay-button;
    -apple-pay-button-type: buy;
    -apple-pay-button-style: black;
  }

  .apple-pay-fallback { visibility: hidden; }
}

.bagnote { margin-top: 12px; font-size: 12px; color: var(--stone); text-align: center; min-height: 18px; }

/* accordions */

.acc { margin-top: 34px; border-top: 1px solid var(--hair); }

.acc details { border-bottom: 1px solid var(--hair); }

.acc summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink);
}

.acc summary::-webkit-details-marker { display: none; }

.acc summary::after {
  content: "+";
  color: var(--stone);
  font-size: 15px;
  transition: transform 0.35s var(--ease);
}

.acc details[open] summary::after { transform: rotate(45deg); }

.acc .accbody { padding: 2px 0 20px; color: var(--gray); font-size: 14px; }

.acc .accbody p { margin: 0 0 10px; }

.specs { list-style: none; margin: 0; padding: 0; }

.specs li {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 9px 0;
  font-size: 13px;
}

.specs .k {
  color: var(--stone);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding-top: 2px;
  white-space: nowrap;
}

.specs .v { color: var(--gray); text-align: right; }

/* related */

.related { padding: 66px 0 90px; border-top: 1px solid var(--hair); margin-top: 40px; }

.related .rhead { margin-bottom: 36px; }

.related .trio { padding-bottom: 0; }

/* ---------- prose pages ---------- */

.prosemain { padding-top: 150px; }

.prosehero { max-width: 1240px; margin: 0 auto 60px; padding: 0 40px; }

.prosehero img { width: 100%; display: block; height: 44vh; min-height: 300px; object-fit: cover; }

.prose { max-width: 680px; margin: 0 auto; padding: 0 40px 100px; }

.prose h1 { font-size: clamp(34px, 3.4vw, 46px); font-weight: 450; margin: 0 0 34px; }

.prose h2 {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--gray);
  margin: 44px 0 12px;
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
}

.prose p { color: var(--gray); margin: 0 0 16px; }

.prose .emblem { width: 96px; display: block; margin: 10px auto 36px; }

/* ---------- footer ---------- */

footer { background: var(--bone); border-top: 1px solid var(--hair); }

.footgrid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 48px;
  padding-top: 74px;
  padding-bottom: 60px;
}

.f-news p { color: var(--gray); font-size: 13px; margin: 12px 0 26px; max-width: 34ch; }

.f-news form { display: flex; align-items: flex-end; gap: 18px; max-width: 360px; }

.f-news input {
  flex: 1;
  border: 0;
  border-bottom: 1px solid var(--taupe);
  background: transparent;
  padding: 8px 2px;
  font-family: inherit;
  font-size: 13px;
  color: var(--ink);
  outline: none;
  transition: border-color 0.3s ease;
}

.f-news input:focus { border-color: var(--ink); }

.f-news button {
  border: 0;
  background: none;
  font-family: inherit;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink);
  cursor: pointer;
  padding: 8px 0 8px 2px;
  border-bottom: 1px solid var(--ink);
}

.f-news .oknote { font-size: 12px; color: var(--chocolate); margin-top: 12px; min-height: 16px; }

.f-col .fhead { display: block; color: var(--stone); margin-bottom: 18px; }

.f-col a { display: block; color: var(--gray); font-size: 13px; padding: 5px 0; }

.f-col a:hover { color: var(--ink); }

.footbase {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  border-top: 1px solid var(--hair);
  padding-top: 24px;
  padding-bottom: 30px;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--stone);
}

/* ---------- responsive ---------- */

@media (max-width: 980px) {
  .wrap, .hd, .prosehero, .prose { padding-left: 26px; padding-right: 26px; }
  .herogrid, .feature, .pdp { grid-template-columns: 1fr; gap: 40px; }

  /* PDP gallery becomes a swipeable strip so the buy column
     sits one short scroll away instead of three photos away */
  .pdp { gap: 30px; }

  .gal {
    display: flex;
    gap: 14px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    margin: 0 -26px;
    padding: 0 26px;
  }

  .gal::-webkit-scrollbar { display: none; }

  .gal img,
  .gal > .vidwrap {
    flex: 0 0 85%;
    width: 85%;
    scroll-snap-align: center;
  }

  .galdots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 16px;
  }

  .galdots i {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--hair);
    transition: background 0.3s ease;
  }

  .galdots i.on { background: var(--chocolate); }
  .herogrid { min-height: 0; padding-bottom: 44px; }
  .trio, .dgrid { grid-template-columns: 1fr 1fr; }
  .footgrid { grid-template-columns: 1fr 1fr; }
  .buy { position: static; }
  .hd nav { gap: 16px; }
  .hd nav.left span.hidesm, .hd nav.right span.hidesm { display: none; }
}

@media (max-width: 620px) {
  .trio, .dgrid { grid-template-columns: 1fr; }
  .footgrid { grid-template-columns: 1fr; gap: 34px; }
  .wordmark { font-size: 18px; }
  .hd { padding: 18px 20px; }
  .caps { font-size: 10px; }
  .purchase-actions { grid-template-columns: 1fr; }
}

/* ---------- reduced motion ---------- */

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  body { animation: none; }
  .heroimg { transition: none; animation: none; }
  .heroprog i { animation: none; transform: none; }
  .mq { animation: none; }
  #bagDrawer, #bagOverlay, .bd-meter i { transition: none; }
  .vidwrap video { transition: none; }
  .card .ph img.b, .card .ph img.a { transition: none; }
  html.js [data-reveal] { opacity: 1; transform: none; transition: none; }
  html.js .brandstrip p, html.js .brandstrip img.emblem { opacity: 1; transform: none; transition: none; }
  #loader { display: none; }
}
