/* ==================================================================
   EMPIRE GROUP — DESIGN SYSTEM
   ================================================================== */

:root {
  /* ------------------------------------------------------------------
     The whole storefront is dark by design: --cream/--cream-2/--cream-3
     keep their literal warm off-white values but now serve as light
     TEXT/foreground tones, not backgrounds. --ink/--ink-soft/--ink-faint
     and --line-light/--line-light-strong are redefined to their
     light-on-dark equivalents so every component that already used
     these tokens for text/borders automatically reads correctly on the
     new dark backgrounds — only literal `background: var(--cream...)`
     surface colors needed changing by hand (see components below).
  ------------------------------------------------------------------- */
  --black: #0a0a09;
  --charcoal: #17161a;
  --charcoal-2: #201f22;
  --charcoal-3: #2b2a2d;
  --charcoal-4: #37353b;
  --cream: #f6f1e6;
  --cream-2: #efe7d5;
  --cream-3: #e6dabf;
  --ink: #f6f1e6;
  --ink-soft: rgba(246, 241, 230, 0.65);
  --ink-faint: rgba(246, 241, 230, 0.45);
  --gold: #b7913f;
  --gold-light: #d9bc7c;
  --gold-deep: #8f6f2c;
  --white: #ffffff;

  --line-light: rgba(246, 241, 230, 0.12);
  --line-light-strong: rgba(246, 241, 230, 0.22);
  --line-dark: rgba(246, 241, 230, 0.12);
  --line-dark-strong: rgba(246, 241, 230, 0.22);

  --shadow-soft: 0 20px 50px -25px rgba(10, 10, 9, 0.35);
  --shadow-strong: 0 30px 70px -20px rgba(10, 10, 9, 0.45);

  --radius-sm: 3px;
  --radius-md: 6px;
  --radius-lg: 14px;

  --container: 1240px;
  --gutter: clamp(20px, 5vw, 64px);

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --dur: 0.5s;

  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-display: "Inter Tight", "Inter", -apple-system, sans-serif;
}

/* ---------- Reset ---------- */
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
}

body {
  background: var(--charcoal);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

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

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.08;
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding-inline: var(--gutter);
}

.section {
  padding-block: clamp(64px, 9vw, 128px);
}
.section--tight { padding-block: clamp(48px, 6vw, 88px); }
.section--dark { background: var(--black); color: var(--cream); }
.section--cream2 { background: var(--charcoal-2); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-light);
}
.eyebrow::before {
  content: "";
  width: 22px;
  height: 1px;
  background: currentColor;
  opacity: 0.9;
}

.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: clamp(32px, 4vw, 56px);
}
.section-head h2 {
  margin-top: 14px;
  font-size: clamp(28px, 3.4vw, 42px);
}
.section-head p {
  max-width: 42ch;
  color: var(--ink-soft);
  margin-top: 14px;
  font-size: 15.5px;
}

.section-head-link {
  flex-shrink: 0;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding-bottom: 6px;
  border-bottom: 1px solid var(--line-light-strong);
  transition: border-color 0.3s var(--ease), color 0.3s var(--ease);
  white-space: nowrap;
}
.section-head-link:hover { color: var(--gold-light); border-color: var(--gold-light); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: 52px;
  padding-inline: 30px;
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  white-space: nowrap;
  transition: transform 0.35s var(--ease), background-color 0.35s var(--ease), color 0.35s var(--ease), border-color 0.35s var(--ease), box-shadow 0.35s var(--ease);
  cursor: pointer;
}
.btn:active { transform: translateY(1px); }

.btn--gold {
  background: linear-gradient(135deg, var(--gold-light), var(--gold) 55%, var(--gold-deep));
  color: var(--black);
  box-shadow: 0 14px 30px -14px rgba(183, 145, 63, 0.55);
}
.btn--gold:hover { box-shadow: 0 18px 36px -12px rgba(183, 145, 63, 0.7); transform: translateY(-1px); }

.btn--dark {
  background: var(--charcoal-3);
  color: var(--cream);
  border: 1px solid var(--line-light-strong);
}
.btn--dark:hover { background: var(--charcoal-4); border-color: var(--cream); transform: translateY(-1px); }

.btn--outline-dark {
  border: 1px solid var(--line-dark-strong);
  color: var(--cream);
  background: rgba(246,241,230,0.02);
}
.btn--outline-dark:hover { border-color: var(--cream); background: rgba(246,241,230,0.08); }

.btn--outline-light {
  border: 1px solid var(--line-light-strong);
  color: var(--ink);
}
.btn--outline-light:hover { border-color: var(--ink); background: rgba(246,241,230,0.06); }
.btn--outline-light.is-active { background: var(--gold); color: var(--black); border-color: var(--gold); }

.btn--ghost {
  height: auto;
  padding: 0;
  text-transform: none;
  font-weight: 600;
  letter-spacing: 0;
  font-size: 14px;
  border-bottom: 1px solid var(--line-light-strong);
  border-radius: 0;
  padding-bottom: 3px;
}
.btn--ghost:hover { border-color: var(--gold-light); color: var(--gold-light); }

.btn--block { width: 100%; }
.btn--sm { height: 42px; padding-inline: 20px; font-size: 12px; }
.btn[disabled] { opacity: 0.45; cursor: not-allowed; pointer-events: none; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: var(--black);
  border-bottom: 1px solid var(--line-dark);
  transition: box-shadow 0.4s var(--ease);
}
.site-header.is-scrolled { box-shadow: 0 12px 30px -18px rgba(0,0,0,0.6); }
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: 84px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cream);
  flex-shrink: 0;
}
.logo svg { width: 26px; height: 26px; flex-shrink: 0; }
.logo .logo-sub {
  display: block;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 9.5px;
  letter-spacing: 0.16em;
  color: var(--gold-light);
  text-transform: uppercase;
  margin-top: 2px;
}
.logo-text { display: flex; flex-direction: column; line-height: 1.2; }

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(20px, 2.4vw, 40px);
}
.main-nav a {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.03em;
  color: rgba(246,241,230,0.65);
  position: relative;
  padding-block: 6px;
  transition: color 0.3s var(--ease);
}
.main-nav a:hover, .main-nav a.is-active { color: var(--cream); }
.main-nav a::after {
  content: "";
  position: absolute;
  left: 0; right: 100%; bottom: 0;
  height: 1px;
  background: var(--gold-light);
  transition: right 0.35s var(--ease);
}
.main-nav a:hover::after, .main-nav a.is-active::after { right: 0; }

.header-actions {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-shrink: 0;
}
.icon-btn {
  position: relative;
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--cream);
  transition: background-color 0.3s var(--ease);
}
.icon-btn:hover { background: rgba(246,241,230,0.08); }
.icon-btn svg { width: 19px; height: 19px; }

.bag-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--cream);
  transition: opacity 0.3s var(--ease);
}
.bag-btn:hover { opacity: 0.75; }
.bag-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 1px solid var(--line-dark-strong);
  font-size: 11px;
  font-weight: 600;
  transition: border-color 0.3s var(--ease), background-color 0.3s var(--ease);
}
.bag-count.is-visible { border-color: var(--gold-light); background: rgba(217,188,124,0.12); }

.cart-count {
  position: absolute;
  top: 2px; right: 2px;
  width: 16px; height: 16px;
  border-radius: 50%;
  background: var(--gold-deep);
  color: var(--white);
  font-size: 9.5px;
  font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  transform: scale(0);
  transition: transform 0.3s var(--ease);
}
.cart-count.is-visible { transform: scale(1); }

.nav-toggle {
  display: none;
  width: 40px; height: 40px;
  align-items: center; justify-content: center;
  flex-direction: column;
  gap: 5px;
}
.nav-toggle span { display: block; width: 20px; height: 1px; background: var(--cream); transition: transform 0.3s var(--ease), opacity 0.3s var(--ease); }

.utility-bar {
  background: linear-gradient(135deg, var(--gold-light), var(--gold) 60%, var(--gold-deep));
  color: var(--black);
}
.utility-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 40px;
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 0.03em;
  gap: 16px;
  text-align: left;
}
.utility-bar-inner strong { font-weight: 700; }
.utility-bar-link {
  flex-shrink: 0;
  font-weight: 600;
  white-space: nowrap;
  transition: opacity 0.3s var(--ease);
}
.utility-bar-link:hover { opacity: 0.7; }

/* ---------- Mobile nav drawer ---------- */
.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 300;
  visibility: hidden;
}
.mobile-nav.is-open { visibility: visible; }
.mobile-nav-scrim {
  position: absolute; inset: 0;
  background: rgba(10,10,9,0.5);
  opacity: 0;
  transition: opacity 0.4s var(--ease);
}
.mobile-nav.is-open .mobile-nav-scrim { opacity: 1; }
.mobile-nav-panel {
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: min(360px, 86vw);
  background: var(--charcoal-2);
  padding: 28px 28px 32px;
  transform: translateX(100%);
  transition: transform 0.45s var(--ease);
  display: flex;
  flex-direction: column;
}
.mobile-nav.is-open .mobile-nav-panel { transform: translateX(0); }
.mobile-nav-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 36px; }
.mobile-nav ul { display: flex; flex-direction: column; gap: 4px; margin-bottom: auto; }
.mobile-nav a { display: block; padding: 14px 4px; font-size: 20px; font-family: var(--font-display); font-weight: 600; border-bottom: 1px solid var(--line-light); }
.mobile-nav-foot { display: flex; flex-direction: column; gap: 14px; padding-top: 24px; }
.mobile-nav-foot a { font-size: 13px; color: var(--ink-soft); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background: radial-gradient(120% 140% at 82% 12%, #232127 0%, var(--charcoal) 46%, var(--black) 100%);
  color: var(--cream);
  overflow: hidden;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: clamp(32px, 5vw, 64px);
  padding-block: clamp(64px, 9vw, 60px) clamp(56px, 8vw, 72px);
  min-height: min(84vh, 780px);
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 11.5px; font-weight: 600; letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--gold-light);
  opacity: 0; transform: translateY(14px);
}
.hero-eyebrow::before { content: ""; width: 22px; height: 1px; background: currentColor; }
.hero h1 {
  margin-top: 22px;
  font-size: clamp(38px, 5.4vw, 68px);
  max-width: 14ch;
  opacity: 0; transform: translateY(18px);
}
.hero h1 em { font-style: normal; color: var(--gold-light); }
.hero p.lede {
  margin-top: 24px;
  max-width: 46ch;
  font-size: clamp(15.5px, 1.3vw, 17.5px);
  color: rgba(246,241,230,0.68);
  opacity: 0; transform: translateY(18px);
}
.hero-ctas { margin-top: 36px; display: flex; gap: 16px; flex-wrap: wrap; opacity: 0; transform: translateY(18px); }
.hero-disclaimer {
  margin-top: 32px;
  display: inline-flex; align-items: center; gap: 12px;
  font-size: 11px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(246,241,230,0.45);
  opacity: 0; transform: translateY(18px);
}
.hero-disclaimer::before { content: ""; width: 22px; height: 1px; background: currentColor; }

.hero.is-ready .hero-eyebrow,
.hero.is-ready h1,
.hero.is-ready p.lede,
.hero.is-ready .hero-ctas,
.hero.is-ready .hero-disclaimer {
  opacity: 1; transform: translateY(0);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}
.hero.is-ready h1 { transition-delay: 0.08s; }
.hero.is-ready p.lede { transition-delay: 0.16s; }
.hero.is-ready .hero-ctas { transition-delay: 0.24s; }
.hero.is-ready .hero-disclaimer { transition-delay: 0.32s; }

.hero-visual {
  position: relative;
  aspect-ratio: 620 / 640;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line-dark-strong);
  box-shadow: var(--shadow-strong);
}
.hero-visual .hero-scene-art { width: 100%; height: 100%; display: block; }
.hero-visual img.hero-scene-art { object-fit: cover; }
.hero-crown-mark {
  position: absolute;
  top: -60px; right: -60px;
  width: 260px; height: 260px;
  opacity: 0.05;
  pointer-events: none;
}

.hero-tagline-bar {
  background: var(--black);
  border-top: 1px solid var(--line-dark);
}
.hero-tagline-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  height: 52px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(246,241,230,0.4);
}
.hero-tagline-bar-inner a {
  color: rgba(246,241,230,0.7);
  transition: color 0.3s var(--ease);
}
.hero-tagline-bar-inner a:hover { color: var(--gold-light); }

/* ---------- Marquee strip ---------- */
.marquee-strip {
  border-block: 1px solid var(--line-light);
  background: var(--charcoal-2);
  overflow: hidden;
}
.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 28s linear infinite;
}
.marquee-track span {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 36px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-soft);
  white-space: nowrap;
}
.marquee-track span::before { content: ""; width: 5px; height: 5px; border-radius: 50%; background: var(--gold); }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .marquee-track { animation: none; } }

/* ---------- Product cards / grid ---------- */
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(18px, 2vw, 28px);
}
.product-card {
  background: var(--charcoal-2);
  border: 1px solid var(--line-light);
  border-radius: var(--radius-md);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.45s var(--ease), box-shadow 0.45s var(--ease), border-color 0.45s var(--ease);
}
.product-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-soft); border-color: var(--line-light-strong); }
.product-card-media {
  position: relative;
  aspect-ratio: 4 / 5;
  background: var(--charcoal-3);
  overflow: hidden;
}
.product-card-media > a { display: block; width: 100%; height: 100%; }
.product-art { object-fit: cover; }
.product-card-media .product-art { width: 100%; height: 100%; transition: transform 0.6s var(--ease); }
.product-card:hover .product-card-media .product-art { transform: scale(1.045); }

.badge {
  /* Always a light frosted chip over a product image, regardless of the
     site's own light/dark theme — so its text stays a fixed dark color
     rather than following --ink (which flips with the theme). */
  position: absolute;
  top: 14px; left: 14px;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(246,241,230,0.9);
  color: #17140f;
  backdrop-filter: blur(4px);
}
.badge--limited { color: var(--gold-deep); }
.badge--backorder { color: #5a5548; }
.badge--verified { background: rgba(183,145,63,0.14); color: var(--gold-deep); }
.badge--bestseller {
  left: auto; right: 14px;
  background: linear-gradient(135deg, var(--gold-light), var(--gold) 60%, var(--gold-deep));
  color: var(--black);
}
.product-card-discount { font-size: 12px; font-weight: 600; color: var(--gold-light); margin-top: -4px; }

.quick-add {
  position: absolute;
  right: 14px; bottom: 14px;
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--charcoal);
  color: var(--cream);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transform: translateY(8px);
  transition: opacity 0.35s var(--ease), transform 0.35s var(--ease), background-color 0.3s var(--ease);
}
.quick-add svg { width: 17px; height: 17px; }
.product-card:hover .quick-add { opacity: 1; transform: translateY(0); }
.quick-add:hover { background: var(--gold-deep); color: var(--black); }

.product-card-body {
  padding: 18px 18px 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}
.product-card-cat { font-size: 10.5px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-faint); }
.product-card-name { font-family: var(--font-display); font-size: 17px; font-weight: 600; }
.product-card-name span { color: var(--ink-faint); font-weight: 500; font-size: 13px; display: block; margin-top: 2px; }
.product-card-desc { font-size: 13px; color: var(--ink-soft); line-height: 1.55; flex: 1; }
.product-card-foot { display: flex; align-items: center; justify-content: space-between; padding-top: 6px; margin-top: auto; border-top: 1px solid var(--line-light); }
.price { font-family: var(--font-display); font-weight: 600; font-size: 16px; }
.view-link { font-size: 12px; font-weight: 600; letter-spacing: 0.03em; color: var(--ink-soft); transition: color 0.3s var(--ease); }
.product-card:hover .view-link { color: var(--gold-light); }

/* ---------- Trust grid ---------- */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  background: var(--line-light);
  border: 1px solid var(--line-light);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.trust-item {
  background: var(--charcoal-2);
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.trust-icon {
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: var(--charcoal-3);
  color: var(--gold-light);
}
.trust-icon svg { width: 20px; height: 20px; }
.trust-item h3 { font-size: 14.5px; font-weight: 600; font-family: var(--font-display); }
.trust-item p { font-size: 12.5px; color: var(--ink-soft); line-height: 1.55; }

/* ---------- Testing table ---------- */
.testing-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 22px;
}
.select-field, .text-field {
  height: 46px;
  padding-inline: 16px;
  border: 1px solid var(--line-light-strong);
  border-radius: var(--radius-sm);
  background: var(--charcoal-2);
  color: var(--cream);
  font-size: 13.5px;
  min-width: 200px;
}
.select-field:focus, .text-field:focus { outline: none; border-color: var(--gold); }

.testing-table-wrap {
  border: 1px solid var(--line-light);
  border-radius: var(--radius-md);
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  background: var(--charcoal-2);
}
.testing-table { width: 100%; min-width: 620px; border-collapse: collapse; font-size: 13.5px; }
.testing-table th {
  text-align: left;
  font-size: 10.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-faint);
  font-weight: 600;
  padding: 16px 20px;
  background: var(--charcoal-3);
  border-bottom: 1px solid var(--line-light);
}
.testing-table td { padding: 16px 20px; border-bottom: 1px solid var(--line-light); vertical-align: middle; }
.testing-table tr:last-child td { border-bottom: none; }
.testing-table tr { transition: background-color 0.25s var(--ease); }
.testing-table tbody tr:hover { background: var(--charcoal-3); }
.testing-product { display: flex; align-items: center; gap: 12px; font-weight: 600; }
.testing-product .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--gold); flex-shrink: 0; }
.status-pill { display: inline-flex; align-items: center; gap: 6px; font-size: 11.5px; font-weight: 600; padding: 5px 11px; border-radius: 999px; background: rgba(122,196,122,0.14); color: #8fd18f; }
.status-pill::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: currentColor; }
.doc-link { font-weight: 600; color: var(--gold-light); border-bottom: 1px solid transparent; }
.doc-link:hover { border-color: var(--gold-light); }

/* ---------- About / split sections ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 80px);
  align-items: center;
}
.split-visual {
  position: relative;
  aspect-ratio: 6 / 5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: linear-gradient(150deg, var(--charcoal-2), var(--black));
}
.split ul.check-list { display: flex; flex-direction: column; gap: 16px; margin-top: 28px; }
.check-list li { display: flex; gap: 14px; align-items: flex-start; font-size: 14.5px; color: var(--ink-soft); }
.check-list li svg { width: 18px; height: 18px; flex-shrink: 0; margin-top: 2px; color: var(--gold-light); }

/* ---------- Shipping steps ---------- */
.steps-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  counter-reset: step;
}
.step-card { position: relative; padding-top: 8px; }
.step-card::before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  color: var(--gold-light);
  letter-spacing: 0.05em;
}
.step-card h3 { margin-top: 14px; font-size: 16.5px; }
.step-card p { margin-top: 8px; font-size: 13.5px; color: var(--ink-soft); line-height: 1.6; }
.step-connector { display: none; }
.steps-row .step-card:not(:last-child) { border-right: 1px solid var(--line-light); padding-right: 24px; }

/* ---------- FAQ accordion ---------- */
.faq-list { border-top: 1px solid var(--line-light); max-width: 820px; }
.faq-item { border-bottom: 1px solid var(--line-light); }
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 4px;
  text-align: left;
  font-family: var(--font-display);
  font-size: 16.5px;
  font-weight: 600;
}
.faq-q .plus { position: relative; width: 18px; height: 18px; flex-shrink: 0; }
.faq-q .plus::before, .faq-q .plus::after {
  content: ""; position: absolute; background: var(--ink); transition: transform 0.35s var(--ease), opacity 0.35s var(--ease);
}
.faq-q .plus::before { left: 0; top: 50%; width: 100%; height: 1px; transform: translateY(-50%); }
.faq-q .plus::after { top: 0; left: 50%; width: 1px; height: 100%; transform: translateX(-50%); }
.faq-item.is-open .plus::after { transform: translateX(-50%) rotate(90deg); opacity: 0; }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease);
}
.faq-a p { padding: 0 4px 24px; max-width: 66ch; font-size: 14.5px; color: var(--ink-soft); line-height: 1.7; }

/* ---------- Footer ---------- */
.site-footer { background: var(--black); color: rgba(246,241,230,0.7); }
.footer-top {
  display: grid;
  grid-template-columns: 1.4fr repeat(4, 1fr);
  gap: 32px;
  padding-block: clamp(56px, 7vw, 88px) 48px;
}
.footer-brand .logo { color: var(--cream); }
.footer-brand p { margin-top: 18px; font-size: 13.5px; max-width: 32ch; line-height: 1.65; color: rgba(246,241,230,0.55); }
.footer-social { display: flex; gap: 12px; margin-top: 24px; }
.footer-social a { width: 38px; height: 38px; border-radius: 50%; border: 1px solid var(--line-dark-strong); display: flex; align-items: center; justify-content: center; transition: border-color 0.3s var(--ease), background-color 0.3s var(--ease); }
.footer-social a svg { width: 16px; height: 16px; }
.footer-social a:hover { border-color: var(--gold-light); background: rgba(217,188,124,0.08); }
.footer-col h4 { font-family: var(--font-display); font-size: 12.5px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--cream); margin-bottom: 18px; }
.footer-col ul { display: flex; flex-direction: column; gap: 12px; }
.footer-col a { font-size: 13.5px; transition: color 0.3s var(--ease); }
.footer-col a:hover { color: var(--gold-light); }
.footer-bottom {
  border-top: 1px solid var(--line-dark);
  padding-block: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 12px;
}
.footer-disclaimer {
  border-top: 1px solid var(--line-dark);
  padding-block: 20px;
  font-size: 11.5px;
  color: rgba(246,241,230,0.4);
  line-height: 1.6;
}

/* ---------- Cart drawer ---------- */
.cart-drawer-root { position: fixed; inset: 0; z-index: 400; visibility: hidden; }
.cart-drawer-root.is-open { visibility: visible; }
.cart-scrim { position: absolute; inset: 0; background: rgba(10,10,9,0.5); opacity: 0; transition: opacity 0.4s var(--ease); }
.cart-drawer-root.is-open .cart-scrim { opacity: 1; }
.cart-panel {
  position: absolute; top: 0; right: 0; bottom: 0;
  width: min(440px, 92vw);
  background: var(--charcoal-2);
  display: flex; flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.45s var(--ease);
  box-shadow: var(--shadow-strong);
}
.cart-drawer-root.is-open .cart-panel { transform: translateX(0); }
.cart-head { display: flex; align-items: center; justify-content: space-between; padding: 24px 24px 20px; border-bottom: 1px solid var(--line-light); }
.cart-head h3 { font-size: 18px; }
.cart-close { width: 36px; height: 36px; border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.cart-close:hover { background: var(--charcoal-3); }
.cart-close svg { width: 16px; height: 16px; }
.cart-items { flex: 1; overflow-y: auto; padding: 8px 24px; display: flex; flex-direction: column; }
.cart-line { display: flex; gap: 14px; padding: 18px 0; border-bottom: 1px solid var(--line-light); }
.cart-line-media { width: 68px; height: 82px; border-radius: var(--radius-sm); overflow: hidden; background: var(--charcoal-3); flex-shrink: 0; }
.cart-line-media .product-art { width: 100%; height: 100%; }
.cart-line-body { flex: 1; display: flex; flex-direction: column; gap: 6px; min-width: 0; }
.cart-line-top { display: flex; justify-content: space-between; gap: 10px; }
.cart-line-name { font-size: 14px; font-weight: 600; }
.cart-line-variant { font-size: 12px; color: var(--ink-faint); }
.cart-line-discount { font-size: 11px; color: var(--gold-light); font-weight: 600; margin-top: 2px; }
.cart-line-remove { font-size: 11.5px; color: var(--ink-faint); text-decoration: underline; align-self: flex-start; }
.cart-line-remove:hover { color: var(--ink); }
.qty-stepper { display: inline-flex; align-items: center; border: 1px solid var(--line-light-strong); border-radius: var(--radius-sm); height: 34px; width: fit-content; }
.qty-stepper button { width: 32px; height: 100%; display: flex; align-items: center; justify-content: center; font-size: 15px; }
.qty-stepper button:hover { background: var(--charcoal-3); }
.qty-stepper span { min-width: 28px; text-align: center; font-size: 13px; font-weight: 600; }
.cart-line-price { font-size: 14px; font-weight: 600; white-space: nowrap; }
.cart-empty { display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; gap: 16px; padding: 60px 20px; color: var(--ink-soft); flex: 1; }
.cart-empty svg { width: 44px; height: 44px; color: var(--ink-faint); }
.cart-foot { padding: 22px 24px 28px; border-top: 1px solid var(--line-light); display: flex; flex-direction: column; gap: 14px; }
.cart-subtotal-row { display: flex; justify-content: space-between; align-items: baseline; font-size: 14.5px; }
.cart-subtotal-row strong { font-family: var(--font-display); font-size: 19px; }
.cart-note { font-size: 12px; color: var(--ink-faint); text-align: center; }

/* ---------- Forms ---------- */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-field { display: flex; flex-direction: column; gap: 8px; }
.form-field.full { grid-column: 1 / -1; }
.form-field label { font-size: 12px; font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase; color: var(--ink-soft); }
.form-field input, .form-field select, .form-field textarea {
  height: 50px; padding-inline: 16px;
  border: 1px solid var(--line-light-strong);
  border-radius: var(--radius-sm);
  background: var(--charcoal-2);
  color: var(--cream);
  font-size: 14.5px;
}
.form-field textarea { height: auto; padding-block: 14px; resize: vertical; min-height: 110px; }
.form-field input:focus, .form-field select:focus, .form-field textarea:focus { outline: none; border-color: var(--gold); }
.form-field select option { background: var(--charcoal-2); color: var(--cream); }

/* ---------- Misc pages / product detail ---------- */
.breadcrumb { font-size: 12.5px; color: var(--ink-faint); display: flex; gap: 8px; align-items: center; margin-bottom: 28px; }
.breadcrumb a:hover { color: var(--ink); }

.product-detail { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 5vw, 72px); }
.gallery-main { aspect-ratio: 4/5; border-radius: var(--radius-lg); overflow: hidden; background: var(--charcoal-3); border: 1px solid var(--line-light); }
.gallery-main .product-art { width: 100%; height: 100%; }
.gallery-thumbs { display: flex; gap: 12px; margin-top: 14px; }
.gallery-thumbs button { width: 74px; height: 90px; border-radius: var(--radius-sm); overflow: hidden; border: 1px solid var(--line-light-strong); opacity: 0.55; transition: opacity 0.3s var(--ease), border-color 0.3s var(--ease); flex-shrink: 0; }
.gallery-thumbs button.is-active, .gallery-thumbs button:hover { opacity: 1; border-color: var(--gold); }
.gallery-thumbs .product-art { width: 100%; height: 100%; }

.pd-cat { font-size: 11.5px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold-light); }
.pd-title { margin-top: 10px; font-size: clamp(28px, 3.2vw, 38px); }
.pd-variant { margin-top: 6px; font-size: 15px; color: var(--ink-soft); }

.pd-variant-picker { margin-top: 20px; }
.pd-variant-picker-label { display: block; font-size: 11px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-faint); margin-bottom: 10px; }
.pd-variant-options { display: flex; gap: 10px; flex-wrap: wrap; }
.pd-variant-option {
  min-width: 64px;
  padding: 10px 16px;
  border: 1px solid var(--line-light-strong);
  border-radius: var(--radius-sm);
  font-size: 13.5px;
  font-weight: 600;
  text-align: center;
  background: var(--charcoal-2);
  transition: border-color 0.3s var(--ease), background-color 0.3s var(--ease), color 0.3s var(--ease), opacity 0.3s var(--ease);
}
.pd-variant-option:hover { border-color: var(--ink-faint); }
.pd-variant-option.is-active { background: var(--gold); border-color: var(--gold); color: var(--black); }
.pd-variant-option.is-unavailable { opacity: 0.4; }
.pd-variant-option .pd-variant-option-note { display: block; font-size: 10px; font-weight: 500; letter-spacing: 0.04em; text-transform: uppercase; margin-top: 2px; opacity: 0.75; }
.pd-price-row { display: flex; align-items: center; gap: 16px; margin-top: 20px; }
.pd-price { font-family: var(--font-display); font-size: 26px; font-weight: 600; }
.pd-desc { margin-top: 20px; font-size: 15px; color: var(--ink-soft); line-height: 1.7; max-width: 52ch; }
.pd-price-total-note { margin-top: 8px; font-size: 13px; font-weight: 600; color: var(--gold-light); }
.pd-discount-tiers { margin-top: 18px; display: flex; flex-direction: column; gap: 6px; padding: 14px 16px; background: var(--charcoal-3); border-radius: var(--radius-sm); max-width: fit-content; }
.pd-discount-tiers li { font-size: 13px; color: var(--ink-soft); display: flex; align-items: center; gap: 8px; }
.pd-discount-tiers li strong { color: var(--ink); font-weight: 600; }
.pd-discount-tiers li::before { content: ""; width: 5px; height: 5px; border-radius: 50%; background: var(--gold); flex-shrink: 0; }
.pd-purchase-row { display: flex; align-items: center; gap: 14px; margin-top: 30px; }
.pd-note { display: flex; align-items: center; gap: 10px; margin-top: 20px; font-size: 12.5px; color: var(--ink-faint); }
.pd-note svg { width: 16px; height: 16px; color: var(--gold-light); flex-shrink: 0; }

.pd-tabs { margin-top: 44px; border-top: 1px solid var(--line-light); }
.pd-tab-item { border-bottom: 1px solid var(--line-light); }
.pd-tab-item .faq-q { font-size: 14px; text-transform: uppercase; letter-spacing: 0.05em; }
.pd-tab-item .faq-a ul { padding: 0 4px 24px; display: flex; flex-direction: column; gap: 8px; }
.pd-tab-item .faq-a li { font-size: 14px; color: var(--ink-soft); }
.pd-tab-item .faq-a table { width: 100%; margin: 0 4px 24px; font-size: 13.5px; border-collapse: collapse; }
.pd-tab-item .faq-a table td { padding: 8px 0; border-bottom: 1px solid var(--line-light); color: var(--ink-soft); }
.pd-tab-item .faq-a table td:first-child { color: var(--ink); font-weight: 600; width: 40%; }

/* ---------- Reveal-on-scroll ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.reveal-stagger.is-visible > * { transition-delay: calc(var(--i, 0) * 70ms); }

/* ---------- Page hero (interior pages) ---------- */
.page-hero { background: var(--charcoal); color: var(--cream); padding-block: 72px 56px; }
.page-hero .eyebrow { color: var(--gold-light); }
.page-hero h1 { margin-top: 16px; font-size: clamp(32px, 4vw, 48px); max-width: 20ch; }
.page-hero p { margin-top: 16px; max-width: 56ch; color: rgba(246,241,230,0.65); font-size: 15.5px; }

.confirmation-box {
  max-width: 560px;
  margin: 0 auto;
  text-align: center;
  padding: 56px 40px;
  border: 1px solid var(--line-light);
  border-radius: var(--radius-lg);
  background: var(--charcoal-2);
}
.confirmation-box .check-circle { width: 64px; height: 64px; border-radius: 50%; background: rgba(183,145,63,0.18); color: var(--gold-light); display: flex; align-items: center; justify-content: center; margin: 0 auto 24px; }
.confirmation-box .check-circle svg { width: 30px; height: 30px; }

.toast {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translate(-50%, 20px);
  background: var(--charcoal);
  color: var(--cream);
  padding: 14px 22px;
  border-radius: 999px;
  font-size: 13.5px;
  font-weight: 500;
  display: flex; align-items: center; gap: 10px;
  z-index: 500;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s var(--ease), transform 0.35s var(--ease);
  box-shadow: var(--shadow-strong);
}
.toast.is-visible { opacity: 1; transform: translate(-50%, 0); pointer-events: auto; }
.toast svg { width: 16px; height: 16px; color: var(--gold-light); flex-shrink: 0; }

.checkout-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 48px; align-items: start; }
@media (max-width: 900px) { .checkout-grid { grid-template-columns: 1fr; } }

.payment-methods { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
@media (max-width: 520px) { .payment-methods { grid-template-columns: 1fr; } }
.payment-method-btn {
  border: 1px solid var(--line-light-strong);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 3px;
  background: var(--charcoal-2);
  transition: border-color 0.3s var(--ease), background-color 0.3s var(--ease);
}
.payment-method-btn:hover { border-color: var(--ink-faint); }
.payment-method-btn.is-active { border-color: var(--gold); background: rgba(183,145,63,0.12); }
.payment-method-btn .pm-ticker { font-family: var(--font-display); font-weight: 700; font-size: 14.5px; }
.payment-method-btn .pm-label { font-size: 11.5px; color: var(--ink-faint); }

.payment-instructions { margin-top: 18px; padding: 20px; border: 1px solid var(--line-light); border-radius: var(--radius-md); background: var(--charcoal-3); }
.payment-row { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 12px 0; border-bottom: 1px solid var(--line-light); }
.payment-row:last-child { border-bottom: none; padding-bottom: 0; }
.payment-row:first-child { padding-top: 0; }
.payment-row .pr-label { font-size: 10.5px; text-transform: uppercase; letter-spacing: 0.06em; color: var(--ink-faint); margin-bottom: 4px; }
.payment-row .pr-value { font-family: "SFMono-Regular", Consolas, monospace; font-size: 13px; word-break: break-all; }
.copy-btn { flex-shrink: 0; font-size: 11px; font-weight: 600; padding: 7px 12px; border: 1px solid var(--line-light-strong); border-radius: 999px; white-space: nowrap; transition: border-color 0.3s var(--ease), color 0.3s var(--ease); }
.copy-btn:hover { border-color: var(--gold-light); color: var(--gold-light); }
.payment-note { margin-top: 14px; font-size: 12.5px; color: var(--ink-soft); line-height: 1.6; display: flex; gap: 8px; }
.payment-note svg { width: 15px; height: 15px; flex-shrink: 0; margin-top: 1px; color: var(--gold-light); }

.legal-copy { max-width: 74ch; }
.legal-copy h2 { font-size: 20px; margin-top: 36px; margin-bottom: 12px; }
.legal-copy h2:first-child { margin-top: 0; }
.legal-copy p, .legal-copy li { font-size: 14.5px; color: var(--ink-soft); line-height: 1.75; margin-bottom: 12px; }
.legal-copy ul { padding-left: 20px; list-style: disc; }
.legal-copy strong { color: var(--ink); }

/* ---------- Utilities ---------- */
.text-center { text-align: center; }
.mt-0 { margin-top: 0 !important; }
.mx-auto { margin-inline: auto; }

/* ==================================================================
   RESPONSIVE
   ================================================================== */
@media (max-width: 1080px) {
  .product-grid { grid-template-columns: repeat(3, 1fr); }
  .trust-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 900px) {
  .main-nav { display: none; }
  .nav-toggle { display: flex; }
  .hero-inner { grid-template-columns: 1fr; min-height: auto; padding-block: 40px 48px; }
  .hero-visual { margin-top: 36px; }
  .split { grid-template-columns: 1fr; }
  .split-visual { order: -1; }
  .steps-row { grid-template-columns: 1fr 1fr; row-gap: 32px; }
  .steps-row .step-card:nth-child(2) { border-right: none; padding-right: 0; }
  .product-detail { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .section-head { flex-direction: column; align-items: flex-start; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .form-grid { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
  .product-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .steps-row { grid-template-columns: 1fr; }
  .steps-row .step-card:not(:last-child) { border-right: none; padding-right: 0; border-bottom: 1px solid var(--line-light); padding-bottom: 24px; }
  .trust-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .hero-ctas { flex-direction: column; align-items: stretch; }
  .hero-ctas .btn { width: 100%; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .cart-panel, .mobile-nav-panel { width: 100%; }
}
