/* RG Enterprises — facelift mockup
   Architecture lifted from marrambi-estate.pages.dev:
     - single index.html, one styles.css, tiny vanilla script.js
     - CSS custom properties for palette + type scale
     - hand-written, no framework, deploys as static Cloudflare Pages site

   Design language is RGE's (per v2 brief §3 Design Principles):
     - P2: clean + white + light
     - P4: search-first, browse-second
     - P6: tradie-friendly, technical specs visible, no marketing fluff
*/

/* ---------- Tokens ---------- */
:root {
  /* Neutrals */
  --white:        #ffffff;
  --off-white:    #f7f7f5;
  --paper:        #f0efec;
  --ink:          #141414;
  --ink-soft:     #3a3a3a;
  --ink-muted:    #6b6b6b;
  --hairline:     #e6e6e4;

  /* Accents — trade tools / industrial */
  --accent:       #d14a2c; /* X-LINE orange (placeholder — matches RGE's own-brand spool orange) */
  --accent-dark:  #a93419;
  --steel:        #2a3440; /* cool industrial slate */
  --steel-soft:   #485767;
  --gold:         #ffb800; /* review stars + "best seller" badges */
  --green:        #1f8a44; /* in-stock */
  --amber:        #d88a00; /* low-stock */
  --blue:         #0b69c5; /* pre-order */

  /* Type */
  --font-display: 'Bebas Neue', 'Impact', 'Arial Black', sans-serif;
  --font-body:    'Inter', -apple-system, 'Segoe UI', system-ui, sans-serif;

  /* Layout */
  --container:    1240px;
  --section-y:    clamp(56px, 8vw, 112px);
  --radius:       6px;
  --radius-lg:    12px;

  /* Shadows — barely-there, tradie-serious */
  --shadow-sm:    0 1px 2px rgba(20,20,20,0.04), 0 1px 3px rgba(20,20,20,0.06);
  --shadow-md:    0 4px 12px rgba(20,20,20,0.05), 0 2px 4px rgba(20,20,20,0.04);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; height: auto; display: block; }
button { font: inherit; cursor: pointer; }
a { color: var(--ink); text-decoration: none; }
a:hover { color: var(--accent); }

/* ---------- Layout ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding-left: clamp(16px, 4vw, 32px);
  padding-right: clamp(16px, 4vw, 32px);
}

/* ---------- Announce bar ---------- */
.announce {
  background: var(--steel);
  color: var(--white);
  font-size: 12px;
  letter-spacing: 0.02em;
}
.announce__inner {
  padding: 8px 16px;
  text-align: center;
}
.announce__text { opacity: 0.9; }

/* ---------- Nav ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 40;
  background: var(--white);
  border-bottom: 1px solid var(--hairline);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px 16px;
  min-height: 64px;
}
.nav__brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.nav__mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px; height: 36px;
  background: var(--accent);
  color: var(--white);
  border-radius: 4px;
  font-family: var(--font-display);
  font-size: 18px;
  letter-spacing: 0.05em;
}
.nav__name { white-space: nowrap; }
.nav__links {
  display: flex;
  gap: 28px;
  font-size: 14px;
  font-weight: 500;
}
.nav__links a { padding: 8px 2px; }
.nav__actions {
  display: flex;
  align-items: center;
  gap: 14px;
}
.pay-pill {
  padding: 6px 10px;
  border: 1px solid var(--hairline);
  border-radius: 99px;
  font-size: 12px;
  font-weight: 500;
  color: var(--ink-soft);
  white-space: nowrap;
}
.icon-btn {
  background: transparent;
  border: none;
  padding: 6px;
  font-size: 18px;
  line-height: 1;
  color: var(--ink);
}
.icon-btn:hover { color: var(--accent); }

/* Mobile nav — trimmed for now, will expand in later commit */
@media (max-width: 820px) {
  .nav__links, .pay-pill { display: none; }
}

/* ---------- Reviewer annotation overlay (toggled by ?annotate=1) ---------- */
body.annotate [data-note] { position: relative; }
body.annotate [data-note]::after {
  content: attr(data-note);
  position: absolute;
  top: 12px; right: 12px;
  background: var(--accent);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 4px 8px;
  border-radius: 3px;
  z-index: 5;
  pointer-events: none;
  box-shadow: var(--shadow-sm);
}

/* ---------- Footer ---------- */
.footer {
  background: var(--ink);
  color: rgba(255,255,255,0.8);
  padding: 56px 0 20px;
}
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
@media (max-width: 820px) { .footer__grid { grid-template-columns: 1fr 1fr; gap: 32px; } }
@media (max-width: 520px) { .footer__grid { grid-template-columns: 1fr; } }

.footer .nav__name { color: var(--white); }
.footer .nav__brand { margin-bottom: 12px; color: var(--white); }
.footer__about {
  font-size: 14px;
  line-height: 1.6;
  max-width: 42ch;
  color: rgba(255,255,255,0.65);
}
.footer__col h4 {
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin: 0 0 14px;
}
.footer__col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer__col a {
  color: rgba(255,255,255,0.7);
  font-size: 14px;
}
.footer__col a:hover { color: var(--accent); }
.footer__pay { display: flex; flex-wrap: wrap; gap: 6px; }
.footer__pay .pay-badge {
  background: transparent;
  border-color: rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.7);
}
.footer__base {
  padding-top: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  font-size: 12px;
  color: rgba(255,255,255,0.5);
}
.footer__base a { color: rgba(255,255,255,0.5); }
.footer__base a:hover { color: var(--accent); }
.footer__mark {
  color: rgba(255,255,255,0.45);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin: 0;
}

/* ---------- Shared: buttons + eyebrow ---------- */
.eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 24px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.02em;
  border: 1px solid transparent;
  transition: transform 120ms ease, background 120ms ease, color 120ms ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn--primary {
  background: var(--accent);
  color: var(--white);
}
.btn--primary:hover { background: var(--accent-dark); color: var(--white); }
.btn--ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.btn--ghost:hover { background: var(--ink); color: var(--white); }

/* ---------- §5.2 Hero (full-bleed collage band) ---------- */
.hero {
  padding: clamp(40px, 6vw, 72px) 0 0;
  background:
    radial-gradient(ellipse at 80% 30%, #fff 0%, #fff 40%, var(--off-white) 100%);
  overflow: hidden;
}
.hero__text-wrap {
  max-width: 900px;
  margin-bottom: clamp(32px, 5vw, 56px);
}
.hero__text { text-align: left; }
.hero__h1 {
  font-family: var(--font-display);
  font-size: clamp(44px, 7vw, 88px);
  line-height: 0.96;
  margin: 0 0 20px;
  letter-spacing: -0.01em;
  max-width: 18ch;
}
.hero__h1--accent { color: var(--accent); }
.hero__lede {
  font-size: 17px;
  color: var(--ink-soft);
  max-width: 62ch;
  margin: 0 0 28px;
}
.hero__lede strong { color: var(--ink); font-weight: 700; }
.hero__ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 0;
}

/* The full-bleed band of 5 image strips. No gaps, no radius, edge-to-edge. */
.hero-band {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  width: 100%;
  height: clamp(300px, 38vw, 520px);
  margin: 0;
  gap: 0;
  background: var(--ink);
}
.hero-band__tile {
  position: relative;
  margin: 0;
  overflow: hidden;
  background: var(--off-white);
}
.hero-band__tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 600ms ease;
}
.hero-band__tile:hover img { transform: scale(1.04); }
/* Feature tile: X-LINE product centred on warm white, slightly wider */
.hero-band__tile--feature {
  background: #fff;
}
.hero-band__tile--feature img {
  object-fit: contain;
  padding: 10%;
  animation: hero-float 6s ease-in-out infinite;
}
.hero-band__tag {
  position: absolute;
  left: 14px; bottom: 14px;
  background: var(--accent);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 5px 9px;
  border-radius: 3px;
  z-index: 2;
}

/* Proof strip sits under the band */
.hero__proof-wrap {
  padding: clamp(24px, 3vw, 40px) 0 clamp(32px, 4vw, 56px);
}
.hero__proof {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
  margin: 0;
  padding: 0;
  border: none;
  max-width: none;
  align-items: center;
}
.hero__proof dt {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: 6px;
}
.hero__proof dd {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(22px, 2.4vw, 30px);
  letter-spacing: 0.01em;
  color: var(--ink);
}
.hero__proof-founder {
  display: flex;
  align-items: center;
  gap: 12px;
  border-left: 1px solid var(--hairline);
  padding-left: 24px;
}
.hero__proof-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--steel), var(--steel-soft));
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 18px;
  flex-shrink: 0;
}

@media (max-width: 900px) {
  .hero-band { grid-template-columns: repeat(3, 1fr); grid-template-rows: repeat(2, 1fr); height: clamp(320px, 70vw, 440px); }
  .hero-band__tile:nth-child(4) { grid-column: 1 / span 2; }
  .hero__proof { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .hero__proof-founder { border-left: none; padding-left: 0; border-top: 1px solid var(--hairline); padding-top: 16px; grid-column: 1 / -1; }
}
@media (max-width: 520px) {
  .hero-band { grid-template-columns: repeat(2, 1fr); grid-template-rows: repeat(3, 1fr); }
  .hero-band__tile:nth-child(5) { grid-column: 1 / span 2; }
  .hero__proof { grid-template-columns: 1fr 1fr; }
}




/* ---------- §5.3 Search band ---------- */
.search-band {
  padding: var(--section-y) 0;
  background: var(--off-white);
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
  text-align: center;
}
.search-band__inner {
  max-width: 880px;
}
.search-band__h2 {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 52px);
  line-height: 1;
  letter-spacing: 0.01em;
  margin: 0 0 12px;
}
.search-band__lede {
  color: var(--ink-muted);
  font-size: 16px;
  margin: 0 0 32px;
}
.searchbox {
  display: flex;
  align-items: stretch;
  width: 100%;
  background: var(--white);
  border: 2px solid var(--ink);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: border-color 150ms ease, box-shadow 150ms ease;
}
.searchbox:focus-within {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(209,74,44,0.18), var(--shadow-md);
}
.searchbox__icon {
  display: flex;
  align-items: center;
  padding: 0 18px 0 24px;
  font-size: 22px;
  color: var(--ink-muted);
}
.searchbox__input {
  flex: 1;
  min-width: 0;
  border: none;
  outline: none;
  padding: 22px 8px;
  font-size: 18px;
  font-family: var(--font-body);
  color: var(--ink);
  background: transparent;
}
.searchbox__input::placeholder {
  color: var(--ink-muted);
  font-weight: 400;
}
.searchbox__submit {
  background: var(--ink);
  color: var(--white);
  border: none;
  padding: 0 32px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.04em;
}
.searchbox__submit:hover { background: var(--accent); }
.search-band__suggest {
  margin-top: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px 16px;
  font-size: 13px;
}
.search-band__suggest-label {
  color: var(--ink-muted);
  font-weight: 500;
}
.search-band__suggest a {
  color: var(--ink-soft);
  padding: 4px 10px;
  border-radius: 99px;
  background: var(--white);
  border: 1px solid var(--hairline);
}
.search-band__suggest a:hover {
  color: var(--accent);
  border-color: var(--accent);
}

@media (max-width: 640px) {
  .searchbox__icon { padding: 0 12px 0 14px; font-size: 18px; }
  .searchbox__input { padding: 16px 4px; font-size: 15px; }
  .searchbox__submit { padding: 0 16px; font-size: 13px; }
}

/* ---------- Shared section head ---------- */
.section-head {
  max-width: 720px;
  margin: 0 0 40px;
}
.section-head--center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.section-head__h2 {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 56px);
  line-height: 1;
  letter-spacing: 0.01em;
  margin: 0 0 16px;
}
.section-head__lede {
  color: var(--ink-soft);
  font-size: 17px;
  margin: 0;
}
.section-head__lede em { color: var(--accent); font-style: normal; font-weight: 600; }

/* ---------- §4.2 / §5.4 Categories ---------- */
.cats {
  padding: var(--section-y) 0;
  background: var(--white);
}
.cats__grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 20px;
}
@media (max-width: 1100px) { .cats__grid { grid-template-columns: repeat(4, minmax(0,1fr)); } }
@media (max-width: 820px)  { .cats__grid { grid-template-columns: repeat(3, minmax(0,1fr)); gap: 14px; } }
@media (max-width: 520px)  { .cats__grid { grid-template-columns: repeat(2, minmax(0,1fr)); } }

.cat-tile {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--hairline);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
  text-decoration: none;
  color: var(--ink);
}
.cat-tile:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--ink);
}
.cat-tile--accent {
  border: 2px solid var(--accent);
  grid-column: span 1;
}
.cat-tile--accent:hover { border-color: var(--accent-dark); }
.cat-tile__badge {
  position: absolute;
  top: 10px; left: 10px;
  z-index: 2;
  background: var(--accent);
  color: var(--white);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 8px;
  border-radius: 3px;
}
.cat-tile__badge--sale { background: var(--gold); color: var(--ink); }
.cat-tile__art {
  aspect-ratio: 4 / 3;
  background: var(--paper);
  position: relative;
  overflow: hidden;
}
/* CSS-only category art placeholders — unique hue + icon-like gradient per tile */
.cat-tile__art::before {
  content: "";
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.cat-tile__art--xline    { background: linear-gradient(135deg, #ffe4dc, #ffc3b0); }
.cat-tile__art--arborist { background: linear-gradient(135deg, #d9e7d0, #9fbd82); }
.cat-tile__art--mowing   { background: linear-gradient(135deg, #d7edd0, #a6ce90); }
.cat-tile__art--climbing { background: linear-gradient(135deg, #dfe6ed, #8ea5bd); }
.cat-tile__art--chain    { background: linear-gradient(135deg, #e4e4e4, #9ea6a9); }
.cat-tile__art--oil      { background: linear-gradient(135deg, #f3e6cb, #c9a864); }
.cat-tile__art--transport{ background: linear-gradient(135deg, #dfe3e8, #8696a7); }
.cat-tile__art--safety   { background: linear-gradient(135deg, #ffe9c7, #ffb949); }
.cat-tile__art--blades   { background: linear-gradient(135deg, #e5e5e8, #8c8f97); }
.cat-tile__art--clearance{ background: linear-gradient(135deg, #fff1d1, #ffca3a); }
.cat-tile__label {
  padding: 14px 16px 18px;
}
.cat-tile__label h3 {
  margin: 0 0 4px;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.25;
}
.cat-tile__label p {
  margin: 0;
  font-size: 12.5px;
  color: var(--ink-muted);
  line-height: 1.4;
}
.cats__note {
  margin-top: 24px;
  font-size: 13px;
  color: var(--ink-muted);
  text-align: center;
  font-style: italic;
}

/* ---------- §5.5 Brands ---------- */
.brands {
  padding: var(--section-y) 0;
  background: var(--off-white);
  border-top: 1px solid var(--hairline);
}
.brands__strip {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(10, minmax(0, 1fr));
  gap: 12px;
}
@media (max-width: 900px) { .brands__strip { grid-template-columns: repeat(5, minmax(0,1fr)); } }
@media (max-width: 500px) { .brands__strip { grid-template-columns: repeat(3, minmax(0,1fr)); } }

.brands__item {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 72px;
  padding: 10px;
  background: var(--white);
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
  font-family: var(--font-display);
  font-size: 20px;
  letter-spacing: 0.08em;
  color: var(--steel);
  text-align: center;
  transition: border-color 150ms ease, color 150ms ease;
}
.brands__item:hover {
  border-color: var(--ink);
  color: var(--ink);
  cursor: pointer;
}
.brands__item--own {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
}
.brands__item--own:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
  color: var(--white);
}
.brands__foot {
  text-align: center;
  margin: 20px 0 0;
  font-size: 13px;
  color: var(--ink-muted);
}
.brands__foot a {
  color: var(--accent);
  font-weight: 600;
  border-bottom: 1px solid currentColor;
}

/* ---------- §5.6 Trust ---------- */
.trust {
  padding: var(--section-y) 0;
  background: var(--white);
}
.trust__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}
@media (max-width: 820px) { .trust__grid { grid-template-columns: 1fr; } }

.trust__card {
  background: var(--off-white);
  border: 1px solid var(--hairline);
  border-radius: var(--radius-lg);
  padding: 28px;
}
.stars {
  display: inline-flex;
  color: var(--gold);
  font-size: 22px;
  letter-spacing: 3px;
  margin-bottom: 8px;
}
.trust__metric {
  font-size: 16px;
  font-weight: 700;
  margin: 0 0 16px;
}
.trust__quote {
  margin: 0;
  padding: 16px 0 0;
  border-top: 1px solid var(--hairline);
  font-size: 14px;
  color: var(--ink-soft);
  font-style: italic;
  line-height: 1.55;
}
.trust__quote cite {
  display: block;
  margin-top: 8px;
  font-size: 12px;
  color: var(--ink-muted);
  font-style: normal;
  font-weight: 500;
}
.trust__pay {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}
.pay-badge {
  padding: 6px 10px;
  background: var(--white);
  border: 1px solid var(--hairline);
  border-radius: 4px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--ink-soft);
}
.pay-badge--trade {
  background: var(--ink);
  color: var(--white);
  border-color: var(--ink);
}
.trust__label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin: 0 0 12px;
}
.trust__customers {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}
.customer-pill {
  padding: 8px 12px;
  background: var(--white);
  border: 1px solid var(--hairline);
  border-radius: 99px;
  font-size: 13px;
  font-weight: 600;
}
.trust__note {
  font-size: 12px;
  color: var(--ink-muted);
  margin: 0;
  font-style: italic;
}

/* ---------- Shared — button modifier ---------- */
.btn--full { width: 100%; }

/* ---------- §7.2 Product showcase ---------- */
.showcase {
  padding: var(--section-y) 0;
  background: var(--off-white);
  border-top: 1px solid var(--hairline);
}
.showcase__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}
@media (max-width: 820px) { .showcase__grid { grid-template-columns: 1fr; } }

.pcard {
  background: var(--white);
  border: 1px solid var(--hairline);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform 180ms ease, box-shadow 180ms ease;
}
.pcard:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.pcard__media {
  position: relative;
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
}
.pcard__media--xline    { background: #fff; }
.pcard__media--penrite  { background: #fff; }
.pcard__media--clogger  { background: #fff; }
.pcard__badge {
  position: absolute;
  top: 12px; left: 12px;
  background: var(--accent);
  color: var(--white);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 8px;
  border-radius: 3px;
  z-index: 2;
}
.pcard__badge--own {}
.pcard__badge--sale { background: var(--gold); color: var(--ink); }

.pcard__product--spool {
  width: 70%;
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    repeating-radial-gradient(circle at center, var(--accent) 0, var(--accent) 2px, var(--accent-dark) 2px, var(--accent-dark) 4px);
  box-shadow:
    inset 0 0 0 4px rgba(255,255,255,0.1),
    inset 0 8px 30px rgba(0,0,0,0.3),
    0 20px 40px -20px rgba(169,52,25,0.5);
  position: relative;
}
.pcard__product--spool::after {
  content: "";
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 28%; aspect-ratio: 1;
  background: var(--steel);
  border-radius: 50%;
}
.pcard__product--large { width: 62%; }

.pcard__product--bottle {
  width: 44%;
  aspect-ratio: 0.55 / 1;
  background: linear-gradient(180deg, #1c7a3d 0%, #0f4b24 100%);
  border-radius: 8px 8px 20px 20px / 12px 12px 24px 24px;
  position: relative;
  box-shadow: 0 20px 40px -20px rgba(15,75,36,0.6);
  display: flex;
  align-items: center;
  justify-content: center;
}
.pcard__product--bottle::before {
  content: "";
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  width: 40%;
  height: 26px;
  background: linear-gradient(180deg, #0f4b24 0%, #1c7a3d 100%);
  border-radius: 4px 4px 2px 2px;
}
.pcard__bottle-label {
  background: var(--gold);
  color: #0f4b24;
  padding: 8px 12px;
  border-radius: 2px;
  font-family: var(--font-display);
  font-size: 14px;
  letter-spacing: 0.08em;
  text-align: center;
  line-height: 1.15;
  width: 84%;
}
.pcard__bottle-label span {
  display: block;
  font-size: 9px;
  letter-spacing: 0.12em;
  margin-top: 2px;
}

.pcard__product--pants {
  width: 46%;
  aspect-ratio: 0.6 / 1;
  background:
    linear-gradient(180deg, #161616 0%, #2a2a2a 55%, #161616 100%);
  border-radius: 8px 8px 6px 6px;
  position: relative;
  box-shadow: 0 20px 40px -20px rgba(0,0,0,0.5);
}
.pcard__product--pants::before {
  content: "";
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 70%; height: 14%;
  background: #161616;
  border-radius: 4px 4px 0 0;
}
.pcard__product--pants::after {
  content: "";
  position: absolute;
  bottom: 0; left: 50%;
  transform: translateX(-50%);
  width: 90%; height: 42%;
  background: linear-gradient(180deg, transparent, #0a0a0a);
  border-radius: 0 0 4px 4px;
  clip-path: polygon(20% 0, 80% 0, 100% 100%, 60% 100%, 55% 30%, 45% 30%, 40% 100%, 0 100%);
}

.pcard__body { padding: 16px 18px 20px; }
.pcard__title {
  margin: 0 0 8px;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.3;
}
.pcard__stars {
  color: var(--gold);
  font-size: 14px;
  letter-spacing: 2px;
  margin-bottom: 6px;
}
.pcard__stars em {
  color: var(--ink-muted);
  font-size: 12px;
  font-style: normal;
  margin-left: 6px;
  letter-spacing: normal;
}
.pcard__price {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 6px;
}
.pcard__price s { color: var(--ink-muted); font-weight: 400; font-size: 14px; margin-right: 6px; }
.pcard__price strong { color: var(--accent); font-weight: 700; }

.pcard__stock {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: 3px;
}
.pcard__stock--in       { background: rgba(31,138,68,0.1); color: var(--green); }
.pcard__stock--low      { background: rgba(216,138,0,0.12); color: var(--amber); }
.pcard__stock--preorder { background: rgba(11,105,197,0.1);  color: var(--blue); }

/* ---------- §7 PDP ---------- */
.pdp {
  padding: var(--section-y) 0;
  background: var(--white);
}
.pdp__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 48px;
}
@media (max-width: 900px) { .pdp__grid { grid-template-columns: 1fr; gap: 24px; } }

.pdp__gallery {}
.pdp__hero-img {
  aspect-ratio: 1 / 1;
  border: 1px solid var(--hairline);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
}
.pdp__thumbs {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
  margin-top: 12px;
}
.pdp__thumb {
  aspect-ratio: 1 / 1;
  background: var(--off-white);
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
  cursor: pointer;
}
.pdp__thumb--active { border: 2px solid var(--ink); }

.pdp__crumbs {
  font-size: 12px;
  color: var(--ink-muted);
  margin-bottom: 8px;
}
.pdp__crumbs a { color: var(--ink-muted); }
.pdp__crumbs a:hover { color: var(--accent); }
.pdp__crumbs span { color: var(--ink-soft); font-weight: 600; }

.pdp__title {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.4vw, 42px);
  line-height: 1.05;
  margin: 0 0 12px;
}
.pdp__stars-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}
.pdp__reviews-link {
  font-size: 13px;
  color: var(--ink-muted);
  border-bottom: 1px solid var(--hairline);
}
.pdp__reviews-link:hover { color: var(--accent); border-color: var(--accent); }
.pdp__lede {
  color: var(--ink-soft);
  font-size: 15px;
  margin: 0 0 20px;
}
.pdp__pricing { margin-bottom: 14px; }
.pdp__price {
  font-family: var(--font-display);
  font-size: 40px;
  letter-spacing: 0.01em;
}
.pdp__price-sub {
  font-size: 13px;
  color: var(--ink-muted);
}
.pdp__stock {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 4px;
  margin-bottom: 20px;
}
.pdp__stock--in { background: rgba(31,138,68,0.08); color: var(--green); }
.pdp__stock .dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: currentColor;
}
.pdp__qty {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}
.pdp__qty label {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink-muted);
}
.qty-stepper {
  display: flex;
  align-items: center;
  border: 1px solid var(--ink);
  border-radius: var(--radius);
  overflow: hidden;
}
.qty-stepper button {
  width: 44px; height: 44px;
  background: var(--white);
  border: none;
  font-size: 18px;
  font-weight: 700;
}
.qty-stepper button:hover { background: var(--off-white); }
.qty-stepper input {
  width: 52px;
  height: 44px;
  text-align: center;
  border: none;
  border-left: 1px solid var(--hairline);
  border-right: 1px solid var(--hairline);
  font-size: 16px;
  font-weight: 600;
  font-family: var(--font-body);
}
.pdp__ctas {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 12px;
}
.pdp__bulk-hint {
  margin: 0 0 28px;
  font-size: 13px;
  color: var(--ink-muted);
}
.pdp__bulk-hint a {
  color: var(--accent);
  font-weight: 600;
  border-bottom: 1px solid currentColor;
}

/* Accordion */
.acc {
  border-top: 1px solid var(--hairline);
}
.acc details {
  border-bottom: 1px solid var(--hairline);
}
.acc summary {
  padding: 16px 0;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.acc summary::-webkit-details-marker { display: none; }
.acc summary::after {
  content: "+";
  font-size: 24px;
  color: var(--ink-muted);
  margin-left: 16px;
  font-weight: 300;
  transition: transform 180ms ease;
}
.acc details[open] summary::after { content: "\2212"; }
.acc summary em {
  font-style: normal;
  font-weight: 400;
  color: var(--ink-muted);
  font-size: 13px;
  margin-left: 8px;
}
.acc__body {
  padding: 4px 0 20px;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.6;
}
.spec-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
}
.spec-table th {
  text-align: left;
  padding: 8px 0;
  color: var(--ink-muted);
  font-weight: 500;
  width: 40%;
  border-bottom: 1px solid var(--hairline);
}
.spec-table td {
  padding: 8px 0;
  border-bottom: 1px solid var(--hairline);
  font-weight: 600;
  color: var(--ink);
}
.spec-table tr:last-child th, .spec-table tr:last-child td { border-bottom: none; }

.acc__body--docs { display: flex; flex-direction: column; gap: 8px; }
.doc-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  background: var(--off-white);
}
.doc-link:hover {
  border-color: var(--accent);
  color: var(--accent);
}
.doc-link em {
  margin-left: auto;
  font-weight: 400;
  font-style: normal;
  font-size: 12px;
  color: var(--ink-muted);
}
.doc-link--muted {
  background: transparent;
  color: var(--ink-muted);
  cursor: default;
}
.doc-link--muted:hover { border-color: var(--hairline); color: var(--ink-muted); }
.doc-link__icon { font-size: 16px; }

.review {
  border-left: 3px solid var(--gold);
  padding-left: 14px;
  margin: 0 0 16px;
}
.review p { margin: 4px 0 6px; color: var(--ink); font-size: 14px; }
.review cite { font-size: 12px; color: var(--ink-muted); font-style: normal; }
.review__all {
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
  border-bottom: 1px solid currentColor;
}

/* ---------- Shared button variant ---------- */
.btn--large { padding: 18px 28px; font-size: 16px; }
.btn--ghost-inv {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn--ghost-inv:hover { background: var(--white); color: var(--steel); }

.eyebrow--light { color: var(--accent); opacity: 0.95; }

/* ---------- §5.7 Bulk CTA ---------- */
.bulk {
  padding: var(--section-y) 0;
  background:
    linear-gradient(135deg, var(--steel) 0%, var(--steel-soft) 100%);
  color: var(--white);
}
.bulk__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: 40px;
  align-items: center;
}
@media (max-width: 820px) { .bulk__grid { grid-template-columns: 1fr; gap: 24px; } }
.bulk__h2 {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 54px);
  line-height: 1;
  margin: 0 0 14px;
}
.bulk__lede {
  color: rgba(255,255,255,0.8);
  font-size: 17px;
  margin: 0;
  max-width: 56ch;
}
.bulk__ctas {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.bulk__ctas .btn--primary {
  background: var(--accent);
  color: var(--white);
}
.bulk__ctas .btn--primary:hover { background: var(--accent-dark); }

/* ---------- §9.2 Trade ---------- */
.trade {
  padding: var(--section-y) 0;
  background: var(--off-white);
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
}
.trade__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
  gap: 48px;
  align-items: center;
}
@media (max-width: 820px) { .trade__grid { grid-template-columns: 1fr; gap: 32px; } }
.trade__h2 {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 52px);
  line-height: 1;
  margin: 0 0 14px;
}
.trade__lede {
  color: var(--ink-soft);
  font-size: 17px;
  margin: 0 0 24px;
}
.trade__benefits {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.trade__benefits li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  font-weight: 500;
}
.tick {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--green);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  flex-shrink: 0;
}
.trade__ctas {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.trade__signin {
  font-size: 14px;
  font-weight: 600;
  color: var(--ink-soft);
  border-bottom: 1px solid currentColor;
}
.trade__signin:hover { color: var(--accent); }

.trade__card {
  background: var(--white);
  border: 1px solid var(--hairline);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-md);
}
.trade__card-head { margin-bottom: 16px; }
.trade__card-label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: 4px;
}
.trade__card-note {
  font-size: 11px;
  color: var(--ink-muted);
  font-style: italic;
}
.trade__tier {
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-rows: auto auto;
  gap: 2px 12px;
  padding: 14px 0;
  border-top: 1px solid var(--hairline);
}
.trade__tier-name {
  font-weight: 700;
  font-size: 15px;
  grid-row: 1;
}
.trade__tier-disc {
  font-family: var(--font-display);
  font-size: 26px;
  grid-row: 1 / span 2;
  grid-column: 2;
  color: var(--accent);
  align-self: center;
}
.trade__tier-term {
  font-size: 12px;
  color: var(--ink-muted);
  grid-row: 2;
}
.trade__tier--top .trade__tier-disc { color: var(--accent-dark); font-size: 30px; }

/* ---------- §3.1 R5 About ---------- */
.about {
  padding: var(--section-y) 0;
  background: var(--white);
}
.about__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 48px;
  align-items: center;
}
@media (max-width: 820px) { .about__grid { grid-template-columns: 1fr; } }
.about__h2 {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 54px);
  line-height: 1;
  margin: 0 0 20px;
}
.about__lede {
  font-size: 17px;
  color: var(--ink-soft);
  margin: 0 0 16px;
}
.about__team {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.team-card {
  background: var(--off-white);
  border: 1px solid var(--hairline);
  border-radius: var(--radius-lg);
  padding: 20px;
  text-align: center;
}
.team-card__photo {
  aspect-ratio: 1;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--steel), var(--steel-soft));
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 96px;
  margin: 0 auto 12px;
}
.team-card__photo--muted {
  background: linear-gradient(135deg, #e2e2e0, #c9c9c5);
  color: var(--ink-muted);
}
.team-card__initials {
  font-family: var(--font-display);
  font-size: 34px;
  letter-spacing: 0.05em;
}
.team-card__name {
  margin: 0;
  font-size: 15px;
  font-weight: 700;
}
.team-card__role {
  margin: 2px 0 8px;
  font-size: 12px;
  color: var(--ink-muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.team-card__bio {
  font-size: 13px;
  color: var(--ink-soft);
  margin: 0;
  line-height: 1.5;
}
.team-card__bio em { color: var(--ink-muted); font-size: 11px; display: block; margin-top: 6px; }

/* ---------- Enquire form ---------- */
.enquire {
  padding: var(--section-y) 0;
  background: var(--off-white);
  border-top: 1px solid var(--hairline);
}
.enquire__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr);
  gap: 48px;
  align-items: start;
}
@media (max-width: 820px) { .enquire__grid { grid-template-columns: 1fr; gap: 32px; } }
.enquire__h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.05;
  margin: 0 0 14px;
}
.enquire__lede { color: var(--ink-soft); margin: 0 0 20px; }
.enquire__details {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 14px;
  color: var(--ink-soft);
}
.enquire__details strong {
  color: var(--ink);
  margin-right: 4px;
}
.enquire__form {
  background: var(--white);
  border: 1px solid var(--hairline);
  border-radius: var(--radius-lg);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.enquire__form label {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-muted);
}
.enquire__form input,
.enquire__form textarea {
  padding: 12px 14px;
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
  font: inherit;
  font-size: 15px;
  color: var(--ink);
  font-weight: 400;
  letter-spacing: normal;
  text-transform: none;
  background: var(--white);
}
.enquire__form input:focus,
.enquire__form textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(209,74,44,0.15);
}

/* ---------- Reviewer annotation banner ---------- */
.annotate-banner {
  background: var(--accent);
  color: var(--white);
  text-align: center;
  padding: 10px 16px;
  font-size: 13px;
  letter-spacing: 0.02em;
}
.annotate-banner a {
  color: var(--white);
  text-decoration: underline;
  margin-left: 6px;
  font-weight: 600;
}

/* ---------- Nav scrolled state ---------- */
.nav--scrolled {
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
}

/* ---------- Real product imagery (Shopify catalogue) ---------- */

/* hero-float keyframes (still used by .hero-band__tile--feature img) */
@keyframes hero-float {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-6px); }
}

/* Category tile images */
.cat-tile__art {
  position: relative;
}
.cat-tile__art img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 14%;
  mix-blend-mode: multiply;
  transition: transform 240ms ease;
}
.cat-tile:hover .cat-tile__art img {
  transform: scale(1.04);
}

/* Product showcase card photo */
.pcard__photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 12%;
  transition: transform 240ms ease;
}
.pcard:hover .pcard__photo {
  transform: scale(1.03);
}

/* PDP hero image + thumb buttons */
.pdp__hero-img {
  background: var(--white);
  display: block;
  padding: 0;
  overflow: hidden;
}
.pdp__hero-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 24px;
  display: block;
}
.pdp__thumb {
  padding: 0;
  background: var(--off-white);
  cursor: pointer;
  overflow: hidden;
}
.pdp__thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 6px;
}
