/* =====================================================
   PK9 GEAR WHOLESALE — DARK WORKSHOP CRAFT
   Charcoal #1C1C1C | Leather #C4956A | Red #C0392B | Cream #F5F0E8
   Fonts: Jost (headings + body — matches pk9gear.com.au)
   ===================================================== */

/* --- TOKENS ---------------------------------------- */
:root {
  /* Brand palette */
  --bg:           #1C1C1C;
  --bg-2:         #222222;
  --bg-3:         #282828;
  --surface:      #252525;
  --surface-2:    #2E2E2E;
  --border:       #3A3A3A;
  --divider:      #333333;

  --cream:        #F5F0E8;
  --cream-muted:  #C8C2B8;
  --cream-faint:  #7A7570;

  --leather:      #C4956A;
  --leather-dark: #A07850;

  --red:          #C0392B;
  --red-hover:    #A93226;
  --red-active:   #922B21;

  /* Typography */
  --font-display: 'Jost', system-ui, sans-serif;
  --font-body:    'Jost', system-ui, sans-serif;

  /* Type scale */
  --text-xs:   clamp(0.75rem,  0.7rem + 0.25vw,  0.875rem);
  --text-sm:   clamp(0.875rem, 0.8rem + 0.35vw,  1rem);
  --text-base: clamp(1rem,     0.95rem + 0.25vw, 1.125rem);
  --text-lg:   clamp(1.125rem, 1rem + 0.75vw,    1.5rem);
  --text-xl:   clamp(1.5rem,   1.2rem + 1.25vw,  2.25rem);
  --text-2xl:  clamp(2rem,     1.2rem + 2.5vw,   3.5rem);
  --text-3xl:  clamp(2.5rem,   1rem + 4vw,       5rem);

  /* Spacing */
  --space-1:  0.25rem;
  --space-2:  0.5rem;
  --space-3:  0.75rem;
  --space-4:  1rem;
  --space-5:  1.25rem;
  --space-6:  1.5rem;
  --space-8:  2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;
  --space-32: 8rem;

  /* Layout */
  --container-max: 1200px;
  --header-h: 72px;

  /* Transitions */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in:  cubic-bezier(0.4, 0, 1, 1);
  --t-fast:   180ms;
  --t-med:    300ms;

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.4);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.5);
  --shadow-lg: 0 12px 40px rgba(0,0,0,0.6);

  /* Radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
}

/* --- BASE ------------------------------------------ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 16px);
}
body {
  min-height: 100dvh;
  font-family: var(--font-body);
  font-size: var(--text-base);
  color: var(--cream);
  background-color: var(--bg);
  line-height: 1.65;
}
img, video {
  display: block;
  max-width: 100%;
  height: auto;
}
ul[role='list'], ol[role='list'] { list-style: none; }
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  text-wrap: balance;
  line-height: 1.15;
}
p, li { text-wrap: pretty; }
::selection { background: color-mix(in oklab, var(--leather) 40%, transparent); color: var(--cream); }
:focus-visible {
  outline: 2px solid var(--leather);
  outline-offset: 3px;
  border-radius: var(--radius-sm);
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* --- LAYOUT ---------------------------------------- */
.container {
  width: min(var(--container-max), 100% - var(--space-8));
  margin-inline: auto;
}
.section {
  padding-block: clamp(var(--space-12), 8vw, var(--space-24));
}

/* --- SCROLL FADE-IN -------------------------------- */
.fade-in {
  opacity: 1; /* fallback */
}
@supports (animation-timeline: scroll()) {
  .fade-in {
    opacity: 0;
    animation: fade-reveal linear both;
    animation-timeline: view();
    animation-range: entry 0% entry 60%;
  }
}
@keyframes fade-reveal { to { opacity: 1; } }

/* --- BUTTONS --------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0.7em 1.6em;
  border-radius: var(--radius-sm);
  border: 2px solid transparent;
  cursor: pointer;
  transition:
    background var(--t-fast) var(--ease-out),
    color var(--t-fast) var(--ease-out),
    border-color var(--t-fast) var(--ease-out),
    box-shadow var(--t-fast) var(--ease-out),
    transform var(--t-fast) var(--ease-out);
}
.btn:active { transform: translateY(1px); }

.btn-primary {
  background: var(--red);
  color: #fff;
  border-color: var(--red);
}
.btn-primary:hover {
  background: var(--red-hover);
  border-color: var(--red-hover);
  box-shadow: 0 4px 16px rgba(192, 57, 43, 0.35);
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: var(--cream);
  border-color: rgba(245, 240, 232, 0.4);
}
.btn-outline:hover {
  border-color: var(--leather);
  color: var(--leather);
  transform: translateY(-1px);
}

.btn-large  { padding: 0.85em 2em; font-size: var(--text-sm); }
.btn-xl     { padding: 1em 2.5em; font-size: var(--text-base); }

/* --- STITCH DIVIDER -------------------------------- */
.stitch-divider {
  position: relative;
  height: 1px;
  background: var(--divider);
  margin: 0;
  overflow: visible;
}
.stitch-divider span {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: min(800px, 90%);
  height: 1px;
  background: repeating-linear-gradient(
    to right,
    var(--leather) 0,
    var(--leather) 8px,
    transparent 8px,
    transparent 16px
  );
  opacity: 0.5;
}

/* --- SECTION HEADER -------------------------------- */
.section-header {
  text-align: center;
  margin-bottom: clamp(var(--space-8), 4vw, var(--space-16));
}
.section-label {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--leather);
  margin-bottom: var(--space-3);
}
.section-heading {
  font-size: var(--text-2xl);
  font-weight: 600;
  color: var(--cream);
}

/* =====================================================
   HEADER
   ===================================================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--header-h);
  background: rgba(28, 28, 28, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition:
    box-shadow var(--t-med) var(--ease-out),
    background var(--t-med) var(--ease-out);
}
.site-header.scrolled {
  background: rgba(28, 28, 28, 0.98);
  box-shadow: var(--shadow-md);
}
.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-6);
  padding-inline: clamp(var(--space-4), 3vw, var(--space-8));
  max-width: var(--container-max);
  margin-inline: auto;
}
.header-logo {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  text-decoration: none;
}
.header-logo img {
  height: 42px;
  width: auto;
  object-fit: contain;
}
.wholesale-badge {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--leather);
  border: 1px solid var(--leather);
  padding: 0.2em 0.6em;
  border-radius: 2px;
  margin-top: 2px;
}
.header-cta { flex-shrink: 0; }

/* =====================================================
   HERO
   ===================================================== */
.hero {
  position: relative;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-top: var(--header-h);
}

/* Hero background with product image */
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(28,28,28,0.6) 0%, rgba(28,28,28,0.88) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 820px;
}
.hero-eyebrow {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--leather);
  margin-bottom: var(--space-5);
  animation: hero-fade-in 0.8s var(--ease-out) 0.1s both;
}
.hero-heading {
  font-size: var(--text-3xl);
  font-weight: 700;
  color: var(--cream);
  margin-bottom: var(--space-6);
  animation: hero-fade-in 0.8s var(--ease-out) 0.2s both;
}
.hero-sub {
  font-size: var(--text-lg);
  color: var(--cream-muted);
  max-width: 60ch;
  margin-inline: auto;
  margin-bottom: var(--space-10);
  line-height: 1.7;
  animation: hero-fade-in 0.8s var(--ease-out) 0.35s both;
}
.hero-ctas {
  display: flex;
  gap: var(--space-4);
  justify-content: center;
  flex-wrap: wrap;
  animation: hero-fade-in 0.8s var(--ease-out) 0.5s both;
}
@keyframes hero-fade-in {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-scroll-indicator {
  position: absolute;
  bottom: var(--space-8);
  left: 50%;
  transform: translateX(-50%);
  color: var(--leather);
  opacity: 0.6;
  animation: scroll-bob 2s ease-in-out infinite;
  z-index: 1;
}
@keyframes scroll-bob {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(6px); }
}

/* Leather grain texture strips (decorative) */
.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 120px;
  background: linear-gradient(to bottom, transparent, var(--bg));
  z-index: 1;
  pointer-events: none;
}

/* =====================================================
   WHY STOCK — DIFFERENTIATORS
   ===================================================== */
.why-stock { background: var(--bg); }

.differentiators-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
}
@media (max-width: 900px) {
  .differentiators-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .differentiators-grid { grid-template-columns: 1fr; }
}
.diff-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: var(--space-8) var(--space-6);
  position: relative;
  transition:
    border-color var(--t-fast) var(--ease-out),
    box-shadow var(--t-fast) var(--ease-out),
    transform var(--t-fast) var(--ease-out);
}
.diff-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: var(--space-6);
  right: var(--space-6);
  height: 1px;
  background: linear-gradient(to right, transparent, var(--leather), transparent);
  opacity: 0;
  transition: opacity var(--t-med) var(--ease-out);
}
.diff-card:hover {
  border-color: var(--leather);
  box-shadow: 0 8px 32px rgba(196, 149, 106, 0.12);
  transform: translateY(-3px);
}
.diff-card:hover::before { opacity: 1; }

.diff-icon {
  margin-bottom: var(--space-5);
}
.diff-card h3 {
  font-family: var(--font-body);
  font-size: var(--text-base);
  font-weight: 700;
  color: var(--cream);
  margin-bottom: var(--space-3);
  letter-spacing: 0.02em;
}
.diff-card p {
  color: var(--cream-muted);
  font-size: var(--text-sm);
  line-height: 1.7;
  max-width: none;
}

/* =====================================================
   VIDEO SECTION
   ===================================================== */
.video-section { background: var(--bg-2); }

.video-wrapper {
  max-width: 480px;
  margin-inline: auto;
}
.video-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
  background: var(--bg-3);
  aspect-ratio: 9 / 16;
}
.video-frame video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.video-note {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(28, 28, 28, 0.9);
  border-top: 1px solid var(--border);
  padding: var(--space-4);
  display: flex;
  align-items: center;
  gap: var(--space-3);
  color: var(--cream-muted);
  font-size: var(--text-xs);
}
.video-note svg { flex-shrink: 0; color: var(--leather); }
.video-note code {
  background: var(--surface-2);
  padding: 0.1em 0.4em;
  border-radius: 3px;
  font-size: 0.9em;
  color: var(--leather);
}
/* Hide note when video has src */
.video-frame video[src] + .video-note,
.video-frame video source + .video-note { display: none; }

.video-caption {
  margin-top: var(--space-5);
  text-align: center;
  color: var(--cream-muted);
  font-size: var(--text-sm);
}

/* =====================================================
   THE RANGE
   ===================================================== */
.range-section { background: var(--bg); }

.range-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(var(--space-8), 4vw, var(--space-16));
  align-items: start;
}
@media (max-width: 768px) {
  .range-layout { grid-template-columns: 1fr; }
}

.category-list {
  margin-bottom: var(--space-8);
}
.category-list li {
  border-bottom: 1px solid var(--border);
}
.category-list li:first-child {
  border-top: 1px solid var(--border);
}
.category-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-4) var(--space-2);
  text-decoration: none;
  color: var(--cream-muted);
  transition:
    color var(--t-fast) var(--ease-out),
    padding-left var(--t-fast) var(--ease-out);
}
.category-link:hover {
  color: var(--leather);
  padding-left: var(--space-4);
}
.category-link svg {
  flex-shrink: 0;
  opacity: 0.5;
  transition: opacity var(--t-fast) var(--ease-out), transform var(--t-fast) var(--ease-out);
}
.category-link:hover svg {
  opacity: 1;
  transform: translateX(4px);
}
.category-name {
  font-weight: 500;
  font-size: var(--text-base);
}
.range-cta { width: 100%; text-align: center; justify-content: center; }

.range-image-wrap {
  position: sticky;
  top: calc(var(--header-h) + var(--space-8));
}
.range-image-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
}
.range-image-card img {
  width: 100%;
  height: auto;
  display: block;
  /* No mix-blend-multiply, no darkening filter */
}

/* =====================================================
   GALLERY
   ===================================================== */
.gallery-section { background: var(--bg-2); }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: var(--space-4);
}
.gallery-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border);
  aspect-ratio: 4 / 3;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s var(--ease-out);
}
.gallery-item:hover img { transform: scale(1.04); }

.gallery-placeholder {
  grid-column: 1 / -1;
  border: 2px dashed var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-16);
}
.gallery-placeholder-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-4);
  text-align: center;
  color: var(--cream-faint);
  font-size: var(--text-sm);
}

/* =====================================================
   DISCOUNT TIERS
   ===================================================== */
.tiers-section { background: var(--bg); }

.tiers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--space-5);
  margin-bottom: var(--space-8);
}
.tier-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: var(--space-8) var(--space-6);
  text-align: center;
  position: relative;
  transition:
    border-color var(--t-fast) var(--ease-out),
    transform var(--t-fast) var(--ease-out),
    box-shadow var(--t-fast) var(--ease-out);
}
.tier-card:hover {
  border-color: var(--leather);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.tier-card.tier-featured {
  border-color: var(--leather);
  background: linear-gradient(135deg, var(--surface) 0%, rgba(196, 149, 106, 0.08) 100%);
  transform: scale(1.02);
  box-shadow: 0 0 0 1px var(--leather), var(--shadow-md);
}
.tier-card.tier-featured:hover {
  transform: scale(1.02) translateY(-3px);
}
.tier-badge {
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--leather);
  color: var(--bg);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.25em 0.8em;
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
  white-space: nowrap;
}
.tier-spend {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--text-2xl);
  color: var(--cream);
  line-height: 1;
  margin-bottom: var(--space-3);
}
.tier-spend span {
  font-size: 0.6em;
  color: var(--cream-muted);
}
.tier-discount {
  font-family: var(--font-body);
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--leather);
  margin-bottom: var(--space-2);
}
.tier-label {
  font-size: var(--text-xs);
  color: var(--cream-faint);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.tiers-note {
  text-align: center;
  color: var(--cream-faint);
  font-size: var(--text-sm);
  margin-bottom: var(--space-8);
  max-width: none;
}
.tiers-cta { text-align: center; }

/* =====================================================
   REVIEWS
   ===================================================== */
.reviews-section { background: var(--bg-2); }

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-6);
}
.review-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: var(--space-6) var(--space-6) var(--space-6);
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}
.review-stars {
  color: #D4AC0D;
  font-size: var(--text-base);
  letter-spacing: 0.05em;
}
.review-card blockquote p {
  color: var(--cream-muted);
  font-size: var(--text-sm);
  line-height: 1.75;
  font-style: italic;
  max-width: none;
}
.review-card footer {
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
  margin-top: auto;
  padding-top: var(--space-4);
  border-top: 1px solid var(--border);
}
.review-card cite {
  font-style: normal;
  font-weight: 700;
  font-size: var(--text-sm);
  color: var(--cream);
}
.review-product {
  font-size: var(--text-xs);
  color: var(--leather);
}

/* =====================================================
   AS SEEN IN / PRESS
   ===================================================== */
.press-section { background: var(--bg); }

.press-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(var(--space-8), 4vw, var(--space-16));
  align-items: start;
}
@media (max-width: 768px) {
  .press-layout { grid-template-columns: 1fr; }
}

.credentials-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
}
.credentials-list li {
  display: flex;
  align-items: flex-start;
  gap: var(--space-4);
  color: var(--cream-muted);
  font-size: var(--text-base);
  line-height: 1.6;
  padding-bottom: var(--space-5);
  border-bottom: 1px solid var(--border);
}
.credentials-list li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.credentials-list strong { color: var(--cream); }
.credential-icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  display: grid;
  place-items: center;
  margin-top: 2px;
}

.press-gallery {
  position: sticky;
  top: calc(var(--header-h) + var(--space-8));
}
.press-gallery-placeholder {
  border: 2px dashed var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-16) var(--space-8);
}
.press-placeholder-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-4);
  text-align: center;
  color: var(--cream-faint);
  font-size: var(--text-sm);
}
/* Press photo grid styles (for when photos are added) */
.press-photo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3);
}
.press-photo-grid img {
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  width: 100%;
  height: 220px;
  object-fit: cover;
  object-position: center;
}

/* =====================================================
   FAQ
   ===================================================== */
.faq-section { background: var(--bg-2); }

.faq-list {
  max-width: 760px;
  margin-inline: auto;
}
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-item:first-child { border-top: 1px solid var(--border); }

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  padding: var(--space-5) var(--space-2);
  cursor: pointer;
  font-family: var(--font-body);
  font-size: var(--text-base);
  font-weight: 600;
  color: var(--cream);
  list-style: none;
  user-select: none;
  transition: color var(--t-fast) var(--ease-out);
}
.faq-question:hover { color: var(--leather); }
.faq-question::-webkit-details-marker { display: none; }

.faq-icon { flex-shrink: 0; transition: transform var(--t-fast) var(--ease-out); }
.faq-item[open] .faq-icon { transform: rotate(180deg); }
.faq-item[open] .faq-question { color: var(--leather); }

.faq-answer {
  padding: 0 var(--space-2) var(--space-6);
}
.faq-answer p {
  color: var(--cream-muted);
  font-size: var(--text-sm);
  line-height: 1.75;
  max-width: 65ch;
}

/* =====================================================
   FINAL CTA
   ===================================================== */
.final-cta-section { background: var(--bg); }

.final-cta-inner {
  max-width: 640px;
  margin-inline: auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-5);
}
.final-cta-heading {
  font-size: var(--text-2xl);
  color: var(--cream);
}
.final-cta-sub {
  color: var(--cream-muted);
  font-size: var(--text-base);
  max-width: 48ch;
}
.final-cta-contact {
  font-size: var(--text-sm);
  color: var(--cream-faint);
  max-width: none;
}
.final-cta-contact a {
  color: var(--leather);
  text-decoration: none;
  transition: color var(--t-fast) var(--ease-out);
}
.final-cta-contact a:hover { color: var(--cream); }

/* =====================================================
   FOOTER
   ===================================================== */
.site-footer {
  background: #141414;
  border-top: 1px solid var(--border);
  padding-block: var(--space-12) var(--space-8);
}
.footer-inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: var(--space-8);
  flex-wrap: wrap;
  margin-bottom: var(--space-8);
  padding-bottom: var(--space-8);
  border-bottom: 1px solid var(--border);
}
.footer-brand img {
  height: 36px;
  width: auto;
  margin-bottom: var(--space-3);
}
.footer-tagline {
  color: var(--cream-faint);
  font-size: var(--text-sm);
  line-height: 1.6;
  max-width: none;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  text-align: right;
}
@media (max-width: 500px) {
  .footer-links { text-align: left; }
}
.footer-links a {
  color: var(--cream-muted);
  text-decoration: none;
  font-size: var(--text-sm);
  transition: color var(--t-fast) var(--ease-out);
}
.footer-links a:hover { color: var(--leather); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space-3);
}
.footer-bottom p {
  color: var(--cream-faint);
  font-size: var(--text-xs);
  max-width: none;
}

/* =====================================================
   RESPONSIVE
   ===================================================== */
@media (max-width: 600px) {
  .hero-ctas { flex-direction: column; align-items: center; }
  .differentiators-grid { grid-template-columns: 1fr; }
  .tiers-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid { grid-template-columns: 1fr; }
  .tier-card.tier-featured { transform: none; }
  .tier-card.tier-featured:hover { transform: translateY(-3px); }
  .footer-inner { flex-direction: column; }
  .footer-links { text-align: left; }
  .footer-bottom { flex-direction: column; }
}
@media (max-width: 400px) {
  .tiers-grid { grid-template-columns: 1fr; }
}

/* =====================================================
   SECTION SUB
   ===================================================== */
.section-sub {
  color: var(--cream-muted);
  font-size: var(--text-base);
  max-width: 60ch;
  margin-inline: auto;
  margin-top: var(--space-3);
  line-height: 1.7;
}

/* =====================================================
   STOCKISTS
   ===================================================== */
.stockists-section { background: var(--bg-2); }

.stockists-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: var(--space-4);
  margin-bottom: var(--space-12);
}
@media (max-width: 600px) {
  .stockists-grid { grid-template-columns: repeat(2, 1fr); gap: var(--space-3); }
}
@media (max-width: 380px) {
  .stockists-grid { grid-template-columns: 1fr; }
}

.stockist-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: var(--space-4) var(--space-5);
  display: flex;
  align-items: center;
  gap: var(--space-4);
  text-decoration: none;
  transition:
    border-color var(--t-fast) var(--ease-out),
    box-shadow var(--t-fast) var(--ease-out),
    transform var(--t-fast) var(--ease-out);
}
.stockist-linked:hover {
  border-color: var(--leather);
  box-shadow: 0 4px 16px rgba(196, 149, 106, 0.1);
  transform: translateY(-2px);
}

.stockist-logo-wrap {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
}
.stockist-logo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 4px;
}
.stockist-initials {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.65rem;
  letter-spacing: 0.05em;
  color: var(--cream-muted);
  background: var(--surface-2);
}

.stockist-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}
.stockist-name {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--cream);
  white-space: normal;
  line-height: 1.3;
}
.stockist-linked .stockist-name { color: var(--cream); }
.stockist-linked:hover .stockist-name { color: var(--leather); }
.stockist-location {
  font-size: var(--text-xs);
  color: var(--cream-faint);
}

.stockists-cta {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-4);
}
.stockists-cta-text {
  font-size: var(--text-lg);
  font-weight: 600;
  color: var(--cream);
}

