@font-face {
  font-family: 'Oswald';
  font-style: normal;
  font-weight: 200 700;
  font-display: swap;
  src: url('../fonts/oswald-200-700-normal.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Poppins';
  font-style: italic;
  font-weight: 600;
  font-display: swap;
  src: url('../fonts/poppins-600-italic.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Poppins';
  font-style: italic;
  font-weight: 700;
  font-display: swap;
  src: url('../fonts/poppins-700-italic.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('../fonts/poppins-600-normal.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 400 700;
  font-stretch: 100%;
  font-display: swap;
  src: url('../fonts/roboto-var.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* ==========================================================================
   Spicy Dju — site styles
   Hand-written for spicydju.com (no theme/framework code).
   ========================================================================== */

:root {
  --gold: #ffbf00;
  --gold-dark: #e6ac00;
  --ink: #151515;
  --char: #222222;
  --white: #ffffff;
  --text: #333333;
  --muted: #6b6b6b;
  --foot-text: #9a9a9a;
  --overlay: rgba(12, 12, 12, 0.62);

  --f-head: "Oswald", "Arial Narrow", Arial, sans-serif;
  --f-body: "Roboto", system-ui, -apple-system, "Segoe UI", Arial, sans-serif;
  --f-accent: "Poppins", "Roboto", system-ui, sans-serif;
  --f-serif: Georgia, "Times New Roman", serif;

  --header-h: 80px;
  --wrap: 1180px;
  --gutter: clamp(20px, 5vw, 40px);
  --section-y: clamp(64px, 10vw, 120px);
}

/* ---------- Base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-h);
}
body {
  margin: 0;
  font-family: var(--f-body);
  font-size: 16px;
  line-height: 1.75;
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
h1, h2, h3 { font-family: var(--f-head); font-weight: 700; line-height: 1.15; margin: 0; color: inherit; }
p { margin: 0 0 1em; }
p:last-child { margin-bottom: 0; }
strong { font-weight: 700; }
button { font: inherit; }

:focus-visible { outline: 3px solid var(--gold); outline-offset: 3px; }

.skip-link {
  position: absolute; left: 12px; top: -60px; z-index: 1000;
  background: var(--gold); color: var(--ink); padding: 10px 16px;
  font-weight: 700; text-decoration: none; border-radius: 2px;
}
.skip-link:focus { top: 12px; }

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

.wrap { width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 var(--gutter); }

.icon { width: 1em; height: 1em; fill: currentColor; flex-shrink: 0; }

/* ---------- Header ---------- */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  height: var(--header-h);
  padding-top: env(safe-area-inset-top);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  transition: background-color .3s ease, border-color .3s ease, box-shadow .3s ease;
}
.site-header.is-solid {
  background: rgba(21, 21, 21, 0.97);
  border-bottom-color: transparent;
  box-shadow: 0 2px 16px rgba(0, 0, 0, .35);
}
.site-header .wrap {
  height: 100%; display: flex; align-items: center; justify-content: space-between;
}
.brand { display: inline-flex; align-items: center; height: 100%; }
.brand img { height: 50px; width: auto; }

.nav-list { list-style: none; margin: 0; padding: 0; display: flex; align-items: center; }
.nav-list li { display: flex; align-items: center; }
.nav-list li + li::before {
  content: ""; width: 3px; height: 3px; border-radius: 50%;
  background: rgba(255, 255, 255, .55); margin: 0 12px;
}
.nav-list a {
  font-family: var(--f-body); font-weight: 500; font-size: 12px;
  letter-spacing: .06em; text-transform: uppercase;
  color: rgba(255, 255, 255, .78); text-decoration: none;
  display: inline-block; padding: 13px 0; transition: color .2s;
}
.nav-list a:hover, .nav-list a[aria-current="true"] { color: var(--white); }
.nav-list a[aria-current="true"] { box-shadow: inset 0 -2px 0 var(--gold); }

.nav-toggle {
  display: none; width: 48px; height: 48px; margin-right: -12px;
  align-items: center; justify-content: center;
  background: none; border: 0; color: var(--white); cursor: pointer;
}
.nav-toggle .icon { width: 22px; height: 22px; }
.nav-toggle .icon-close { display: none; }
.nav-open .nav-toggle .icon-open { display: none; }
.nav-open .nav-toggle .icon-close { display: block; }

/* ---------- Hero ---------- */
.hero {
  position: relative; isolation: isolate;
  min-height: 100vh; min-height: 100svh;
  display: grid; place-items: center; text-align: center;
  color: var(--white); background: var(--ink); overflow: hidden;
  padding: calc(var(--header-h) + 24px) var(--gutter) 96px;
}
.hero-bg, .hero-bg img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2;
}
.hero::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(ellipse at center, rgba(14, 20, 30, .38) 0%, rgba(14, 20, 30, .68) 85%),
    rgba(14, 20, 30, .12);
}
.hero-kicker {
  display: inline-block; font-family: var(--f-head); font-weight: 200;
  font-size: clamp(15px, 1.6vw, 19px); letter-spacing: .02em; text-transform: uppercase;
  padding-bottom: 6px; margin-bottom: 18px;
  border-bottom: 2px solid var(--gold);
}
.hero-title {
  font-size: clamp(46px, 9.5vw, 104px); text-transform: uppercase; letter-spacing: .01em;
  line-height: 1.05; min-height: 1.1em;
}
.hero-title .word { color: var(--gold); display: inline-block; }
.hero-inner { text-shadow: 0 2px 18px rgba(0, 0, 0, .45); }
.hero-title .word.is-out { animation: wordOut .35s ease forwards; }
.hero-title .word.is-in  { animation: wordIn .45s ease forwards; }
@keyframes wordOut { to { opacity: 0; transform: translateY(-0.25em); } }
@keyframes wordIn  { from { opacity: 0; transform: translateY(0.3em); } to { opacity: 1; transform: none; } }

.hero-sub { font-size: clamp(16px, 1.8vw, 19px); margin: 22px 0 34px; opacity: .92; }

.btn-ghost {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 48px; padding: 0 30px;
  font-family: var(--f-body); font-weight: 500; font-size: 13px;
  letter-spacing: .08em; text-transform: uppercase; text-decoration: none;
  color: var(--white); border: 1px solid rgba(255, 255, 255, .7);
  transition: background-color .25s, color .25s, border-color .25s;
}
.btn-ghost:hover { background: var(--gold); border-color: var(--gold); color: var(--ink); }

.hero-down {
  position: absolute; left: 50%; bottom: calc(18px + env(safe-area-inset-bottom));
  transform: translateX(-50%);
  width: 48px; height: 48px; display: grid; place-items: center;
  color: rgba(255, 255, 255, .8);
}
.hero-down .icon { width: 18px; height: 18px; animation: bob 2.4s ease-in-out infinite; }
@keyframes bob { 50% { transform: translateY(6px); } }

/* ---------- Sections ---------- */
.section { padding: var(--section-y) 0; text-align: center; position: relative; }
.section-dark { color: var(--white); background-color: var(--char); isolation: isolate; }
.section-dark::before { content: ""; position: absolute; inset: 0; background: var(--overlay); z-index: -1; }

/* Background photos (small first, large on wider screens) */
.bg-green { background: var(--char) url("../img/band-green-sm.webp") center / cover no-repeat; }
.bg-red   { background: var(--char) url("../img/band-red-sm.webp") center / cover no-repeat; }
.bg-bowl  { background: var(--char) url("../img/hero-wide-sm.webp") center / cover no-repeat; }
@media (min-width: 801px) {
  .bg-green { background-image: url("../img/band-green.webp"); }
  .bg-red   { background-image: url("../img/band-red.webp"); }
  .bg-bowl  { background-image: url("../img/hero-wide.webp"); }
}
/* Parallax only where it works well (desktop, fine pointer, motion OK) */
@media (min-width: 1025px) and (hover: hover) and (prefers-reduced-motion: no-preference) {
  .parallax { background-attachment: fixed; }
}

.section-title {
  display: inline-block; text-transform: uppercase;
  font-size: clamp(28px, 4.4vw, 45px); letter-spacing: .005em;
  padding: .22em .45em .26em; border: 6px solid currentColor;
  margin-bottom: 26px; color: var(--ink);
}
.section-dark .section-title { color: var(--white); }
.lead { max-width: 780px; margin: 0 auto; font-size: 17px; line-height: 1.9; }
.section-dark .lead { color: rgba(255, 255, 255, .92); }

/* ---------- About: ingredients ---------- */
.ingredients {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px;
  margin-top: 64px; text-align: left;
}
.ingredient { display: grid; grid-template-columns: 56px 1fr; gap: 18px; align-items: start; }
.ingredient img { width: 56px; height: 56px; }
.ingredient h3 { font-size: 20px; color: var(--ink); margin: 4px 0 8px; }
.ingredient p { color: var(--muted); font-size: 15px; line-height: 1.7; }

/* ---------- Quote band ---------- */
.quote-band { padding: clamp(72px, 10vw, 110px) 0; }
.quote-band blockquote { margin: 0 auto; max-width: 960px; }
.quote-band blockquote p {
  font-family: var(--f-accent); font-style: italic; font-weight: 700;
  font-size: clamp(21px, 3vw, 32px); line-height: 1.45; color: var(--white);
}
.quote-band .hl { color: var(--gold); }
.quote-band cite {
  display: block; margin-top: 22px; font-style: normal;
  font-family: var(--f-body); font-weight: 700; font-size: 12px; letter-spacing: .14em;
  text-transform: uppercase; color: rgba(255, 255, 255, .78);
}

/* ---------- Secret blend ---------- */
.blend-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; margin-top: 60px;
}
.blend-item { margin: 0; }
.blend-item img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; background: #eee; }
.blend-item figcaption {
  font-family: var(--f-head); font-weight: 700; font-size: 20px; text-transform: uppercase;
  color: var(--ink); margin-top: 18px; letter-spacing: .02em;
}

/* ---------- Achievements ---------- */
.counters {
  list-style: none; margin: 60px 0 0; padding: 0;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px;
}
.counter-num {
  display: block; font-family: var(--f-accent); font-weight: 600;
  font-size: clamp(40px, 5vw, 56px); line-height: 1.1; color: var(--gold);
  font-variant-numeric: tabular-nums;
}
.counter-label {
  display: block; margin-top: 10px; font-family: var(--f-head); font-weight: 500;
  font-size: 17px; text-transform: uppercase; letter-spacing: .03em; color: var(--white);
}

/* ---------- CTA band ---------- */
.cta-band { background: var(--gold); padding: 44px var(--gutter); text-align: center; }
.cta-band a {
  display: inline-block; padding: 8px 2px;
  font-family: var(--f-accent); font-style: italic; font-weight: 700; font-size: clamp(17px, 2vw, 20px);
  color: var(--ink); text-decoration: none;
  border-top: 2px solid var(--ink); border-bottom: 2px solid var(--ink);
  transition: color .2s, border-color .2s;
}
.cta-band a:hover { color: var(--white); border-color: var(--white); }

/* ---------- Future: services ---------- */
.future-strong { display: block; margin-top: 10px; font-weight: 700; }
.services {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 44px; margin-top: 64px;
}
.service .icon { width: 58px; height: 58px; color: var(--gold); margin: 0 auto 22px; }
.service h3 { font-size: 22px; text-transform: uppercase; margin-bottom: 12px; }
.service p { color: rgba(255, 255, 255, .85); font-size: 15px; }

/* ---------- Products ---------- */
.product-grid {
  list-style: none; margin: 56px 0 0; padding: 0;
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px;
}
.product-grid li[hidden] { display: none; }
.product-card {
  display: block; width: 100%; padding: 0; border: 0; cursor: pointer; background: #fff;
  position: relative; overflow: hidden; aspect-ratio: 1 / 1;
}
.product-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.product-info {
  position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center;
  background: rgba(21, 21, 21, .72); color: var(--white);
  opacity: 0; transition: opacity .3s ease;
}
.product-info strong { font-family: var(--f-head); font-size: 18px; text-transform: uppercase; line-height: 1.15; text-align: center; padding: 0 8px; }
.product-info span { font-size: 11px; letter-spacing: .1em; text-transform: uppercase; color: var(--gold); margin-top: 4px; }
.product-card:hover img, .product-card:focus-visible img { transform: scale(1.05); }
.product-card:hover .product-info, .product-card:focus-visible .product-info { opacity: 1; }
.product-card[aria-expanded="true"] { outline: 3px solid var(--gold); outline-offset: 3px; }
.product-card[aria-expanded="true"] .product-info { opacity: 1; }
/* Touch screens have no hover: show the name as a caption strip */
@media (hover: none) {
  .product-info { opacity: 1; inset: auto 0 0 0; padding: 12px 10px; background: linear-gradient(transparent, rgba(21, 21, 21, .8)); }
  .product-info strong { font-size: 18px; }
}

/* Product details panel (opens above the filters) */
.product-detail {
  position: relative; text-align: left;
  margin: 56px 0 8px; padding-top: 72px;
  scroll-margin-top: 16px; /* html scroll-padding already clears the fixed header */
}
.product-detail.is-opening { animation: pdIn .45s ease both; }
@keyframes pdIn { from { opacity: 0; transform: translateY(-14px); } to { opacity: 1; transform: none; } }

.pd-nav {
  position: absolute; top: 0; left: 0; right: 0;
  display: flex; justify-content: center; align-items: center; gap: 12px;
}
.pd-btn {
  width: 44px; height: 44px; display: grid; place-items: center; cursor: pointer;
  border: 0; border-radius: 50%; background: none; color: var(--ink);
}
.pd-btn .icon { width: 14px; height: 18px; }
.pd-close { background: var(--ink); color: var(--white); }
.pd-close:hover { background: var(--gold); color: var(--ink); }
.pd-prev:hover, .pd-next:hover { color: #7a5c00; }

.pd-top { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: end; }
.pd-place { font-family: var(--f-serif); font-size: 13px; letter-spacing: .05em; color: #6b6b6b; margin-bottom: 8px; }
.pd-title { font-size: clamp(28px, 3vw, 35px); line-height: 1.3; color: var(--ink); margin-bottom: 16px; }
.pd-title:focus { outline: none; }
.pd-lead { font-size: 18px; line-height: 1.9; color: var(--text); }
.pd-name {
  font-family: var(--f-accent); font-weight: 600; font-size: 20px; letter-spacing: .2em; text-transform: lowercase;
  color: #6b6b6b; padding-bottom: 18px; margin-bottom: 30px; border-bottom: 1px solid #e3e3e3;
}
.pd-info { display: flex; flex-wrap: wrap; gap: 20px 44px; margin: 0; }
.pd-info dt { font-family: var(--f-head); font-weight: 700; font-size: 13px; text-transform: uppercase; color: var(--ink); }
.pd-info dd { margin: 4px 0 0; font-size: 15px; }

.pd-gallery { display: grid; grid-template-columns: repeat(4, 1fr); margin-top: 40px; }
.pd-photo { position: relative; display: block; padding: 0; border: 0; cursor: zoom-in; background: #eee; overflow: hidden; }
.pd-photo img { width: 100%; aspect-ratio: 3 / 2; object-fit: cover; transition: transform .5s ease; }
.pd-plus {
  position: absolute; inset: 0; display: grid; place-items: center;
  font-family: var(--f-head); font-size: 44px; color: var(--white);
  background: rgba(21, 21, 21, .55); opacity: 0; transition: opacity .3s ease;
}
.pd-photo:hover img, .pd-photo:focus-visible img { transform: scale(1.04); }
.pd-photo:hover .pd-plus, .pd-photo:focus-visible .pd-plus { opacity: 1; }
.pd-photo:focus-visible { outline-offset: -3px; }

/* On wide screens the arrows sit on either side of the panel, like the original */
@media (min-width: 1320px) {
  .pd-prev, .pd-next { position: absolute; top: calc(50% + 36px); }
  .pd-prev { left: -76px; }
  .pd-next { right: -76px; }
  .pd-prev .icon, .pd-next .icon { width: 18px; height: 38px; }
}

/* Photo lightbox */
.lightbox {
  width: min(94vw, 1100px); max-width: none; max-height: 94vh; padding: 0; border: 0;
  background: transparent; color: var(--white); overflow: visible;
}
.lightbox::backdrop { background: rgba(0, 0, 0, .9); }
.lb-figure { margin: 0; }
.lightbox img { width: 100%; height: auto; max-height: 82vh; object-fit: contain; background: #111; }
.lightbox-caption { padding: 12px 4px 0; text-align: center; font-size: 13px; letter-spacing: .08em; text-transform: uppercase; }
#lbName { font-family: var(--f-head); font-weight: 700; font-size: 16px; }
#lbCount { color: var(--gold); margin-left: 8px; }
.lb-btn {
  position: absolute; width: 48px; height: 48px; display: grid; place-items: center; cursor: pointer;
  border: 0; border-radius: 50%; background: rgba(21, 21, 21, .7); color: var(--white);
}
.lb-btn:hover { background: var(--gold); color: var(--ink); }
.lb-btn .icon { width: 16px; height: 20px; }
.lightbox-close { top: 10px; right: 10px; }
.lb-prev { left: 10px; top: 50%; transform: translateY(-50%); }
.lb-next { right: 10px; top: 50%; transform: translateY(-50%); }

@media (max-width: 860px) {
  .pd-top { grid-template-columns: 1fr; gap: 28px; text-align: center; }
  .pd-info { flex-direction: column; align-items: center; gap: 16px; }
  .pd-gallery { grid-template-columns: repeat(2, 1fr); gap: 8px; margin-top: 32px; }
  .pd-plus { display: none; }
}
@media (max-width: 560px) {
  .product-detail { margin-top: 40px; }
  .pd-lead { font-size: 16px; line-height: 1.8; }
  .pd-gallery { grid-template-columns: 1fr; gap: 10px; }
}

/* ---------- Get connected ---------- */
.socials {
  list-style: none; margin: 60px 0 0; padding: 0;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px;
}
.social-link { display: flex; flex-direction: column; align-items: center; text-decoration: none; color: var(--white); }
.social-link .ring {
  width: 110px; height: 110px; border-radius: 50%; display: grid; place-items: center;
  border: 2px solid rgba(255, 255, 255, .85); transition: background-color .25s, border-color .25s, color .25s;
}
.social-link .ring .icon { width: 38px; height: 38px; }
.social-link:hover .ring { background: var(--gold); border-color: var(--gold); color: var(--ink); }
.social-link strong { font-family: var(--f-head); font-size: 20px; text-transform: uppercase; margin-top: 22px; }
.social-link span { font-size: 14px; color: rgba(255, 255, 255, .8); }

/* ---------- Testimonials ---------- */
.testimonials { max-width: 760px; margin: 60px auto 0; position: relative; }
.t-viewport { overflow: hidden; touch-action: pan-y; }
.t-track { display: flex; transition: transform .6s ease; will-change: transform; }
.t-slide { flex: 0 0 100%; padding: 0 64px; margin: 0; }
.t-avatar { width: 140px; height: 140px; border-radius: 50%; object-fit: cover; margin: 0 auto 30px; }
.t-slide blockquote { margin: 0; }
.t-slide blockquote p { font-family: var(--f-serif); font-size: clamp(17px, 2vw, 19px); line-height: 1.7; color: var(--text); }
.t-slide figcaption { margin-top: 20px; }
.t-name { display: block; font-family: var(--f-head); font-weight: 700; font-size: 20px; color: var(--ink); }
.t-origin { display: block; font-size: 12px; letter-spacing: .08em; color: #6b6b6b; }
.t-nav {
  position: absolute; z-index: 2; top: 46px; width: 48px; height: 48px; display: grid; place-items: center;
  border: 0; background: none; color: var(--ink); cursor: pointer;
}
.t-nav .icon { width: 16px; height: 34px; }
.t-prev { left: 0; }
.t-next { right: 0; }
.t-dots { display: flex; justify-content: center; gap: 0; margin-top: 18px; }
.t-dots button {
  width: 44px; height: 44px; border: 0; background: none; cursor: pointer; display: grid; place-items: center; padding: 0;
}
.t-dots button::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: #cfcfcf; transition: background .2s; }
.t-dots button[aria-current="true"]::before { background: var(--gold); }

/* ---------- Footer ---------- */
.site-footer { background: var(--ink); color: var(--foot-text); position: relative; font-size: 14px; }
.to-top {
  position: absolute; left: 50%; top: 0; transform: translate(-50%, -100%);
  width: 44px; height: 44px; display: grid; place-items: center;
  background: var(--ink); color: var(--white); text-decoration: none; border-radius: 3px 3px 0 0;
}
.to-top .icon { width: 14px; height: 14px; }
.footer-cols {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px;
  padding: 72px 0 56px;
}
.footer-cols h2 {
  font-size: 16px; text-transform: uppercase; color: var(--white); letter-spacing: .02em; margin-bottom: 18px;
}
.footer-cols p { line-height: 1.75; }
.footer-cols strong { color: #d6d6d6; }
.footer-cols address { font-style: normal; line-height: 1.75; }
.footer-links { list-style: none; margin: 0; padding: 0; }
.footer-links a { text-decoration: none; display: inline-block; padding: 2px 0; }
.footer-links a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .06);
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  padding: 22px 0 calc(22px + env(safe-area-inset-bottom));
  font-size: 11px; letter-spacing: .06em; text-transform: uppercase;
}
.footer-social { list-style: none; margin: 0; padding: 0; display: flex; gap: 4px; }
.footer-social a {
  width: 44px; height: 44px; display: grid; place-items: center; color: var(--white); text-decoration: none;
}
.footer-social a:hover { color: var(--gold); }
.footer-social .icon { width: 17px; height: 17px; }

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 1024px) {
  .ingredients { grid-template-columns: 1fr; max-width: 520px; margin-left: auto; margin-right: auto; gap: 30px; }
  .counters { grid-template-columns: repeat(2, 1fr); row-gap: 44px; }
  .product-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .product-info strong { font-size: 22px; }
  .product-info span { font-size: 12px; letter-spacing: .12em; }
  .footer-cols { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 860px) {
  :root { --header-h: 64px; }
  .brand img { height: 40px; }
  .nav-toggle { display: inline-flex; }
  .site-nav {
    position: fixed; left: 0; right: 0; top: calc(var(--header-h) + env(safe-area-inset-top));
    background: rgba(21, 21, 21, .98);
    max-height: 0; overflow: hidden; visibility: hidden;
    transition: max-height .35s ease, visibility 0s linear .35s;
  }
  .nav-open .site-nav { max-height: 80vh; visibility: visible; transition: max-height .35s ease; }
  .nav-open.site-header { background: rgba(21, 21, 21, .98); }
  .site-nav { width: 100%; }
  .nav-list { flex-direction: column; align-items: stretch; padding: 8px 0 18px; }
  .nav-list li { display: block; }
  .nav-list li + li::before { display: none; }
  .nav-list a {
    display: block; padding: 14px var(--gutter); font-size: 14px;
    border-top: 1px solid rgba(255, 255, 255, .06);
  }
  .nav-list a[aria-current="true"] { box-shadow: inset 3px 0 0 var(--gold); }

  .blend-grid { grid-template-columns: 1fr; max-width: 420px; margin-left: auto; margin-right: auto; gap: 40px; }
  .services { grid-template-columns: 1fr; max-width: 460px; margin-left: auto; margin-right: auto; }
  .socials { grid-template-columns: repeat(2, 1fr); row-gap: 44px; }
}

@media (max-width: 560px) {
  .section-title { border-width: 4px; }
  .lead { font-size: 16px; line-height: 1.8; }
  .lead br { display: none; }
  .counters { gap: 36px 12px; }
  .counter-label { font-size: 14px; }
  .product-grid { grid-template-columns: 1fr; max-width: 420px; margin: 40px auto 0; gap: 20px; }
  .social-link .ring { width: 88px; height: 88px; }
  .social-link .ring .icon { width: 32px; height: 32px; }
  .social-link strong { font-size: 17px; }
  .social-link span { font-size: 13px; }
  .t-slide { padding: 0 8px; }
  .t-avatar { width: 112px; height: 112px; }
  .t-nav { top: 32px; }
  .t-prev { left: calc(50% - 124px); }
  .t-next { right: calc(50% - 124px); }
  .footer-cols { grid-template-columns: 1fr; gap: 32px; padding: 64px 0 40px; }
  .footer-bottom { flex-direction: column-reverse; gap: 8px; text-align: center; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}

/* ==========================================================================
   Legal pages (Impressum, privacy, cookies)
   ========================================================================== */
.page-legal .site-header { background: rgba(21, 21, 21, 0.97); border-bottom-color: transparent; }
.page-head {
  position: relative; isolation: isolate; color: var(--white); text-align: center;
  padding: calc(var(--header-h) + clamp(48px, 8vw, 88px)) var(--gutter) clamp(48px, 8vw, 80px);
  background: var(--char) url("../img/hero-wide-sm.webp") center / cover no-repeat;
}
@media (min-width: 801px) { .page-head { background-image: url("../img/hero-wide.webp"); } }
.page-head::before { content: ""; position: absolute; inset: 0; z-index: -1; background: rgba(14, 20, 30, .86); }
.page-head .section-title { color: var(--white); margin-bottom: 0; }

.legal { max-width: 760px; margin: 0 auto; padding: clamp(48px, 8vw, 88px) var(--gutter); text-align: left; }
.legal h2 {
  font-size: 22px; text-transform: uppercase; letter-spacing: .01em; color: var(--ink);
  margin: 44px 0 12px; padding-top: 18px; border-top: 1px solid #e6e6e6;
}
.legal h2:first-child { margin-top: 0; padding-top: 0; border-top: 0; }
.legal h3 { font-size: 17px; color: var(--ink); margin: 24px 0 6px; }
.legal p, .legal li { font-size: 16px; line-height: 1.8; }
.legal ul { padding-left: 1.2em; margin: 0 0 1em; }
.legal li + li { margin-top: 6px; }
.legal a { color: var(--ink); text-decoration-color: var(--gold); text-decoration-thickness: 2px; text-underline-offset: 3px; }
.legal a:hover { color: #7a5c00; }
.legal address { font-style: normal; line-height: 1.8; margin-bottom: 1em; }
.legal .updated { margin-top: 48px; font-size: 14px; color: var(--muted); }
.legal .fill-in { background: #fff3c4; padding: 0 4px; border-radius: 2px; font-weight: 500; }
.legal .back { display: inline-block; margin-top: 28px; font-weight: 500; }

/* ==========================================================================
   Consent banner ("Manage Consent")
   ========================================================================== */
.consent {
  position: fixed; z-index: 300; right: 20px; bottom: calc(20px + env(safe-area-inset-bottom));
  width: min(440px, calc(100vw - 24px)); max-height: calc(100vh - 110px); overflow-y: auto;
  background: var(--white); color: var(--text); border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, .28);
  padding: 20px 22px 16px; font-size: 14px; line-height: 1.6;
}
.consent[hidden] { display: none; }
.consent.is-entering { animation: consentIn .35s ease both; }
@keyframes consentIn { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: none; } }

.consent-head { position: relative; text-align: center; margin-bottom: 12px; }
.consent-head h2 { font-family: var(--f-body); font-weight: 500; font-size: 16px; color: var(--ink); line-height: 44px; }
.consent-x {
  position: absolute; right: -12px; top: 0; width: 44px; height: 44px; display: grid; place-items: center;
  background: none; border: 0; color: var(--ink); cursor: pointer;
}
.consent-x .icon { width: 14px; height: 18px; }
.consent-text { margin: 0 0 14px; }

.consent-prefs { margin: 0 0 14px; border-top: 1px solid #ececec; }
.consent-prefs[hidden] { display: none; }
.consent-cat { padding: 12px 0; border-bottom: 1px solid #ececec; }
.consent-cat-row { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.consent-cat-row strong { color: var(--ink); font-weight: 500; }
.consent-cat p { margin: 4px 0 0; font-size: 13px; color: var(--muted); }
.consent-always { font-size: 12px; font-weight: 500; color: #2f7d32; }

/* Toggle switch */
.switch { position: relative; width: 44px; height: 26px; flex-shrink: 0; }
.switch input { position: absolute; inset: 0; width: 100%; height: 100%; opacity: 0; margin: 0; cursor: pointer; z-index: 1; }
.switch span { position: absolute; inset: 0; border-radius: 26px; background: #c9c9c9; transition: background .2s; }
.switch span::after {
  content: ""; position: absolute; left: 3px; top: 3px; width: 20px; height: 20px; border-radius: 50%;
  background: var(--white); box-shadow: 0 1px 3px rgba(0,0,0,.3); transition: transform .2s;
}
.switch input:checked + span { background: var(--ink); }
.switch input:checked + span::after { transform: translateX(18px); }
.switch input:focus-visible + span { outline: 3px solid var(--gold); outline-offset: 2px; }

.consent-actions { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.consent-btn {
  min-height: 44px; padding: 0 8px; border-radius: 6px; cursor: pointer;
  font-family: var(--f-body); font-weight: 500; font-size: 13px; letter-spacing: .02em;
  border: 1px solid var(--ink); background: var(--white); color: var(--ink);
  transition: background .2s, color .2s, border-color .2s;
}
.consent-btn:hover { background: #f1f1f1; }
.consent-btn.is-primary { background: var(--gold); border-color: var(--gold); color: var(--ink); }
.consent-btn.is-primary:hover { background: var(--gold-dark); border-color: var(--gold-dark); }
.consent-links { display: flex; flex-wrap: wrap; justify-content: center; gap: 2px 14px; margin-top: 10px; font-size: 12px; }
.consent-links a { color: var(--muted); padding: 6px 0; }
.consent-links a:hover { color: var(--ink); }

/* Re-open tab */
.consent-tab {
  position: fixed; z-index: 290; right: 20px; bottom: 0;
  padding: 10px 16px calc(10px + env(safe-area-inset-bottom)); min-height: 44px;
  border: 0; border-radius: 8px 8px 0 0; cursor: pointer;
  background: var(--white); color: var(--ink); box-shadow: 0 -2px 14px rgba(0, 0, 0, .18);
  font-family: var(--f-body); font-weight: 500; font-size: 12px; letter-spacing: .06em; text-transform: uppercase;
  transition: transform .25s ease;
}
.consent-tab[hidden] { display: none; }
.consent-tab.is-tucked { transform: translateY(110%); }
.footer-links .link-btn {
  background: none; border: 0; padding: 2px 0; color: inherit; cursor: pointer; font: inherit; text-align: left;
}
.footer-links .link-btn:hover { color: var(--gold); }

@media (max-width: 560px) {
  .consent { right: 12px; bottom: calc(12px + env(safe-area-inset-bottom)); padding: 14px 16px 12px; }
  .consent-actions { grid-template-columns: 1fr 1fr; }
  .consent-actions .consent-btn:last-child { grid-column: 1 / -1; }
  .consent-tab { right: 12px; }
}
.legal code { font-size: .92em; background: #f3f3f3; padding: 1px 5px; border-radius: 3px; }

/* IFS Local badge, right of the social icons (same gold hover as the icons) */
.footer-social { align-items: center; }
.footer-social a { transition: color .2s ease; }
.footer-badge { margin-left: 8px; }
.footer-social .footer-badge a { width: auto; padding: 0 4px; }
.ifs-logo {
  display: block; width: 50px; height: 28px;
  background-color: currentColor;
  -webkit-mask: url("../img/ifs-local-white.webp") center / contain no-repeat;
  mask: url("../img/ifs-local-white.webp") center / contain no-repeat;
}
@supports not ((mask-image: none) or (-webkit-mask-image: none)) {
  .ifs-logo { background: url("../img/ifs-local-white.webp") center / contain no-repeat; }
}
/* Sections focused after a menu jump shouldn't show an outline */
section[tabindex="-1"]:focus, main[tabindex="-1"]:focus { outline: none; }
/* In-page links inside embedded previews have no href; keep the hand cursor */
a[data-href] { cursor: pointer; }

/* IFS Local badge in the top-right corner of the hero (same gold hover as the footer) */
.hero-badge-row {
  position: absolute; z-index: 1; left: 0; right: 0; margin: 0 auto;
  top: calc(var(--header-h) + env(safe-area-inset-top) + 22px);
  display: flex; justify-content: flex-end; pointer-events: none;
}
.hero-badge {
  pointer-events: auto; display: grid; place-items: center; padding: 6px; margin-right: -6px;
  color: var(--white); text-decoration: none;
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, .5));
  transition: color .2s ease;
}
.hero-badge:hover, .hero-badge:focus-visible { color: var(--gold); }
.hero-badge .ifs-logo { width: 117px; height: 66px; }
@media (max-width: 560px) {
  .hero-badge-row { top: calc(var(--header-h) + env(safe-area-inset-top) + 14px); }
  .hero-badge .ifs-logo { width: 90px; height: 51px; }
}

/* ==========================================================================
   Great Taste 2025 (1 Star) — Zesty Kick / Firestarter only.
   The award belongs to this one product, so the badge is only shown with it.
   Artwork is used unaltered (no recolouring or hover effects).
   ========================================================================== */
.product-card .award-badge {
  position: absolute; z-index: 2; top: 8px; right: 8px;
  width: 52px; height: 52px; object-fit: contain; pointer-events: none; transition: none;
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, .25));
}
.product-card:hover .award-badge, .product-card:focus-visible .award-badge { transform: none; }

/* Below 1025px the grid drops to 2 columns, so the badge can go back to full size.
   This must sit after the base .award-badge rule above: the Responsive section higher
   up in this file comes earlier in source order and would lose on equal specificity. */
@media (max-width: 1024px) {
  .product-card .award-badge { width: 64px; height: 64px; top: 10px; right: 10px; }
}
.product-card .product-info { z-index: 1; }

.pd-name-row {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding-bottom: 18px; margin-bottom: 30px; border-bottom: 1px solid #e3e3e3;
}
.pd-name-row .pd-name { padding-bottom: 0; margin-bottom: 0; border-bottom: 0; }
.pd-award { width: 88px; height: 88px; flex-shrink: 0; }

.award-notes { display: flex; flex-wrap: wrap; gap: 16px; justify-content: center; margin-top: 36px; }
.award-notes .award-note { margin-top: 0; }
.award-note {
  display: inline-flex; align-items: center; gap: 18px; margin-top: 36px; text-align: left;
  padding: 12px 22px 12px 12px; border-radius: 60px; background: rgba(0, 0, 0, .35);
}
.award-note img { width: 76px; height: 76px; flex-shrink: 0; }
.award-note p { margin: 0; color: var(--white); font-size: 16px; line-height: 1.5; }

@media (max-width: 860px) {
  .pd-name-row { flex-direction: column; justify-content: center; gap: 12px; }
}
@media (max-width: 560px) {
  .product-card .award-badge { width: 56px; height: 56px; }
  .award-note { flex-direction: column; text-align: center; border-radius: 18px; padding: 16px 18px; gap: 10px; }
}

.t-slide figure { margin: 0; }
