@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,500&family=Jost:wght@300;400;500;600;700&display=swap');

:root {
  --gold: #d4af4b;
  --gold-soft: #e8c96a;
  --gold-deep: #b8943a;
  --black: #0b0b0b;
  --black-2: #111111;
  --ink: #1a1a1a;
  --muted: #6b6b6b;
  --line: #e6e2d9;
  --paper: #f7f4ee;
  --card: #f3f1ec;
  --white: #ffffff;
  --shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
  --radius: 6px;
  --header-h: 118px;
  --max: 1280px;
  --sans: 'Jost', system-ui, sans-serif;
  --serif: 'Cormorant Garamond', 'Times New Roman', serif;
}

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

html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background: var(--white);
  font-size: 16px;
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
  padding-left: env(safe-area-inset-left);
  padding-right: env(safe-area-inset-right);
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font-family: inherit; }
button, a, .cat-card, .icon-btn { cursor: pointer; }
:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

.container {
  width: min(var(--max), calc(100% - 48px));
  margin-inline: auto;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 8px;
  background: var(--gold);
  color: var(--black);
  padding: 8px 14px;
  z-index: 100;
}
.skip-link:focus { left: 8px; }

/* Scrolling announcement bar */
.announce {
  background: var(--black);
  color: #f3ead2;
  overflow: hidden;
  white-space: nowrap;
  border-bottom: 1px solid rgba(212, 175, 75, 0.22);
  min-height: 40px;
  display: flex;
  align-items: center;
  padding-top: env(safe-area-inset-top);
}
.announce-track {
  display: flex;
  width: max-content;
  animation: announce-scroll 38s linear infinite;
}
.announce:hover .announce-track,
.announce:focus-within .announce-track {
  animation-play-state: paused;
}
.announce-group {
  display: flex;
  align-items: center;
  gap: 0;
  flex-shrink: 0;
}
.announce-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 8px;
  color: #f3ead2;
  font-size: 12.5px;
  letter-spacing: 0.08em;
  min-height: 40px;
}
.announce-item:hover { color: var(--gold); }
.announce-item svg {
  width: 14px;
  height: 14px;
  color: var(--gold);
  flex-shrink: 0;
}
.announce-sep {
  color: var(--gold);
  padding: 0 18px;
  font-size: 10px;
  opacity: 0.9;
}
@keyframes announce-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* Top bar (legacy, unused if announce is present) */
.topbar {
  background: var(--black);
  color: #f3ead2;
  font-size: 12.5px;
  letter-spacing: 0.04em;
  min-height: 38px;
  display: flex;
  align-items: center;
}
.topbar-inner {
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 16px;
}
.topbar a { color: #f3ead2; }
.topbar a:hover { color: var(--gold); }
.topbar-left,
.topbar-center,
.topbar-right {
  display: flex;
  align-items: center;
  gap: 10px;
}
.topbar-center { justify-content: center; }
.topbar-right { justify-content: flex-end; gap: 16px; }
.topbar svg { width: 14px; height: 14px; color: var(--gold); flex-shrink: 0; }
.topbar-links { display: flex; align-items: center; gap: 16px; }
.topbar-social { display: flex; align-items: center; gap: 10px; }
.topbar-social a {
  width: 22px; height: 22px;
  display: grid; place-items: center;
  color: var(--gold);
}
.topbar-social a:hover { color: var(--gold-soft); }

/* Nav */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--black);
  border-bottom: 1px solid rgba(212, 175, 75, 0.18);
}
.nav {
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
  min-height: 80px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 16px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--gold);
  justify-self: start;
}
.brand img {
  width: 46px;
  height: 46px;
  object-fit: contain;
  border-radius: 50%;
  background: #000;
}
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-name {
  font-family: var(--serif);
  font-size: 22px;
  letter-spacing: 0.22em;
  font-weight: 600;
}
.brand-tag {
  margin-top: 5px;
  font-size: 8.5px;
  letter-spacing: 0.28em;
  color: #cfc6ae;
  font-weight: 400;
}

.menu {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 28px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.menu > li { position: relative; }
.menu a,
.menu button.nav-link {
  background: none;
  border: 0;
  color: #f7f4ee;
  font-size: 12.5px;
  letter-spacing: 0.16em;
  font-weight: 500;
  padding: 10px 0 8px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.menu a:hover,
.menu button.nav-link:hover,
.menu a.is-active { color: var(--gold); }
.menu a.is-active { box-shadow: inset 0 -2px 0 var(--gold); }
.caret {
  width: 0; height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 4px solid currentColor;
  margin-top: 1px;
}
.dropdown {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  transform: translateX(-50%);
  min-width: 210px;
  background: #111;
  border: 1px solid rgba(212, 175, 75, 0.28);
  padding: 10px 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: 180ms ease;
  z-index: 20;
}
.menu > li:hover .dropdown,
.menu > li:focus-within .dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.dropdown a {
  display: block;
  padding: 9px 18px;
  letter-spacing: 0.08em;
  font-size: 12px;
  color: #efe7d4;
}
.dropdown a:hover { background: rgba(212, 175, 75, 0.12); color: var(--gold); }

.nav-actions {
  display: flex;
  align-items: center;
  justify-self: end;
  gap: 6px;
}
.icon-btn {
  width: 42px;
  height: 42px;
  border: 0;
  background: transparent;
  color: #f7f4ee;
  display: grid;
  place-items: center;
  position: relative;
  border-radius: 50%;
}
.icon-btn:hover { color: var(--gold); }
.icon-btn svg { width: 20px; height: 20px; }
.cart-count {
  position: absolute;
  top: 4px;
  right: 2px;
  min-width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--gold);
  color: #111;
  font-size: 10px;
  font-weight: 700;
  display: grid;
  place-items: center;
  padding: 0 3px;
}
.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  background: none;
  color: #fff;
}

/* Hero */
.hero {
  position: relative;
  min-height: min(78vh, 720px);
  overflow: hidden;
  background: #d9d4cc;
}
.hero-slides { position: absolute; inset: 0; }
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 700ms ease;
}
.hero-slide.is-active { opacity: 1; }
.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 18%;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(247,244,238,0.78) 0%, rgba(247,244,238,0.42) 38%, rgba(247,244,238,0.05) 62%);
}
.hero-copy {
  position: relative;
  z-index: 2;
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
  min-height: min(78vh, 720px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 64px 0 80px;
}
.hero-kicker {
  color: var(--gold-deep);
  letter-spacing: 0.28em;
  font-size: 13px;
  font-weight: 600;
  margin: 0 0 16px;
}
.hero-title {
  font-family: var(--serif);
  font-size: clamp(48px, 6.4vw, 86px);
  line-height: 0.95;
  font-weight: 500;
  margin: 0 0 18px;
  color: #141414;
  max-width: 9ch;
}
.hero-title em {
  font-style: italic;
  color: var(--gold);
  font-weight: 600;
}
.hero-text {
  max-width: 36ch;
  color: #2a2a2a;
  font-size: 16px;
  margin: 0 0 28px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  min-width: 44px;
  padding: 0 26px;
  width: auto;
  border: 1px solid transparent;
  font-size: 12.5px;
  letter-spacing: 0.16em;
  font-weight: 600;
  transition: 200ms ease;
}
.hero-cta {
  width: auto !important;
  max-width: 220px;
  flex: 0 0 auto;
}
.btn svg { width: 16px; height: 16px; }
.btn-dark {
  background: var(--black);
  color: #fff;
}
.btn-dark:hover { background: #222; }
.btn-gold {
  background: var(--gold);
  color: #111;
}
.btn-gold:hover { background: var(--gold-soft); }
.btn-outline {
  background: transparent;
  border-color: var(--gold);
  color: var(--gold);
}
.btn-outline:hover { background: var(--gold); color: #111; }
.btn-full { width: 100%; }
.hero-dots {
  position: absolute;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%);
  display: flex;
  gap: 2px;
  z-index: 3;
}
.hero-dots button {
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  background: transparent;
  display: grid;
  place-items: center;
}
.hero-dots button::after {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(20,20,20,0.28);
}
.hero-dots button.is-active::after { background: var(--gold); }

/* Sections */
.section { padding: 72px 0; }
.section-head {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  margin-bottom: 42px;
}
.section-head h2 {
  font-family: var(--serif);
  font-size: clamp(28px, 3vw, 38px);
  font-weight: 600;
  letter-spacing: 0.08em;
  margin: 0;
  text-transform: uppercase;
  text-align: center;
}
.rule {
  height: 1px;
  width: 72px;
  background: var(--gold);
  flex: 0 0 72px;
}
.section-intro {
  text-align: center;
  max-width: 62ch;
  margin: -18px auto 40px;
  color: var(--muted);
}

/* Categories */
.cat-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 18px;
}
.cat-card {
  background: var(--card);
  border-radius: 8px;
  padding: 22px 12px 18px;
  text-align: center;
  transition: 220ms ease;
}
.cat-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.cat-card img {
  width: 118px;
  height: 118px;
  margin: 0 auto 14px;
  border-radius: 50%;
  object-fit: cover;
  background: #ddd;
}
.cat-card h3 {
  margin: 0;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.02em;
}

/* Product rails */
.rail-wrap { position: relative; }
.rail {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - 72px) / 5);
  gap: 18px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding: 4px 2px 16px;
}
.rail::-webkit-scrollbar { display: none; }
.product-card {
  position: relative;
  scroll-snap-align: start;
  background: #fff;
  border: 1px solid #eeeae3;
  display: flex;
  flex-direction: column;
  min-width: 0;
}
.product-media {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: #ece8e1;
}
.product-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 12%;
  transition: 400ms ease;
}
.product-card:hover img { transform: scale(1.04); }
.wish {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 50%;
  background: rgba(255,255,255,0.92);
  color: #222;
  display: grid;
  place-items: center;
}
.wish svg { width: 16px; height: 16px; }
.wish.is-on { color: #b42318; }
.product-body {
  padding: 14px 12px 16px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}
.product-body h3 {
  margin: 0;
  font-size: 14.5px;
  font-weight: 500;
}
.price {
  font-weight: 700;
  font-size: 15px;
}
.rail-btn {
  position: absolute;
  top: 38%;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(212,175,75,0.55);
  background: #fff;
  color: var(--gold-deep);
  display: grid;
  place-items: center;
  z-index: 2;
  box-shadow: 0 6px 16px rgba(0,0,0,0.08);
}
.rail-btn svg { width: 16px; height: 16px; }
.rail-btn.prev { left: -8px; }
.rail-btn.next { right: -8px; }
.rail-btn:hover { background: var(--gold); color: #111; }

/* Offer / referral */
.offer-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr 1fr;
  gap: 22px;
}
.offer-card {
  position: relative;
  overflow: hidden;
  min-height: 240px;
  padding: 36px 32px;
  color: #f7f4ee;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: var(--black);
}
.offer-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 10%, rgba(0,0,0,0.72) 100%);
}
.offer-card > * { position: relative; z-index: 1; }
.offer-card.loyalty {
  background:
    linear-gradient(135deg, rgba(11,11,11,0.28), rgba(11,11,11,0.55)),
    url('/images/hero/hero-2.png') center/cover;
}
.offer-card.referral {
  background:
    linear-gradient(135deg, rgba(11,11,11,0.35), rgba(11,11,11,0.62)),
    url('/images/hero/hero-1.png') center 20%/cover;
}
.offer-card.export {
  background:
    linear-gradient(160deg, #151515 0%, #2a2418 100%);
  border: 1px solid rgba(212,175,75,0.35);
}
.offer-kicker {
  color: var(--gold);
  letter-spacing: 0.22em;
  font-size: 11px;
  font-weight: 600;
  margin: 0 0 8px;
}
.offer-card h3 {
  font-family: var(--serif);
  font-size: 34px;
  margin: 0 0 8px;
  line-height: 1.1;
}
.offer-card p { margin: 0 0 18px; color: #ddd6c6; max-width: 36ch; }
.referral-grid {
  grid-template-columns: 1fr 1fr;
}
.code-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px dashed var(--gold);
  color: var(--gold);
  padding: 8px 12px;
  letter-spacing: 0.16em;
  font-size: 12px;
  width: fit-content;
}

/* Testimonials */
.t-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.t-card {
  background: var(--paper);
  padding: 28px 24px;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  border-top: 2px solid var(--gold);
}
.t-card p {
  font-family: var(--serif);
  font-size: 18px;
  font-style: italic;
  line-height: 1.45;
  margin: 0 0 auto;
  color: #2c2c2c;
}
.t-who { display: flex; align-items: center; gap: 12px; margin-top: 22px; }
.avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--black);
  color: var(--gold);
  display: grid;
  place-items: center;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
}
.t-who strong { display: block; font-size: 14px; }
.t-who span { color: var(--muted); font-size: 12.5px; }

/* Craft / about band */
.band {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  min-height: 460px;
}
.band-media { min-height: 420px; }
.band-media img { width: 100%; height: 100%; object-fit: cover; }
.band-copy {
  background: var(--black);
  color: #f4eee3;
  padding: 64px 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.band-copy h2 {
  font-family: var(--serif);
  font-size: clamp(32px, 4vw, 48px);
  margin: 8px 0 16px;
  font-weight: 500;
}
.band-copy p { color: #cfc6b4; max-width: 52ch; }
.gold { color: var(--gold); }

/* Page hero */
.page-hero {
  background:
    linear-gradient(180deg, rgba(11,11,11,0.62), rgba(11,11,11,0.62)),
    url('/images/hero/hero-1.png') center 20%/cover;
  color: #fff;
  padding: 72px 0 64px;
  text-align: center;
}
.page-hero h1 {
  font-family: var(--serif);
  font-size: clamp(40px, 5vw, 64px);
  margin: 8px 0 8px;
  font-weight: 500;
}
.crumbs { color: #d9d0bd; font-size: 13px; letter-spacing: 0.08em; }
.crumbs a:hover { color: var(--gold); }

/* Shop */
.shop-layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 32px;
}
.filters {
  background: var(--paper);
  padding: 22px;
  height: fit-content;
  position: sticky;
  top: 130px;
}
.filters h3 {
  margin: 0 0 12px;
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.filters a,
.filters button {
  display: block;
  width: 100%;
  text-align: left;
  background: none;
  border: 0;
  padding: 8px 0;
  color: #444;
  border-bottom: 1px solid #e6e1d7;
}
.filters a.is-on,
.filters a:hover { color: var(--gold-deep); }
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

/* Product page */
.pdp {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: start;
}
.pdp-media {
  background: #ece8e1;
  aspect-ratio: 4 / 5;
  overflow: hidden;
}
.pdp-media img { width: 100%; height: 100%; object-fit: cover; object-position: center 15%; }
.pdp h1 {
  font-family: var(--serif);
  font-size: 42px;
  margin: 0 0 8px;
  font-weight: 500;
}
.pdp .price { font-size: 24px; margin: 8px 0 18px; }
.meta-row { color: var(--muted); font-size: 14px; margin-bottom: 8px; }
.qty {
  display: inline-flex;
  border: 1px solid #ddd;
  margin: 16px 0 20px;
}
.qty button, .qty input {
  width: 44px; height: 44px; border: 0; background: #fff; text-align: center;
}
.qty input { width: 54px; border-left: 1px solid #eee; border-right: 1px solid #eee; }

/* About */
.prose { max-width: 78ch; }
.prose h2 {
  font-family: var(--serif);
  font-size: 32px;
  margin: 36px 0 12px;
}
.prose p { color: #444; }
.spec-table {
  width: 100%;
  border-collapse: collapse;
  margin: 18px 0 28px;
}
.spec-table th,
.spec-table td {
  text-align: left;
  padding: 12px 14px;
  border-bottom: 1px solid var(--line);
  font-size: 14.5px;
}
.spec-table th { width: 34%; color: #666; font-weight: 500; background: var(--paper); }
.strength-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.strength {
  border: 1px solid var(--line);
  padding: 22px;
}
.strength h3 { margin: 0 0 8px; font-size: 16px; }
.strength p { margin: 0; color: var(--muted); font-size: 14.5px; }

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 40px;
}
.contact-card {
  background: var(--black);
  color: #f4eee3;
  padding: 36px;
}
.contact-card h2 { font-family: var(--serif); margin-top: 0; }
.contact-card a { color: var(--gold); }
.form {
  display: grid;
  gap: 14px;
}
.form label { font-size: 13px; letter-spacing: 0.08em; }
.form input,
.form textarea,
.form select {
  width: 100%;
  border: 1px solid var(--line);
  padding: 12px 14px;
  font-size: 15px;
}
.form input:focus,
.form textarea:focus { outline: 2px solid var(--gold); border-color: var(--gold); }
.alert {
  padding: 12px 14px;
  background: #f3ead0;
  border: 1px solid var(--gold);
  margin-bottom: 16px;
}

/* Cart */
.cart-table { width: 100%; border-collapse: collapse; }
.cart-table th { text-align: left; font-size: 12px; letter-spacing: 0.12em; color: #777; padding: 8px 0; border-bottom: 1px solid var(--line); }
.cart-table td { padding: 16px 8px 16px 0; border-bottom: 1px solid var(--line); vertical-align: middle; }
.cart-item { display: flex; gap: 14px; align-items: center; }
.cart-item img { width: 72px; height: 90px; object-fit: cover; background: #eee; }
.cart-summary {
  background: var(--paper);
  padding: 24px;
  margin-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.empty { text-align: center; padding: 48px 0; color: var(--muted); }

/* Footer */
.footer {
  background: var(--black);
  color: #d9d2c3;
  padding: 64px 0 0;
  margin-top: 24px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.8fr 0.95fr 1.1fr;
  gap: 36px;
  padding-bottom: 48px;
}
.footer h4 {
  color: var(--gold);
  letter-spacing: 0.16em;
  font-size: 13px;
  margin: 0 0 18px;
  font-weight: 600;
}
.footer p { color: #bdb5a4; font-size: 14.5px; line-height: 1.7; }
.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--gold);
  margin-bottom: 14px;
}
.footer-logo img { width: 48px; height: 48px; object-fit: contain; }
.footer-logo span {
  font-family: var(--serif);
  letter-spacing: 0.2em;
  font-size: 22px;
}
.footer-links { list-style: none; margin: 0; padding: 0; }
.footer-links a { display: block; padding: 5px 0; color: #cfc6b4; }
.footer-links a:hover { color: var(--gold); }
.socials { display: flex; gap: 10px; margin-top: 18px; }
.socials a {
  width: 36px; height: 36px;
  border: 1px solid rgba(212,175,75,0.4);
  border-radius: 50%;
  display: grid; place-items: center;
  color: var(--gold);
}
.socials a:hover { background: var(--gold); color: #111; }
.socials svg { width: 15px; height: 15px; }
.contact-list { list-style: none; margin: 0; padding: 0; }
.contact-list li { display: flex; gap: 10px; margin-bottom: 12px; align-items: flex-start; }
.contact-list svg { width: 16px; height: 16px; color: var(--gold); margin-top: 3px; flex-shrink: 0; }
.footer-bottom {
  border-top: 1px solid rgba(212,175,75,0.28);
  text-align: center;
  padding: 16px;
  color: #9e9584;
  font-size: 13px;
}

/* Search / cart drawers */
.overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.45);
  opacity: 0;
  pointer-events: none;
  transition: 200ms ease;
  z-index: 80;
}
.overlay.is-on { opacity: 1; pointer-events: auto; }
.drawer {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  width: min(420px, 100%);
  background: #fff;
  z-index: 90;
  transform: translateX(100%);
  transition: 260ms ease;
  display: flex;
  flex-direction: column;
}
.drawer.is-on { transform: none; }
.drawer-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  border-bottom: 1px solid var(--line);
}
.drawer-head h3 { margin: 0; letter-spacing: 0.12em; font-size: 14px; }
.drawer-body { padding: 18px 20px; overflow: auto; flex: 1; }
.search-box {
  position: fixed;
  top: 120px;
  left: 50%;
  transform: translateX(-50%) translateY(-12px);
  width: min(640px, calc(100% - 32px));
  background: #fff;
  z-index: 95;
  padding: 16px;
  opacity: 0;
  pointer-events: none;
  transition: 200ms ease;
  box-shadow: var(--shadow);
}
.search-box.is-on { opacity: 1; pointer-events: auto; transform: translateX(-50%); }
.search-box input {
  width: 100%;
  border: 1px solid var(--line);
  padding: 12px 14px;
  font-size: 16px;
}
.search-results { margin-top: 10px; }
.search-results a {
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 8px;
}
.search-results a:hover { background: var(--paper); }
.search-results img { width: 48px; height: 60px; object-fit: cover; }

.toast {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: var(--black);
  color: #fff;
  padding: 12px 18px;
  z-index: 120;
  opacity: 0;
  pointer-events: none;
  transition: 220ms ease;
  letter-spacing: 0.06em;
  font-size: 13px;
}
.toast.is-on { opacity: 1; transform: translateX(-50%); }

@media (max-width: 1100px) {
  .cat-grid { grid-template-columns: repeat(3, 1fr); }
  .rail { grid-auto-columns: calc((100% - 36px) / 3); }
  .t-grid, .offer-grid, .strength-grid, .product-grid, .referral-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid, .shop-layout, .pdp, .contact-grid, .band { grid-template-columns: 1fr; }
  .menu { gap: 18px; }
}

@media (max-width: 920px) {
  .menu { display: none; }
  .menu-toggle { display: grid; place-items: center; }
  .nav { grid-template-columns: 1fr auto; }
  .menu.is-open {
    display: flex;
    flex-direction: column;
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    background: #111;
    padding: 8px 20px 24px;
    align-items: stretch;
    gap: 0;
    border-top: 1px solid rgba(212, 175, 75, 0.2);
    max-height: min(78vh, 640px);
    overflow: auto;
    z-index: 60;
  }
  .menu.is-open > li { width: 100%; }
  .menu.is-open a,
  .menu.is-open button.nav-link {
    width: 100%;
    min-height: 48px;
    padding: 12px 4px;
    letter-spacing: 0.12em;
    justify-content: space-between;
    box-shadow: none;
    border-bottom: 1px solid rgba(255,255,255,0.06);
  }
  .dropdown {
    position: static;
    transform: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    border: 0;
    padding: 0 0 8px 8px;
    min-width: 0;
    background: transparent;
  }
  .dropdown a {
    min-height: 44px;
    display: flex;
    align-items: center;
    padding: 8px 10px;
  }
}

@media (max-width: 820px) {
  .topbar {
    min-height: 36px;
    padding-top: env(safe-area-inset-top);
  }
  .topbar-inner {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    width: min(var(--max), calc(100% - 24px));
  }
  .topbar-center,
  .topbar-links { display: none; }
  .topbar-left { font-size: 12px; flex-wrap: wrap; }
  .container, .nav, .hero-copy { width: min(var(--max), calc(100% - 24px)); }
  .cat-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .t-grid, .offer-grid, .strength-grid, .product-grid, .referral-grid { grid-template-columns: 1fr; }
  .rail { grid-auto-columns: 78%; }
  .hero {
    min-height: 520px;
  }
  .hero-copy {
    min-height: 520px;
    padding: 40px 0 72px;
    justify-content: flex-end;
  }
  .hero-overlay {
    background: linear-gradient(180deg, rgba(247,244,238,0.18) 20%, rgba(247,244,238,0.88) 72%);
  }
  .hero-title { font-size: clamp(40px, 11vw, 56px); max-width: 10ch; }
  .section { padding: 48px 0; }
  .section-head { gap: 12px; margin-bottom: 28px; }
  .rule { width: 36px; flex-basis: 36px; }
  .cat-card { padding: 16px 10px 14px; }
  .cat-card img { width: 92px; height: 92px; }
  .rail-btn.prev { left: 0; }
  .rail-btn.next { right: 0; }
  .filters { position: static; }
  .band-copy { padding: 36px 22px; }
  .search-box { top: 96px; }
  .brand-name { font-size: 18px; letter-spacing: 0.16em; }
  .brand img { width: 40px; height: 40px; }
  .icon-btn { width: 44px; height: 44px; }
  .footer { padding-top: 40px; }
  .footer-grid { gap: 24px; }
  .page-hero { padding: 48px 0 40px; }
}

@media (max-width: 480px) {
  .topbar-left span { display: none; }
  .topbar-left a:nth-of-type(2) { display: none; }
  .hero { min-height: 460px; }
  .hero-copy { min-height: 460px; }
  .cat-grid { grid-template-columns: 1fr 1fr; }
  .rail { grid-auto-columns: 86%; }
  .announce-item { font-size: 12px; }
}

/* Scroll + load motion */
.js-anim .hero-copy > * {
  opacity: 0;
  transform: translateY(22px);
  animation: rise-in 700ms cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
.js-anim .hero-copy > *:nth-child(1) { animation-delay: 80ms; }
.js-anim .hero-copy > *:nth-child(2) { animation-delay: 180ms; }
.js-anim .hero-copy > *:nth-child(3) { animation-delay: 280ms; }
.js-anim .hero-copy > *:nth-child(4) { animation-delay: 380ms; }
@keyframes rise-in {
  to { opacity: 1; transform: none; }
}

.js-anim .section-head,
.js-anim .section-intro,
.js-anim .cat-card,
.js-anim .product-card,
.js-anim .offer-card,
.js-anim .t-card,
.js-anim .band-media,
.js-anim .band-copy,
.js-anim .strength,
.js-anim .page-hero h1,
.js-anim .contact-card,
.js-anim .form,
.js-anim .pdp > *,
.js-anim .shop-layout > *,
.js-anim .prose h2,
.js-anim .prose p,
.js-anim .prose ul,
.js-anim .spec-table,
.js-anim .footer-grid > *,
.js-anim [data-reveal] {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 700ms cubic-bezier(0.22, 1, 0.36, 1), transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--d, 0ms);
}
.js-anim .section-head.is-in,
.js-anim .section-intro.is-in,
.js-anim .cat-card.is-in,
.js-anim .product-card.is-in,
.js-anim .offer-card.is-in,
.js-anim .t-card.is-in,
.js-anim .band-media.is-in,
.js-anim .band-copy.is-in,
.js-anim .strength.is-in,
.js-anim .page-hero h1.is-in,
.js-anim .contact-card.is-in,
.js-anim .form.is-in,
.js-anim .pdp > *.is-in,
.js-anim .shop-layout > *.is-in,
.js-anim .prose h2.is-in,
.js-anim .prose p.is-in,
.js-anim .prose ul.is-in,
.js-anim .spec-table.is-in,
.js-anim .footer-grid > *.is-in,
.js-anim [data-reveal].is-in {
  opacity: 1;
  transform: none;
}
.js-anim .band-media { transform: translateX(-36px); }
.js-anim .band-copy { transform: translateX(36px); }
.js-anim .cat-card,
.js-anim .product-card { transform: translateY(24px) scale(0.96); }
.js-anim .cat-card.is-in,
.js-anim .product-card.is-in,
.js-anim .band-media.is-in,
.js-anim .band-copy.is-in { transform: none; }

.hero-slides { will-change: transform; }
.site-header.is-compact {
  box-shadow: 0 8px 24px rgba(0,0,0,0.28);
}
.site-header.is-compact .nav { min-height: 68px; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
  .js-anim .hero-copy > *,
  .js-anim .section-head,
  .js-anim .cat-card,
  .js-anim .product-card,
  .js-anim .offer-card,
  .js-anim .t-card,
  .js-anim .band-media,
  .js-anim .band-copy,
  .js-anim .strength,
  .js-anim .footer-grid > *,
  .js-anim [data-reveal] {
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
  }
  .announce-track { animation: none !important; }
}
