/* =========================================================================
   Spice & Scale World (SSW) Namibia — site styles
   Rustic-premium braai / spice aesthetic. Built mobile-first.
   ========================================================================= */

/* ----- Design tokens ----- */
:root {
  /* Pure Plaas orange + Spice & Scale blue + black brand palette.
     Legacy --green-* names retained but remapped to a neutral charcoal/ink scale. */
  --green-900: #101216;   /* deepest ink surface */
  --green-800: #1b1e24;   /* primary dark surface: hero, footer, dark buttons */
  --green-700: #282c34;
  --green-600: #3a3f49;   /* neutral dark accent */
  --green-500: #565c68;
  --green-200: #d7dade;

  --paprika:      #f26522;  /* Pure Plaas orange — primary action / accent */
  --paprika-dark: #d4511a;
  --paprika-soft: #fbe7da;
  --blue:         #0094d6;  /* Spice & Scale corporate blue */
  --blue-dark:    #0a6fa3;
  --blue-soft:    #e2f1fb;
  --gold:         #d2982e;
  --gold-soft:    #eccb78;
  --wheat:        #f0e7d7;  /* warm light text on dark surfaces */

  --cream:  #f7f4ee;        /* page background (warm light) */
  --cream-2:#efe9df;
  --paper:  #ffffff;        /* cards */
  --ink:    #1a1b1e;        /* near-black text */
  --ink-soft:#56585f;
  --ink-faint:#8b8d94;
  --line:   rgba(20, 21, 24, .10);
  --line-strong: rgba(20, 21, 24, .16);

  --shadow-sm: 0 1px 2px rgba(16, 18, 22, .06), 0 2px 6px rgba(16, 18, 22, .06);
  --shadow-md: 0 6px 18px rgba(16, 18, 22, .10), 0 2px 6px rgba(16, 18, 22, .06);
  --shadow-lg: 0 20px 50px rgba(16, 18, 22, .22);

  --radius: 14px;
  --radius-sm: 9px;
  --radius-lg: 22px;

  --maxw: 1180px;
  --font-head: "Bitter", Georgia, "Times New Roman", serif;
  --font-body: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

  --ease: cubic-bezier(.22,.61,.36,1);
}

/* ----- Reset ----- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; scroll-padding-top: 88px; }
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  font-size: 16.5px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul { list-style: none; padding: 0; }
input, textarea, select { font: inherit; color: inherit; }

h1, h2, h3, h4 { font-family: var(--font-head); font-weight: 700; line-height: 1.12; letter-spacing: -0.01em; color: var(--ink); }
h2 { font-size: clamp(1.7rem, 1.1rem + 2.4vw, 2.7rem); }
h3 { font-size: clamp(1.2rem, 1rem + 1vw, 1.55rem); }
p { color: var(--ink-soft); }

/* ----- Layout helpers ----- */
.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: clamp(18px, 5vw, 40px); }
.section { padding-block: clamp(56px, 8vw, 104px); position: relative; }
.section--tight { padding-block: clamp(40px, 6vw, 72px); }
.center { text-align: center; }
.muted { color: var(--ink-soft); }

.eyebrow {
  display: inline-flex; align-items: center; gap: .5em;
  font-family: var(--font-body); font-weight: 700;
  font-size: .76rem; letter-spacing: .16em; text-transform: uppercase;
  color: var(--paprika);
}
.eyebrow::before { content: ""; width: 26px; height: 2px; background: var(--paprika); border-radius: 2px; }
.eyebrow--center { justify-content: center; }
.eyebrow--gold { color: var(--gold); }
.eyebrow--gold::before { background: var(--gold); }

.section-head { max-width: 660px; margin-bottom: clamp(34px, 5vw, 52px); }
.section-head.center { margin-inline: auto; }
.section-head p { margin-top: 14px; font-size: 1.05rem; }
.lead { font-size: 1.12rem; color: var(--ink-soft); }

/* ----- Buttons ----- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55em;
  padding: 13px 24px; border-radius: 999px;
  font-weight: 600; font-size: .98rem; letter-spacing: .005em;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background-color .25s var(--ease), color .2s;
  white-space: nowrap; border: 1.5px solid transparent;
}
.btn svg { width: 1.1em; height: 1.1em; }
.btn--primary { background: var(--paprika); color: #fff; box-shadow: 0 8px 20px rgba(197,85,47,.28); }
.btn--primary:hover { background: var(--paprika-dark); transform: translateY(-2px); box-shadow: 0 12px 26px rgba(197,85,47,.34); }
.btn--dark { background: var(--green-800); color: var(--wheat); }
.btn--dark:hover { background: var(--green-700); transform: translateY(-2px); }
.btn--ghost { background: transparent; color: var(--ink); border-color: var(--line-strong); }
.btn--ghost:hover { border-color: var(--green-700); background: rgba(44,74,51,.05); transform: translateY(-2px); }
.btn--light { background: var(--wheat); color: var(--green-900); }
.btn--light:hover { background: #fff; transform: translateY(-2px); }
.btn--gold { background: var(--gold); color: #2a210c; }
.btn--gold:hover { background: var(--gold-soft); transform: translateY(-2px); }
.btn--sm { padding: 9px 16px; font-size: .88rem; }
.btn--block { width: 100%; }

/* ----- Header / Nav ----- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(247,241,229,.82);
  backdrop-filter: saturate(150%) blur(12px);
  -webkit-backdrop-filter: saturate(150%) blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s, box-shadow .3s, background-color .3s;
}
.site-header.scrolled { border-bottom-color: var(--line); box-shadow: var(--shadow-sm); }
.nav { display: flex; align-items: center; gap: 22px; height: 72px; }
.brand { display: flex; align-items: center; gap: 12px; margin-right: auto; }
.brand__emblem { width: 44px; height: 44px; flex: none; filter: drop-shadow(0 2px 4px rgba(27,48,32,.18)); }
.brand__text { display: flex; flex-direction: column; line-height: 1; }
.brand__name { font-family: var(--font-head); font-weight: 800; font-size: 1.04rem; letter-spacing: .01em; color: var(--green-800); }
.brand__name b { color: var(--paprika); font-weight: 800; }
.brand__tag { font-size: .64rem; letter-spacing: .26em; text-transform: uppercase; color: var(--ink-faint); margin-top: 4px; font-weight: 600; }
.brand__logo { height: 48px; width: auto; display: block; }
.footer-brand .brand__logo { height: 58px; margin-bottom: 4px; }
@media (max-width: 768px) { .brand__logo { height: 42px; } }

.nav__links { display: flex; align-items: center; gap: 4px; }
.nav__links a {
  padding: 9px 14px; border-radius: 999px; font-weight: 500; font-size: .95rem; color: var(--ink-soft);
  transition: color .2s, background-color .2s;
}
.nav__links a:hover, .nav__links a.active { color: var(--green-800); background: rgba(44,74,51,.07); }
.nav__actions { display: flex; align-items: center; gap: 10px; }

.enquiry-btn { position: relative; }
.enquiry-btn .count {
  position: absolute; top: -7px; right: -7px; min-width: 20px; height: 20px; padding: 0 5px;
  background: var(--paprika); color: #fff; border-radius: 999px; font-size: .72rem; font-weight: 700;
  display: grid; place-items: center; border: 2px solid var(--cream); transform: scale(0); transition: transform .25s var(--ease);
}
.enquiry-btn.has-items .count { transform: scale(1); }

.nav__toggle { display: none; width: 44px; height: 44px; border-radius: 10px; align-items: center; justify-content: center; }
.nav__toggle span, .nav__toggle span::before, .nav__toggle span::after {
  content: ""; display: block; width: 22px; height: 2px; background: var(--green-800); border-radius: 2px; transition: transform .3s var(--ease), opacity .2s;
}
.nav__toggle span::before { transform: translateY(-7px); }
.nav__toggle span::after  { transform: translateY(5px); }
body.nav-open .nav__toggle span { background: transparent; }
body.nav-open .nav__toggle span::before { transform: rotate(45deg); }
body.nav-open .nav__toggle span::after  { transform: rotate(-45deg); }

/* Our Brands dropdown */
.nav__brands { position: relative; }
.nav__brandsbtn {
  display: inline-flex; align-items: center; gap: 5px;
  padding: 9px 14px; border-radius: 999px; font-weight: 500; font-size: .95rem; color: var(--ink-soft);
  background: none; border: 0; cursor: pointer; font-family: inherit;
  transition: color .2s, background-color .2s;
}
.nav__brandsbtn:hover, .nav__brands.open .nav__brandsbtn { color: var(--green-800); background: rgba(44,74,51,.07); }
.nav__caret { width: 14px; height: 14px; flex: none; transition: transform .25s var(--ease); }
.nav__brands.open .nav__caret { transform: rotate(180deg); }
.nav__brandsmenu {
  position: absolute; top: calc(100% + 8px); left: 0; min-width: 196px;
  background: #fff; border: 1px solid var(--line); border-radius: 14px; box-shadow: var(--shadow-lg);
  padding: 7px; display: none; flex-direction: column; gap: 2px; z-index: 60;
}
.nav__brands.open .nav__brandsmenu { display: flex; }
.nav__brandsmenu a {
  padding: 10px 13px; border-radius: 9px; font-size: .92rem; font-weight: 500; color: var(--ink-soft); white-space: nowrap;
  transition: color .15s, background-color .15s;
}
.nav__brandsmenu a:hover { color: var(--green-800); background: rgba(44,74,51,.08); }
@media (hover: hover) and (min-width: 769px) {
  .nav__brands:hover .nav__brandsmenu { display: flex; }
}
@media (max-width: 768px) {
  .nav__brands { width: 100%; }
  .nav__brandsbtn { width: 100%; justify-content: space-between; padding: 13px 14px; font-size: 1rem; border-radius: 10px; }
  .nav__brandsmenu { position: static; display: none; min-width: 0; padding: 2px 0 6px 10px; background: none; border: 0; border-radius: 0; box-shadow: none; }
  .nav__brands.open .nav__brandsmenu { display: flex; }
  .nav__brandsmenu a { padding: 11px 14px; font-size: .98rem; }
}

/* ----- Hero ----- */
.hero { position: relative; color: var(--cream); overflow: hidden; isolation: isolate; background-color: #121317; }
.hero__photo {
  position: absolute; inset: 0; z-index: -3;
  background-image: url("../assets/spices-bg.jpg");
  background-size: cover; background-position: center;
}
.hero__bg {
  position: absolute; inset: 0; z-index: -2;
  background:
    linear-gradient(101deg, rgba(16,17,21,.96) 0%, rgba(16,17,21,.9) 28%, rgba(16,17,21,.68) 60%, rgba(16,17,21,.5) 100%),
    radial-gradient(70% 85% at 96% 80%, rgba(242,101,34,.18) 0%, transparent 58%),
    radial-gradient(120% 120% at 85% 6%, rgba(43,47,55,.5) 0%, transparent 55%);
}
@media (max-width: 768px) {
  .hero__bg { background: linear-gradient(180deg, rgba(16,17,21,.84) 0%, rgba(16,17,21,.92) 100%); }
}
.hero h1, .hero__sub, .hero__pill, .hero__stat .num, .hero__stat .lbl { text-shadow: 0 1px 14px rgba(0,0,0,.5); }
.hero__grain { position: absolute; inset: 0; z-index: -1; opacity: .5; mix-blend-mode: soft-light;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.5'/%3E%3C/svg%3E");
}
.hero__inner { display: grid; grid-template-columns: 1.08fr .92fr; gap: 40px; align-items: center;
  padding-block: clamp(54px, 8vw, 96px); }
.hero__pill {
  display: inline-flex; align-items: center; gap: 8px; padding: 7px 15px 7px 11px; border-radius: 999px;
  background: rgba(236,220,184,.12); border: 1px solid rgba(236,220,184,.22); color: var(--wheat);
  font-size: .8rem; font-weight: 600; letter-spacing: .02em; margin-bottom: 22px;
}
.hero__pill .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--paprika); box-shadow: 0 0 0 4px rgba(242,101,34,.28); }
.hero h1 { color: #fff; font-size: clamp(2.3rem, 1.3rem + 4.6vw, 4.05rem); font-weight: 800; letter-spacing: -0.02em; }
.hero h1 .accent { color: var(--gold-soft); }
.hero h1 .underline { position: relative; white-space: nowrap; }
.hero h1 .underline::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: .04em; height: .14em; border-radius: 4px;
  background: linear-gradient(90deg, var(--paprika), var(--gold)); opacity: .9;
}
.hero__sub { margin-top: 22px; font-size: clamp(1.02rem, .95rem + .4vw, 1.2rem); color: rgba(247,241,229,.82); max-width: 30em; }
.hero__cta { margin-top: 32px; display: flex; flex-wrap: wrap; gap: 14px; }
.hero__stats { margin-top: 40px; display: flex; flex-wrap: wrap; gap: 30px 40px; padding-top: 28px; border-top: 1px solid rgba(236,220,184,.18); }
.hero__stat .num { font-family: var(--font-head); font-size: 1.85rem; font-weight: 800; color: var(--gold-soft); line-height: 1; }
.hero__stat .lbl { font-size: .82rem; color: rgba(247,241,229,.7); margin-top: 6px; letter-spacing: .02em; }

.hero__art { position: relative; }
.hero__art svg { width: 100%; height: auto; filter: drop-shadow(0 30px 50px rgba(0,0,0,.35)); }

.hero__marquee { border-top: 1px solid rgba(236,220,184,.16); background: rgba(0,0,0,.16); }
.hero__marquee .container { display: flex; flex-wrap: wrap; gap: 10px 26px; padding-block: 15px; justify-content: center; }
.hero__marquee span { font-size: .82rem; letter-spacing: .12em; text-transform: uppercase; color: rgba(247,241,229,.66); font-weight: 600; display: inline-flex; align-items: center; gap: 10px; }
.hero__marquee span::before { content: "✦"; color: var(--gold); font-size: .7em; }

/* ----- Trust / serve strip ----- */
.serve-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; }
.serve-card {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 24px 18px; text-align: center; transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s;
}
.serve-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: transparent; }
.serve-card .ic { width: 50px; height: 50px; margin: 0 auto 14px; color: var(--blue-dark); }
.serve-card h4 { font-size: 1.02rem; }
.serve-card p { font-size: .85rem; margin-top: 6px; }

/* ----- Category grid ----- */
.cat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.cat-card {
  position: relative; display: flex; flex-direction: column; gap: 14px;
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 26px 24px 22px; overflow: hidden;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s;
}
.cat-card::after {
  content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 4px; background: var(--accent, var(--green-600));
  transform: scaleY(0); transform-origin: top; transition: transform .35s var(--ease);
}
.cat-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: transparent; }
.cat-card:hover::after { transform: scaleY(1); }
.cat-card__top { display: flex; align-items: center; justify-content: space-between; }
.cat-card__ic {
  width: 56px; height: 56px; border-radius: 14px; display: grid; place-items: center;
  background: var(--accent-soft, #e8efe9); color: var(--accent, var(--green-700));
}
.cat-card__ic svg { width: 30px; height: 30px; }
.cat-card__count { font-size: .8rem; font-weight: 700; color: var(--ink-faint); background: var(--cream-2); padding: 5px 11px; border-radius: 999px; }
.cat-card h3 { font-size: 1.22rem; }
.cat-card p { font-size: .9rem; }
.cat-card__link { margin-top: auto; padding-top: 6px; display: inline-flex; align-items: center; gap: 7px; font-weight: 600; font-size: .9rem; color: var(--green-700); }
.cat-card__link svg { width: 16px; height: 16px; transition: transform .25s var(--ease); }
.cat-card:hover .cat-card__link svg { transform: translateX(4px); }

/* ----- Pure Plaas brand spotlight ----- */
.brandspot { position: relative; color: var(--cream); overflow: hidden; isolation: isolate; background: var(--green-800); }
.brandspot__bg { position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(85% 120% at 100% 0%, rgba(242,101,34,.30) 0%, transparent 52%),
    radial-gradient(70% 90% at 0% 100%, rgba(0,148,214,.12) 0%, transparent 55%),
    linear-gradient(155deg, #24272e 0%, #131418 72%);
}
.brandspot__inner { display: grid; grid-template-columns: .95fr 1.05fr; gap: clamp(34px, 5vw, 64px); align-items: center; }
.brandspot__badge { position: relative; }
.brandspot__badge svg { width: min(360px, 80%); margin-inline: auto; filter: drop-shadow(0 24px 44px rgba(0,0,0,.4)); }
.brandspot h2 { color: #fff; }
.brandspot h2 .gold { color: var(--gold-soft); }
.brandspot p { color: rgba(247,241,229,.82); }
.brandspot .lead { margin-top: 16px; }
.flavour-chips { display: flex; flex-wrap: wrap; gap: 9px; margin: 26px 0 30px; }
.flavour-chips span {
  font-size: .84rem; font-weight: 600; padding: 7px 14px; border-radius: 999px;
  background: rgba(236,220,184,.10); border: 1px solid rgba(236,220,184,.2); color: var(--wheat);
}
.brandspot__cta { display: flex; flex-wrap: wrap; gap: 13px; }
.brandspot__note { margin-top: 22px; font-size: .9rem; color: rgba(247,241,229,.62); display: flex; align-items: center; gap: 9px; }
.brandspot__note svg { width: 18px; height: 18px; color: var(--gold); flex: none; }

/* Pure Plaas real-logo card */
.pp-logo-card { background: #fff; border-radius: 22px; padding: 32px 32px 22px; box-shadow: var(--shadow-lg); max-width: 330px; margin-inline: auto; text-align: center; border: 1px solid rgba(0,0,0,.06); }
.pp-logo-card img { width: 100%; max-width: 232px; height: auto; margin: 0 auto 14px; }
.pp-logo-card .pp-slogan { display: block; font-family: var(--font-head); font-style: italic; font-weight: 600; font-size: 1.04rem; color: var(--paprika); padding-top: 16px; border-top: 1px solid var(--line); }

/* Pure Plaas billboards band */
.billboards { background: #14151a; color: var(--wheat, #f0e7d7); text-align: center; }
.billboards__head { max-width: 640px; margin: 0 auto 36px; }
.billboards__head h2 { color: #fff; }
.billboards__head p { color: rgba(240,231,215,.72); margin-top: 12px; }
.billboards__stack { display: grid; gap: 24px; max-width: 1040px; margin: 0 auto; }
.billboard { margin: 0; border-radius: var(--radius-lg, 16px); overflow: hidden; box-shadow: 0 18px 50px -18px rgba(0,0,0,.75); border: 1px solid rgba(240,231,215,.10); background: #000; line-height: 0; }
.billboard__video { display: block; width: 100%; height: auto; aspect-ratio: 1120 / 300; background: #000; object-fit: contain; }

/* Our Brands zone */
.ourbrands { padding-top: clamp(48px, 7vw, 90px); padding-bottom: 34px; }
.ourbrands .section-head { margin-bottom: 28px; }
.brandband { padding: 30px 0; }
.brandband + .brandband { border-top: 1px solid var(--line); }
.brandband__inner { display: grid; grid-template-columns: 0.82fr 1fr; gap: clamp(24px, 4vw, 50px); align-items: center; }
.brandband--alt .brandband__visual { order: 2; }
.brandband__visual { display: flex; align-items: center; justify-content: center; }
.brandband__visual img { width: 100%; max-width: 470px; height: auto; border-radius: var(--radius-lg); box-shadow: 0 16px 40px -18px rgba(0,0,0,.30); background: #fff; }
.wordmark {
  width: 100%; max-width: 360px; aspect-ratio: 16 / 10; border-radius: var(--radius-lg);
  background: var(--b-soft); border: 1px solid rgba(0,0,0,.06);
  display: grid; place-content: center; gap: 6px; text-align: center; padding: 26px;
  box-shadow: 0 16px 40px -22px rgba(0,0,0,.30);
}
.wordmark__name { font-family: var(--font-head); font-weight: 800; font-size: clamp(1.7rem, 4vw, 2.3rem); color: var(--b); line-height: 1.04; }
.wordmark__tag { font-family: var(--font-head); font-style: italic; font-weight: 600; font-size: 1rem; color: var(--b); opacity: .82; }
.brandlogo { width: 100%; max-width: 380px; border-radius: var(--radius-lg); display: grid; place-items: center; padding: 34px; box-shadow: 0 16px 40px -20px rgba(0,0,0,.45); }
.brandlogo--dark { background: #1b1b1d; }
.brandlogo--light { background: #fff; border: 1px solid var(--line); }
.brandlogo img { width: 100%; max-width: 290px; height: auto; }
.brandband__eyebrow { font-family: var(--font-body); font-weight: 700; font-size: .74rem; letter-spacing: .12em; text-transform: uppercase; color: var(--b); }
.brandband__copy h3 { font-size: clamp(1.5rem, 3.4vw, 2.05rem); margin: 9px 0 12px; display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.brandband__soon { font-family: var(--font-body); font-size: .66rem; font-weight: 700; letter-spacing: .05em; text-transform: uppercase; color: var(--b); background: var(--b-soft); padding: 5px 11px; border-radius: 999px; }
.brandband__copy p { max-width: 56ch; }
.brandband__chips { display: flex; flex-wrap: wrap; gap: 7px; margin: 15px 0 20px; }
.brandband__chips span { font-size: .82rem; font-weight: 600; color: var(--b); background: var(--b-soft); padding: 6px 12px; border-radius: 999px; }
.btn--brand { background: var(--b); color: #fff; }
.btn--brand:hover { filter: brightness(1.08); transform: translateY(-2px); }
@media (max-width: 768px) {
  .brandband__inner { grid-template-columns: 1fr; gap: 20px; }
  .brandband--alt .brandband__visual { order: 0; }
  .brandband__visual img, .wordmark { max-width: 100%; }
}

/* Lifestyle band */
.lifestyle { position: relative; isolation: isolate; color: #fff; overflow: hidden; }
.lifestyle__img { position: absolute; inset: 0; z-index: -2; background-size: cover; background-position: center 32%; }
.lifestyle__overlay { position: absolute; inset: 0; z-index: -1; background: linear-gradient(90deg, rgba(14,16,20,.9) 0%, rgba(14,16,20,.66) 44%, rgba(14,16,20,.28) 100%); }
.lifestyle__inner { padding-block: clamp(60px, 9vw, 116px); max-width: 640px; }
.lifestyle__inner h2 { color: #fff; margin-top: 14px; }
.lifestyle__inner p { color: rgba(255,255,255,.86); margin: 16px 0 28px; font-size: 1.08rem; }
.lifestyle__gear { display: flex; gap: 13px; margin-top: 32px; flex-wrap: wrap; }
.gear-thumb { display: block; width: 118px; background: #fff; border-radius: 12px; padding: 8px; box-shadow: var(--shadow-md); transition: transform .25s var(--ease); }
.gear-thumb:hover { transform: translateY(-5px); }
.gear-thumb img { width: 100%; height: 96px; object-fit: cover; object-position: center 25%; border-radius: 8px; }
.gear-thumb span { display: block; text-align: center; font-size: .76rem; font-weight: 600; color: var(--ink); padding: 7px 2px 2px; }
@media (max-width: 768px) {
  .lifestyle__overlay { background: linear-gradient(180deg, rgba(14,16,20,.55) 0%, rgba(14,16,20,.84) 100%); }
  .lifestyle__img { background-position: center; }
}

/* ----- Feature / why grid ----- */
.feature-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.feature {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); padding: 26px 22px;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.feature:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.feature__ic { width: 46px; height: 46px; border-radius: 12px; display: grid; place-items: center; background: #f6ead9; margin-bottom: 16px; color: var(--paprika); }
.feature__ic svg { width: 24px; height: 24px; }
.feature h4 { font-size: 1.06rem; margin-bottom: 8px; }
.feature p { font-size: .9rem; }

/* ----- Pillar-page intro + FAQ (category landing pages) ----- */

.pillar-intro p { font-size: 1.02rem; line-height: 1.7; margin-bottom: 14px; color: var(--ink-soft, #4a4d54); }
.pillar-intro p:last-child { margin-bottom: 0; }
.pillar-intro a { color: var(--paprika); font-weight: 600; }
.faq-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 16px; }
.faq-item {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); padding: 22px 22px;
}
.faq-item h3 { font-size: 1rem; margin-bottom: 8px; }
.faq-item p { font-size: .92rem; line-height: 1.6; }

/* ----- Trade support (dark band) ----- */
.support-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 16px; }
.support-card {
  display: flex; flex-direction: column; gap: 9px; padding: 24px 22px; border-radius: var(--radius);
  background: rgba(255,255,255,.04); border: 1px solid rgba(240,231,215,.12);
  transition: transform .3s var(--ease), background-color .3s, border-color .3s;
}
.support-card:hover { transform: translateY(-4px); background: rgba(255,255,255,.07); border-color: rgba(242,101,34,.5); }
.support-card__ic { width: 46px; height: 46px; border-radius: 12px; display: grid; place-items: center; background: rgba(242,101,34,.16); color: var(--paprika); margin-bottom: 4px; }
.support-card__ic svg { width: 24px; height: 24px; }
.support-card__ic--img { width: 56px; height: 56px; background: none; border-radius: 0; }
.support-card__ic--img img { width: 100%; height: 100%; object-fit: contain; display: block; }
.support-card h4 { color: #fff; font-size: 1.05rem; }
.support-card p { color: rgba(240,231,215,.7); font-size: .88rem; }
.support-card__cta { margin-top: auto; padding-top: 6px; color: var(--gold-soft); font-weight: 600; font-size: .88rem; transition: color .2s; }
.support-card:hover .support-card__cta { color: var(--paprika); }

/* ----- Featured products row ----- */
.fp-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }

/* ----- Stockists ----- */
.stockist-band { background: var(--cream-2); border-block: 1px solid var(--line); }
.stockist-logos { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 16px 26px; margin-top: 10px; }
.stockist-logos span {
  font-family: var(--font-head); font-weight: 700; font-size: 1.05rem; color: var(--green-700);
  opacity: .7; padding: 10px 20px; border: 1.5px dashed var(--line-strong); border-radius: 10px; background: var(--paper);
}

/* ----- Testimonials ----- */
.testimonial-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(270px, 1fr)); gap: 18px; }
.testimonial { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); padding: 26px 24px; display: flex; flex-direction: column; gap: 14px; box-shadow: var(--shadow-sm); transition: transform .3s var(--ease), box-shadow .3s var(--ease); }
.testimonial:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.testimonial .stars { color: #f0a431; letter-spacing: 3px; font-size: 1rem; }
.testimonial blockquote { font-size: 1.04rem; color: var(--ink); line-height: 1.55; font-style: italic; }
.testimonial figcaption { display: flex; align-items: center; gap: 12px; margin-top: auto; }
.t-avatar { width: 44px; height: 44px; border-radius: 50%; display: grid; place-items: center; font-weight: 700; color: #fff; font-size: .9rem; flex: none; font-family: var(--font-head); }
.testimonial figcaption strong { display: block; font-size: .95rem; }
.testimonial figcaption small { color: var(--ink-faint); font-size: .82rem; }

/* ----- Where-to-buy map ----- */
.map-layout { display: grid; grid-template-columns: 1.15fr .85fr; gap: clamp(28px, 5vw, 56px); align-items: center; }
.map-wrap { background: linear-gradient(160deg, #eaf3f8 0%, #dceaf2 100%); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 20px; box-shadow: var(--shadow-md); }
.map-wrap svg { width: 100%; height: auto; }
.ssw-map__land { fill: #ece0c4; stroke: #cdb88c; stroke-width: 1.5; stroke-linejoin: round; }
.ssw-map__pin { fill: var(--paprika); stroke: #fff; stroke-width: 2; }
.ssw-map__cap { fill: #fff; stroke: var(--paprika); stroke-width: 3; }
.ssw-map__label { fill: #33373f; font-family: var(--font-body); font-size: 11px; font-weight: 600; }
.ssw-map__label--cap { font-weight: 800; fill: var(--paprika-dark); }
.ssw-map__pulse { fill: var(--paprika); opacity: .35; transform-box: fill-box; transform-origin: center; animation: mapPulse 2.6s ease-out infinite; }
@keyframes mapPulse { 0% { transform: scale(.5); opacity: .5; } 75% { transform: scale(2.6); opacity: 0; } 100% { opacity: 0; } }
.map-side h3 { font-size: 1.45rem; margin-bottom: 16px; }
.region-list { display: flex; flex-direction: column; gap: 11px; margin-bottom: 26px; }
.region-list li { display: flex; align-items: center; gap: 11px; font-weight: 500; color: var(--ink-soft); }
.region-list li svg { width: 18px; height: 18px; color: var(--paprika); flex: none; }
.map-cta { display: flex; flex-wrap: wrap; gap: 12px; }
@media (max-width: 860px) { .map-layout { grid-template-columns: 1fr; } .map-wrap { max-width: 460px; margin-inline: auto; } }
@media (prefers-reduced-motion: reduce) { .ssw-map__pulse { animation: none; } }

/* ----- CTA band ----- */
.ctaband { position: relative; color: var(--cream); overflow: hidden; isolation: isolate; }
.ctaband__bg { position: absolute; inset: 0; z-index: -1; background: linear-gradient(120deg, #f4731f 0%, #d4511a 100%); }
.ctaband__inner { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 26px; padding-block: clamp(40px,6vw,64px); }
.ctaband h2 { color: #fff; max-width: 18em; }
.ctaband p { color: rgba(255,255,255,.85); margin-top: 10px; }
.ctaband__actions { display: flex; flex-wrap: wrap; gap: 13px; }

/* ----- Contact ----- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 5vw, 56px); align-items: start; }
.contact-info { display: flex; flex-direction: column; gap: 12px; }
.contact-item { display: flex; gap: 15px; align-items: flex-start; padding: 18px 20px; background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); transition: box-shadow .3s, transform .3s; }
.contact-item:hover { box-shadow: var(--shadow-sm); transform: translateY(-2px); }
.contact-item__ic { width: 44px; height: 44px; flex: none; border-radius: 11px; display: grid; place-items: center; background: var(--blue-soft); color: var(--blue-dark); }
.contact-item__ic svg { width: 22px; height: 22px; }
.contact-item h4 { font-size: 1rem; margin-bottom: 2px; }
.contact-item a, .contact-item p { font-size: .94rem; color: var(--ink-soft); }
.contact-item a:hover { color: var(--paprika); }

.contact-form { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(24px, 3vw, 36px); box-shadow: var(--shadow-md); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { margin-bottom: 16px; display: flex; flex-direction: column; gap: 7px; }
.field label { font-size: .82rem; font-weight: 600; color: var(--ink); letter-spacing: .01em; }
.field input, .field textarea, .field select {
  padding: 12px 14px; border: 1.5px solid var(--line-strong); border-radius: 10px; background: var(--cream);
  transition: border-color .2s, box-shadow .2s, background-color .2s; width: 100%;
}
.field textarea { resize: vertical; min-height: 110px; }
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none; border-color: var(--blue); background: #fff; box-shadow: 0 0 0 4px rgba(0,148,214,.14);
}
.form-note { font-size: .82rem; color: var(--ink-faint); margin-top: 4px; }

/* ----- Enquiry drawer: send details ----- */
.enq-send { display: grid; gap: 8px; width: 100%; margin-bottom: 10px; }
.enq-send input {
  padding: 11px 13px; border: 1.5px solid var(--line-strong); border-radius: 10px; background: var(--cream);
  transition: border-color .2s, box-shadow .2s, background-color .2s; width: 100%; font: inherit;
}
.enq-send input:focus { outline: none; border-color: var(--blue); background: #fff; box-shadow: 0 0 0 4px rgba(0,148,214,.14); }
.enq-send .btn { width: 100%; justify-content: center; }
.enq-send__note { font-size: .78rem; color: var(--ink-faint); text-align: center; }

/* ----- Footer ----- */
.site-footer { background: var(--green-900); color: rgba(247,241,229,.72); padding-block: clamp(48px,6vw,72px) 0; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 36px; }
.footer-brand .brand__name { color: #fff; }
.footer-brand .brand__name b { color: var(--gold-soft); }
.footer-brand .brand__tag { color: rgba(247,241,229,.55); }
.footer-brand p { color: rgba(247,241,229,.6); font-size: .92rem; margin-top: 16px; max-width: 30ch; }
.footer-col h4 { font-family: var(--font-head); color: var(--wheat); font-size: 1rem; margin-bottom: 16px; font-weight: 700; }
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col a { font-size: .92rem; color: rgba(247,241,229,.7); transition: color .2s, padding-left .2s; }
.footer-col a:hover { color: var(--gold-soft); padding-left: 3px; }
.footer-contact li { font-size: .92rem; display: flex; gap: 10px; align-items: flex-start; margin-bottom: 11px; }
.footer-contact svg { width: 17px; height: 17px; color: var(--gold); flex: none; margin-top: 3px; }
.footer-bottom { margin-top: clamp(36px,5vw,52px); border-top: 1px solid rgba(236,220,184,.14); padding-block: 22px; display: flex; flex-wrap: wrap; gap: 10px 20px; justify-content: space-between; align-items: center; }
.footer-bottom p { font-size: .84rem; color: rgba(247,241,229,.5); }
.footer-bottom .grp { color: rgba(247,241,229,.5); }
.footer-bottom .grp b { color: var(--wheat); font-weight: 600; }
.footer-badge { height: 56px; width: 56px; flex: none; opacity: .92; }

/* =========================================================================
   Catalogue page
   ========================================================================= */
.page-hero { position: relative; color: var(--cream); overflow: hidden; isolation: isolate; }
.page-hero__bg { position: absolute; inset: 0; z-index: -2; background:
  radial-gradient(60% 120% at 96% 12%, rgba(242,101,34,.18) 0%, transparent 55%),
  linear-gradient(160deg, #20232a 0%, #131418 100%); }
.page-hero__grain { position: absolute; inset: 0; z-index: -1; opacity: .4; mix-blend-mode: soft-light;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.5'/%3E%3C/svg%3E"); }
.page-hero__inner { padding-block: clamp(20px,3vw,26px); }
.page-hero h1 { color: #fff; font-size: clamp(1.8rem,1.4rem+1.2vw,2.1rem); font-weight: 800; max-width: 16em; }
.page-hero p { color: rgba(247,241,229,.8); margin-top: 8px; max-width: 44em; font-size: 1rem; }
.breadcrumb { display: flex; gap: 8px; align-items: center; font-size: .85rem; color: rgba(247,241,229,.6); margin-bottom: 10px; }
.breadcrumb a:hover { color: var(--gold-soft); }

/* toolbar */
.cat-toolbar { position: sticky; top: 72px; z-index: 30; background: rgba(247,241,229,.92); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); border-bottom: 1px solid var(--line); padding-block: 10px; }
.cat-toolbar__inner { display: flex; flex-direction: column; gap: 14px; }
.searchbar { position: relative; flex: 1; }
.searchbar svg { position: absolute; left: 16px; top: 50%; transform: translateY(-50%); width: 20px; height: 20px; color: var(--ink-faint); pointer-events: none; }
.searchbar input { width: 100%; padding: 13px 44px 13px 46px; border: 1.5px solid var(--line-strong); border-radius: 999px; background: var(--paper); transition: border-color .2s, box-shadow .2s; }
.searchbar input:focus { outline: none; border-color: var(--blue); box-shadow: 0 0 0 4px rgba(0,148,214,.14); }
.searchbar__clear { position: absolute; right: 8px; top: 50%; transform: translateY(-50%); width: 30px; height: 30px; border-radius: 50%; display: none; place-items: center; color: var(--ink-faint); }
.searchbar__clear:hover { background: var(--cream-2); color: var(--ink); }
.searchbar.has-text .searchbar__clear { display: grid; }

.toolbar-row { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.filter-pills { display: flex; gap: 9px; overflow-x: auto; padding-bottom: 3px; scrollbar-width: thin; flex: 1; }
.filter-pills::-webkit-scrollbar { height: 5px; }
.filter-pills::-webkit-scrollbar-thumb { background: var(--line-strong); border-radius: 4px; }
.pill {
  flex: none; padding: 9px 16px; border-radius: 999px; font-size: .9rem; font-weight: 600; color: var(--ink-soft);
  background: var(--paper); border: 1.5px solid var(--line-strong); transition: all .2s var(--ease); white-space: nowrap;
}
.pill:hover { border-color: var(--blue); color: var(--blue-dark); }
.pill.active { background: var(--paprika); border-color: var(--paprika); color: #fff; box-shadow: 0 6px 14px rgba(242,101,34,.28); }
.pill.active .c { opacity: .85; }
.pill .c { opacity: .65; font-weight: 600; margin-left: 4px; }
.result-count { font-size: .9rem; color: var(--ink-faint); font-weight: 600; white-space: nowrap; }

/* product groups + grid */
.cat-section { padding-block: clamp(16px,2.5vw,24px); }
.group { margin-bottom: 46px; scroll-margin-top: 200px; }
.group:last-child { margin-bottom: 0; }
.group__head { display: flex; align-items: center; gap: 14px; margin-bottom: 12px; padding-bottom: 10px; border-bottom: 2px solid var(--line); }
.group__ic { width: 36px; height: 36px; border-radius: 11px; display: grid; place-items: center; background: var(--accent-soft,#e8efe9); color: var(--accent,var(--green-700)); flex: none; }
.group__ic svg { width: 20px; height: 20px; }
.group__title { font-size: clamp(1.3rem,1.1rem+1vw,1.7rem); }
.group__meta { font-size: .82rem; color: var(--ink-faint); margin-top: 2px; font-weight: 500; }
.group__count { margin-left: auto; font-size: .82rem; font-weight: 700; color: var(--ink-faint); background: var(--cream-2); padding: 6px 13px; border-radius: 999px; flex: none; }
.group__empty { background: var(--accent-soft,var(--cream-2)); border-radius: var(--radius); padding: 22px 24px; font-size: .95rem; color: var(--ink-soft); }
.group__empty a { color: var(--accent,var(--paprika)); font-weight: 600; text-decoration: underline; }

.product-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(258px, 1fr)); gap: 16px; }
.product-card {
  display: flex; flex-direction: column; gap: 10px; background: var(--paper); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 20px 20px 18px; position: relative; overflow: hidden;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s;
}
.product-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: transparent; }
.product-card__img { margin: -20px -20px 14px; height: 208px; background: #fff; border-bottom: 1px solid var(--line); display: flex; align-items: center; justify-content: center; overflow: hidden; padding: 12px; box-sizing: border-box; }
.product-card__img img { max-width: 100%; max-height: 100%; width: auto; height: auto; object-fit: contain; display: block; }
.product-card__img--ph { background: var(--accent-soft, #eef1ee); }
.product-card__img--ph svg { width: 74px; height: 74px; color: var(--accent, #51607a); opacity: .82; }
.product-card__tags { display: flex; gap: 7px; align-items: center; flex-wrap: wrap; }
.tag { font-size: .68rem; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; padding: 4px 9px; border-radius: 6px; }
.tag--cat { background: var(--accent-soft,#e8efe9); color: var(--accent,var(--green-700)); }
.tag--pp { background: linear-gradient(120deg, #f4731f 0%, #d4511a 100%); color: #fff; display: inline-flex; align-items: center; gap: 4px; }
.tag--pp svg { width: 11px; height: 11px; }
.product-card h3 { font-size: 1.12rem; line-height: 1.25; color: var(--ink); }
.product-card__opts { font-size: .85rem; color: var(--ink-soft); display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.product-card__opts b { color: var(--ink); font-weight: 600; }
.product-card__foot { margin-top: auto; padding-top: 12px; display: flex; align-items: center; justify-content: space-between; gap: 10px; border-top: 1px solid var(--line); }
.product-card__unit { font-size: .8rem; color: var(--ink-faint); }
.add-btn {
  display: inline-flex; align-items: center; gap: 6px; padding: 8px 14px; border-radius: 999px; font-size: .84rem; font-weight: 600;
  background: var(--green-800); color: var(--wheat); transition: background-color .2s, transform .2s;
}
.add-btn svg { width: 15px; height: 15px; transition: transform .2s; }
.add-btn:hover { background: var(--green-700); }
.add-btn.added { background: var(--blue-soft); color: var(--blue-dark); }
.add-btn.added svg { transform: rotate(0); }
.add-btn { border: 0; cursor: pointer; font-family: inherit; }

/* product-card links */
a.product-card__img { text-decoration: none; }
.product-card h3 a { color: inherit; text-decoration: none; }
.product-card h3 a:hover { color: var(--accent, var(--paprika)); }
.product-card__view { font-size: .82rem; font-weight: 600; color: var(--accent, var(--green-700)); text-decoration: none; white-space: nowrap; }
.product-card__view:hover { text-decoration: underline; }

/* ===================================================================
   Product detail page
   =================================================================== */
.pd-main { padding-top: clamp(24px, 4vw, 40px); padding-bottom: 8px; }
.breadcrumb { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; font-size: .85rem; color: var(--ink-faint); margin-bottom: 22px; }
.breadcrumb a { color: var(--ink-soft); text-decoration: none; }
.breadcrumb a:hover { color: var(--paprika); }
.breadcrumb span { color: var(--line-strong); }
.breadcrumb__cur { color: var(--ink); font-weight: 600; }

.pd { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 5vw, 60px); align-items: start; }
.pd__media { position: sticky; top: 96px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 24px; display: flex; flex-direction: column; align-items: center; justify-content: center; min-height: 380px; box-shadow: var(--shadow-sm); }
.pd__media img { width: 100%; max-height: 470px; object-fit: contain; }
.pd__main-img { width: 100%; max-height: 470px; object-fit: contain; }
.pd__main-img { cursor: zoom-in; }
/* full-size image lightbox */
.lightbox { position: fixed; inset: 0; z-index: 1000; background: rgba(10,11,14,.88); display: flex; align-items: center; justify-content: center; padding: 3vh 3vw; cursor: zoom-out; }
.lightbox img { max-width: 92vw; max-height: 92vh; object-fit: contain; background: #fff; border-radius: 12px; padding: 16px; box-shadow: 0 30px 80px rgba(0,0,0,.6); }
.lightbox__close { position: absolute; top: 18px; right: 22px; width: 44px; height: 44px; border-radius: 50%; border: none; background: rgba(255,255,255,.14); color: #fff; font-size: 20px; cursor: pointer; }
.lightbox__close:hover { background: rgba(255,255,255,.26); }
.pd__thumbs { display: flex; gap: 10px; margin-top: 16px; flex-wrap: wrap; justify-content: center; }
.pd__thumb { width: 70px; height: 70px; padding: 0; border: 2px solid var(--line); border-radius: 10px; overflow: hidden; background: #fff; cursor: pointer; transition: border-color .2s; }
.pd__thumb:hover { border-color: var(--line-strong); }
.pd__thumb.is-active { border-color: var(--accent, var(--paprika)); }
.pd__thumb img { width: 100%; height: 100%; max-height: none; object-fit: cover; display: block; }
.pd__noimg { text-align: center; color: var(--accent, var(--green-700)); display: grid; gap: 10px; place-items: center; padding: 40px; }
.pd__noimg svg { width: 74px; height: 74px; opacity: .65; }
.pd__noimg span { font-family: var(--font-head); font-weight: 700; font-size: 1.05rem; }
.pd__noimg small { color: var(--ink-faint); font-weight: 500; }

.pd__tags { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 14px; }
.pd__name { font-size: clamp(1.8rem, 3.4vw, 2.5rem); line-height: 1.12; margin-bottom: 8px; }
.pd__cat { font-size: .82rem; color: var(--ink-faint); font-weight: 600; text-transform: uppercase; letter-spacing: .05em; margin-bottom: 20px; }
.pd__desc { color: var(--ink-soft); font-size: 1.04rem; line-height: 1.65; }
.pd__desc p { margin-bottom: 12px; }
.pd__desc strong { color: var(--ink); font-weight: 600; }
.pd__pack { margin: 22px 0; }
.pd__pack h2 { font-size: .8rem; text-transform: uppercase; letter-spacing: .08em; color: var(--ink-faint); margin-bottom: 10px; font-family: var(--font-body); font-weight: 600; }
.pd__chips { display: flex; flex-wrap: wrap; gap: 8px; }
.pd__chips li { background: var(--accent-soft, var(--cream-2)); color: var(--accent, var(--ink)); font-weight: 600; font-size: .85rem; padding: 7px 13px; border-radius: 8px; }
.pd__cta { display: flex; flex-wrap: wrap; gap: 12px; margin: 26px 0 18px; }
.pd__cta .add-btn--xl { padding: 13px 26px; font-size: .98rem; }
.pd__cta .btn { padding: 13px 22px; }
.pd__trade { font-size: .85rem; color: var(--ink-faint); border-top: 1px solid var(--line); padding-top: 16px; }

.pd-related { background: var(--cream-2); margin-top: clamp(44px, 6vw, 76px); }
.pd-related__head { display: flex; align-items: baseline; justify-content: space-between; gap: 16px; margin-bottom: 24px; }
.pd-related__head h2 { font-size: 1.5rem; }
.pd-related__all { color: var(--paprika); font-weight: 600; text-decoration: none; white-space: nowrap; }
.pd-related__all:hover { text-decoration: underline; }
.pd-missing { text-align: center; padding: 80px 20px; }
.pd-missing h1 { margin-bottom: 10px; }
.pd-missing p { color: var(--ink-soft); margin-bottom: 24px; }

@media (max-width: 860px) {
  .pd { grid-template-columns: 1fr; gap: 22px; }
  .pd__media { position: static; top: auto; min-height: 0; }
}

.no-results { text-align: center; padding: 70px 20px; display: none; }
.no-results.show { display: block; }
.no-results svg { width: 64px; height: 64px; margin: 0 auto 18px; color: var(--ink-faint); opacity: .5; }
.no-results h3 { margin-bottom: 8px; }

/* enquiry drawer */
.drawer-overlay { position: fixed; inset: 0; background: rgba(27,48,32,.5); backdrop-filter: blur(3px); opacity: 0; visibility: hidden; transition: opacity .3s, visibility .3s; z-index: 80; }
.drawer-overlay.open { opacity: 1; visibility: visible; }
.drawer {
  position: fixed; top: 0; right: 0; bottom: 0; width: min(440px, 100%); background: var(--cream); z-index: 90;
  transform: translateX(100%); transition: transform .35s var(--ease); display: flex; flex-direction: column; box-shadow: var(--shadow-lg);
}
.drawer.open { transform: translateX(0); }
.drawer__head { padding: 22px 24px; border-bottom: 1px solid var(--line); display: flex; align-items: center; justify-content: space-between; background: var(--green-800); color: var(--cream); }
.drawer__head h3 { color: #fff; display: flex; align-items: center; gap: 10px; }
.drawer__head .n { background: var(--paprika); color: #fff; font-size: .78rem; font-weight: 700; padding: 2px 9px; border-radius: 999px; }
.drawer__close { width: 38px; height: 38px; border-radius: 10px; display: grid; place-items: center; color: var(--wheat); }
.drawer__close:hover { background: rgba(255,255,255,.12); }
.drawer__body { flex: 1; overflow-y: auto; padding: 18px 24px; }
.drawer__empty { text-align: center; padding: 50px 20px; color: var(--ink-faint); }
.drawer__empty svg { width: 54px; height: 54px; margin: 0 auto 16px; opacity: .4; }
.enq-item { display: flex; gap: 12px; align-items: flex-start; padding: 14px 0; border-bottom: 1px solid var(--line); }
.enq-item__main { flex: 1; min-width: 0; }
.enq-item__main strong { font-size: .95rem; display: block; }
.enq-item__main span { font-size: .8rem; color: var(--ink-faint); }
.enq-item__rm { width: 30px; height: 30px; border-radius: 8px; display: grid; place-items: center; color: var(--ink-faint); flex: none; }
.enq-item__rm:hover { background: #f3e1da; color: var(--paprika); }
.drawer__foot { padding: 20px 24px; border-top: 1px solid var(--line); background: var(--paper); display: flex; flex-direction: column; gap: 10px; }
.drawer__foot .row { display: flex; gap: 10px; }
.drawer__foot .row .btn { flex: 1; }
.drawer__clear { font-size: .84rem; color: var(--ink-faint); text-align: center; padding: 4px; }
.drawer__clear:hover { color: var(--paprika); }

.toast { position: fixed; bottom: 24px; left: 50%; transform: translateX(-50%) translateY(20px); background: var(--green-800); color: var(--wheat); padding: 12px 22px; border-radius: 999px; font-size: .9rem; font-weight: 600; box-shadow: var(--shadow-lg); opacity: 0; visibility: hidden; transition: all .3s var(--ease); z-index: 100; display: flex; align-items: center; gap: 9px; }
.toast.show { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.toast svg { width: 17px; height: 17px; color: var(--gold-soft); }

/* ===================================================================
   Blog (recipes & company news)
   =================================================================== */
.post-card__excerpt { font-size: .9rem; color: var(--ink-soft); line-height: 1.5; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.post-card__date { font-size: .78rem; color: var(--ink-faint); font-weight: 600; }

.blog-meta { display: flex; flex-wrap: wrap; gap: 20px; margin: 18px 0 24px; padding-bottom: 20px; border-bottom: 1px solid var(--line); }
.blog-meta__item { display: flex; align-items: center; gap: 7px; font-size: .88rem; color: var(--ink-soft); font-weight: 600; }
.blog-meta__item svg { width: 17px; height: 17px; color: var(--accent, var(--paprika)); }

.recipe-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(24px, 4vw, 44px); margin-top: 8px; }
.recipe-grid h2 { font-family: var(--font-head); font-size: 1.05rem; margin-bottom: 14px; }
.recipe-ingredients { list-style: none; }
.recipe-ingredients li { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 10px 0; border-bottom: 1px solid var(--line); font-size: .92rem; color: var(--ink); }
.recipe-ingredients li svg { width: 16px; height: 16px; color: var(--ink-faint); flex: none; }
.recipe-ingredients li span { flex: 1; display: flex; align-items: center; gap: 8px; }
.recipe-method { counter-reset: step; list-style: none; }
.recipe-method li { position: relative; padding: 4px 0 18px 34px; font-size: .95rem; color: var(--ink-soft); line-height: 1.6; }
.recipe-method li::before { counter-increment: step; content: counter(step); position: absolute; left: 0; top: 2px; width: 24px; height: 24px; border-radius: 50%; background: var(--accent-soft, var(--paprika-soft)); color: var(--accent, var(--paprika-dark)); font-size: .78rem; font-weight: 700; display: grid; place-items: center; }
.blog-body p { margin-bottom: 14px; color: var(--ink-soft); line-height: 1.65; }

@media (max-width: 860px) {
  .recipe-grid { grid-template-columns: 1fr; }
}

/* ----- Reveal animation ----- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
}

/* =========================================================================
   Responsive
   ========================================================================= */
@media (max-width: 1024px) {
  .hero__inner { grid-template-columns: 1fr; }
  .hero__art { display: none; }
  .serve-grid { grid-template-columns: repeat(3, 1fr); }
  .cat-grid { grid-template-columns: repeat(2, 1fr); }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .fp-grid { grid-template-columns: repeat(2, 1fr); }
  .brandspot__inner { grid-template-columns: 1fr; text-align: center; }
  .brandspot__badge { order: -1; }
  .brandspot__badge svg { width: 220px; }
  .flavour-chips { justify-content: center; }
  .brandspot__cta { justify-content: center; }
  .brandspot__note { justify-content: center; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
  html { scroll-padding-top: 70px; }
  .nav { height: 64px; }
  .nav__links {
    position: fixed; inset: 64px 0 auto 0; flex-direction: column; align-items: stretch; gap: 2px;
    background: var(--cream); padding: 14px 18px 22px; border-bottom: 1px solid var(--line); box-shadow: var(--shadow-md);
    transform: translateY(-130%); transition: transform .35s var(--ease); z-index: 40;
  }
  body.nav-open .nav__links { transform: translateY(0); }
  .nav__links a { padding: 13px 14px; font-size: 1rem; border-radius: 10px; }
  .nav__toggle { display: flex; }
  .nav__actions .btn--label { display: none; }
  .nav__actions .btn--primary { display: none; }
  .brand__name { white-space: nowrap; font-size: 1rem; }
  .cat-toolbar { top: 64px; }
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .ctaband__inner { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 560px) {
  body { font-size: 16px; }
  .serve-grid { grid-template-columns: 1fr 1fr; }
  .cat-grid { grid-template-columns: 1fr; }
  .feature-grid { grid-template-columns: 1fr; }
  .fp-grid { grid-template-columns: 1fr; }
  .hero__stats { gap: 22px 30px; }
  .product-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .group__count { display: none; }
}

/* ---- compact department pages (2026-07-28) ---- */
.pillar-intro__cols { columns: 2 480px; column-gap: 44px; }
.pillar #filterPills { display: none; }
.pillar .cat-toolbar__inner { flex-direction: row; align-items: center; gap: 16px; }
@media (max-width: 760px) { .pillar .cat-toolbar__inner { flex-direction: column; align-items: stretch; gap: 10px; } }

/* ---- contact page map (2026-08-13) ---- */
.map-band { display: grid; grid-template-columns: 2fr 1fr; gap: 24px; align-items: stretch; }
.map-frame { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); box-shadow: var(--shadow-md); background: var(--paper); }
.map-frame iframe { width: 100%; height: 100%; min-height: 420px; display: block; border: 0; }
.map-info { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); padding: 26px 24px; display: flex; flex-direction: column; gap: 14px; }
.map-info h3 { font-size: 1.15rem; }
.map-info address { font-style: normal; line-height: 1.65; color: var(--ink-soft, #4a4d54); }
.map-info address strong { color: var(--ink, #1c1e22); }
.map-info .hours { font-size: .92rem; color: var(--ink-soft, #4a4d54); }
.map-info .map-cta-row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: auto; }
.map-info .other-branch { font-size: .88rem; color: var(--ink-soft, #4a4d54); border-top: 1px solid var(--line); padding-top: 14px; }
.map-info .other-branch a { color: var(--paprika); font-weight: 600; }
.dir-link { color: var(--paprika); font-weight: 600; font-size: .92rem; }
@media (max-width: 860px) {
  .map-band { grid-template-columns: 1fr; }
  .map-frame iframe { min-height: 300px; }
}
/* ---- SWACO Group footer band (2026-08-20) ---- */
.footer-group { border-top: 1px solid rgba(247,241,229,.14); margin-top: 34px; padding-top: 26px; }
.footer-group__head { font-size: .8rem; letter-spacing: .14em; text-transform: uppercase; color: rgba(247,241,229,.55); margin-bottom: 16px; font-weight: 600; }
.group-tiles { display: flex; flex-wrap: wrap; gap: 14px; list-style: none; margin: 0; padding: 0; }
.group-tile { display: flex; flex-direction: column; align-items: flex-start; gap: 4px; background: #fff; border-radius: var(--radius); padding: 14px 16px; min-width: 180px; flex: 1 1 180px; max-width: 230px; transition: transform .25s var(--ease), box-shadow .25s var(--ease); }
.group-tile:hover { transform: translateY(-3px); box-shadow: 0 10px 24px rgba(0,0,0,.35); }
.group-tile img { height: 40px; width: auto; object-fit: contain; margin-bottom: 4px; }
.group-tile__name { font-weight: 700; font-size: .92rem; color: #1c1e22; }
.group-tile__note { font-size: .78rem; color: #5a5e66; line-height: 1.35; }
@media (max-width: 560px) { .group-tile { max-width: none; } }