/* =========================================================================
   Luxury Lifestyle — More than just style
   Deep black, warm gold, ivory. Mobile-first, conversion-first.
   ========================================================================= */

:root {
  --ink: #08080a;
  --ink-1: #0d0d10;
  --ink-2: #131317;
  --ink-3: #1b1b20;
  --tile: linear-gradient(180deg, #faf7f1 0%, #ece5d8 100%);

  --gold: #d4af37;
  --gold-lite: #f0dfa8;
  --gold-deep: #a8862a;
  --gold-ink: #8a6a1c;
  --gold-line: rgba(212, 175, 55, .22);
  --gold-glow: rgba(212, 175, 55, .10);

  --ivory: #f4efe6;
  --muted: #9d988f;
  --muted-2: #6f6b64;
  --danger: #e2685f;
  --ok: #7fbf7a;

  --serif: 'Cormorant Garamond', Didot, Georgia, 'Times New Roman', serif;
  --sans: 'Jost', Futura, 'Century Gothic', 'Segoe UI', system-ui, sans-serif;

  --pad: clamp(18px, 5vw, 64px);
  --maxw: 1400px;
  --r: 2px;

  --ease: cubic-bezier(.22, .61, .36, 1);
  --slow: .7s var(--ease);
  --med: .4s var(--ease);
  --fast: .2s var(--ease);

  --head-h: 62px;
}

* { box-sizing: border-box; }

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

body {
  margin: 0;
  background: var(--ink);
  color: var(--ivory);
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 300;
  line-height: 1.65;
  letter-spacing: .012em;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.locked { overflow: hidden; }

img { max-width: 100%; display: block; }
.mark-img { width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; color: inherit; }
button { cursor: pointer; background: none; border: 0; padding: 0; }

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

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

.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding-inline: var(--pad); }
.sr { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }

.skip {
  position: fixed; top: -60px; left: 12px; z-index: 300;
  background: var(--gold); color: var(--ink); padding: 10px 18px; font-weight: 500;
  transition: top var(--fast);
}
.skip:focus { top: 12px; }

/* --------------------------------------------------------------- type --- */

h1, h2, h3, h4 { font-family: var(--serif); font-weight: 500; line-height: 1.08; margin: 0; letter-spacing: .005em; }

.display {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(2.6rem, 12vw, 7.5rem);
  line-height: .95;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.h1 { font-size: clamp(2rem, 6vw, 3.4rem); }
.h2 { font-size: clamp(1.7rem, 4.6vw, 2.9rem); }
.h3 { font-size: clamp(1.25rem, 3vw, 1.7rem); }

.eyebrow {
  font-family: var(--sans);
  font-size: 10.5px;
  font-weight: 400;
  letter-spacing: .32em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 14px;
}

.lede { color: var(--muted); font-size: clamp(.95rem, 2.4vw, 1.05rem); max-width: 56ch; }

.gold { color: var(--gold); }
.muted { color: var(--muted); }

.gold-text {
  background: linear-gradient(100deg, #9c7b21 0%, #f2e2ae 22%, #c9a227 46%, #f8edc6 72%, #96761f 100%);
  background-size: 200% 100%;
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
  animation: shimmer 9s linear infinite;
}
@keyframes shimmer { to { background-position: 200% 0; } }

.rule {
  height: 1px; border: 0; margin: 0;
  background: linear-gradient(90deg, transparent, var(--gold-line) 18%, var(--gold-line) 82%, transparent);
}

/* ------------------------------------------------------------ buttons --- */

.btn {
  --bg: transparent; --fg: var(--ivory); --bd: rgba(244,239,230,.32);
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 48px; padding: 0 26px;
  background: var(--bg); color: var(--fg);
  border: 1px solid var(--bd); border-radius: var(--r);
  font-size: 11.5px; font-weight: 400; letter-spacing: .22em; text-transform: uppercase;
  position: relative; overflow: hidden;
  transition: color var(--med), border-color var(--med), background var(--med), transform var(--fast);
}
.btn::after {
  content: ''; position: absolute; inset: 0; z-index: -1;
  background: var(--gold); transform: translateY(101%);
  transition: transform var(--med);
}
.btn:hover { border-color: var(--gold); color: var(--gold); }
.btn:active { transform: translateY(1px); }

.btn-gold {
  --bg: linear-gradient(100deg, #c9a227, #f0dfa8 45%, #c9a227);
  --fg: #0b0b0c; --bd: transparent;
  background-size: 220% 100%;
  font-weight: 500;
  transition: background-position .8s var(--ease), transform var(--fast), box-shadow var(--med);
  box-shadow: 0 0 0 rgba(212,175,55,0);
}
.btn-gold:hover { background-position: 100% 0; color: #0b0b0c; box-shadow: 0 8px 30px -10px rgba(212,175,55,.55); }

.btn-ghost { --bd: var(--gold-line); --fg: var(--gold); }
.btn-ghost:hover { background: rgba(212,175,55,.07); }

.btn-block { width: 100%; }
.btn-sm { min-height: 40px; padding: 0 18px; font-size: 10.5px; }
.btn[disabled], .btn[aria-disabled="true"] { opacity: .45; pointer-events: none; }

.link-u {
  font-size: 11px; letter-spacing: .2em; text-transform: uppercase; color: var(--gold);
  border-bottom: 1px solid var(--gold-line); padding-bottom: 3px;
  transition: border-color var(--med);
}
.link-u:hover { border-color: var(--gold); }

/* --------------------------------------------------------------- head --- */

.announce {
  background: linear-gradient(90deg, #100f0c, #1c1810 50%, #100f0c);
  color: var(--gold-lite);
  font-size: 10.5px; letter-spacing: .2em; text-transform: uppercase;
  text-align: center; padding: 9px 44px 8px; position: relative; z-index: 60;
  border-bottom: 1px solid rgba(212,175,55,.12);
}
.announce:empty, .announce[hidden] { display: none; }

.header {
  position: sticky; top: 0; z-index: 90;
  background: rgba(8,8,10,.86);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--med), background var(--med);
}
.header.stuck { border-bottom-color: var(--gold-line); background: rgba(8,8,10,.96); }

.headbar {
  display: flex; align-items: center; gap: 10px;
  height: var(--head-h);
  max-width: var(--maxw); margin: 0 auto; padding-inline: var(--pad);
}

.icon-btn {
  width: 40px; height: 40px; display: grid; place-items: center;
  color: var(--ivory); border-radius: 50%; position: relative; flex: none;
  transition: color var(--fast), background var(--fast);
}
.icon-btn:hover { color: var(--gold); background: rgba(212,175,55,.08); }
.icon-btn svg { width: 20px; height: 20px; }
.wish-link { display: none; }

.brand { display: flex; align-items: center; gap: 9px; margin-inline: auto; min-width: 0; }
.brand img { width: 26px; height: 26px; flex: none; }
.brand-name {
  font-family: var(--serif); font-size: 12.5px; font-weight: 600;
  letter-spacing: .16em; text-transform: uppercase; line-height: 1; white-space: nowrap;
}
@media (min-width: 430px) { .brand-name { font-size: 14px; letter-spacing: .2em; } .brand img { width: 28px; height: 28px; } }
.brand-sub {
  display: none; font-size: 8px; letter-spacing: .35em; color: var(--muted-2);
  text-transform: uppercase; margin-top: 4px;
}

.count {
  position: absolute; top: 4px; right: 3px;
  min-width: 17px; height: 17px; padding: 0 4px;
  background: var(--gold); color: var(--ink);
  border-radius: 9px; font-size: 10px; font-weight: 500; line-height: 17px;
  text-align: center; letter-spacing: 0;
  transform: scale(0); transition: transform .3s var(--ease);
}
.count.on { transform: scale(1); }

.nav { display: none; }

@media (min-width: 1000px) {
  :root { --head-h: 74px; }
  .headbar { gap: 20px; }
  .brand { margin-inline: 0; }
  .brand img { width: 36px; height: 36px; }
  .brand-name { font-size: 17px; letter-spacing: .3em; }
  .brand-sub { display: block; }
  .icon-btn { width: 42px; height: 42px; }
  .wish-link { display: grid; }
  .nav-toggle { display: none; }
  .nav { display: flex; align-items: center; gap: 4px; margin-inline: auto; }
  .nav > li { position: relative; }
  .navlink {
    display: block; padding: 10px 15px;
    font-size: 11px; letter-spacing: .2em; text-transform: uppercase; color: var(--ivory);
    position: relative; transition: color var(--med);
  }
  .navlink::after {
    content: ''; position: absolute; left: 15px; right: 15px; bottom: 4px; height: 1px;
    background: var(--gold); transform: scaleX(0); transform-origin: left;
    transition: transform var(--med);
  }
  .navlink:hover, .navlink[aria-current="true"] { color: var(--gold); }
  .navlink:hover::after, .navlink[aria-current="true"]::after { transform: scaleX(1); }

  .subnav {
    position: absolute; top: 100%; left: 50%; transform: translate(-50%, 8px);
    min-width: 210px; padding: 10px 0; margin: 0; list-style: none;
    background: rgba(13,13,16,.98); border: 1px solid var(--gold-line);
    backdrop-filter: blur(14px);
    opacity: 0; visibility: hidden; pointer-events: none;
    transition: opacity var(--med), transform var(--med), visibility var(--med);
  }
  .nav > li:hover .subnav, .nav > li:focus-within .subnav {
    opacity: 1; visibility: visible; pointer-events: auto; transform: translate(-50%, 0);
  }
  .subnav a {
    display: block; padding: 9px 22px; font-size: 12px; letter-spacing: .08em; color: var(--muted);
    transition: color var(--fast), background var(--fast), padding-left var(--fast);
  }
  .subnav a:hover { color: var(--gold); background: rgba(212,175,55,.06); padding-left: 27px; }
}

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

.scrim {
  position: fixed; inset: 0; z-index: 110;
  background: rgba(4,4,6,.78);
  opacity: 0; visibility: hidden; transition: opacity var(--med), visibility var(--med);
}
.scrim.on { opacity: 1; visibility: visible; }

.panel {
  position: fixed; top: 0; bottom: 0; z-index: 120;
  width: min(420px, 90vw);
  background: var(--ink-1); border-left: 1px solid var(--gold-line);
  display: flex; flex-direction: column;
  transform: translateX(100%); transition: transform .45s var(--ease);
  visibility: hidden;
}
.panel.left { left: 0; right: auto; border-left: 0; border-right: 1px solid var(--gold-line); transform: translateX(-100%); }
.panel.right { right: 0; }
.panel.on { transform: none; visibility: visible; }

.panel-head {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  padding: 18px 20px; border-bottom: 1px solid var(--gold-line); flex: none;
}
.panel-title { font-size: 11px; letter-spacing: .28em; text-transform: uppercase; color: var(--gold); }
.panel-body { flex: 1; overflow-y: auto; overscroll-behavior: contain; scrollbar-width: thin; scrollbar-color: rgba(212,175,55,.4) transparent; }
.panel-foot { flex: none; padding: 18px 20px 22px; border-top: 1px solid var(--gold-line); background: var(--ink-2); }

.mnav { list-style: none; margin: 0; padding: 8px 0 24px; }
.mnav li { border-bottom: 1px solid rgba(255,255,255,.05); }
.mnav > li > a, .mnav > li > button {
  display: flex; align-items: center; justify-content: space-between; width: 100%;
  padding: 16px 20px; font-family: var(--serif); font-size: 20px; letter-spacing: .05em;
  text-align: left; color: var(--ivory);
}
.mnav > li > button svg { width: 15px; height: 15px; color: var(--gold); transition: transform var(--med); }
.mnav > li.open > button svg { transform: rotate(180deg); }
.msub { list-style: none; margin: 0; padding: 0; max-height: 0; overflow: hidden; transition: max-height var(--med); background: rgba(0,0,0,.28); }
.mnav > li.open .msub { max-height: 340px; }
.mcount {
  display: inline-grid; place-items: center; min-width: 22px; height: 22px; padding: 0 6px;
  border: 1px solid var(--gold-line); border-radius: 11px;
  font-family: var(--sans); font-size: 11px; letter-spacing: 0; color: var(--gold);
}
.msub a { display: block; padding: 12px 20px 12px 34px; font-size: 13px; color: var(--muted); letter-spacing: .06em; }
.msub a:hover { color: var(--gold); }
.mnav li:last-child { border-bottom: 0; }

/* ------------------------------------------------------------- search --- */

.search-wrap {
  position: fixed; inset: 0; z-index: 130;
  /* Opaque already — a full-screen backdrop-filter here buys nothing and
     costs real frames on low-end phones. */
  background: #08080a;
  opacity: 0; visibility: hidden; transition: opacity var(--med), visibility var(--med);
  display: flex; flex-direction: column;
}
.search-wrap.on { opacity: 1; visibility: visible; }
.search-top { display: flex; align-items: center; gap: 12px; padding: 16px var(--pad); border-bottom: 1px solid var(--gold-line); }
/* Specific enough to beat the shared input styling further down the file. */
.search-top input[type="search"] {
  flex: 1; min-width: 0; background: none; border: 0; border-radius: 0; padding: 12px 0;
  font-family: var(--serif); font-size: clamp(1.4rem, 5vw, 2.2rem); font-weight: 400;
  letter-spacing: .02em; color: var(--ivory); -webkit-appearance: none; appearance: none;
}
.search-top input[type="search"]::placeholder { color: var(--muted-2); }
.search-top input[type="search"]:focus { outline: none; background: none; border: 0; }
.search-top input[type="search"]::-webkit-search-cancel-button { -webkit-appearance: none; }
.search-results { flex: 1; overflow-y: auto; padding: 18px var(--pad) 60px; }
.sr-item {
  display: flex; align-items: center; gap: 16px; padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,.05);
  transition: padding-left var(--fast);
}
.sr-item:hover { padding-left: 8px; }
.sr-thumb { width: 58px; height: 58px; flex: none; background: var(--tile); border-radius: var(--r); overflow: hidden; }
.sr-thumb img { width: 100%; height: 100%; object-fit: contain; padding: 5px; }
.sr-item > span { min-width: 0; }
.sr-name { display: block; font-family: var(--serif); font-size: 18px; line-height: 1.25; }
.sr-meta { display: block; font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: var(--muted-2); margin-top: 3px; }
.sr-price { margin-left: auto; color: var(--gold); font-size: 14px; white-space: nowrap; }
.sr-hint { color: var(--muted-2); font-size: 12px; letter-spacing: .18em; text-transform: uppercase; }

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

.hero {
  position: relative; min-height: min(92svh, 860px);
  display: grid; place-items: center; text-align: center;
  padding: 68px var(--pad) 96px; overflow: hidden;
  background:
    radial-gradient(90% 58% at 50% 8%, rgba(212,175,55,.13), transparent 62%),
    radial-gradient(70% 50% at 50% 100%, rgba(212,175,55,.06), transparent 70%),
    var(--ink);
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(212,175,55,.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(212,175,55,.055) 1px, transparent 1px);
  background-size: 78px 78px;
  -webkit-mask-image: radial-gradient(74% 62% at 50% 42%, #000 20%, transparent 100%);
  mask-image: radial-gradient(74% 62% at 50% 42%, #000 20%, transparent 100%);
  opacity: .8;
}
.hero::after {
  content: ''; position: absolute; left: 50%; top: 0; width: 1px; height: 100%;
  background: linear-gradient(180deg, transparent, var(--gold-line) 30%, var(--gold-line) 70%, transparent);
  opacity: .5;
}
.hero-in { position: relative; z-index: 2; max-width: 980px; }
.hero-mark { width: clamp(88px, 22vw, 136px); margin: 0 auto 26px; animation: floatY 7s ease-in-out infinite; }
.hero-mark img { width: 100%; height: auto; }
@keyframes floatY { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-9px); } }

.hero-title { margin: 0; }
.hero-title span { display: block; }
.hero-title .l2 { font-size: clamp(1.5rem, 6.4vw, 3.9rem); letter-spacing: .34em; margin-top: clamp(4px, 1.4vw, 12px); text-indent: .34em; }

.hero-tag {
  margin: 26px 0 0; font-size: 11px; letter-spacing: .42em; text-transform: uppercase; color: var(--gold-lite);
}
.hero-cats {
  margin: 12px 0 0; font-size: 10px; letter-spacing: .3em; text-transform: uppercase; color: var(--muted-2);
}
.hero-cta { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; margin-top: 36px; }
.hero-cta .btn { min-width: 180px; }

.hero-scroll {
  position: absolute; bottom: 20px; left: 50%; transform: translateX(-50%); z-index: 3;
  font-size: 9px; letter-spacing: .3em; text-transform: uppercase; color: var(--muted-2);
  display: grid; justify-items: center; gap: 8px;
}
.hero-scroll i { display: block; width: 1px; height: 34px; background: linear-gradient(var(--gold), transparent); animation: drop 2.4s var(--ease) infinite; }
@keyframes drop { 0% { transform: scaleY(0); transform-origin: top; } 50% { transform: scaleY(1); transform-origin: top; } 51% { transform-origin: bottom; } 100% { transform: scaleY(0); transform-origin: bottom; } }

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

.marquee {
  border-block: 1px solid var(--gold-line); background: var(--ink-1);
  overflow: hidden; padding: 13px 0; display: flex;
}
.marquee div { display: flex; gap: 40px; padding-right: 40px; animation: slide 34s linear infinite; flex: none; }
.marquee span { font-size: 10.5px; letter-spacing: .32em; text-transform: uppercase; color: var(--gold-deep); white-space: nowrap; }
.marquee span b { color: var(--gold-lite); font-weight: 400; }
@keyframes slide { to { transform: translateX(-100%); } }

/* ------------------------------------------------------------ section --- */

.section { padding: clamp(56px, 9vw, 116px) 0; position: relative; }
.section-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 20px; margin-bottom: clamp(24px, 4vw, 44px); }
.section-head h2 { flex: 1; }
.section-head .link-u { flex: none; padding-bottom: 6px; white-space: nowrap; }
.center { text-align: center; }
.center .section-head { flex-direction: column; align-items: center; }

/* ---------------------------------------------------------- cat tiles --- */

.cat-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }
@media (min-width: 760px) {
  .cat-grid { grid-template-columns: repeat(auto-fit, minmax(220px, 330px)); justify-content: center; gap: 16px; }
}

.cat-tile {
  position: relative; display: block; aspect-ratio: 3 / 4;
  border: 1px solid rgba(212,175,55,.28); overflow: hidden;
  background:
    radial-gradient(88% 62% at 22% 104%, rgba(212,175,55,.20), transparent 60%),
    radial-gradient(70% 46% at 84% -6%, rgba(212,175,55,.10), transparent 62%),
    linear-gradient(168deg, #20202a 0%, #121217 46%, #08080b 100%);
  transition: border-color var(--med), transform var(--med), box-shadow var(--med);
}
.cat-tile > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .5; transition: transform 1s var(--ease), opacity var(--med); }
.cat-tile .mark {
  position: absolute; left: 50%; top: 40%; width: 76%;
  transform: translate(-50%, -50%); opacity: .2;
  transition: opacity var(--med), transform var(--med);
}
.cat-tile:hover { border-color: rgba(212,175,55,.65); box-shadow: 0 18px 44px -24px rgba(212,175,55,.5); }
.cat-tile:hover > img { transform: scale(1.07); opacity: .62; }
.cat-tile:hover .mark { opacity: .26; transform: translate(-50%, -54%) scale(1.04); }
.cat-in {
  position: absolute; inset: auto 0 0 0; padding: 16px 15px 17px; z-index: 2;
  background: linear-gradient(transparent, rgba(5,5,7,.55) 34%, rgba(5,5,7,.94));
}
.cat-in i { display: block; width: 26px; height: 1px; background: var(--gold); margin-bottom: 11px; transition: width var(--med); }
.cat-tile:hover .cat-in i { width: 46px; }
.cat-in h3 { font-size: clamp(1.05rem, 3.6vw, 1.55rem); letter-spacing: .03em; line-height: 1.12; }
.cat-in em {
  display: flex; align-items: center; gap: 7px; font-style: normal; font-size: 9.5px;
  letter-spacing: .22em; text-transform: uppercase; color: var(--gold); margin-top: 8px;
}
.cat-in em::after { content: '\2192'; letter-spacing: 0; transition: transform var(--med); }
.cat-tile:hover .cat-in em::after { transform: translateX(4px); }
.cat-tile::after {
  content: ''; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(200deg, transparent 40%, rgba(212,175,55,.16) 50%, transparent 60%);
  transform: translateX(-120%); transition: transform .9s var(--ease);
}
.cat-tile:hover::after { transform: translateX(120%); }

/* ----------------------------------------------------------- products --- */

.p-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(10px, 2.4vw, 26px) clamp(8px, 1.8vw, 20px); }
@media (min-width: 720px) { .p-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1100px) { .p-grid { grid-template-columns: repeat(4, 1fr); } }
.p-grid.wide { grid-template-columns: repeat(2, 1fr); }
@media (min-width: 900px) { .p-grid.wide { grid-template-columns: repeat(3, 1fr); } }

.rail {
  display: grid; grid-auto-flow: column; grid-auto-columns: 63%;
  gap: 12px; overflow-x: auto; scroll-snap-type: x proximity;
  padding-bottom: 8px; margin-inline: calc(var(--pad) * -1); padding-inline: var(--pad);
  scrollbar-width: none;
}
.rail::-webkit-scrollbar { display: none; }
.rail > * { scroll-snap-align: start; }
@media (min-width: 720px) { .rail { grid-auto-columns: 32%; gap: 18px; } }
@media (min-width: 1100px) {
  .rail { grid-auto-flow: row; grid-template-columns: repeat(4, 1fr); grid-auto-columns: auto; overflow: visible; margin-inline: 0; padding-inline: 0; gap: 26px 20px; }
}

.card { position: relative; display: flex; flex-direction: column; }
.card-media {
  position: relative; display: block; aspect-ratio: 1 / 1; overflow: hidden;
  background: var(--tile); border: 1px solid rgba(212,175,55,.14); border-radius: var(--r);
  transition: border-color var(--med);
}
.card-media > img {
  width: 100%; height: 100%; object-fit: contain; padding: 9%;
  transition: transform .8s var(--ease), opacity var(--med);
}
.card-media .ph { position: absolute; inset: 0; display: grid; place-items: center; }
.card-media .ph img { width: 44%; height: auto; padding: 0; opacity: .2; }
.card:hover .card-media { border-color: rgba(212,175,55,.45); }
.card:hover .card-media > img { transform: scale(1.06); }
.card-media img.alt { position: absolute; inset: 0; opacity: 0; }
.card:hover .card-media img.alt { opacity: 1; }

.flags { position: absolute; top: 9px; left: 9px; z-index: 3; display: grid; gap: 5px; justify-items: start; }
.flag {
  font-size: 8.5px; letter-spacing: .16em; text-transform: uppercase;
  padding: 4px 8px; border-radius: 1px; background: rgba(8,8,10,.86); color: var(--gold-lite);
  border: 1px solid var(--gold-line);
}
.flag.promo { background: var(--gold); color: var(--ink); border-color: transparent; font-weight: 500; }
.flag.out { background: rgba(8,8,10,.9); color: var(--muted); }

.wish {
  position: absolute; top: 7px; right: 7px; z-index: 3;
  width: 34px; height: 34px; display: grid; place-items: center;
  background: rgba(8,8,10,.7); border-radius: 50%; color: var(--ivory);
  backdrop-filter: blur(4px);
  transition: color var(--fast), transform var(--fast), background var(--fast);
}
.wish svg { width: 16px; height: 16px; }
.wish:hover { color: var(--gold); transform: scale(1.1); }
.wish.on { color: var(--gold); }
.wish.on svg { fill: var(--gold); }

.quick {
  position: absolute; left: 8px; right: 8px; bottom: 8px; z-index: 3;
  opacity: 0; transform: translateY(8px);
  transition: opacity var(--med), transform var(--med);
}
@media (hover: hover) and (min-width: 900px) {
  .card:hover .quick { opacity: 1; transform: none; }
}
@media (hover: none), (max-width: 899px) { .quick { display: none; } }

.card-body { padding: 13px 2px 0; display: flex; flex-direction: column; gap: 5px; flex: 1; }
.card-brand { font-size: 9.5px; letter-spacing: .24em; text-transform: uppercase; color: var(--muted-2); }
.card-name { font-family: var(--serif); font-size: clamp(1rem, 3vw, 1.18rem); line-height: 1.22; letter-spacing: .01em; }
.card a.card-name:hover { color: var(--gold); }
.card-foot { margin-top: auto; padding-top: 6px; display: flex; align-items: baseline; gap: 9px; flex-wrap: wrap; }

.price { color: var(--gold); font-size: 15px; letter-spacing: .04em; }
.was { color: var(--muted-2); font-size: 12.5px; text-decoration: line-through; }
.save { font-size: 9.5px; letter-spacing: .14em; text-transform: uppercase; color: var(--gold-lite); }
.stock-low { font-size: 10px; letter-spacing: .16em; text-transform: uppercase; color: #e0a94a; }
.stock-out { font-size: 10px; letter-spacing: .16em; text-transform: uppercase; color: var(--muted-2); }

.stars { display: inline-flex; gap: 2px; color: var(--gold); }
.stars svg { width: 12px; height: 12px; }
.stars .off { color: rgba(212,175,55,.25); }

/* ----------------------------------------------------------- skeleton --- */

.skel { background: linear-gradient(90deg, #131317 25%, #1e1e24 37%, #131317 63%); background-size: 400% 100%; animation: sk 1.5s linear infinite; border-radius: var(--r); }
@keyframes sk { to { background-position: -135% 0; } }
.skel-media { aspect-ratio: 1/1; }
.skel-line { height: 10px; margin-top: 10px; }
.skel-line.s { width: 45%; }

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

.editorial {
  border-block: 1px solid var(--gold-line);
  background: radial-gradient(80% 120% at 20% 0%, rgba(212,175,55,.08), transparent 60%), var(--ink-1);
}
.ed-grid { display: grid; gap: 32px; align-items: center; padding: clamp(48px, 8vw, 96px) 0; }
@media (min-width: 900px) { .ed-grid { grid-template-columns: 1.1fr 1fr; gap: 64px; } }
.ed-quote { font-family: var(--serif); font-size: clamp(1.7rem, 5vw, 3rem); line-height: 1.18; letter-spacing: .01em; }
.ed-quote b { font-weight: 600; color: var(--gold); }
.ed-points { list-style: none; margin: 0; padding: 0; display: grid; gap: 20px; }
.ed-points li { display: grid; grid-template-columns: 30px 1fr; gap: 14px; align-items: start; }
.ed-points .n { font-family: var(--serif); font-size: 20px; color: var(--gold); line-height: 1.2; }
.ed-points h4 { font-family: var(--sans); font-size: 11px; letter-spacing: .22em; text-transform: uppercase; color: var(--ivory); font-weight: 400; margin-bottom: 5px; }
.ed-points p { margin: 0; color: var(--muted); font-size: 13.5px; }

/* ----------------------------------------------------------- reviews --- */

.rev-rail { display: grid; grid-auto-flow: column; grid-auto-columns: 82%; gap: 12px; overflow-x: auto; scroll-snap-type: x proximity; scrollbar-width: none; margin-inline: calc(var(--pad) * -1); padding: 0 var(--pad) 8px; }
.rev-rail::-webkit-scrollbar { display: none; }
@media (min-width: 760px) { .rev-rail { grid-auto-flow: row; grid-template-columns: repeat(3, 1fr); grid-auto-columns: auto; overflow: visible; margin-inline: 0; padding-inline: 0; gap: 18px; } }
.rev {
  scroll-snap-align: start; text-align: left; padding: 26px 22px; border: 1px solid var(--gold-line);
  background: linear-gradient(180deg, var(--ink-2), var(--ink-1)); display: flex; flex-direction: column; gap: 12px;
}
.rev q { font-family: var(--serif); font-size: 1.14rem; line-height: 1.5; quotes: '\201C' '\201D'; }
.rev footer { margin-top: auto; font-size: 10px; letter-spacing: .2em; text-transform: uppercase; color: var(--muted-2); }

/* ------------------------------------------------------------ signup --- */

.signup { border-top: 1px solid var(--gold-line); background: radial-gradient(70% 140% at 50% 0%, rgba(212,175,55,.10), transparent 62%), var(--ink); }
.signup-in { max-width: 640px; margin: 0 auto; text-align: center; padding: clamp(50px, 8vw, 92px) 0; }
.signup form { display: grid; gap: 10px; margin-top: 26px; }
@media (min-width: 620px) { .signup form { grid-template-columns: 1fr 1.3fr auto; } }

/* ------------------------------------------------------------- forms --- */

.field { display: grid; gap: 7px; }
.field > label, .lbl { font-size: 10px; letter-spacing: .24em; text-transform: uppercase; color: var(--muted); }
.field .req { color: var(--gold); }
input[type=text], input[type=tel], input[type=email], input[type=search], input[type=number], select, textarea {
  width: 100%; min-height: 48px; padding: 12px 15px;
  background: var(--ink-2); border: 1px solid rgba(255,255,255,.1); border-radius: var(--r);
  color: var(--ivory); font-size: 15px; font-weight: 300;
  transition: border-color var(--fast), background var(--fast);
}
textarea { min-height: 108px; resize: vertical; line-height: 1.6; }
input::placeholder, textarea::placeholder { color: var(--muted-2); }
input:focus, select:focus, textarea:focus { outline: none; border-color: var(--gold); background: var(--ink-3); }
input[aria-invalid="true"], textarea[aria-invalid="true"] { border-color: var(--danger); }
select {
  appearance: none;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23d4af37' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 12px center; background-size: 16px;
  padding-right: 38px;
}
.err { color: var(--danger); font-size: 12px; letter-spacing: .04em; min-height: 0; }
.err:empty { display: none; }

.choice { display: grid; gap: 9px; }
.opt {
  display: flex; gap: 13px; align-items: flex-start; padding: 15px 16px;
  border: 1px solid rgba(255,255,255,.1); border-radius: var(--r); cursor: pointer;
  transition: border-color var(--fast), background var(--fast);
}
.opt:hover { border-color: rgba(212,175,55,.42); }
.opt input { margin: 3px 0 0; accent-color: var(--gold); width: 17px; height: 17px; flex: none; }
.opt:has(input:checked) { border-color: var(--gold); background: rgba(212,175,55,.06); }
.opt b { font-weight: 400; font-size: 14px; letter-spacing: .06em; }
.opt span { display: block; color: var(--muted); font-size: 12.5px; margin-top: 3px; }

/* -------------------------------------------------------------- shop --- */

.shop-head { padding: clamp(28px, 5vw, 56px) 0 22px; border-bottom: 1px solid var(--gold-line); }
.crumbs { font-size: 10px; letter-spacing: .2em; text-transform: uppercase; color: var(--muted-2); margin-bottom: 14px; }
.crumbs a:hover { color: var(--gold); }
.crumbs span { margin: 0 7px; opacity: .5; }

.shop-bar { display: flex; align-items: center; gap: 12px; padding: 14px 0; position: sticky; top: var(--head-h); z-index: 55; background: #08080a; border-bottom: 1px solid var(--gold-line); }
.shop-count { font-size: 10.5px; letter-spacing: .18em; text-transform: uppercase; color: var(--muted); margin-right: auto; }
.shop-bar select { min-height: 40px; width: auto; min-width: 150px; font-size: 12px; padding: 8px 34px 8px 12px; }

.shop-grid { display: grid; gap: 34px; padding: 28px 0 clamp(60px, 9vw, 110px); align-items: start; }
@media (min-width: 1000px) { .shop-grid { grid-template-columns: 234px 1fr; gap: 46px; } }

.filters {
  display: grid; gap: 26px; align-content: start;
  scrollbar-width: thin; scrollbar-color: rgba(212,175,55,.4) transparent;
}
@media (min-width: 1000px) { .filters { position: sticky; top: calc(var(--head-h) + 64px); max-height: calc(100svh - var(--head-h) - 90px); overflow-y: auto; padding-right: 6px; } }
.fgroup > h4 { font-family: var(--sans); font-size: 10px; letter-spacing: .24em; text-transform: uppercase; color: var(--gold); font-weight: 400; margin-bottom: 13px; }
.fopts { display: grid; gap: 9px; }
.fopt { display: flex; align-items: center; gap: 10px; font-size: 13.5px; color: var(--muted); cursor: pointer; }
.fopt input { accent-color: var(--gold); width: 16px; height: 16px; flex: none; }
.fopt:hover { color: var(--ivory); }
.fopt.on { color: var(--ivory); }
.fopt em { font-style: normal; color: var(--muted-2); font-size: 11px; margin-left: auto; }
.frange { display: flex; align-items: center; gap: 9px; }
.frange input { flex: 1 1 0; min-width: 0; min-height: 42px; padding: 8px 10px; font-size: 13px; }
.frange span { color: var(--muted-2); }

.filter-sheet-btn { display: inline-flex; }
@media (min-width: 1000px) {
  .filter-sheet-btn { display: none; }
  .filters-wrap { display: block !important; }
  .fs-head, .fs-foot { display: none; }
}
@media (max-width: 999px) {
  .filters-wrap {
    position: fixed; inset: auto 0 0 0; z-index: 120; display: none;
    background: var(--ink-1); border-top: 1px solid var(--gold-line);
    max-height: 82svh; border-radius: 10px 10px 0 0;
    padding: 0 20px env(safe-area-inset-bottom);
    animation: up .35s var(--ease);
  }
  .filters-wrap.on { display: flex; flex-direction: column; }
  .filters-wrap .fs-head { display: flex; align-items: center; justify-content: space-between; padding: 16px 0; border-bottom: 1px solid var(--gold-line); flex: none; }
  .filters-wrap .filters { overflow-y: auto; padding: 22px 10px 22px 0; flex: 1; }
  .filters-wrap .fs-foot { flex: none; padding: 14px 0 20px; border-top: 1px solid var(--gold-line); display: flex; gap: 10px; }
}
@keyframes up { from { transform: translateY(100%); } }
.fs-head strong { font-size: 11px; letter-spacing: .24em; text-transform: uppercase; color: var(--gold); font-weight: 400; }

.chips { display: flex; flex-wrap: wrap; gap: 7px; margin: 0 0 18px; }
.chip {
  display: inline-flex; align-items: center; gap: 7px; padding: 6px 11px;
  border: 1px solid var(--gold-line); border-radius: 30px; font-size: 11px; letter-spacing: .1em; color: var(--gold);
}
.chip svg { width: 11px; height: 11px; }
.chip:hover { background: rgba(212,175,55,.1); }

.empty { text-align: center; padding: 70px 20px; }
.empty svg { width: 62px; opacity: .28; margin: 0 auto 20px; }

/* ----------------------------------------------------------- product --- */

.pdp { display: grid; gap: 32px; padding: clamp(22px, 4vw, 44px) 0 clamp(50px, 8vw, 90px); }
@media (min-width: 900px) { .pdp { grid-template-columns: 1.08fr 1fr; gap: clamp(40px, 5vw, 76px); align-items: start; } }

.gallery { display: grid; gap: 10px; }
@media (min-width: 900px) { .gallery { position: sticky; top: calc(var(--head-h) + 22px); } }
.g-main {
  position: relative; aspect-ratio: 1/1; background: var(--tile);
  border: 1px solid var(--gold-line); border-radius: var(--r); overflow: hidden; cursor: zoom-in;
}
.g-main > img { width: 100%; height: 100%; object-fit: contain; padding: 7%; transition: transform .45s var(--ease); }
.g-main.zoomed { cursor: zoom-out; }
.g-main.zoomed img { transform: scale(2.1); padding: 0; }
.g-main .ph { position: absolute; inset: 0; display: grid; place-items: center; }
.g-main .ph img { width: 40%; height: auto; padding: 0; opacity: .2; }
.g-thumbs { display: flex; gap: 8px; overflow-x: auto; scrollbar-width: none; }
.g-thumbs::-webkit-scrollbar { display: none; }
.g-thumbs button {
  width: 66px; height: 66px; flex: none; background: var(--tile);
  border: 1px solid rgba(212,175,55,.16); border-radius: var(--r); overflow: hidden;
  transition: border-color var(--fast);
}
.g-thumbs button img { width: 100%; height: 100%; object-fit: contain; padding: 6px; }
.g-thumbs button[aria-current="true"] { border-color: var(--gold); }
.g-hint { font-size: 10px; letter-spacing: .18em; text-transform: uppercase; color: var(--muted-2); text-align: center; }

.pdp-brand { font-size: 10px; letter-spacing: .28em; text-transform: uppercase; color: var(--gold); }
.pdp-title { font-size: clamp(1.8rem, 5.4vw, 3rem); margin: 10px 0 0; line-height: 1.06; }
.pdp-rating { display: flex; align-items: center; gap: 9px; margin-top: 14px; font-size: 12px; color: var(--muted); }
.pdp-price { display: flex; align-items: baseline; gap: 12px; flex-wrap: wrap; margin: 20px 0 0; }
.pdp-price .price { font-size: 26px; }
.pdp-price .was { font-size: 16px; }
.pdp-promo-end { font-size: 10.5px; letter-spacing: .16em; text-transform: uppercase; color: var(--gold-lite); margin-top: 6px; }
.pdp-stock {
  display: flex; align-items: center; gap: 8px; margin: 12px 0 0;
  font-size: 10.5px; letter-spacing: .18em; text-transform: uppercase;
}
.pdp-stock::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: currentColor; flex: none; }
.pdp-stock.ok { color: var(--ok); }
.pdp-stock.low { color: #e0a94a; }
.pdp-stock.out { color: var(--muted-2); }
.pdp-short { color: var(--muted); margin: 18px 0 0; font-size: 15px; }

.vgroup { margin-top: 26px; }
.vgroup .lbl { display: flex; justify-content: space-between; margin-bottom: 11px; }
.vopts { display: flex; flex-wrap: wrap; gap: 8px; }
.vopt {
  min-width: 58px; min-height: 44px; padding: 8px 15px;
  border: 1px solid rgba(255,255,255,.14); border-radius: var(--r);
  font-size: 13px; letter-spacing: .06em; color: var(--ivory);
  display: inline-flex; flex-direction: column; align-items: center; justify-content: center; gap: 1px;
  transition: border-color var(--fast), background var(--fast), color var(--fast);
}
.vopt small { font-size: 9.5px; letter-spacing: .08em; color: var(--gold-deep); }
.vopt:hover { border-color: rgba(212,175,55,.5); }
.vopt[aria-pressed="true"] { border-color: var(--gold); background: rgba(212,175,55,.09); color: var(--gold); }
.vopt.sold { opacity: .34; text-decoration: line-through; pointer-events: none; }

.qty-row { display: flex; gap: 10px; align-items: stretch; margin-top: 26px; }
.qty { display: flex; align-items: center; border: 1px solid rgba(255,255,255,.14); border-radius: var(--r); flex: none; }
.qty button { width: 44px; height: 100%; min-height: 50px; display: grid; place-items: center; color: var(--muted); font-size: 18px; transition: color var(--fast); }
.qty button:hover { color: var(--gold); }
.qty span { min-width: 34px; text-align: center; font-size: 15px; }
.qty-row .btn { flex: 1; }

.pdp-actions { display: flex; gap: 10px; margin-top: 10px; }
.pdp-actions .btn { flex: 1; min-width: 0; padding: 0 12px; font-size: 10.5px; letter-spacing: .13em; }

.pdp-meta { margin-top: 26px; display: grid; gap: 2px; border-top: 1px solid var(--gold-line); }
.acc { border-bottom: 1px solid rgba(255,255,255,.07); }
.acc > button { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 14px; padding: 17px 2px; text-align: left; font-size: 11px; letter-spacing: .2em; text-transform: uppercase; color: var(--ivory); }
.acc > button svg { width: 13px; height: 13px; color: var(--gold); transition: transform var(--med); flex: none; }
.acc.open > button svg { transform: rotate(45deg); }
.acc-body { max-height: 0; overflow: hidden; transition: max-height var(--med); color: var(--muted); font-size: 14px; }
.acc.open .acc-body { max-height: 700px; }
.acc-body > div { padding: 0 2px 20px; }
.acc-body ul { margin: 0; padding-left: 18px; }
.acc-body li { margin-bottom: 6px; }

.pdp-trust { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-top: 24px; text-align: center; }
.pdp-trust div { border: 1px solid rgba(255,255,255,.07); padding: 14px 8px; }
.pdp-trust svg { width: 19px; height: 19px; color: var(--gold); margin: 0 auto 8px; }
.pdp-trust b { display: block; font-size: 9.5px; letter-spacing: .16em; text-transform: uppercase; font-weight: 400; color: var(--muted); line-height: 1.5; }

.rev-list { display: grid; gap: 14px; }
.rev-item { border: 1px solid rgba(255,255,255,.07); padding: 18px 20px; background: var(--ink-1); }
.rev-item header { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; margin-bottom: 9px; }
.rev-item b { font-weight: 400; font-size: 13px; letter-spacing: .1em; }
.rev-item time { font-size: 11px; color: var(--muted-2); margin-left: auto; }
.rev-item p { margin: 0; color: var(--muted); font-size: 14px; }

.star-pick { display: flex; gap: 5px; }
.star-pick button { width: 34px; height: 34px; display: grid; place-items: center; color: rgba(212,175,55,.3); transition: color var(--fast), transform var(--fast); }
.star-pick button svg { width: 21px; height: 21px; }
.star-pick button.on { color: var(--gold); }
.star-pick button:hover { transform: scale(1.14); }

/* --------------------------------------------------------------- cart --- */

.cart-line { display: grid; grid-template-columns: 78px 1fr; gap: 14px; padding: 18px 20px; border-bottom: 1px solid rgba(255,255,255,.06); }
.cart-thumb { aspect-ratio: 1/1; background: var(--tile); border-radius: var(--r); overflow: hidden; border: 1px solid rgba(212,175,55,.14); }
.cart-thumb > img { width: 100%; height: 100%; object-fit: contain; padding: 7px; }
.cart-thumb .ph { display: grid; place-items: center; height: 100%; }
.cart-thumb .ph img { width: 56%; height: auto; padding: 0; opacity: .22; }
.cart-info { display: grid; gap: 4px; align-content: start; }
.cart-info .nm { font-family: var(--serif); font-size: 17px; line-height: 1.22; }
.cart-info .vr { font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: var(--muted-2); }
.cart-row2 { display: flex; align-items: center; gap: 12px; margin-top: 7px; }
.qty.sm button { width: 34px; min-height: 36px; font-size: 15px; }
.qty.sm span { min-width: 26px; font-size: 13px; }
.cart-row2 .price { margin-left: auto; font-size: 14px; }
.rm { font-size: 10px; letter-spacing: .16em; text-transform: uppercase; color: var(--muted-2); border-bottom: 1px solid transparent; }
.rm:hover { color: var(--danger); border-bottom-color: currentColor; }

.totals { display: grid; gap: 9px; }
.trow { display: flex; justify-content: space-between; font-size: 13px; color: var(--muted); }
.trow.big { font-size: 17px; color: var(--ivory); padding-top: 11px; border-top: 1px solid var(--gold-line); margin-top: 4px; }
.trow.big b { color: var(--gold); font-weight: 400; font-size: 21px; }
.note { font-size: 11.5px; color: var(--muted-2); letter-spacing: .04em; line-height: 1.6; }

.cart-page { display: grid; gap: 30px; padding: clamp(26px, 4vw, 48px) 0 clamp(60px, 9vw, 100px); }
@media (min-width: 900px) { .cart-page { grid-template-columns: 1fr 380px; gap: 54px; align-items: start; } }
.panelbox { border: 1px solid var(--gold-line); background: var(--ink-1); }
.panelbox > h3 { padding: 18px 20px; border-bottom: 1px solid var(--gold-line); font-family: var(--sans); font-size: 11px; letter-spacing: .24em; text-transform: uppercase; color: var(--gold); font-weight: 400; }
.panelbox .pad { padding: 20px; }
@media (min-width: 900px) { .cart-page .panelbox.sum { position: sticky; top: calc(var(--head-h) + 22px); } }

/* ----------------------------------------------------------- checkout --- */

.checkout { display: grid; gap: 30px; padding: clamp(26px, 4vw, 48px) 0 clamp(60px, 9vw, 100px); }
@media (min-width: 900px) { .checkout { grid-template-columns: 1fr 380px; gap: 54px; align-items: start; } }
.form-grid { display: grid; gap: 17px; }
.form-grid .two { display: grid; gap: 17px; }
@media (min-width: 560px) { .form-grid .two { grid-template-columns: 1fr 1fr; } }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; }

.sumline { display: flex; gap: 12px; padding: 11px 0; border-bottom: 1px solid rgba(255,255,255,.06); align-items: center; }
.sumline:last-of-type { border-bottom: 0; }
.sumline .q { width: 26px; height: 26px; flex: none; display: grid; place-items: center; background: rgba(212,175,55,.12); color: var(--gold); font-size: 11px; border-radius: 50%; }
.sumline .n { flex: 1; font-size: 13px; line-height: 1.4; }
.sumline .n em { display: block; font-style: normal; font-size: 10.5px; letter-spacing: .12em; text-transform: uppercase; color: var(--muted-2); }
.sumline .p { color: var(--gold); font-size: 13px; }

.thanks { text-align: center; padding: clamp(50px, 10vw, 110px) 0; max-width: 680px; margin: 0 auto; }
.thanks .seal { width: 92px; margin: 0 auto 26px; }
.order-id {
  display: inline-block; margin: 20px 0 6px; padding: 13px 28px;
  border: 1px solid var(--gold); font-family: var(--serif); font-size: clamp(1.4rem, 5vw, 2rem);
  letter-spacing: .12em; color: var(--gold);
}
.thanks-lines { text-align: left; margin: 30px auto 0; max-width: 460px; }

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

.page-head { text-align: center; padding: clamp(42px, 8vw, 92px) 0 clamp(20px, 3vw, 34px); }
.page-head p { margin: 16px auto 0; }
.prose { max-width: 66ch; margin: 0 auto; padding-bottom: clamp(56px, 9vw, 100px); }
.prose h3 { font-size: clamp(1.3rem, 3.4vw, 1.8rem); margin: 42px 0 14px; }
.prose p { color: var(--muted); margin: 0 0 16px; }
.prose ul { color: var(--muted); padding-left: 20px; }
.prose li { margin-bottom: 9px; }

.contact-grid { display: grid; gap: 14px; padding-bottom: clamp(56px, 9vw, 100px); }
@media (min-width: 720px) { .contact-grid { grid-template-columns: repeat(3, 1fr); gap: 18px; } }
.ccard { border: 1px solid var(--gold-line); padding: 30px 24px; text-align: center; background: var(--ink-1); transition: border-color var(--med), transform var(--med); }
.ccard:hover { border-color: rgba(212,175,55,.5); transform: translateY(-3px); }
.ccard svg { width: 26px; height: 26px; color: var(--gold); margin: 0 auto 16px; }
.ccard h3 { font-size: 1.25rem; margin-bottom: 8px; }
.ccard p { color: var(--muted); font-size: 13.5px; margin: 0 0 16px; }

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

.footer { border-top: 1px solid var(--gold-line); background: var(--ink-1); padding: clamp(46px, 7vw, 76px) 0 26px; }
.f-grid { display: grid; gap: 38px; }
@media (min-width: 820px) { .f-grid { grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 44px; } }
.f-badge { width: 116px; margin-bottom: 18px; }
.f-about p { color: var(--muted); font-size: 13.5px; max-width: 34ch; margin: 0; }
.f-col h4 { font-family: var(--sans); font-size: 10px; letter-spacing: .26em; text-transform: uppercase; color: var(--gold); font-weight: 400; margin-bottom: 16px; }
.f-col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.f-col a { color: var(--muted); font-size: 13.5px; transition: color var(--fast), padding-left var(--fast); }
.f-col a:hover { color: var(--gold); padding-left: 4px; }
.socials { display: flex; gap: 9px; margin-top: 18px; }
.socials a { width: 40px; height: 40px; display: grid; place-items: center; border: 1px solid var(--gold-line); border-radius: 50%; color: var(--gold); transition: background var(--fast), transform var(--fast); }
.socials a:hover { background: rgba(212,175,55,.12); transform: translateY(-2px); }
.socials svg { width: 17px; height: 17px; }
.f-bottom { margin-top: 42px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.06); display: flex; flex-wrap: wrap; gap: 10px; justify-content: space-between; font-size: 11px; letter-spacing: .1em; color: var(--muted-2); }

/* --------------------------------------------------------- wa button --- */

.wa-float {
  position: fixed; right: 16px; bottom: 16px; z-index: 80;
  width: 54px; height: 54px; border-radius: 50%;
  background: #1f8f4e; color: #fff; display: grid; place-items: center;
  box-shadow: 0 10px 30px -8px rgba(0,0,0,.7);
  transition: transform var(--med), box-shadow var(--med);
}
.wa-float svg { width: 27px; height: 27px; }
.wa-float:hover { transform: scale(1.08); box-shadow: 0 14px 36px -8px rgba(31,143,78,.6); }
@media (min-width: 900px) { .wa-float { right: 26px; bottom: 26px; } }
body.has-bar .wa-float { bottom: 84px; }

.sticky-buy {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 75;
  display: none; gap: 10px; align-items: center;
  padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
  background: #0a0a0d; border-top: 1px solid var(--gold-line);
}
.sticky-buy.on { display: flex; }
.sticky-buy .sp { flex: none; }
.sticky-buy .sp .price { font-size: 16px; }
.sticky-buy .sp em { display: block; font-style: normal; font-size: 9.5px; letter-spacing: .14em; text-transform: uppercase; color: var(--muted-2); }
.sticky-buy .btn { flex: 1; }
@media (min-width: 900px) { .sticky-buy { display: none !important; } }

/* -------------------------------------------------------------- toast --- */

.toasts { position: fixed; left: 50%; bottom: 22px; transform: translateX(-50%); z-index: 200; display: grid; gap: 8px; width: min(420px, calc(100vw - 32px)); pointer-events: none; }
.toast {
  display: flex; align-items: center; gap: 12px;
  background: rgba(16,16,20,.98); border: 1px solid var(--gold-line); border-left: 2px solid var(--gold);
  padding: 13px 17px; font-size: 13px; letter-spacing: .03em;
  animation: toastIn .4s var(--ease); box-shadow: 0 16px 40px -14px rgba(0,0,0,.9);
}
.toast.bad { border-left-color: var(--danger); }
.toast svg { width: 17px; height: 17px; color: var(--gold); flex: none; }
.toast.bad svg { color: var(--danger); }
@keyframes toastIn { from { opacity: 0; transform: translateY(14px); } }

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

/* Reveal only runs when JS has armed it, so content is never stuck invisible. */
html.rv-on .rv { opacity: 0; transform: translateY(22px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
html.rv-on .rv.in { opacity: 1; transform: none; }
.rv-d1 { transition-delay: .09s; } .rv-d2 { transition-delay: .18s; } .rv-d3 { transition-delay: .27s; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
  html.rv-on .rv { opacity: 1; transform: none; }
}
