/* ==========================================================================
   Son of Kings — house stylesheet
   Dark ground, gold hairlines, Cinzel display over Jost text.
   Mobile-first: single column by default, layout widens at 700 / 900 / 1100.
   ========================================================================== */

/* ---------- Fonts (self-hosted, no third-party requests) ---------- */
@font-face {
  font-family: 'Cinzel';
  font-style: normal;
  font-weight: 400 900;
  font-display: swap;
  src: url('../fonts/cinzel-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
    U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193,
    U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Cinzel';
  font-style: normal;
  font-weight: 400 900;
  font-display: swap;
  src: url('../fonts/cinzel-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF,
    U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020,
    U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'Jost';
  font-style: normal;
  font-weight: 200 600;
  font-display: swap;
  src: url('../fonts/jost-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
    U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193,
    U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Jost';
  font-style: normal;
  font-weight: 200 600;
  font-display: swap;
  src: url('../fonts/jost-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF,
    U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020,
    U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

/* ---------- Tokens ---------- */
:root {
  --ink:        #07070a;
  --ink-raised: #0a0a0d;
  --ink-panel:  #0b0b0e;
  --ink-deep:   #050507;

  --rule:       #15140e;
  --rule-lit:   #1f1c14;
  --rule-edge:  #2a2418;

  --cream:      #f2ece1;
  --body:       #a39b89;
  --muted:      #847d6e;
  --faint:      #6b6250;

  --gold:       #c8a24a;
  --gold-lit:   #f0e2b8;
  --gold-dim:   #8d7d57;

  --display: 'Cinzel', 'Times New Roman', Georgia, serif;
  --text: 'Jost', ui-sans-serif, system-ui, -apple-system, 'Segoe UI', sans-serif;

  --shell: 1360px;
  --gut: 20px;
  --header-h: 68px;

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

@media (min-width: 700px) { :root { --gut: 30px; --header-h: 78px; } }

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

html {
  background: var(--ink);
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  /* Anchored sections must clear the sticky header. */
  scroll-padding-top: calc(var(--header-h) + 12px);
}

body {
  background: var(--ink);
  color: var(--cream);
  font-family: var(--text);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.6;
  min-height: 100svh;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* height:auto lets the width/height attributes act purely as an aspect-ratio
   hint; without it the attribute height wins and images stretch. */
img, svg { display: block; max-width: 100%; height: auto; }
button, input, select, textarea { font: inherit; color: inherit; }
button { background: none; border: none; cursor: pointer; }
ul, ol { list-style: none; }

a { color: var(--gold); text-decoration: none; transition: color .2s var(--ease); }
a:hover { color: var(--gold-lit); }

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

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

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

/* ---------- Primitives ---------- */
.shell {
  width: 100%;
  max-width: var(--shell);
  margin-inline: auto;
  padding-inline: var(--gut);
}

.skip {
  position: absolute;
  left: 12px;
  top: -100px;
  z-index: 200;
  background: var(--gold);
  color: var(--ink);
  padding: 12px 20px;
  font-family: var(--display);
  font-size: 11px;
  letter-spacing: .24em;
  text-transform: uppercase;
  transition: top .2s var(--ease);
}
.skip:focus { top: 12px; color: var(--ink); }

.eyebrow {
  font-family: var(--display);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: .5em;
  text-transform: uppercase;
  color: var(--gold-dim);
}
.eyebrow--gold { color: var(--gold); }

.h2 {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(25px, 4.4vw, 42px);
  line-height: 1.16;
  letter-spacing: .03em;
  text-wrap: balance;
}
.h2 em { font-style: italic; color: var(--gold); }

.lede {
  font-size: clamp(15px, 1.4vw, 17px);
  line-height: 1.9;
  color: var(--body);
  text-wrap: pretty;
}

.rule-fade { height: 1px; background: linear-gradient(90deg, #3a3120, transparent); }

/* Buttons — 48px minimum hit area on every touch target. */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 14px 28px;
  font-family: var(--display);
  font-weight: 600;
  font-size: 10px;
  letter-spacing: .3em;
  text-transform: uppercase;
  text-align: center;
  border: 1px solid transparent;
  transition: background .22s var(--ease), color .22s var(--ease),
              border-color .22s var(--ease);
}
.btn--gold { background: var(--gold); color: var(--ink); }
.btn--gold:hover { background: var(--gold-lit); color: var(--ink); }
.btn--ghost { border-color: var(--rule-edge); color: var(--gold-lit); }
.btn--ghost:hover { border-color: var(--gold); background: #100e09; color: var(--gold-lit); }
.btn--block { width: 100%; }
.btn[disabled], .btn[aria-disabled='true'] { opacity: .45; cursor: not-allowed; pointer-events: none; }

.link-rule {
  display: inline-block;
  align-self: flex-start;
  border-bottom: 1px solid var(--gold);
  padding-bottom: 6px;
  font-family: var(--display);
  font-size: 10px;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--gold);
  transition: color .2s var(--ease), border-color .2s var(--ease);
}
.link-rule:hover { color: var(--cream); border-color: var(--cream); }

.vh {
  position: absolute !important;
  width: 1px; height: 1px;
  margin: -1px; padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

/* ---------- Announcement ---------- */
.announce {
  background: var(--ink-raised);
  border-bottom: 1px solid #17150f;
  text-align: center;
  padding: 10px var(--gut);
  font-family: var(--display);
  font-size: 8px;
  letter-spacing: .38em;
  color: var(--gold-dim);
  text-transform: uppercase;
}
@media (min-width: 700px) { .announce { font-size: 9px; letter-spacing: .5em; padding: 11px 20px; } }

/* ---------- Header ---------- */
.header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(7, 7, 10, .9);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--rule);
}
.header__bar {
  max-width: var(--shell);
  margin-inline: auto;
  padding: 10px var(--gut);
  display: flex;
  align-items: center;
  gap: 16px;
  min-height: var(--header-h);
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  flex: 0 1 auto;
  color: var(--cream);
}
.brand:hover { color: var(--cream); }
.brand img { height: 38px; width: 38px; flex: none; object-fit: contain; }
.brand__lines { display: flex; flex-direction: column; min-width: 0; }
.brand__name,
.brand__sub {
  display: block;
  font-family: var(--display);
  line-height: 1;
  white-space: nowrap;
}
.brand__name {
  font-weight: 700;
  font-size: 12px;
  letter-spacing: .22em;
  padding-left: .22em;
}
.brand__sub {
  font-size: 7px;
  letter-spacing: .34em;
  color: #7d6f4d;
  margin-top: 5px;
  padding-left: .34em;
}
/* Below ~360px the tagline is the first thing to go. */
@media (max-width: 359px) {
  .brand img { height: 34px; width: 34px; }
  .brand__sub { display: none; }
}

/* Availability + color edition catalog */
.stock {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  color: var(--faint);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.stock span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 4px rgba(200,162,74,.12);
}

.editions {
  border-block: 1px solid rgba(200,162,74,.13);
  background: linear-gradient(180deg, #0a0a0d, #07070a);
}
.editions__head {
  display: grid;
  gap: 20px;
  margin-bottom: 38px;
}
.editions__head .lede { max-width: 50ch; color: #9f9a91; }
.edition-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
.edition-card {
  position: relative;
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.08);
  background: #0d0d11;
}
.edition-card:not(.edition-card--available)::after {
  content: "COLOR STUDY";
  position: absolute;
  top: 14px;
  right: 14px;
  padding: 7px 9px;
  color: #d1cbc0;
  border: 1px solid rgba(255,255,255,.17);
  background: rgba(7,7,10,.82);
  font-size: 9px;
  letter-spacing: .2em;
}
.edition-card__art {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: end;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: radial-gradient(circle at 50% 32%, #27272d 0, #121216 54%, #09090c 100%);
}
.edition-card__art img { width: 100%; height: 100%; object-fit: cover; min-width: 0; }
.edition-card:not(.edition-card--available) .edition-card__art { filter: saturate(.86) brightness(.84); }
.edition-card__art--black { display: block; }
.edition-card__art--black img { object-position: center; }
.edition-card__body {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 17px 16px;
  border-top: 1px solid rgba(255,255,255,.07);
}
.edition-card__body h3 { margin: 0; font-family: var(--display); font-size: 17px; letter-spacing: .08em; }
.edition-card__body a,
.edition-card__body span { color: var(--gold-lit); font-size: 10px; letter-spacing: .16em; text-transform: uppercase; }
.edition-card__body a { padding-bottom: 3px; border-bottom: 1px solid var(--gold); }
.edition-card > .stock { padding: 0 16px 17px; color: var(--gold-lit); }

@media (min-width: 700px) {
  .editions__head { grid-template-columns: 1.2fr .8fr; align-items: end; margin-bottom: 50px; }
  .edition-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
}
@media (max-width: 480px) {
  .edition-grid { grid-template-columns: 1fr; }
  .edition-card__art { aspect-ratio: 1 / 1; }
}

.service {
  display: grid;
  gap: 42px;
  padding: clamp(28px, 5vw, 64px);
  border: 1px solid rgba(200,162,74,.17);
  background: linear-gradient(135deg, rgba(200,162,74,.045), transparent 54%);
}
.service__grid { display: grid; gap: 28px; }
.service__grid article { padding-top: 18px; border-top: 1px solid rgba(255,255,255,.1); }
.service__grid span { color: var(--gold); font-size: 10px; letter-spacing: .18em; }
.service__grid h3 { margin: 12px 0 8px; font-family: var(--display); font-size: 18px; letter-spacing: .06em; }
.service__grid p { margin: 0; color: #9f9a91; line-height: 1.75; }

.faq { border-top: 1px solid rgba(255,255,255,.08); background: #09090c; }
.faq__inner { display: grid; gap: 34px; }
.faq__list { border-top: 1px solid rgba(255,255,255,.1); }
.faq details { border-bottom: 1px solid rgba(255,255,255,.1); }
.faq summary {
  position: relative;
  padding: 22px 42px 22px 0;
  cursor: pointer;
  color: var(--cream);
  font-family: var(--display);
  font-size: 17px;
  letter-spacing: .04em;
  list-style: none;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; position: absolute; right: 4px; color: var(--gold); font-family: var(--text); font-size: 22px; }
.faq details[open] summary::after { content: "−"; }
.faq details p { max-width: 65ch; margin: 0; padding: 0 42px 24px 0; color: #9f9a91; line-height: 1.75; }

@media (min-width: 760px) {
  .service { grid-template-columns: .72fr 1.28fr; }
  .service__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .faq__inner { grid-template-columns: .68fr 1.32fr; gap: 64px; }
}
@media (min-width: 480px) {
  .brand img { height: 42px; width: 42px; }
  .brand__name { font-size: 13px; letter-spacing: .3em; padding-left: .3em; }
  .brand__sub { font-size: 7px; letter-spacing: .44em; padding-left: .44em; }
}
@media (min-width: 700px) {
  .brand { gap: 12px; }
  .brand img { height: 50px; width: 50px; }
  .brand__name { font-size: 15px; letter-spacing: .34em; padding-left: .34em; }
  .brand__sub { font-size: 8px; letter-spacing: .5em; padding-left: .5em; }
}

.nav { display: none; }
@media (min-width: 900px) {
  .nav {
    display: flex;
    gap: 26px;
    flex: 1;
    justify-content: center;
    font-family: var(--display);
    font-size: 10px;
    letter-spacing: .26em;
    text-transform: uppercase;
  }
  .nav a { color: #968e7c; padding: 6px 0; }
  .nav a:hover, .nav a[aria-current='true'] { color: var(--cream); }
}

.header__actions { display: flex; align-items: center; gap: 8px; margin-left: auto; flex: none; }
.header__bar > .brand { margin-right: auto; }

.bag-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  padding: 10px 14px;
  border: 1px solid var(--rule-edge);
  color: var(--gold-lit);
  font-family: var(--display);
  font-size: 10px;
  letter-spacing: .2em;
  text-transform: uppercase;
  transition: border-color .2s var(--ease), background .2s var(--ease);
}
.bag-btn:hover { border-color: var(--gold); background: #100e09; }
.bag-btn__count {
  min-width: 20px;
  height: 20px;
  display: inline-grid;
  place-items: center;
  padding: 0 5px;
  background: var(--gold);
  color: var(--ink);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0;
  border-radius: 10px;
}
.bag-btn__count[data-empty='true'] { background: #241f18; color: var(--muted); }
.bag-btn__label { display: none; }
@media (min-width: 360px) { .bag-btn__label { display: inline; } }

.burger {
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 1px solid var(--rule-edge);
  color: var(--gold-lit);
}
.burger:hover { border-color: var(--gold); }
.burger span {
  display: block;
  width: 17px;
  height: 1px;
  background: currentColor;
  box-shadow: 0 -5px 0 currentColor, 0 5px 0 currentColor;
}
@media (min-width: 900px) { .burger { display: none; } }

/* Mobile nav sheet */
.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 70;
  background: rgba(5, 5, 7, .985);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  display: flex;
  flex-direction: column;
  padding: 18px var(--gut) calc(30px + env(safe-area-inset-bottom, 0px));
  padding-top: calc(18px + env(safe-area-inset-top, 0px));
}
.mobile-nav[hidden] { display: none !important; }
.mobile-nav__top { display: flex; justify-content: flex-end; }
.mobile-nav__list {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-top: 24px;
}
.mobile-nav__list a {
  font-family: var(--display);
  font-size: 15px;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--cream);
  padding: 18px 2px;
  border-bottom: 1px solid var(--rule);
}
.mobile-nav__list a:hover { color: var(--gold); }
.mobile-nav__foot { margin-top: auto; padding-top: 28px; }

.icon-btn {
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 46px;
  color: var(--muted);
  font-size: 24px;
  line-height: 1;
  border: 1px solid transparent;
}
.icon-btn:hover { color: var(--gold); border-color: var(--rule-edge); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: min(84svh, 720px);
  border-bottom: 1px solid var(--rule);
  background: var(--ink-raised);
  overflow: hidden;
}
.hero__art {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  background:
    radial-gradient(120% 90% at 50% 8%, #16140e 0%, #0a0a0d 55%, #07070a 100%);
}
.hero__art img {
  width: min(58%, 420px);
  opacity: .12;
  filter: saturate(0);
  transform: translateY(-6%);
}
.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero__video::-webkit-media-controls-start-playback-button,
.hero__video::-webkit-media-controls { display: none !important; -webkit-appearance: none; }
.hero__video-play {
  position: absolute;
  right: 24px;
  bottom: 24px;
  z-index: 3;
  display: none;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  padding: 9px 15px;
  border: 1px solid rgba(207, 168, 77, .42);
  background: rgba(7, 7, 10, .78);
  color: var(--gold-lit);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  font-family: var(--display);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  cursor: pointer;
  transition: color .2s var(--ease), border-color .2s var(--ease), background .2s var(--ease);
}
.hero__video-play:hover {
  color: var(--ink);
  border-color: var(--gold);
  background: var(--gold);
}
.hero__video-play.is-playing { display: none !important; }
@media (max-width: 699px) {
  .hero__video-play {
    top: 18px;
    right: 18px;
    bottom: auto;
  }
}
.hero__scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
    rgba(7,7,10,.74) 0%, rgba(7,7,10,.16) 34%, rgba(7,7,10,.96) 100%);
}
.hero__body {
  position: relative;
  width: 100%;
  max-width: var(--shell);
  margin-inline: auto;
  padding: 96px var(--gut) 48px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  animation: rise .7s var(--ease) both;
}
.hero h1 {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(34px, 7.4vw, 86px);
  line-height: 1.02;
  letter-spacing: .015em;
  max-width: 17ch;
  text-wrap: balance;
}
.hero h1 em { font-style: italic; font-weight: 700; color: var(--gold); }
.hero__eyebrow { letter-spacing: .42em; color: var(--gold); }
.hero__cta { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; padding-top: 6px; }
/* Ragged half-width buttons read as a mistake on a phone; stack them full width. */
@media (max-width: 559px) {
  .hero__cta { flex-direction: column; align-items: stretch; }
  .hero__cta .btn { width: 100%; }
}
@media (min-width: 700px) {
  .hero__body { padding: 120px var(--gut) 54px; gap: 24px; }
  .hero__eyebrow { letter-spacing: .56em; }
}

@keyframes rise { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }

/* ---------- Spec strip ---------- */
.specs {
  border-bottom: 1px solid var(--rule);
  background: var(--ink-raised);
}
.specs ul {
  max-width: var(--shell);
  margin-inline: auto;
  padding: 20px var(--gut);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px 12px;
  font-family: var(--display);
  font-size: 8px;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: #7d6f4d;
  text-align: center;
}
@media (min-width: 700px) {
  .specs ul {
    grid-template-columns: repeat(4, 1fr);
    font-size: 9px;
    letter-spacing: .34em;
    padding: 22px var(--gut);
  }
}

/* ---------- Section rhythm ---------- */
.section { padding-block: 64px; }
@media (min-width: 900px) { .section { padding-block: 84px; } }
.section--tight { padding-block: 48px; }

/* ---------- Product ---------- */
.product {
  display: grid;
  gap: 40px;
  align-items: start;
  /* Clears the fixed buy bar, which is only ever shown over this section. */
  padding-bottom: calc(76px + env(safe-area-inset-bottom, 0px));
}
@media (min-width: 1000px) { .product { padding-bottom: 0; } }
/* Single column: keep the block to a readable width instead of letting the
   stage grow to a full-bleed 700px-tall square. */
@media (max-width: 999px) {
  .product > * { width: 100%; max-width: 560px; margin-inline: auto; }
}
@media (min-width: 1000px) {
  .product { grid-template-columns: minmax(0, 1fr) minmax(360px, 480px); gap: 52px; }
}

/* Gallery */
.gallery { display: flex; flex-direction: column; gap: 12px; min-width: 0; }
.gallery__stage {
  position: relative;
  border: 1px solid var(--rule-lit);
  background: var(--ink-panel);
  aspect-ratio: 4 / 5;
  overflow: hidden;
}
@media (min-width: 620px) { .gallery__stage { aspect-ratio: 1 / 1; } }
.gallery__badge {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  background: rgba(7,7,10,.8);
  border: 1px solid rgba(200,162,74,.42);
  color: var(--gold);
  font-family: var(--display);
  font-size: 8px;
  letter-spacing: .28em;
  padding: 6px 10px;
  text-transform: uppercase;
}
@media (min-width: 700px) {
  .gallery__badge { top: 16px; left: 16px; font-size: 9px; letter-spacing: .3em; padding: 7px 11px; }
}

/* Plates: composed panels standing in for photography.
   Swap in real shots via SITE.photos in assets/js/site.js. */
.plate {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity .4s var(--ease);
}
.plate[data-active='true'] { opacity: 1; visibility: visible; }
.plate__photo { width: 100%; height: 100%; object-fit: cover; }

.plate__inner {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 10%;
  overflow: hidden;
}
.plate__crest { width: min(68%, 440px); opacity: .9; }
.plate__caption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 16px 14px;
  text-align: center;
  font-family: var(--display);
  font-size: 8px;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--gold-dim);
  background: linear-gradient(180deg, transparent, rgba(7,7,10,.92));
}

.plate--front .plate__inner { background: radial-gradient(90% 70% at 50% 34%, #14120c 0%, #0b0b0e 70%); }
.plate--front .plate__crest { opacity: .96; }

.plate--back .plate__inner {
  background: linear-gradient(170deg, #101009 0%, #09090c 60%);
  align-content: center;
  gap: 18px;
}
.plate--back .plate__word {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(16px, 4.6vw, 30px);
  letter-spacing: .34em;
  color: var(--cream);
  text-align: center;
  padding-left: .34em;
  line-height: 1.8;
}
.plate--back .plate__crest { width: min(34%, 150px); opacity: .5; }

/* Detail plate zooms the crest so the crowned lion reads as a close crop.
   Absolutely positioned rather than grid-centred: an item taller than its
   container grows the implicit row instead of centring in it, which pins the
   image to the top and makes the crop depend on the container's aspect ratio.
   left/top 50% + translate(-50%,-50%) centres it deterministically; the second
   translate then re-centres on the crest point at 46% / 38%. */
.plate--detail .plate__inner { padding: 0; background: #0d0c08; display: block; }
.plate--detail img {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 240%;
  max-width: none;
  transform: translate(-50%, -50%) translate(4%, 12%);
  opacity: .92;
}

.plate--edition .plate__inner {
  background: linear-gradient(200deg, #121009 0%, #08080b 70%);
  align-content: center;
  gap: 14px;
  text-align: center;
}
.plate--edition .plate__numeral {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(40px, 12vw, 84px);
  letter-spacing: .1em;
  color: var(--gold);
  line-height: 1;
}
.plate--edition .plate__sub {
  font-family: var(--display);
  font-size: 9px;
  letter-spacing: .4em;
  text-transform: uppercase;
  color: var(--gold-dim);
}

/* Thumbnails */
.thumbs { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; }
@media (min-width: 700px) { .thumbs { gap: 14px; } }
.thumb {
  position: relative;
  border: 1px solid var(--rule-lit);
  background: var(--ink-panel);
  aspect-ratio: 1 / 1;
  overflow: hidden;
  transition: border-color .2s var(--ease);
}
.thumb:hover { border-color: #3a3120; }
.thumb[aria-pressed='true'] { border-color: var(--gold); }
.thumb > * { position: absolute; inset: 0; }
.thumb .plate { opacity: 1; visibility: visible; }
.thumb .plate__caption { display: none; }
.thumb .plate__crest { width: 62%; }
.thumb .plate--back .plate__word { font-size: 7px; letter-spacing: .2em; padding-left: .2em; }
.thumb .plate--back .plate__crest { width: 38%; }
.thumb .plate--edition .plate__numeral { font-size: 22px; }
.thumb .plate--edition .plate__sub { display: none; }

/* Detail column */
.detail { display: flex; flex-direction: column; gap: 24px; min-width: 0; }
@media (min-width: 1000px) {
  .detail { position: sticky; top: calc(var(--header-h) + 20px); }
}
.detail__head { display: flex; flex-direction: column; gap: 12px; }
.detail__price { display: flex; align-items: baseline; gap: 12px; flex-wrap: wrap; }
.detail__price b {
  font-family: var(--display);
  font-weight: 400;
  font-size: 20px;
  letter-spacing: .18em;
  color: var(--gold);
}
.detail__price span { font-size: 13px; color: var(--faint); letter-spacing: .06em; }

/* Size picker */
.sizes { display: flex; flex-direction: column; gap: 12px; }
.sizes__head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  flex-wrap: wrap;
}
.sizes__label {
  font-family: var(--display);
  font-size: 9px;
  letter-spacing: .32em;
  color: #7d6f4d;
  text-transform: uppercase;
}
.sizes__label b { color: var(--cream); font-weight: 500; }
.sizes__toggle {
  font-size: 12px;
  letter-spacing: .12em;
  color: var(--gold-dim);
  text-decoration: underline;
  text-underline-offset: 3px;
  padding: 6px 0;
  min-height: 32px;
}
.sizes__toggle:hover { color: var(--gold); }

.size-list { display: flex; gap: 8px; flex-wrap: wrap; }
.size {
  flex: 1 1 auto;
  min-width: 56px;
  min-height: 48px;
  padding: 12px 14px;
  border: 1px solid var(--rule-edge);
  color: #968e7c;
  font-family: var(--display);
  font-size: 11px;
  letter-spacing: .16em;
  transition: border-color .2s var(--ease), background .2s var(--ease), color .2s var(--ease);
}
.size:hover { border-color: var(--gold); color: var(--cream); }
.size[aria-checked='true'] { background: var(--gold); border-color: var(--gold); color: var(--ink); }

.guide {
  border: 1px solid var(--rule-lit);
  background: var(--ink-panel);
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.guide[hidden] { display: none; }
.guide__head {
  font-family: var(--display);
  font-size: 9px;
  letter-spacing: .32em;
  color: var(--gold);
  text-transform: uppercase;
}
.guide table { width: 100%; border-collapse: collapse; font-size: 13px; color: #8f8878; }
.guide th, .guide td { text-align: left; padding: 8px 0; border-bottom: 1px solid #141209; font-weight: 400; }
.guide th:first-child { font-family: var(--display); letter-spacing: .14em; color: #c0b8a4; }
.guide td { text-align: right; }
.guide__note { font-size: 12px; color: var(--faint); line-height: 1.7; }

/* Quantity + add */
.buy { display: flex; gap: 10px; flex-wrap: wrap; align-items: stretch; }
.qty { display: flex; align-items: center; border: 1px solid var(--rule-edge); flex: none; }
.qty button {
  width: 46px;
  min-height: 48px;
  color: #968e7c;
  font-size: 18px;
  line-height: 1;
  transition: color .2s var(--ease);
}
.qty button:hover:not([disabled]) { color: var(--gold); }
.qty output {
  font-family: var(--display);
  font-size: 13px;
  letter-spacing: .12em;
  min-width: 28px;
  text-align: center;
}
.buy .btn--gold { flex: 1 1 200px; }

.terms {
  display: flex;
  flex-direction: column;
  gap: 12px;
  border-top: 1px solid var(--rule-lit);
  padding-top: 22px;
  font-size: 14px;
  line-height: 1.75;
  color: var(--muted);
}
.terms li { display: flex; gap: 14px; }
.terms b {
  font-family: var(--display);
  color: var(--gold);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .2em;
  min-width: 24px;
  padding-top: 3px;
}

/* ---------- Atelier ---------- */
.atelier {
  display: grid;
  gap: 1px;
  background: var(--rule-lit);
  border: 1px solid var(--rule-lit);
}
@media (min-width: 860px) { .atelier { grid-template-columns: 1fr 1fr; } }
.atelier__art {
  background: var(--ink-panel);
  min-height: 300px;
  display: grid;
  place-items: center;
  padding: 40px;
  position: relative;
  overflow: hidden;
}
.atelier__art::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(80% 60% at 50% 40%, rgba(200,162,74,.07), transparent 70%);
}
.atelier__art img { width: min(62%, 280px); opacity: .85; }
@media (min-width: 860px) { .atelier__art { min-height: 460px; } }
.atelier__body {
  background: var(--ink-panel);
  padding: 44px var(--gut);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
}
@media (min-width: 700px) { .atelier__body { padding: 58px 42px; gap: 24px; } }

/* ---------- Heritage ---------- */
.heritage {
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  background: var(--ink-raised);
}
.heritage__grid {
  display: grid;
  gap: 32px;
  grid-template-columns: 1fr;
}
@media (min-width: 620px) { .heritage__grid { grid-template-columns: repeat(2, 1fr); gap: 40px; } }
@media (min-width: 1000px) { .heritage__grid { grid-template-columns: repeat(4, 1fr); gap: 44px; } }
.heritage__item { display: flex; flex-direction: column; gap: 12px; }
.heritage__num { font-family: var(--display); font-size: 11px; letter-spacing: .3em; color: var(--gold); }
.heritage__item h3 {
  font-family: var(--display);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .22em;
  text-transform: uppercase;
}
.heritage__item p { font-size: 14px; line-height: 1.85; color: var(--muted); }

/* ---------- Club ---------- */
.club { display: flex; flex-direction: column; align-items: center; gap: 18px; text-align: center; }
.club .lede { max-width: 50ch; }
.club__actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  padding-top: 10px;
  width: 100%;
  max-width: 560px;
}
.club__actions .btn { width: 100%; }
@media (min-width: 560px) {
  .club__actions { flex-direction: row; justify-content: center; }
  .club__actions .btn { width: auto; }
}
.club__note { font-size: 13px; color: var(--faint); letter-spacing: .05em; }

/* ---------- Footer ---------- */
.footer { border-top: 1px solid var(--rule); background: var(--ink-deep); }
.footer__grid {
  display: grid;
  gap: 32px;
  grid-template-columns: 1fr;
  padding-block: 48px;
}
@media (min-width: 560px) { .footer__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 980px) { .footer__grid { grid-template-columns: 1.4fr repeat(3, 1fr); gap: 36px; padding-block: 56px; } }
.footer__brand { display: flex; flex-direction: column; gap: 16px; }
.footer__brand img { height: 64px; width: 64px; object-fit: contain; }
.footer__brand p {
  font-family: var(--display);
  font-size: 9px;
  letter-spacing: .38em;
  color: var(--faint);
  text-transform: uppercase;
  line-height: 2.1;
}
.footer__col { display: flex; flex-direction: column; gap: 10px; font-size: 14px; }
.footer__col h2 {
  font-family: var(--display);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: .34em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 2px;
}
.footer__col a { color: var(--muted); padding: 4px 0; }
.footer__col a:hover { color: var(--gold-lit); }
.footer__base {
  border-top: 1px solid #100f0c;
  padding: 18px var(--gut) calc(18px + env(safe-area-inset-bottom, 0px));
  text-align: center;
  font-family: var(--display);
  font-size: 8px;
  letter-spacing: .3em;
  color: #453f35;
  text-transform: uppercase;
  line-height: 2;
}
@media (min-width: 700px) { .footer__base { font-size: 9px; letter-spacing: .36em; } }

/* ---------- Bag drawer ---------- */
.bag { position: fixed; inset: 0; z-index: 80; display: flex; justify-content: flex-end; }
.bag[hidden] { display: none !important; }
.bag__scrim { position: absolute; inset: 0; background: rgba(3,3,5,.74); animation: fade .25s var(--ease) both; }
.bag__panel {
  position: relative;
  width: min(430px, 100%);
  height: 100%;
  background: var(--ink-raised);
  border-left: 1px solid var(--rule-edge);
  display: flex;
  flex-direction: column;
  animation: slide .28s var(--ease) both;
  padding-top: env(safe-area-inset-top, 0px);
}
@keyframes fade { from { opacity: 0 } to { opacity: 1 } }
@keyframes slide { from { transform: translateX(22px); opacity: 0 } to { transform: none; opacity: 1 } }

.bag__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 14px 14px 14px 20px;
  border-bottom: 1px solid var(--rule-lit);
}
.bag__head h2 {
  font-family: var(--display);
  font-weight: 400;
  font-size: 12px;
  letter-spacing: .32em;
  text-transform: uppercase;
}
.bag__body { flex: 1; overflow-y: auto; -webkit-overflow-scrolling: touch; padding: 16px; display: flex; flex-direction: column; gap: 12px; }
.bag__empty {
  font-family: var(--display);
  font-size: 10px;
  letter-spacing: .26em;
  color: var(--faint);
  text-transform: uppercase;
  padding: 8px 4px;
}

.line { display: flex; gap: 14px; align-items: flex-start; border: 1px solid var(--rule-lit); padding: 12px; }
.line__art {
  width: 58px;
  height: 72px;
  flex: none;
  background: #0e0e11;
  display: grid;
  place-items: center;
  padding: 8px;
}
.line__art img { width: 100%; object-fit: contain; opacity: .9; }
.line__body { flex: 1; display: flex; flex-direction: column; gap: 6px; min-width: 0; }
.line__name {
  font-family: var(--display);
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.line__meta { font-size: 13px; color: var(--muted); }
.line__foot { display: flex; align-items: center; justify-content: space-between; gap: 10px; margin-top: 2px; }
.line__qty { display: flex; align-items: center; border: 1px solid var(--rule-edge); }
.line__qty button { width: 34px; height: 34px; color: #968e7c; font-size: 15px; line-height: 1; }
.line__qty button:hover { color: var(--gold); }
.line__qty output { min-width: 24px; text-align: center; font-size: 13px; font-family: var(--display); }
.line__remove {
  font-size: 12px;
  letter-spacing: .1em;
  color: var(--faint);
  text-decoration: underline;
  text-underline-offset: 3px;
  min-height: 34px;
  padding: 0 2px;
}
.line__remove:hover { color: var(--gold); }

.bag__foot {
  padding: 18px 16px calc(18px + env(safe-area-inset-bottom, 0px));
  border-top: 1px solid var(--rule-lit);
  display: flex;
  flex-direction: column;
  gap: 13px;
}
.bag__total {
  display: flex;
  justify-content: space-between;
  font-family: var(--display);
  font-size: 11px;
  letter-spacing: .24em;
  color: var(--gold);
  text-transform: uppercase;
}
.bag__note { font-size: 12px; color: var(--faint); letter-spacing: .05em; line-height: 1.7; }

/* ---------- Mobile buy bar ---------- */
.buybar {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px var(--gut);
  padding-bottom: calc(10px + env(safe-area-inset-bottom, 0px));
  background: rgba(7,7,10,.95);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  border-top: 1px solid var(--rule-edge);
  transform: translateY(120%);
  transition: transform .3s var(--ease);
}
.buybar[data-shown='true'] { transform: none; }
.buybar__price { display: flex; flex-direction: column; gap: 2px; flex: none; }
.buybar__price b { font-family: var(--display); font-size: 15px; letter-spacing: .12em; color: var(--gold); }
.buybar__price span { font-size: 11px; color: var(--faint); letter-spacing: .1em; }
.buybar .btn { flex: 1; padding-inline: 16px; }
@media (min-width: 1000px) { .buybar { display: none; } }

/* ---------- Toast ---------- */
.toast {
  position: fixed;
  left: 50%;
  bottom: calc(84px + env(safe-area-inset-bottom, 0px));
  z-index: 90;
  transform: translate(-50%, 16px);
  background: var(--ink-panel);
  border: 1px solid var(--gold);
  color: var(--gold-lit);
  padding: 13px 22px;
  font-family: var(--display);
  font-size: 10px;
  letter-spacing: .24em;
  text-transform: uppercase;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s var(--ease), transform .25s var(--ease);
  max-width: calc(100vw - 32px);
  text-align: center;
}
.toast[data-shown='true'] { opacity: 1; transform: translate(-50%, 0); }
@media (min-width: 1000px) { .toast { bottom: 28px; } }

/* ---------- Body lock while a sheet is open ---------- */
body[data-locked='true'] { overflow: hidden; }

/* ---------- No-JS ---------- */
.nojs-note {
  background: #140f08;
  border-bottom: 1px solid #2a2418;
  color: var(--gold-lit);
  text-align: center;
  padding: 12px var(--gut);
  font-size: 13px;
  letter-spacing: .06em;
}


/* 2026 storefront refinement: stronger product focus + resilient mobile layout */
html { scroll-padding-top: 112px; }
img { max-width: 100%; }
.product, .gallery, .detail, .atelier, .club, .footer__grid { min-width: 0; }
.btn { border-radius: 0; letter-spacing: .16em; font-weight: 500; }
.btn--gold { box-shadow: 0 10px 32px rgba(184,145,73,.10); }
.gallery__stage { overflow: hidden; }
.plate__photo { width: 100%; height: 100%; object-fit: contain; object-position: center; display: block; }
.detail__price b { font-variant-numeric: tabular-nums; }
.size { min-width: 48px; }
.guide .link-rule { display: inline-flex; margin-top: 14px; }
@media (hover:hover) {
  .btn, .thumb, .size, .bag-btn, .nav a { transition: transform .2s ease, opacity .2s ease, border-color .2s ease, background-color .2s ease; }
  .btn:hover { transform: translateY(-1px); }
  .thumb:hover { transform: translateY(-2px); }
}
@media (max-width: 699px) {
  :root { --gut: clamp(16px, 5vw, 24px); }
  .announce { font-size: 9px; letter-spacing: .16em; white-space: normal; text-align: center; padding-inline: 12px; }
  .header__bar { min-height: 66px; }
  .brand img { width: 38px; height: auto; }
  .brand__name { font-size: 13px; letter-spacing: .13em; }
  .brand__sub { font-size: 8px; letter-spacing: .12em; }
  .hero { min-height: min(760px, calc(100svh - 94px)); }
  .hero__body { padding-bottom: clamp(48px, 11vh, 90px); }
  .hero h1 { max-width: 10ch; font-size: clamp(38px, 12vw, 62px); line-height: .96; }
  .hero__cta { width: 100%; align-items: stretch; }
  .hero__cta .btn { width: 100%; }
  .specs { overflow-x: auto; scrollbar-width: none; }
  .specs::-webkit-scrollbar { display:none; }
  .specs ul { width: max-content; min-width: 100%; }
  .section { padding-block: clamp(56px, 13vw, 84px); }
  .product { gap: 40px; }
  .gallery__stage { aspect-ratio: 4 / 5; max-height: 72svh; }
  .thumbs { gap: 8px; overflow-x: auto; padding-bottom: 4px; scroll-snap-type: x proximity; scrollbar-width:none; }
  .thumbs::-webkit-scrollbar { display:none; }
  .thumb { flex: 0 0 76px; scroll-snap-align:start; }
  .detail .h2 { font-size: clamp(32px, 9.5vw, 48px); }
  .detail__price { align-items: flex-start; gap: 6px; }
  .size-list { display:grid; grid-template-columns:repeat(5,minmax(0,1fr)); gap:7px; }
  .size { width:100%; min-width:0; }
  .buy { display:grid; grid-template-columns:108px minmax(0,1fr); gap:8px; }
  .buy .btn { min-width:0; padding-inline:10px; font-size:9px; letter-spacing:.1em; }
  .terms li { grid-template-columns: 30px 1fr; }
  .atelier { gap: 32px; }
  .club__actions { display:grid; grid-template-columns:1fr; }
  .club__actions .btn { width:100%; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 34px 20px; }
  .footer__brand { grid-column:1/-1; }
  .buybar { gap:8px; }
  .buybar__price b { font-size:13px; }
  .buybar .btn { font-size:9px; letter-spacing:.1em; }
}
@media (max-width: 379px) {
  .brand__sub { display:none; }
  .bag-btn__label { display:none; }
  .hero h1 { font-size: 36px; }
  .buy { grid-template-columns: 96px minmax(0,1fr); }
  .footer__grid { grid-template-columns:1fr; }
  .footer__brand { grid-column:auto; }
}

/* Product-first cleanup */
.gallery__stage { background: #0a0a0c; }
.gallery__stage .plate__inner { background: transparent; }
.plate__photo { object-fit: contain; padding: clamp(8px,2vw,20px); }
.thumbs { justify-content: flex-start; }
.detail__head .eyebrow { opacity:.7; }
.lede { line-height:1.65; }
@media(max-width:699px){
  .gallery__stage{aspect-ratio:1/1.15;min-height:0}
  .plate__photo{padding:4px}
  .thumb{flex-basis:92px}
  .product{gap:28px}
  .detail__head{margin-bottom:18px}
  .lede{font-size:14px}
}

/* Gallery fit correction: give tall trouser photography breathing room */
.gallery__stage .plate--back .plate__inner {
  padding: clamp(34px, 5.5vw, 78px) clamp(28px, 4vw, 64px) !important;
  box-sizing: border-box;
}
.gallery__stage .plate--back .plate__photo {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
  padding: 0 !important;
}
.thumb .plate--back .plate__inner {
  padding: 8px 6px !important;
}
.thumb .plate--back .plate__photo {
  object-fit: contain;
  object-position: center;
  padding: 0 !important;
}
@media (max-width:699px){
  .gallery__stage .plate--back .plate__inner {
    padding: 24px 18px !important;
  }
}

/* Embedded sizing chart */
.guide__table-wrap{width:100%;overflow-x:auto;-webkit-overflow-scrolling:touch}
.guide__table{width:100%;min-width:520px;border-collapse:collapse;margin:14px 0 10px;font-size:11px}
.guide__table th,.guide__table td{padding:10px 8px;text-align:left;border-bottom:1px solid rgba(184,145,73,.18);white-space:nowrap}
.guide__table thead th{color:var(--gold);font-size:9px;letter-spacing:.12em;text-transform:uppercase}
.guide__table tbody th{color:var(--cream)}
@media(max-width:699px){.guide__table{font-size:10px}.guide__table th,.guide__table td{padding:9px 7px}}


/* ==========================================================================
   Header refinement — floating black-glass command bar
   ========================================================================== */
.announce {
  min-height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(10px, 2vw, 24px);
  padding-block: 8px;
  background:
    linear-gradient(90deg, transparent, rgba(200,162,74,.055) 30%, rgba(200,162,74,.055) 70%, transparent),
    #050507;
  border-bottom-color: rgba(200,162,74,.13);
  color: #a99566;
  font-family: var(--text);
  font-weight: 450;
  font-size: 9px;
  letter-spacing: .24em;
}
.announce span[aria-hidden] {
  color: var(--gold);
  font-size: 5px;
  opacity: .75;
}

.header {
  top: 0;
  padding: 10px var(--gut);
  background: linear-gradient(180deg, rgba(5,5,7,.92), rgba(5,5,7,.72));
  border-bottom: 0;
  -webkit-backdrop-filter: blur(22px) saturate(135%);
  backdrop-filter: blur(22px) saturate(135%);
}
.header::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 28px;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(7,7,10,.16), transparent);
  transform: translateY(100%);
}
.header__bar {
  position: relative;
  max-width: 1440px;
  min-height: 72px;
  padding: 8px 10px 8px 12px;
  gap: clamp(14px, 2vw, 28px);
  border: 1px solid rgba(200,162,74,.2);
  background:
    linear-gradient(115deg, rgba(255,255,255,.025), transparent 32%),
    rgba(10,10,13,.91);
  box-shadow:
    0 16px 44px rgba(0,0,0,.32),
    inset 0 1px 0 rgba(255,255,255,.035);
}
.header__bar::before,
.header__bar::after {
  content: "";
  position: absolute;
  width: 20px;
  height: 1px;
  background: var(--gold);
  opacity: .9;
}
.header__bar::before { top: -1px; left: -1px; }
.header__bar::after { right: -1px; bottom: -1px; }

.brand {
  gap: 13px;
  padding: 5px 8px 5px 4px;
}
.brand img {
  width: 48px;
  height: 48px;
  filter: drop-shadow(0 4px 13px rgba(200,162,74,.2));
  transition: filter .3s var(--ease), transform .3s var(--ease);
}
.brand:hover img {
  transform: translateY(-1px);
  filter: drop-shadow(0 5px 17px rgba(200,162,74,.35));
}
.brand__lines {
  gap: 5px;
  padding-right: 4px;
}
.brand__name {
  font-size: 14px;
  font-weight: 650;
  letter-spacing: .29em;
  padding-left: .29em;
}
.brand__sub {
  display: flex;
  align-items: center;
  gap: 7px;
  margin: 0;
  padding-left: .34em;
  color: #9b8758;
  font-family: var(--text);
  font-size: 8px;
  font-weight: 450;
  letter-spacing: .34em;
}
.brand__sub::before {
  content: "";
  width: 17px;
  height: 1px;
  background: var(--gold);
  opacity: .65;
}

.header__actions { gap: 9px; }
.bag-btn {
  position: relative;
  min-height: 48px;
  padding: 11px 12px 11px 17px;
  gap: 12px;
  overflow: hidden;
  border-color: rgba(200,162,74,.34);
  background: rgba(200,162,74,.035);
  letter-spacing: .18em;
}
.bag-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  transform: translateX(-105%);
  background: linear-gradient(90deg, transparent, rgba(240,226,184,.08), transparent);
  transition: transform .55s var(--ease);
}
.bag-btn:hover::before { transform: translateX(105%); }
.bag-btn:hover {
  border-color: rgba(240,226,184,.7);
  background: rgba(200,162,74,.07);
}
.bag-btn__count {
  min-width: 24px;
  height: 24px;
  border: 1px solid rgba(7,7,10,.55);
  background: var(--gold);
  box-shadow: 0 0 0 1px rgba(200,162,74,.22);
}

@media (min-width: 900px) {
  .header { padding-block: 12px; }
  .header__bar { padding-inline: 16px 12px; }
  .nav {
    width: min(570px, 49vw);
    flex: 0 1 570px;
    justify-content: space-between;
    gap: 5px;
    padding: 5px;
    border: 1px solid rgba(200,162,74,.1);
    background: rgba(0,0,0,.2);
  }
  .nav a {
    position: relative;
    display: flex;
    align-items: baseline;
    gap: 7px;
    min-height: 42px;
    padding: 12px clamp(10px, 1.25vw, 17px);
    color: #9a9385;
    font-family: var(--text);
    font-size: 10px;
    font-weight: 450;
    letter-spacing: .16em;
    white-space: nowrap;
  }
  .nav a span {
    color: #6c5b38;
    font-family: var(--text);
    font-size: 8px;
    letter-spacing: .05em;
  }
  .nav a::after {
    content: "";
    position: absolute;
    right: 13px;
    bottom: 7px;
    left: 13px;
    height: 1px;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform .28s var(--ease);
  }
  .nav a:hover,
  .nav a[aria-current='true'] {
    color: var(--cream);
    background: rgba(200,162,74,.045);
  }
  .nav a:hover::after,
  .nav a[aria-current='true']::after {
    transform: scaleX(1);
    transform-origin: left;
  }
}
@media (min-width: 1180px) {
  .brand img { width: 54px; height: 54px; }
  .brand__name { font-size: 15px; }
  .header__bar { min-height: 82px; }
}
@media (max-width: 899px) {
  .header {
    padding: 8px 10px;
  }
  .header__bar {
    min-height: 64px;
    padding: 6px 7px 6px 9px;
  }
  .brand { gap: 9px; padding-left: 0; }
  .brand img { width: 42px; height: 42px; }
  .brand__name { font-size: 12px; letter-spacing: .22em; padding-left: .22em; }
  .brand__sub { font-size: 7px; letter-spacing: .25em; padding-left: .25em; }
  .brand__sub::before { width: 11px; }
  .bag-btn {
    min-height: 46px;
    padding: 9px;
    border: 0;
    background: transparent;
  }
  .bag-btn__label { display: none; }
  .burger {
    width: 46px;
    height: 46px;
    border: 1px solid rgba(200,162,74,.32);
    background: rgba(200,162,74,.035);
  }
  .burger span:not(.vh),
  .burger::before,
  .burger::after {
    width: 17px;
    background: var(--gold-lit);
  }
  .mobile-nav {
    background:
      radial-gradient(circle at 20% 0%, rgba(200,162,74,.12), transparent 35%),
      #07070a;
  }
  .mobile-nav__top {
    border-bottom-color: rgba(200,162,74,.16);
  }
  .mobile-nav__list {
    counter-reset: mobile-nav;
  }
  .mobile-nav__list a {
    counter-increment: mobile-nav;
    position: relative;
    padding-left: 38px;
    border-bottom-color: rgba(200,162,74,.12);
    font-size: clamp(20px, 7vw, 31px);
  }
  .mobile-nav__list a::before {
    content: "0" counter(mobile-nav);
    position: absolute;
    left: 0;
    top: 50%;
    color: #806b42;
    font-family: var(--text);
    font-size: 9px;
    letter-spacing: .1em;
    transform: translateY(-50%);
  }
}
@media (max-width: 479px) {
  .announce {
    justify-content: space-between;
    gap: 6px;
    padding-inline: 12px;
    font-size: 7px;
    letter-spacing: .15em;
  }
  .announce span[aria-hidden] { display: none; }
  .header { padding-inline: 8px; }
  .brand__sub { display: flex; }
}
@media (max-width: 359px) {
  .announce span:nth-of-type(2),
  .announce span:nth-of-type(3) { display: none; }
  .brand__sub { display: none; }
  .brand img { width: 38px; height: 38px; }
}
