/* ============================================================
   Sparks & Stone — storefront stylesheet
   Palette taken from the brand mark: forest green + gold leaf.
   ============================================================ */

:root {
  --green-900: #061A10;
  --green-850: #08210F;
  --green-800: #0B2A1B;
  --green-700: #123B27;
  --green-600: #1B5236;
  --green-500: #2C6B49;

  --gold-100: #FBF3DC;
  --gold-200: #F4E4B4;
  --gold-300: #EAD08A;
  --gold-400: #D9B458;
  --gold-500: #C79A33;
  --gold-600: #9E7620;

  --cream:    #FCF9F3;
  --cream-2:  #F5EFE3;
  --paper:    #FFFFFF;
  --ink:      #16211B;
  --ink-2:    #3C4A42;
  --muted:    #6E7C74;
  --line:     #E5DFD2;

  --ok:   #1E7A54;
  --warn: #B4691A;
  --bad:  #A32D34;

  --radius:    14px;
  --radius-sm: 9px;
  --radius-lg: 22px;

  --shadow-sm: 0 1px 2px rgba(6, 26, 16, .06), 0 2px 8px rgba(6, 26, 16, .05);
  --shadow-md: 0 4px 12px rgba(6, 26, 16, .08), 0 14px 32px rgba(6, 26, 16, .08);
  --shadow-lg: 0 10px 24px rgba(6, 26, 16, .10), 0 30px 70px rgba(6, 26, 16, .14);

  --serif: 'Cormorant Garamond', 'Georgia', 'Times New Roman', serif;
  --sans:  'Jost', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  --wrap: 1280px;
  --header-h: 118px;

  --gold-sheen: linear-gradient(103deg, var(--gold-200) 0%, var(--gold-400) 26%, var(--gold-200) 46%, var(--gold-500) 68%, var(--gold-300) 100%);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; }

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

.wrap { width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 24px; }
.stack > * + * { margin-top: 12px; }

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

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

/* ============================================================
   Buttons
   ============================================================ */

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  padding: 13px 26px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 12.5px; font-weight: 500; letter-spacing: .13em; text-transform: uppercase;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease, border-color .18s ease;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }

.btn-gold {
  background: var(--gold-sheen);
  color: var(--green-900);
  box-shadow: 0 2px 10px rgba(199, 154, 51, .35);
}
.btn-gold:hover { box-shadow: 0 6px 20px rgba(199, 154, 51, .5); }

.btn-green { background: var(--green-800); color: var(--gold-200); }
.btn-green:hover { background: var(--green-700); }

.btn-outline { background: transparent; border-color: var(--green-800); color: var(--green-800); }
.btn-outline:hover { background: var(--green-800); color: var(--gold-200); }

.btn-ghost { background: transparent; border-color: var(--line); color: var(--ink-2); }
.btn-ghost:hover { border-color: var(--green-700); color: var(--green-800); }

.btn-light { background: #fff; border-color: rgba(234,208,138,.5); color: var(--green-800); }
.btn-light:hover { background: var(--gold-100); }

.btn[disabled], .btn[aria-disabled="true"] {
  opacity: .45; pointer-events: none; box-shadow: none;
}
.btn-block { width: 100%; }
.btn-sm { padding: 9px 18px; font-size: 11px; }

/* ============================================================
   Header
   ============================================================ */

.announce {
  background: var(--green-900);
  color: var(--gold-200);
  font-size: 11.5px; letter-spacing: .18em; text-transform: uppercase;
  overflow: hidden;
  border-bottom: 1px solid rgba(234, 208, 138, .16);
}
.announce-track {
  display: flex; width: max-content;
  animation: marquee 34s linear infinite;
}
.announce:hover .announce-track { animation-play-state: paused; }
.announce-run { display: flex; align-items: center; padding: 9px 0; }
.announce-run span { padding: 0 34px; display: inline-flex; align-items: center; gap: 10px; }
.announce-run span::after {
  content: '✦'; color: var(--gold-500); font-size: 10px; margin-left: 24px;
}
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) {
  .announce-track { animation: none; }
}

.site-header {
  position: sticky; top: 0; z-index: 60;
  background: var(--green-800);
  color: var(--cream);
  box-shadow: 0 1px 0 rgba(234, 208, 138, .14);
}

/* These elements also carry .wrap. Use longhands so the two rules do not
   wipe each other's padding, and out-specify .wrap so the responsive
   .wrap override further down cannot flatten the vertical padding. */
.site-header .header-main {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 16px;
  padding-top: 12px;
  padding-bottom: 12px;
}

.brand { display: inline-flex; align-items: center; justify-self: center; }
.brand-lockup { display: inline-flex; align-items: center; gap: 13px; }
.brand-mark { flex: none; }

.brand-img { display: none; height: 62px; width: auto; }
.brand.has-img .brand-img { display: block; }
.brand.has-img .brand-lockup { display: none; }

.brand-text { line-height: 1; }
.brand-name {
  display: block;
  font-family: var(--serif); font-size: 30px; font-weight: 600;
  font-variant: small-caps; letter-spacing: .045em;
  background: var(--gold-sheen);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  white-space: nowrap;
}
/* the fine gold rule with end dots, as on the logo */
.brand-rule {
  display: block; position: relative; height: 1px; margin-top: 8px;
  background: linear-gradient(90deg, transparent, var(--gold-400) 18%, var(--gold-200) 50%, var(--gold-400) 82%, transparent);
}
.brand-rule::before, .brand-rule::after {
  content: ''; position: absolute; top: -1.5px;
  width: 4px; height: 4px; border-radius: 50%; background: var(--gold-400);
}
.brand-rule::before { left: 4%; }
.brand-rule::after { right: 4%; }

.brand-stack { flex-direction: column; align-items: flex-start; }
.brand-stack .brand-img { height: 84px; }
.tagline {
  font-family: var(--serif); font-size: 18px; color: var(--gold-200);
  margin: 14px 0 4px !important;
}
.tagline em { font-style: italic; color: var(--gold-300); }

.header-tools { display: flex; align-items: center; gap: 4px; justify-self: end; }
.header-left { display: flex; align-items: center; gap: 4px; }

.icon-btn {
  position: relative;
  display: inline-flex; flex-direction: column; align-items: center; gap: 3px;
  background: none; border: 0; cursor: pointer;
  padding: 8px 10px; border-radius: 10px;
  color: rgba(252, 249, 243, .88);
  transition: color .16s ease, background .16s ease;
}
.icon-btn:hover { color: var(--gold-300); background: rgba(234, 208, 138, .09); }
.icon-btn svg { width: 21px; height: 21px; stroke: currentColor; fill: none; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.icon-btn .label { font-size: 9.5px; letter-spacing: .1em; text-transform: uppercase; }

.badge {
  position: absolute; top: 2px; right: 2px;
  min-width: 17px; height: 17px; padding: 0 4px;
  display: grid; place-items: center;
  border-radius: 999px;
  background: var(--gold-sheen); color: var(--green-900);
  font-size: 10px; font-weight: 600; line-height: 1;
}
.badge[hidden] { display: none; }

/* ---- primary nav + mega menu ---- */

.nav-bar { border-top: 1px solid rgba(234, 208, 138, .16); }
.nav { display: flex; justify-content: center; gap: 4px; }

.nav-item { position: relative; }
.nav-link {
  display: block; padding: 13px 18px;
  font-size: 12px; letter-spacing: .16em; text-transform: uppercase;
  color: rgba(252, 249, 243, .9);
  background: none; border: 0; cursor: pointer;
  transition: color .16s ease;
}
.nav-link::after {
  content: ''; display: block; height: 1.5px; margin-top: 6px;
  background: var(--gold-sheen);
  transform: scaleX(0); transform-origin: center;
  transition: transform .24s ease;
}
.nav-item:hover .nav-link, .nav-link[aria-expanded="true"], .nav-link.is-active { color: var(--gold-300); }
.nav-item:hover .nav-link::after, .nav-link.is-active::after { transform: scaleX(1); }

.mega {
  position: absolute; top: 100%; left: 50%; transform: translate(-50%, 8px);
  min-width: 260px; padding: 18px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  opacity: 0; visibility: hidden;
  transition: opacity .18s ease, transform .18s ease, visibility .18s;
  z-index: 70;
}
.nav-item:hover .mega, .nav-item:focus-within .mega {
  opacity: 1; visibility: visible; transform: translate(-50%, 0);
}
.mega-title {
  font-size: 10px; letter-spacing: .22em; text-transform: uppercase;
  color: var(--gold-600); margin-bottom: 10px;
}
.mega a {
  display: block; padding: 7px 10px; border-radius: 8px;
  color: var(--ink-2); font-size: 13.5px;
  transition: background .14s ease, color .14s ease, padding-left .14s ease;
}
.mega a:hover { background: var(--cream-2); color: var(--green-800); padding-left: 15px; }

.burger { display: none; }

/* ============================================================
   Search overlay / drawer / modal shells
   ============================================================ */

.scrim {
  position: fixed; inset: 0; z-index: 80;
  background: rgba(6, 26, 16, .55);
  backdrop-filter: blur(3px);
  opacity: 0; visibility: hidden;
  transition: opacity .22s ease, visibility .22s;
}
.scrim.is-open { opacity: 1; visibility: visible; }

.drawer {
  position: fixed; top: 0; right: 0; bottom: 0; z-index: 90;
  width: min(430px, 100%);
  background: var(--paper);
  display: flex; flex-direction: column;
  transform: translateX(102%);
  transition: transform .3s cubic-bezier(.4, 0, .2, 1);
  box-shadow: var(--shadow-lg);
}
.drawer.is-open { transform: translateX(0); }
.drawer.drawer-left { right: auto; left: 0; transform: translateX(-102%); }
.drawer.drawer-left.is-open { transform: translateX(0); }

.drawer-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 22px; border-bottom: 1px solid var(--line);
}
.drawer-head h3 { font-size: 22px; }
.drawer-body { flex: 1; overflow-y: auto; padding: 18px 22px; }
.drawer-foot { border-top: 1px solid var(--line); padding: 18px 22px; background: var(--cream); }

.x-btn {
  background: none; border: 0; cursor: pointer; padding: 6px;
  border-radius: 8px; color: var(--muted); line-height: 0;
}
.x-btn:hover { background: var(--cream-2); color: var(--ink); }
.x-btn svg { width: 20px; height: 20px; stroke: currentColor; fill: none; stroke-width: 1.6; stroke-linecap: round; }

.search-panel {
  position: fixed; top: 0; left: 0; right: 0; z-index: 90;
  background: var(--paper);
  transform: translateY(-102%);
  transition: transform .3s cubic-bezier(.4, 0, .2, 1);
  box-shadow: var(--shadow-lg);
  max-height: 84vh; overflow-y: auto;
}
.search-panel.is-open { transform: translateY(0); }
.search-row { display: flex; align-items: center; gap: 14px; padding: 26px 0 18px; }
.search-row input {
  flex: 1; border: 0; border-bottom: 1px solid var(--line);
  font-family: var(--serif); font-size: 30px; padding: 8px 0;
  background: none; color: var(--ink);
}
.search-row input:focus { outline: none; border-color: var(--gold-500); }
.search-hints { display: flex; flex-wrap: wrap; gap: 8px; padding-bottom: 18px; }
.chip {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 14px; border: 1px solid var(--line); border-radius: 999px;
  background: var(--cream); font-size: 12px; color: var(--ink-2); cursor: pointer;
}
.chip:hover { border-color: var(--gold-500); color: var(--green-800); }
.search-results { padding-bottom: 30px; }

.modal {
  position: fixed; z-index: 95; top: 50%; left: 50%;
  transform: translate(-50%, -46%) scale(.97);
  width: min(430px, calc(100% - 32px));
  background: var(--paper); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  opacity: 0; visibility: hidden;
  transition: opacity .2s ease, transform .2s ease, visibility .2s;
  overflow: hidden;
}
.modal.is-open { opacity: 1; visibility: visible; transform: translate(-50%, -50%) scale(1); }
.modal-head { padding: 26px 28px 6px; text-align: center; }
.modal-head h3 { font-size: 27px; }
.modal-head p { color: var(--muted); font-size: 13.5px; margin: 6px 0 0; }
.modal-body { padding: 20px 28px 28px; }

/* ============================================================
   Forms
   ============================================================ */

.field { display: block; margin-bottom: 14px; }
.field > span {
  display: block; font-size: 11px; letter-spacing: .14em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 6px;
}
.field input, .field select, .field textarea {
  width: 100%; padding: 12px 14px;
  border: 1px solid var(--line); border-radius: var(--radius-sm);
  background: var(--paper); font: inherit; color: var(--ink);
  transition: border-color .16s ease, box-shadow .16s ease;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--gold-500);
  box-shadow: 0 0 0 3px rgba(217, 180, 88, .18);
}
.field.is-bad input { border-color: var(--bad); }
.field-error { color: var(--bad); font-size: 12px; margin-top: 5px; display: none; }
.field.is-bad .field-error { display: block; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

.tabs { display: flex; gap: 4px; background: var(--cream-2); padding: 4px; border-radius: 999px; margin-bottom: 20px; }
.tabs button {
  flex: 1; padding: 9px; border: 0; border-radius: 999px; background: none; cursor: pointer;
  font-size: 12px; letter-spacing: .1em; text-transform: uppercase; color: var(--muted);
}
.tabs button.is-active { background: var(--paper); color: var(--green-800); box-shadow: var(--shadow-sm); }

/* ============================================================
   Product card
   ============================================================ */

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 26px 20px;
}

.card {
  position: relative;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: rgba(217, 180, 88, .55); }

.card-media { position: relative; aspect-ratio: 1; overflow: hidden; background: var(--cream-2); }
.card-media .art { width: 100%; height: 100%; transition: transform .5s ease; }
.card:hover .card-media .art { transform: scale(1.06); }

.card-flags { position: absolute; top: 10px; left: 10px; display: flex; flex-direction: column; gap: 5px; align-items: flex-start; }
.flag {
  padding: 4px 10px; border-radius: 999px;
  font-size: 9.5px; letter-spacing: .14em; text-transform: uppercase; font-weight: 500;
}
.flag-new  { background: var(--green-800); color: var(--gold-200); }
.flag-best { background: var(--gold-sheen); color: var(--green-900); }
.flag-off  { background: #fff; color: var(--bad); border: 1px solid rgba(163,45,52,.28); }

.wish-btn {
  position: absolute; top: 10px; right: 10px;
  width: 34px; height: 34px; display: grid; place-items: center;
  border-radius: 50%; border: 1px solid var(--line); background: rgba(255,255,255,.92);
  cursor: pointer; color: var(--ink-2);
  transition: color .16s ease, border-color .16s ease, transform .16s ease;
}
.wish-btn svg { width: 17px; height: 17px; stroke: currentColor; fill: none; stroke-width: 1.6; }
.wish-btn:hover { transform: scale(1.1); border-color: var(--bad); color: var(--bad); }
.wish-btn.is-on { color: var(--bad); border-color: var(--bad); }
.wish-btn.is-on svg { fill: currentColor; }

.card-quick {
  position: absolute; left: 10px; right: 10px; bottom: 10px;
  opacity: 0; transform: translateY(8px);
  transition: opacity .2s ease, transform .2s ease;
}
.card:hover .card-quick, .card:focus-within .card-quick { opacity: 1; transform: translateY(0); }

.card-body { padding: 14px 15px 16px; display: flex; flex-direction: column; gap: 6px; flex: 1; }
.card-cat { font-size: 10px; letter-spacing: .16em; text-transform: uppercase; color: var(--gold-600); }
.card-name { font-family: var(--serif); font-size: 18px; line-height: 1.25; }
.card-name a:hover { color: var(--green-600); }
.card-meta { display: flex; align-items: center; gap: 7px; font-size: 12px; color: var(--muted); }
.card-price { display: flex; align-items: baseline; gap: 8px; margin-top: auto; padding-top: 6px; }
.price-now { font-size: 17px; font-weight: 500; color: var(--ink); }
.price-was { font-size: 13px; color: var(--muted); text-decoration: line-through; }
.price-off { font-size: 12px; color: var(--ok); font-weight: 500; }
.oos { color: var(--bad); font-size: 11.5px; letter-spacing: .1em; text-transform: uppercase; }

.stars { position: relative; display: inline-block; width: 72px; height: 13px; }
.stars::before, .stars i {
  content: '★★★★★'; position: absolute; inset: 0;
  font-size: 13px; line-height: 13px; letter-spacing: 1.5px; white-space: nowrap; overflow: hidden;
  font-style: normal;
}
.stars::before { color: var(--line); }
.stars i { color: var(--gold-500); }

/* ============================================================
   Sections
   ============================================================ */

.section { padding: 74px 0; }
.section-tight { padding: 46px 0; }

.section-head { text-align: center; max-width: 640px; margin: 0 auto 40px; }
.eyebrow {
  font-size: 10.5px; letter-spacing: .3em; text-transform: uppercase;
  color: var(--gold-600); margin-bottom: 12px;
}
.section-head h2 { font-size: clamp(30px, 4vw, 44px); }
.section-head p { color: var(--muted); margin: 12px 0 0; font-size: 15px; }

.rule-orn {
  display: flex; align-items: center; justify-content: center; gap: 12px;
  margin: 14px 0 0; color: var(--gold-500);
}
.rule-orn::before, .rule-orn::after {
  content: ''; height: 1px; width: 58px;
  background: linear-gradient(90deg, transparent, var(--gold-400));
}
.rule-orn::after { background: linear-gradient(270deg, transparent, var(--gold-400)); }

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

.hero {
  position: relative;
  background: radial-gradient(120% 130% at 78% 12%, var(--green-700) 0%, var(--green-850) 52%, var(--green-900) 100%);
  color: var(--cream);
  overflow: hidden;
}
.hero::after {
  content: ''; position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 12% 22%, rgba(234,208,138,.16), transparent 34%),
    radial-gradient(circle at 88% 76%, rgba(199,154,51,.14), transparent 38%);
  pointer-events: none;
}
.hero .hero-inner {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1.05fr .95fr; align-items: center; gap: 48px;
  padding-top: 78px;
  padding-bottom: 86px;
}
.hero h1 { font-size: clamp(42px, 6.2vw, 76px); line-height: 1.02; }
.hero h1 em {
  font-style: italic;
  background: var(--gold-sheen);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero p { color: rgba(252,249,243,.76); font-size: 16.5px; max-width: 460px; margin: 20px 0 0; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }
.hero-stats { display: flex; gap: 38px; margin-top: 46px; flex-wrap: wrap; }
.hero-stats b { display: block; font-family: var(--serif); font-size: 30px; color: var(--gold-300); font-weight: 600; }
.hero-stats span { font-size: 11px; letter-spacing: .16em; text-transform: uppercase; color: rgba(252,249,243,.6); }

.hero-art { position: relative; display: grid; place-items: center; }
.hero-ring {
  position: absolute; width: 96%; aspect-ratio: 1; border-radius: 50%;
  border: 1px solid rgba(234,208,138,.24);
}
.hero-ring:nth-child(2) { width: 74%; border-style: dashed; animation: spin 46s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }
@media (prefers-reduced-motion: reduce) { .hero-ring:nth-child(2) { animation: none; } }
.hero-card {
  position: relative; z-index: 2;
  width: min(360px, 78%); aspect-ratio: 1;
  border-radius: 50%; overflow: hidden;
  border: 2px solid rgba(234,208,138,.5);
  box-shadow: 0 30px 70px rgba(0,0,0,.4);
  background: var(--cream);
}
.hero-badge {
  position: absolute; z-index: 3; right: 2%; bottom: 12%;
  background: var(--paper); color: var(--green-800);
  border-radius: var(--radius); padding: 14px 18px; box-shadow: var(--shadow-lg);
  text-align: center;
}
.hero-badge b { font-family: var(--serif); font-size: 22px; display: block; }
.hero-badge span { font-size: 10px; letter-spacing: .16em; text-transform: uppercase; color: var(--muted); }

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

.trust { background: var(--green-900); color: rgba(252,249,243,.86); }
.trust-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px;
  background: rgba(234,208,138,.14);
}
.trust-cell {
  background: var(--green-900); padding: 26px 20px;
  display: flex; align-items: center; gap: 14px;
}
.trust-cell svg { width: 26px; height: 26px; flex: none; stroke: var(--gold-400); fill: none; stroke-width: 1.4; stroke-linecap: round; stroke-linejoin: round; }
.trust-cell b { display: block; font-size: 13px; letter-spacing: .04em; }
.trust-cell span { font-size: 12px; color: rgba(252,249,243,.55); }

/* ---- category rail ---- */

.cat-rail { display: grid; grid-template-columns: repeat(6, 1fr); gap: 16px; }
.cat-tile {
  display: block; text-align: center;
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 18px 12px; transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.cat-tile:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--gold-400); }
.cat-tile .art { border-radius: 50%; overflow: hidden; margin-bottom: 12px; transform: scale(1.12); }
.cat-tile b { display: block; font-family: var(--serif); font-size: 19px; }
.cat-tile span { font-size: 11px; color: var(--muted); }

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

.band {
  background: linear-gradient(120deg, var(--green-800), var(--green-700));
  color: var(--cream); border-radius: var(--radius-lg); overflow: hidden;
  display: grid; grid-template-columns: 1fr 1fr; align-items: center;
}
.band-copy { padding: 56px 52px; }
.band-copy h2 { font-size: clamp(28px, 3.4vw, 40px); }
.band-copy p { color: rgba(252,249,243,.72); margin: 14px 0 26px; }
.band-art { align-self: stretch; display: grid; grid-template-columns: 1fr 1fr; gap: 2px; background: rgba(234,208,138,.2); }

/* ---- offer cards ---- */

.offer-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.offer {
  border: 1px dashed var(--gold-400); border-radius: var(--radius);
  background: linear-gradient(160deg, #fff, var(--gold-100));
  padding: 26px 24px; text-align: center;
}
.offer b { font-family: var(--serif); font-size: 25px; display: block; color: var(--green-800); }
.offer p { color: var(--ink-2); font-size: 13.5px; margin: 8px 0 14px; }
.offer code {
  display: inline-block; font-family: var(--sans); font-size: 12px; letter-spacing: .2em;
  background: var(--green-800); color: var(--gold-200); padding: 7px 16px; border-radius: 999px;
  cursor: pointer;
}

/* ---- testimonials ---- */

.quote-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.quote {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 26px 24px;
}
.quote p { font-family: var(--serif); font-size: 19px; line-height: 1.45; color: var(--ink); margin: 12px 0 18px; }
.quote footer { display: flex; align-items: center; gap: 11px; }
.quote-av {
  width: 38px; height: 38px; border-radius: 50%; display: grid; place-items: center;
  background: var(--green-800); color: var(--gold-200);
  font-family: var(--serif); font-size: 16px;
}
.quote b { display: block; font-size: 13.5px; font-weight: 500; }
.quote span { font-size: 11.5px; color: var(--muted); }

/* ---- newsletter ---- */

.news {
  background: var(--green-850); color: var(--cream);
  border-radius: var(--radius-lg); padding: 54px 40px; text-align: center;
}
.news h2 { font-size: clamp(26px, 3.4vw, 38px); }
.news p { color: rgba(252,249,243,.7); margin: 12px auto 26px; max-width: 480px; }
.news form { display: flex; gap: 10px; max-width: 470px; margin: 0 auto; }
.news input {
  flex: 1; padding: 13px 18px; border-radius: 999px;
  border: 1px solid rgba(234,208,138,.34); background: rgba(255,255,255,.06);
  color: var(--cream); font: inherit;
}
.news input::placeholder { color: rgba(252,249,243,.45); }
.news input:focus { outline: none; border-color: var(--gold-400); }

/* ============================================================
   Shop page
   ============================================================ */

.crumbs { font-size: 12px; color: var(--muted); padding: 20px 0; }
.crumbs a:hover { color: var(--green-700); }
.crumbs span { margin: 0 7px; opacity: .5; }

.page-head { padding-bottom: 26px; border-bottom: 1px solid var(--line); }
.page-head h1 { font-size: clamp(30px, 4.4vw, 46px); }
.page-head p { color: var(--muted); margin: 8px 0 0; }

.shop-layout { display: grid; grid-template-columns: 254px 1fr; gap: 36px; align-items: start; padding: 26px 0 80px; }

.filters {
  position: sticky; top: calc(var(--header-h) + 14px);
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 6px 18px 18px;
  max-height: calc(100vh - var(--header-h) - 34px); overflow-y: auto;
}
.filter-group { border-bottom: 1px solid var(--line); padding: 16px 0; }
.filter-group:last-child { border-bottom: 0; }
.filter-group > h4 {
  font-family: var(--sans); font-size: 11px; letter-spacing: .18em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 11px;
}
.check { display: flex; align-items: center; gap: 9px; padding: 5px 0; cursor: pointer; font-size: 13.5px; color: var(--ink-2); }
.check input { width: 15px; height: 15px; accent-color: var(--green-700); flex: none; }
.check:hover { color: var(--green-800); }
.check .count { margin-left: auto; font-size: 11.5px; color: var(--muted); }

.swatches { display: flex; flex-wrap: wrap; gap: 8px; }
.swatch {
  width: 30px; height: 30px; border-radius: 50%; cursor: pointer;
  border: 2px solid transparent; box-shadow: 0 0 0 1px var(--line);
  transition: transform .15s ease;
}
.swatch:hover { transform: scale(1.1); }
.swatch.is-on { border-color: var(--paper); box-shadow: 0 0 0 2px var(--green-700); }
.sw-gold     { background: linear-gradient(135deg, #FBEFC6, #DDB255, #A87C21); }
.sw-antique  { background: linear-gradient(135deg, #EBD8A5, #BE9843, #7E601F); }
.sw-rosegold { background: linear-gradient(135deg, #FBDFD1, #E0A78E, #B3735C); }
.sw-silver   { background: linear-gradient(135deg, #F7F9FC, #CBD1D9, #929AA5); }
.sw-oxidised { background: linear-gradient(135deg, #D6DCDA, #949E9A, #565F5C); }

.range { width: 100%; accent-color: var(--green-700); }
.range-out { display: flex; justify-content: space-between; font-size: 12px; color: var(--muted); margin-top: 6px; }

.shop-toolbar {
  display: flex; align-items: center; justify-content: space-between; gap: 14px;
  margin-bottom: 20px; flex-wrap: wrap;
}
.result-count { font-size: 13px; color: var(--muted); }
.sort-wrap { display: flex; align-items: center; gap: 9px; }
.sort-wrap select {
  padding: 9px 14px; border: 1px solid var(--line); border-radius: 999px;
  background: var(--paper); font: inherit; font-size: 13px; cursor: pointer;
}

.active-chips { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 18px; }
.active-chips .chip { background: var(--green-800); color: var(--gold-200); border-color: transparent; }
.active-chips .chip b { font-weight: 400; opacity: .65; }

.empty { text-align: center; padding: 70px 20px; color: var(--muted); }
.empty h3 { font-size: 26px; color: var(--ink); margin-bottom: 8px; }

.filter-toggle { display: none; }

/* ============================================================
   Product detail
   ============================================================ */

.pdp { display: grid; grid-template-columns: 1.06fr .94fr; gap: 50px; padding: 10px 0 70px; align-items: start; }

.pdp-gallery { position: sticky; top: calc(var(--header-h) + 14px); }
.pdp-main {
  border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden;
  background: var(--paper); aspect-ratio: 1;
}
.pdp-thumbs { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; margin-top: 12px; }
.pdp-thumb {
  border: 1px solid var(--line); border-radius: var(--radius-sm); overflow: hidden;
  cursor: pointer; background: var(--paper); padding: 0;
  transition: border-color .16s ease;
}
.pdp-thumb.is-on { border-color: var(--green-700); box-shadow: 0 0 0 1px var(--green-700); }

.pdp-info h1 { font-size: clamp(28px, 3.8vw, 42px); margin-bottom: 10px; }
.pdp-rating { display: flex; align-items: center; gap: 10px; font-size: 13px; color: var(--muted); }
.pdp-price { display: flex; align-items: baseline; gap: 12px; margin: 18px 0 6px; }
.pdp-price .price-now { font-size: 30px; font-family: var(--serif); }
.tax-note { font-size: 12px; color: var(--muted); }

.pdp-block { border-top: 1px solid var(--line); padding: 20px 0; }
.pdp-block > h4 {
  font-family: var(--sans); font-size: 11px; letter-spacing: .18em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 12px;
}
.tone-picker { display: flex; gap: 10px; flex-wrap: wrap; }
.tone-opt {
  display: flex; align-items: center; gap: 9px;
  padding: 7px 14px 7px 7px; border: 1px solid var(--line); border-radius: 999px;
  background: var(--paper); cursor: pointer; font-size: 13px;
}
.tone-opt i { width: 22px; height: 22px; border-radius: 50%; display: block; }
.tone-opt.is-on { border-color: var(--green-700); box-shadow: 0 0 0 1px var(--green-700); }

.qty { display: inline-flex; align-items: center; border: 1px solid var(--line); border-radius: 999px; overflow: hidden; }
.qty button { width: 40px; height: 42px; border: 0; background: var(--paper); cursor: pointer; font-size: 17px; color: var(--ink-2); }
.qty button:hover { background: var(--cream-2); }
.qty input { width: 46px; height: 42px; border: 0; text-align: center; font: inherit; background: var(--paper); }
.qty input::-webkit-outer-spin-button, .qty input::-webkit-inner-spin-button { appearance: none; margin: 0; }

.buy-row { display: flex; gap: 12px; align-items: center; flex-wrap: wrap; margin-top: 18px; }
.buy-row .btn { flex: 1; min-width: 170px; }

.stock-line { font-size: 12.5px; margin-top: 12px; display: flex; align-items: center; gap: 7px; }
.dot { width: 7px; height: 7px; border-radius: 50%; display: inline-block; }
.dot-ok { background: var(--ok); } .dot-low { background: var(--warn); } .dot-no { background: var(--bad); }

.accordion { border-top: 1px solid var(--line); }
.acc-head {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  padding: 17px 0; background: none; border: 0; cursor: pointer; text-align: left;
  font-size: 13px; letter-spacing: .1em; text-transform: uppercase; color: var(--ink);
}
.acc-head span { color: var(--gold-600); font-size: 18px; line-height: 1; transition: transform .2s ease; }
.acc-head[aria-expanded="true"] span { transform: rotate(45deg); }
.acc-panel { display: none; padding-bottom: 18px; color: var(--ink-2); font-size: 14px; }
.acc-panel.is-open { display: block; }
.acc-panel ul { margin: 0; padding-left: 18px; }
.acc-panel li { margin-bottom: 6px; }

.spec { display: grid; grid-template-columns: 130px 1fr; gap: 6px 14px; font-size: 14px; }
.spec dt { color: var(--muted); }
.spec dd { margin: 0; }

/* ============================================================
   Cart / wishlist / checkout
   ============================================================ */

.two-col { display: grid; grid-template-columns: 1.55fr .95fr; gap: 34px; align-items: start; padding: 10px 0 80px; }

.line-item {
  display: grid; grid-template-columns: 96px 1fr auto; gap: 16px;
  padding: 18px 0; border-bottom: 1px solid var(--line); align-items: center;
}
.line-item:first-child { border-top: 1px solid var(--line); }
.line-media { border-radius: var(--radius-sm); overflow: hidden; border: 1px solid var(--line); }
.line-name { font-family: var(--serif); font-size: 19px; }
.line-sub { font-size: 12.5px; color: var(--muted); margin-top: 2px; }
.line-actions { display: flex; align-items: center; gap: 14px; margin-top: 10px; }
.link-btn { background: none; border: 0; cursor: pointer; font-size: 12px; color: var(--muted); text-decoration: underline; text-underline-offset: 3px; padding: 0; }
.link-btn:hover { color: var(--bad); }
.line-price { text-align: right; font-size: 17px; }

.summary {
  position: sticky; top: calc(var(--header-h) + 14px);
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 24px;
}
.summary h3 { font-size: 22px; margin-bottom: 16px; }
.sum-row { display: flex; justify-content: space-between; padding: 8px 0; font-size: 14px; color: var(--ink-2); }
.sum-row.total {
  border-top: 1px solid var(--line); margin-top: 10px; padding-top: 14px;
  font-size: 19px; color: var(--ink); font-family: var(--serif);
}
.sum-row .free { color: var(--ok); }
.sum-row .disc { color: var(--ok); }

.coupon-row { display: flex; gap: 8px; margin: 14px 0; }
.coupon-row input {
  flex: 1; padding: 11px 14px; border: 1px solid var(--line); border-radius: var(--radius-sm);
  font: inherit; text-transform: uppercase; letter-spacing: .08em;
}
.coupon-row input:focus { outline: none; border-color: var(--gold-500); }
.coupon-note { font-size: 12.5px; margin-top: -6px; margin-bottom: 12px; }
.coupon-note.ok { color: var(--ok); } .coupon-note.bad { color: var(--bad); }

.ship-bar { background: var(--cream-2); border-radius: 999px; height: 6px; overflow: hidden; margin: 6px 0 16px; }
.ship-bar i { display: block; height: 100%; background: var(--gold-sheen); transition: width .3s ease; }
.ship-note { font-size: 12.5px; color: var(--ink-2); }

.steps { display: flex; gap: 8px; align-items: center; justify-content: center; padding: 6px 0 26px; }
.step { display: flex; align-items: center; gap: 9px; font-size: 12px; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); }
.step i {
  width: 25px; height: 25px; border-radius: 50%; display: grid; place-items: center;
  border: 1px solid var(--line); font-style: normal; font-size: 12px;
}
.step.is-on { color: var(--green-800); }
.step.is-on i { background: var(--green-800); color: var(--gold-200); border-color: var(--green-800); }
.step-sep { width: 42px; height: 1px; background: var(--line); }

.pay-opts { display: grid; gap: 10px; }
.pay-opt {
  display: flex; align-items: center; gap: 12px; padding: 14px 16px;
  border: 1px solid var(--line); border-radius: var(--radius-sm); cursor: pointer;
}
.pay-opt.is-on { border-color: var(--green-700); box-shadow: 0 0 0 1px var(--green-700); background: var(--cream); }
.pay-opt input { accent-color: var(--green-700); }
.pay-opt b { font-weight: 500; font-size: 14px; }
.pay-opt span { font-size: 12.5px; color: var(--muted); display: block; }

.confirm { text-align: center; max-width: 620px; margin: 0 auto; padding: 60px 0 90px; }
.confirm-mark {
  width: 82px; height: 82px; margin: 0 auto 22px; border-radius: 50%;
  display: grid; place-items: center; background: var(--green-800);
}
.confirm-mark svg { width: 38px; height: 38px; stroke: var(--gold-300); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.confirm h1 { font-size: 40px; }
.order-box {
  text-align: left; background: var(--paper); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 22px; margin: 28px 0;
}

/* ============================================================
   Footer
   ============================================================ */

.site-footer { background: var(--green-900); color: rgba(252,249,243,.72); padding: 62px 0 0; margin-top: 20px; }
.foot-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 36px; padding-bottom: 44px; }
.foot-brand .brand-name { font-size: 32px; }
.foot-brand p { max-width: 320px; margin: 10px 0 20px; font-size: 14px; }
.foot-col h4 {
  font-family: var(--sans); font-size: 11px; letter-spacing: .2em; text-transform: uppercase;
  color: var(--gold-300); margin-bottom: 14px;
}
.foot-col a { display: block; padding: 5px 0; font-size: 13.5px; transition: color .14s ease, padding-left .14s ease; }
.foot-col a:hover { color: var(--gold-300); padding-left: 5px; }
.socials { display: flex; gap: 10px; }
.socials a {
  width: 36px; height: 36px; border-radius: 50%; display: grid; place-items: center;
  border: 1px solid rgba(234,208,138,.3); color: var(--gold-200);
  transition: background .16s ease, color .16s ease;
}
.socials a:hover { background: var(--gold-sheen); color: var(--green-900); border-color: transparent; }
.socials svg { width: 17px; height: 17px; stroke: currentColor; fill: none; stroke-width: 1.5; }
.foot-bottom {
  border-top: 1px solid rgba(234,208,138,.15); padding: 20px 0;
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  font-size: 12.5px; color: rgba(252,249,243,.5);
}
.pay-marks { display: flex; gap: 8px; align-items: center; }
.pay-mark {
  padding: 3px 9px; border: 1px solid rgba(234,208,138,.24); border-radius: 5px;
  font-size: 10px; letter-spacing: .1em; color: rgba(252,249,243,.62);
}

/* ============================================================
   Toast
   ============================================================ */

.toast {
  position: fixed; left: 50%; bottom: 26px; transform: translate(-50%, 22px);
  z-index: 120; display: flex; align-items: center; gap: 16px;
  background: var(--green-900); color: var(--cream);
  padding: 13px 22px; border-radius: 999px; box-shadow: var(--shadow-lg);
  font-size: 13.5px; opacity: 0; visibility: hidden;
  transition: opacity .22s ease, transform .22s ease, visibility .22s;
  max-width: calc(100% - 32px);
}
.toast.is-open { opacity: 1; visibility: visible; transform: translate(-50%, 0); }
.toast-action { color: var(--gold-300); text-decoration: underline; text-underline-offset: 3px; white-space: nowrap; }

/* ============================================================
   Responsive
   ============================================================ */

@media (max-width: 1080px) {
  .cat-rail { grid-template-columns: repeat(3, 1fr); }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .offer-grid, .quote-grid { grid-template-columns: 1fr; }
  .foot-grid { grid-template-columns: 1fr 1fr; }
  .band { grid-template-columns: 1fr; }
  .band-art { grid-template-columns: repeat(4, 1fr); }
}

@media (max-width: 900px) {
  :root { --header-h: 96px; }
  .hero .hero-inner { grid-template-columns: 1fr; padding-top: 54px; padding-bottom: 62px; }
  .hero-art { order: -1; }
  .pdp { grid-template-columns: 1fr; gap: 30px; }
  .pdp-gallery { position: static; }
  .two-col { grid-template-columns: 1fr; }
  .summary { position: static; }
  .shop-layout { grid-template-columns: 1fr; }
  .filters {
    position: fixed; inset: 0 auto 0 0; z-index: 90; width: min(320px, 88%);
    max-height: none; border-radius: 0; transform: translateX(-102%);
    transition: transform .3s cubic-bezier(.4,0,.2,1); padding-top: 18px;
  }
  .filters.is-open { transform: translateX(0); }
  .filter-toggle { display: inline-flex; }
  .nav { display: none; }
  .burger { display: inline-flex; }
  .site-header .header-main { grid-template-columns: auto 1fr auto; }
  .brand { justify-self: start; }
  .icon-btn .label { display: none; }
}

@media (max-width: 620px) {
  .wrap { padding: 0 16px; }
  .section { padding: 48px 0; }
  .grid { grid-template-columns: repeat(2, 1fr); gap: 18px 12px; }
  .card-name { font-size: 15.5px; }
  .card-body { padding: 11px 11px 13px; }
  .cat-rail { grid-template-columns: repeat(2, 1fr); }
  .trust-grid { grid-template-columns: 1fr; }
  .foot-grid { grid-template-columns: 1fr; }
  .brand-name { font-size: 20px; }
  .brand-rule { margin-top: 5px; }
  .brand-lockup { gap: 8px; }
  .brand-mark { width: 38px !important; height: 38px !important; }
  .brand-img { height: 44px; }
  .hero-stats { gap: 24px; }
  .news { padding: 38px 20px; }
  .news form { flex-direction: column; border-radius: var(--radius); }
  .news input { border-radius: 999px; }
  .line-item { grid-template-columns: 76px 1fr; }
  .line-price { grid-column: 2; text-align: left; }
  .band-copy { padding: 34px 24px; }
  .search-row input { font-size: 21px; }
  .field-row { grid-template-columns: 1fr; }
  .steps { flex-wrap: wrap; }
  .step-sep { width: 20px; }
}
