/* ==========================================================================
   DRAGON SNUS — dragonsnus.com
   Black can, gold ring, silver dragon. Nordic minimalism, Chinese dragon soul.
   No frameworks, no build step, no external requests.
   ========================================================================== */

:root {
  --void:        #09090a;
  --panel:       #101012;
  --panel-2:     #16161a;
  --line:        rgba(255,255,255,.09);
  --line-strong: rgba(255,255,255,.18);

  --bone:        #edeae3;
  --mute:        #8d8b85;
  --dim:         #62615d;

  --gold:        #cfae5e;
  --gold-deep:   #a3822c;
  --gold-glow:   rgba(207,174,94,.16);

  --mint:        #2f9e8a;
  --berry:       #8a6bc4;

  --maxw:        1140px;
  --gut:         clamp(1.15rem, 4vw, 2.5rem);

  --ease:        cubic-bezier(.22,.61,.36,1);
}

/* ------------------------------------------------------------------ reset */

*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }

/* Native controls (select menus, number spinners, scrollbars) follow the page. */
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; color-scheme: dark; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}

body {
  background: var(--void);
  color: var(--bone);
  font: 400 clamp(15px, .35vw + 14px, 16.5px)/1.65 ui-sans-serif, system-ui, -apple-system,
        "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

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

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

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

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

h1, h2, h3, h4 {
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -.028em;
  text-transform: uppercase;
  text-wrap: balance;
}

.eyebrow {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
}
.eyebrow.mute { color: var(--dim); }

.lede  { font-size: clamp(1.02rem, .5vw + .92rem, 1.2rem); color: var(--mute); text-wrap: pretty; }
.small { font-size: .85rem; }
.muted { color: var(--mute); }
.dim   { color: var(--dim); }
.nums  { font-variant-numeric: tabular-nums; }

/* ---------------------------------------------------------------- layout */

.wrap { max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gut); }
.wrap.narrow { max-width: 760px; }

section { padding-block: clamp(3.5rem, 8vw, 6.5rem); }
.rule { border-top: 1px solid var(--line); }

.sec-head { max-width: 660px; margin-bottom: clamp(2rem, 4vw, 3rem); }
.sec-head h2 { font-size: clamp(1.85rem, 4.4vw, 3rem); margin: .55rem 0 .9rem; }

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

.btn {
  --bg: var(--gold); --fg: #0a0a0a; --bd: var(--gold);
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  background: var(--bg); color: var(--fg); border: 1px solid var(--bd);
  padding: .95rem 1.55rem; border-radius: 3px;
  font-size: .82rem; font-weight: 700; letter-spacing: .13em; text-transform: uppercase;
  white-space: nowrap; transition: background .18s var(--ease), color .18s var(--ease),
                                   border-color .18s var(--ease), transform .12s var(--ease);
}
.btn:hover { background: #e0c179; border-color: #e0c179; }
.btn:active { transform: translateY(1px); }

.btn.ghost { --bg: transparent; --fg: var(--bone); --bd: var(--line-strong); }
.btn.ghost:hover { background: rgba(255,255,255,.055); border-color: var(--bone); color: var(--bone); }

.btn.wa { --bg: #1fa855; --fg: #fff; --bd: #1fa855; }
.btn.wa:hover { background: #24c162; border-color: #24c162; }

.btn.block { width: 100%; }
.btn.sm { padding: .68rem 1.1rem; font-size: .74rem; }
.btn[disabled] { opacity: .4; pointer-events: none; }

.btn-row { display: flex; flex-wrap: wrap; gap: .7rem; }

/* ------------------------------------------------------------- age gate */

/* Hide the page until the gate resolves — set by an inline script in <head>
   so there is never a flash of shop content for an under-age visitor. */
html.gate-pending body > *:not(#agegate) { visibility: hidden; }
html.gate-pending, html.gate-pending body { overflow: hidden; }

#agegate {
  position: fixed; inset: 0; z-index: 200;
  display: none; place-items: center;
  background: #060607;
  padding: var(--gut);
}
html.gate-pending #agegate { display: grid; }

.gate-card { max-width: 430px; text-align: center; }
.gate-card .gate-mark { width: 176px; margin: 0 auto 2.1rem; }
.gate-card h1 { font-size: clamp(1.5rem, 5vw, 2rem); margin-bottom: .9rem; }
.gate-card p { color: var(--mute); font-size: .95rem; }
.gate-card .gate-actions { display: grid; gap: .6rem; margin: 2rem 0 1.6rem; }
.gate-card .gate-legal {
  font-size: .74rem; color: var(--dim); line-height: 1.6;
  border-top: 1px solid var(--line); padding-top: 1.2rem;
}
.gate-deny { color: var(--mute); font-size: .9rem; margin-top: 1.4rem; }

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

.hdr {
  position: sticky; top: 0; z-index: 90;
  background: rgba(9,9,10,.82);
  backdrop-filter: blur(14px) saturate(1.3);
  -webkit-backdrop-filter: blur(14px) saturate(1.3);
  border-bottom: 1px solid var(--line);
}
.hdr-in {
  max-width: var(--maxw); margin-inline: auto; padding: .85rem var(--gut);
  display: flex; align-items: center; gap: 1.6rem;
}
.brand { display: flex; align-items: center; gap: .65rem; flex-shrink: 0; }
.brand .mark  { width: 96px; }

.nav { display: flex; gap: .3rem; margin-left: auto; }
.nav a {
  padding: .5rem .8rem; border-radius: 3px;
  font-size: .76rem; font-weight: 600; letter-spacing: .13em; text-transform: uppercase;
  color: var(--mute); transition: color .16s var(--ease), background .16s var(--ease);
}
.nav a:hover, .nav a[aria-current="page"] { color: var(--bone); background: rgba(255,255,255,.055); }

.cart-btn {
  display: inline-flex; align-items: center; gap: .5rem;
  border: 1px solid var(--line-strong); border-radius: 3px; padding: .55rem .85rem;
  font-size: .74rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  transition: border-color .16s var(--ease), background .16s var(--ease);
}
.cart-btn:hover { border-color: var(--gold); background: var(--gold-glow); }
.cart-btn .count {
  display: grid; place-items: center; min-width: 19px; height: 19px; padding: 0 5px;
  background: var(--gold); color: #0a0a0a; border-radius: 99px;
  font-size: .68rem; font-weight: 800; letter-spacing: 0;
}
.cart-btn[data-empty="1"] .count { display: none; }

@media (max-width: 860px) {
  .nav { display: none; }
  .brand .mark { width: 80px; }
  .cart-btn { margin-left: auto; }
}

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

.hero { position: relative; padding-block: clamp(2.5rem, 7vw, 5rem) clamp(3rem, 7vw, 5.5rem); overflow: hidden; }
.hero::before {
  content: ''; position: absolute; z-index: 0;
  width: 900px; height: 900px; right: -14%; top: -34%;
  background: radial-gradient(circle, rgba(47,158,138,.15), transparent 62%);
  pointer-events: none;
}
.hero-in {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1.08fr .92fr; gap: clamp(2rem, 5vw, 4rem); align-items: center;
}

.hero h1 {
  font-size: clamp(2.9rem, 9.2vw, 5.9rem);
  letter-spacing: -.045em;
  margin: 1rem 0 1.3rem;
}
.hero h1 .fire {
  background: linear-gradient(100deg, var(--gold) 12%, #f0d795 46%, var(--gold-deep) 88%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero .lede { max-width: 44ch; }

.pricebar {
  display: flex; flex-wrap: wrap; align-items: baseline; gap: .55rem 1.35rem;
  margin: 1.9rem 0 1.9rem; padding: 1.05rem 0;
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
}
.pricebar .big { font-size: 1.65rem; font-weight: 800; letter-spacing: -.02em; }
.pricebar .sep { color: var(--dim); }
.pricebar .unit { color: var(--mute); font-size: .93rem; }
.pricebar .unit b { color: var(--bone); font-weight: 700; }
/* Narrow screens wrap the bar; the slashes then dangle at line ends. */
@media (max-width: 560px) {
  .pricebar { gap: .3rem 1.1rem; }
  .pricebar .sep { display: none; }
}

.hero-art { position: relative; aspect-ratio: 1 / .92; }
.hero-art .can { position: absolute; }
.hero-art .can.front {
  width: 76%; right: 0; top: 0; z-index: 2;
  filter: drop-shadow(0 34px 60px rgba(0,0,0,.75)) drop-shadow(0 0 78px rgba(47,158,138,.22));
  animation: float 7s ease-in-out infinite;
}
.hero-art .can.back {
  width: 52%; left: 0; bottom: 0; z-index: 1;
  filter: drop-shadow(0 22px 44px rgba(0,0,0,.85)) drop-shadow(0 0 58px rgba(138,107,196,.24));
  animation: float 7s ease-in-out infinite reverse;
}
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-13px); } }

@media (max-width: 900px) {
  .hero-in { grid-template-columns: 1fr; }
  .hero-art { order: -1; max-width: 420px; margin-inline: auto; width: 100%; }
}

/* ------------------------------------------------------------ trust strip */

.trustband { border-block: 1px solid var(--line); }
.trust {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px;
  background: var(--line);
}
.trust div { background: var(--void); padding: 1.3rem 1.3rem 1.3rem 0; }
.trust div + div { padding-left: 1.3rem; }
.trust dt { font-size: .69rem; font-weight: 700; letter-spacing: .17em; text-transform: uppercase; color: var(--gold); }
.trust dd { margin: .35rem 0 0; font-size: .85rem; color: var(--mute); line-height: 1.5; }
@media (max-width: 760px) {
  .trust { grid-template-columns: repeat(2, 1fr); }
  .trust div, .trust div + div { padding: 1.15rem; }
}
@media (max-width: 420px) { .trust { grid-template-columns: 1fr; } }

/* --------------------------------------------------------------- reasons */

.reasons { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1.5rem, 3vw, 2.6rem); }
.reason { border-top: 2px solid var(--gold); padding-top: 1.35rem; }
.reason h3 { font-size: 1.12rem; margin-bottom: .7rem; letter-spacing: -.015em; }
.reason p { color: var(--mute); font-size: .95rem; }
.reason .n { display: block; font-size: .7rem; font-weight: 700; letter-spacing: .2em; color: var(--dim); margin-bottom: .8rem; }
@media (max-width: 780px) { .reasons { grid-template-columns: 1fr; } }

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

.shop { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.2rem, 2.5vw, 2rem); }
@media (max-width: 820px) { .shop { grid-template-columns: 1fr; } }

.pcard {
  position: relative; display: flex; flex-direction: column;
  background: linear-gradient(178deg, var(--panel-2), var(--panel));
  border: 1px solid var(--line); border-radius: 5px; overflow: hidden;
  transition: border-color .22s var(--ease), transform .22s var(--ease);
}
.pcard:hover { border-color: var(--line-strong); transform: translateY(-3px); }

.pcard-art {
  position: relative; display: grid; place-items: center;
  padding: clamp(2rem, 5vw, 3.2rem) 1.5rem;
  background: radial-gradient(ellipse at 50% 42%, var(--soft), transparent 68%);
}
.pcard-art img { width: min(74%, 260px); filter: drop-shadow(0 26px 42px rgba(0,0,0,.65)); }
.pcard-badge {
  position: absolute; top: 1rem; left: 1rem;
  font-size: .67rem; font-weight: 800; letter-spacing: .16em; text-transform: uppercase;
  padding: .34rem .6rem; border-radius: 2px;
  background: var(--accent); color: #08080a;
}

.pcard-body { padding: 0 clamp(1.3rem, 3vw, 1.9rem) clamp(1.3rem, 3vw, 1.9rem); display: flex; flex-direction: column; flex: 1; }
.pcard-body h3 { font-size: clamp(1.5rem, 3.2vw, 1.95rem); }
.pcard-flav { color: var(--accent); font-size: .78rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; margin-top: .5rem; }
.pcard-body p { color: var(--mute); font-size: .93rem; margin-top: .9rem; }
.pcard-note { font-size: .82rem; color: var(--dim); margin-top: .7rem; font-style: italic; }

.pcard-meta {
  display: flex; flex-wrap: wrap; gap: .4rem; margin: 1.25rem 0;
}
.pcard-meta span {
  font-size: .72rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase;
  color: var(--mute); border: 1px solid var(--line); border-radius: 2px; padding: .3rem .55rem;
}

.pcard-buy { margin-top: auto; padding-top: 1.2rem; border-top: 1px solid var(--line); }
.pcard-price { display: flex; align-items: baseline; gap: .6rem; margin-bottom: 1rem; }
.pcard-price .amt { font-size: 1.5rem; font-weight: 800; letter-spacing: -.02em; }
.pcard-price .per { font-size: .84rem; color: var(--mute); }

.qty { display: flex; align-items: stretch; gap: .55rem; }
.stepper {
  display: flex; align-items: center; border: 1px solid var(--line-strong); border-radius: 3px; overflow: hidden;
}
.stepper button { width: 40px; color: var(--mute); font-size: 1.15rem; line-height: 1; transition: color .15s, background .15s; }
.stepper button:hover { color: var(--bone); background: rgba(255,255,255,.06); }
.stepper input {
  width: 40px; text-align: center; background: none; border: 0;
  font-weight: 700; font-variant-numeric: tabular-nums; -moz-appearance: textfield;
}
.stepper input::-webkit-outer-spin-button,
.stepper input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.qty .btn { flex: 1; }

/* ------------------------------------------------------------ roll offer */

.roll {
  display: flex; flex-wrap: wrap; align-items: center; gap: 1.2rem;
  margin-top: clamp(1.2rem, 2.5vw, 2rem); padding: 1.4rem clamp(1.3rem, 3vw, 1.9rem);
  border: 1px dashed var(--line-strong); border-radius: 5px;
  background: rgba(207,174,94,.05);
}
.roll .roll-txt { flex: 1 1 300px; }
.roll h3 { font-size: 1.05rem; margin-bottom: .4rem; }
.roll p { font-size: .89rem; color: var(--mute); }

/* ----------------------------------------------------------------- specs */

.specs { width: 100%; border-collapse: collapse; }
.specs th, .specs td { text-align: left; padding: .95rem 1rem; border-bottom: 1px solid var(--line); font-size: .92rem; }
.specs thead th {
  font-size: .69rem; font-weight: 700; letter-spacing: .17em; text-transform: uppercase; color: var(--dim);
  border-bottom-color: var(--line-strong);
}
.specs tbody th { font-weight: 600; color: var(--mute); width: 34%; }
.specs td { font-variant-numeric: tabular-nums; }
.specs td strong { font-weight: 700; }
.spec-scroll { overflow-x: auto; }
.ingredients { margin-top: 1.6rem; font-size: .88rem; color: var(--mute); max-width: 70ch; }
.ingredients b { color: var(--bone); }

/* ------------------------------------------------------------------- cta */

.band {
  border: 1px solid var(--line); border-radius: 5px;
  background: linear-gradient(140deg, var(--panel-2), var(--void) 78%);
  padding: clamp(1.8rem, 4vw, 3rem);
  display: grid; grid-template-columns: 1fr auto; gap: 1.8rem; align-items: center;
}
.band h2 { font-size: clamp(1.4rem, 3vw, 2.1rem); margin-bottom: .7rem; }
.band p { color: var(--mute); max-width: 56ch; font-size: .95rem; }
@media (max-width: 780px) { .band { grid-template-columns: 1fr; } }

/* ------------------------------------------------------------------- faq */

.faq { border-top: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary {
  display: flex; align-items: center; justify-content: space-between; gap: 1.5rem;
  padding: 1.25rem 0; cursor: pointer; list-style: none;
  font-weight: 700; font-size: 1.02rem; letter-spacing: -.012em;
  transition: color .16s var(--ease);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary:hover { color: var(--gold); }
.faq summary::after {
  content: '+'; flex-shrink: 0; font-size: 1.35rem; font-weight: 400; color: var(--gold);
  transition: transform .22s var(--ease);
}
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details > div { padding: 0 0 1.4rem; color: var(--mute); max-width: 68ch; font-size: .95rem; }
.faq details > div p + p { margin-top: .8rem; }

/* --------------------------------------------------------- stockist list */

.stock-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: 5px; overflow: hidden; }
.stock-grid > * { background: var(--panel); padding: 1.25rem 1.4rem; }
.stock-grid h3 { font-size: .98rem; letter-spacing: -.01em; }
.stock-grid .meta { font-size: .8rem; color: var(--dim); margin-top: .35rem; letter-spacing: .06em; text-transform: uppercase; }
.stock-grid a.map { font-size: .8rem; color: var(--gold); margin-top: .7rem; display: inline-block; }
.stock-grid a.map:hover { text-decoration: underline; }

.empty-state {
  border: 1px dashed var(--line-strong); border-radius: 5px;
  padding: clamp(2rem, 5vw, 3.5rem); text-align: center;
}
.empty-state h3 { font-size: 1.15rem; margin-bottom: .8rem; }
.empty-state p { color: var(--mute); max-width: 48ch; margin-inline: auto; }

/* ------------------------------------------------------------------ form */

.form { display: grid; gap: 1.05rem; max-width: 560px; }
.field { display: grid; gap: .45rem; }
.field label { font-size: .72rem; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; color: var(--mute); }
.field input, .field textarea, .field select {
  background: var(--panel); border: 1px solid var(--line-strong); border-radius: 3px;
  padding: .8rem .9rem; width: 100%;
  transition: border-color .16s var(--ease);
}
.field input:focus, .field textarea:focus, .field select:focus { border-color: var(--gold); outline: none; }
.field textarea { min-height: 110px; resize: vertical; }
.field .hint { font-size: .78rem; color: var(--dim); }

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

.scrim {
  position: fixed; inset: 0; z-index: 100; background: rgba(0,0,0,.66);
  opacity: 0; pointer-events: none; transition: opacity .26s var(--ease);
  backdrop-filter: blur(2px);
}
body.cart-open .scrim { opacity: 1; pointer-events: auto; }

.drawer {
  position: fixed; top: 0; right: 0; z-index: 110;
  width: min(420px, 100%); height: 100dvh;
  background: var(--panel); border-left: 1px solid var(--line);
  display: flex; flex-direction: column;
  transform: translateX(101%); transition: transform .3s var(--ease);
  box-shadow: -24px 0 60px rgba(0,0,0,.5);
}
body.cart-open .drawer { transform: none; }

.drawer-hd { display: flex; align-items: center; justify-content: space-between; padding: 1.3rem 1.4rem; border-bottom: 1px solid var(--line); }
.drawer-hd h2 { font-size: 1rem; letter-spacing: .1em; }
.drawer-close { font-size: 1.5rem; line-height: 1; color: var(--mute); padding: .2rem .4rem; }
.drawer-close:hover { color: var(--bone); }

.drawer-body { flex: 1; overflow-y: auto; padding: 1.4rem; }
.drawer-empty { text-align: center; color: var(--dim); padding: 3.5rem 1rem; font-size: .92rem; }

.citem { display: grid; grid-template-columns: 62px 1fr auto; gap: .95rem; align-items: center; padding: .95rem 0; border-bottom: 1px solid var(--line); }
.citem:first-child { padding-top: 0; }
.citem img { width: 62px; border-radius: 3px; }
.citem h3 { font-size: .92rem; letter-spacing: -.01em; }
.citem .cmeta { font-size: .78rem; color: var(--dim); margin-top: .2rem; }
.citem .cline { font-weight: 700; font-variant-numeric: tabular-nums; font-size: .92rem; }
.citem .stepper { margin-top: .5rem; width: max-content; }
.citem .stepper button { width: 30px; font-size: 1rem; }
.citem .stepper input { width: 30px; font-size: .85rem; }
.citem .rm { font-size: .74rem; color: var(--dim); margin-top: .45rem; }
.citem .rm:hover { color: #e0685c; text-decoration: underline; }

.drawer-ft { border-top: 1px solid var(--line); padding: 1.3rem 1.4rem; display: grid; gap: .85rem; }
.totals { display: grid; gap: .45rem; font-size: .9rem; }
.totals .row { display: flex; justify-content: space-between; color: var(--mute); }
.totals .row.grand { color: var(--bone); font-size: 1.15rem; font-weight: 800; padding-top: .6rem; border-top: 1px solid var(--line); letter-spacing: -.015em; }
.totals .row .nums { font-variant-numeric: tabular-nums; }
.totals .free { color: var(--mint); font-weight: 600; }
.drawer-ft .fineprint { font-size: .75rem; color: var(--dim); line-height: 1.55; }

.ship-toggle { display: flex; gap: .4rem; }
.ship-toggle button {
  flex: 1; border: 1px solid var(--line-strong); border-radius: 3px; padding: .5rem;
  font-size: .72rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--mute);
  transition: all .16s var(--ease);
}
.ship-toggle button[aria-pressed="true"] { border-color: var(--gold); color: var(--gold); background: var(--gold-glow); }

/* ------------------------------------------------------- mobile cart bar */

.cartbar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 80;
  display: none; align-items: center; gap: .9rem;
  padding: .8rem var(--gut) calc(.8rem + env(safe-area-inset-bottom));
  background: rgba(9,9,10,.93); backdrop-filter: blur(14px);
  border-top: 1px solid var(--line);
  transform: translateY(110%); transition: transform .28s var(--ease);
}
.cartbar .sum { flex: 1; font-size: .85rem; }
.cartbar .sum b { display: block; font-size: 1.05rem; font-weight: 800; letter-spacing: -.015em; }
@media (max-width: 860px) {
  .cartbar { display: flex; }
  body.has-items .cartbar { transform: none; }
  body.has-items { padding-bottom: 74px; }
}

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

.warnband {
  border-block: 1px solid var(--line);
  background: var(--panel);
  padding: 1.15rem 0;
}
.warnband p {
  display: flex; align-items: center; gap: .8rem; flex-wrap: wrap;
  font-size: .82rem; font-weight: 600; letter-spacing: .04em; color: var(--mute);
}
.warnband .pill {
  border: 1.5px solid #d9534f; color: #e07b77; border-radius: 99px;
  padding: .12rem .55rem; font-size: .76rem; font-weight: 800; letter-spacing: .06em;
}

.ftr { padding-block: clamp(3rem, 6vw, 4.5rem) 2.5rem; }
.ftr-top { display: grid; grid-template-columns: 1.4fr repeat(3, 1fr); gap: 2.2rem; }
.ftr-brand img { width: 108px; margin-bottom: 1rem; }
.ftr-brand p { font-size: .87rem; color: var(--dim); max-width: 34ch; }
.ftr h4 { font-size: .69rem; letter-spacing: .19em; color: var(--gold); margin-bottom: 1rem; }
.ftr ul { list-style: none; padding: 0; display: grid; gap: .55rem; }
.ftr ul a { font-size: .88rem; color: var(--mute); }
.ftr ul a:hover { color: var(--bone); }
.ftr-btm {
  margin-top: clamp(2.5rem, 5vw, 3.5rem); padding-top: 1.6rem; border-top: 1px solid var(--line);
  display: flex; flex-wrap: wrap; gap: .8rem 1.6rem; justify-content: space-between;
  font-size: .78rem; color: var(--dim);
}
@media (max-width: 820px) { .ftr-top { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .ftr-top { grid-template-columns: 1fr; } }

/* ----------------------------------------------------------- policy page */

.page-hd { padding-block: clamp(2.5rem, 6vw, 4rem) clamp(1.5rem, 3vw, 2.2rem); border-bottom: 1px solid var(--line); }
.page-hd h1 { font-size: clamp(2rem, 5.5vw, 3.2rem); margin: .6rem 0 .8rem; }

.prose { padding-block: clamp(2.5rem, 5vw, 3.5rem) clamp(3.5rem, 7vw, 5.5rem); }
.prose h2 {
  font-size: 1.12rem; letter-spacing: .01em; margin: 2.6rem 0 .9rem;
  padding-top: 1.6rem; border-top: 1px solid var(--line);
}
.prose h2:first-child { margin-top: 0; padding-top: 0; border-top: 0; }
.prose h3 { font-size: .95rem; text-transform: none; letter-spacing: -.005em; margin: 1.6rem 0 .5rem; color: var(--gold); }
.prose p, .prose li { color: var(--mute); }
.prose p { margin-bottom: .95rem; }
.prose ul, .prose ol { margin: 0 0 1.1rem; padding-left: 1.3rem; display: grid; gap: .5rem; }
.prose strong { color: var(--bone); font-weight: 600; }
.prose a { color: var(--gold); text-decoration: underline; text-underline-offset: 3px; }
.prose table { width: 100%; border-collapse: collapse; margin-bottom: 1.4rem; font-size: .9rem; }
.prose th, .prose td { text-align: left; padding: .75rem .9rem; border-bottom: 1px solid var(--line); }
.prose th { font-size: .69rem; letter-spacing: .15em; text-transform: uppercase; color: var(--dim); font-weight: 700; }
.prose td { color: var(--mute); }
.prose .callout {
  border-left: 2px solid var(--gold); background: rgba(207,174,94,.06);
  padding: 1.1rem 1.3rem; margin-bottom: 1.4rem; border-radius: 0 3px 3px 0;
}
.prose .callout p:last-child { margin-bottom: 0; }
.prose .updated { font-size: .8rem; color: var(--dim); }

/* ------------------------------------------------------------------ misc */

.noscript { background: #7a2018; color: #fff; padding: .9rem; text-align: center; font-size: .88rem; }

@media print {
  .hdr, .cartbar, .drawer, .scrim, #agegate, .btn { display: none !important; }
  body { background: #fff; color: #000; }
}
