/* =============================================================
   Page-specific styles
   ============================================================= */

/* ---------- AGE GATE (index.html) ---------- */
.age-gate {
  min-height: 100vh;
  min-height: 100dvh;
  display: grid;
  place-items: center;
  gap: 1.5rem;
  padding: 2rem 1rem;
  position: relative;
  overflow: hidden;
}
.age-gate--modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(7, 6, 5, 0.88);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  transition: opacity 0.3s var(--ease-soft), visibility 0.3s var(--ease-soft);
}
.age-gate--modal.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
body.age-gate-open {
  overflow: hidden;
}
.age-gate::before {
  content: "";
  position: absolute;
  inset: -2px;
  background:
    radial-gradient(900px 540px at 18% 18%, rgba(155,28,31,0.08), transparent 58%),
    radial-gradient(760px 460px at 84% 78%, rgba(111,121,133,0.18), transparent 62%),
    linear-gradient(135deg, #20242a 0%, #171a1e 52%, #22262b 100%);
  background-size: 140% 140%;
  animation: ageGateDrift 18s ease-in-out infinite alternate;
  pointer-events: none;
  transform: scale(1.02);
}
[data-theme="light"] .age-gate::before {
  background:
    radial-gradient(900px 520px at 18% 20%, rgba(155,28,31,0.045), transparent 60%),
    radial-gradient(760px 440px at 88% 78%, rgba(148,163,184,0.16), transparent 66%),
    linear-gradient(135deg, #ffffff 0%, #f4f6f8 54%, #eceff3 100%);
  background-size: 140% 140%;
}
.age-gate__theme {
  position: absolute;
  z-index: 2;
  top: clamp(1rem, 3vw, 1.5rem);
  right: clamp(1rem, 3vw, 1.5rem);
}
.age-gate__inner {
  max-width: 720px;
  text-align: center;
  position: relative;
  z-index: 1;
  padding: clamp(2rem, 6vw, 4rem) clamp(1.2rem, 5vw, 3rem);
  border: 1px solid var(--rule-soft);
  background:
    linear-gradient(180deg, rgba(34,38,43,0.84), rgba(22,25,29,0.82));
  backdrop-filter: blur(8px) saturate(120%);
  -webkit-backdrop-filter: blur(8px) saturate(120%);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.42);
}
[data-theme="light"] .age-gate__inner {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.86), rgba(244,246,248,0.92)),
    var(--bg-elevated);
  border-color: rgba(48, 56, 68, 0.18);
  box-shadow: 0 18px 48px rgba(15, 23, 42, 0.10);
}
.age-gate__inner::before, .age-gate__inner::after {
  content: ""; position: absolute; width: 28px; height: 28px;
  border: 1px solid var(--gold-500);
}
.age-gate__inner::before { top: -1px; left: -1px; border-right: 0; border-bottom: 0; }
.age-gate__inner::after { bottom: -1px; right: -1px; border-left: 0; border-top: 0; }

.age-gate__logo {
  width: clamp(220px, 40vw, 340px);
  margin: 0 auto 2rem;
  filter: grayscale(1) brightness(1.72) contrast(0.82) drop-shadow(0 4px 18px rgba(0,0,0,0.28));
  opacity: 0.94;
  opacity: 0;
  transform: translateY(-8px);
  animation: fadeUp 1.1s var(--ease-soft) 0.1s forwards;
}
[data-theme="light"] .age-gate__logo {
  filter: grayscale(1) brightness(0.58) contrast(1.05) drop-shadow(0 8px 18px rgba(15,23,42,0.10));
  opacity: 0.92;
}
.age-gate__age {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: clamp(78px, 14vw, 108px);
  height: clamp(78px, 14vw, 108px);
  margin: 0 auto;
  border: 1px solid var(--rule-medium);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.035);
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 7vw, 4.4rem);
  font-weight: 300;
  font-style: italic;
  color: var(--text-primary);
  letter-spacing: 0.01em;
  line-height: 1;
  opacity: 0;
  animation: fadeUp 1.1s var(--ease-soft) 0.4s forwards;
}
.age-gate__title {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 400;
  margin: 1rem 0 1.4rem;
  letter-spacing: -0.01em;
  opacity: 0;
  animation: fadeUp 1.1s var(--ease-soft) 0.55s forwards;
  color: var(--heading-color);
}
.age-gate__copy {
  color: var(--text-secondary);
  max-width: 52ch;
  margin: 0 auto 2.4rem;
  font-size: 0.97rem;
  opacity: 0;
  animation: fadeUp 1.1s var(--ease-soft) 0.7s forwards;
}
.age-gate__facts {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin: -0.8rem auto 2.2rem;
  opacity: 0;
  animation: fadeUp 1.1s var(--ease-soft) 0.78s forwards;
}
.age-gate__facts li {
  border: 1px solid var(--rule-soft);
  background: rgba(0, 0, 0, 0.18);
  color: var(--text-primary);
  padding: 0.42rem 0.78rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
[data-theme="light"] .age-gate__facts li {
  background: rgba(255, 255, 255, 0.48);
  color: var(--text-primary);
}
.age-gate__actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 1.1s var(--ease-soft) 0.85s forwards;
}
.age-gate__legal {
  margin-top: 2.5rem;
  font-size: 0.7rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--text-muted);
  opacity: 0;
  animation: fadeUp 1.1s var(--ease-soft) 1.0s forwards;
}
[data-theme="light"] .age-gate__legal {
  color: var(--text-muted);
}
.age-gate__seo,
.age-gate__noscript {
  position: relative;
  z-index: 1;
  width: min(720px, calc(100vw - 2rem));
  padding: 1rem 1.2rem;
  border: 1px solid var(--rule-soft);
  background: rgba(7, 6, 5, 0.52);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.age-gate__seo h2 {
  font-family: var(--font-body);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  margin: 0 0 0.45rem;
}
.age-gate__seo p,
.age-gate__noscript {
  font-size: 0.86rem;
  line-height: 1.65;
}
[data-theme="light"] .age-gate__seo,
[data-theme="light"] .age-gate__noscript {
  background: rgba(255, 255, 255, 0.70);
}

/* ---------- SEO copy block ---------- */
.seo-copy {
  max-width: 72ch;
  margin: 0 auto;
  text-align: center;
}
.seo-copy h2 {
  font-size: clamp(1.8rem, 3.4vw, 2.8rem);
  margin-top: 0.75rem;
  margin-bottom: 1.2rem;
}
.seo-copy p {
  color: var(--text-secondary);
}
.seo-copy.age-gate__seo h2 {
  font-family: var(--font-body);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  margin: 0 0 0.45rem;
}

/* ---------- FAQ blocks ---------- */
.faq-block {
  max-width: 920px;
  margin-inline: auto;
  border-top: 1px solid var(--rule-soft);
  border-bottom: 1px solid var(--rule-soft);
  padding-block: clamp(2rem, 4vw, 3rem);
}
.faq-block h2 {
  margin: 0.65rem 0 1.5rem;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
}
.faq-block details {
  border-top: 1px solid var(--rule-soft);
  padding: 1rem 0;
}
.faq-block details:last-child {
  border-bottom: 1px solid var(--rule-soft);
}
.faq-block summary {
  cursor: pointer;
  color: var(--text-primary);
  font-weight: 700;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.faq-block summary::-webkit-details-marker {
  display: none;
}
.faq-block summary::after {
  content: "+";
  color: var(--gold-300);
  font-size: 1.4rem;
  line-height: 1;
  transition: transform 0.25s var(--ease-soft);
}
.faq-block details[open] summary::after {
  transform: rotate(45deg);
}
.faq-block p {
  margin-top: 0.75rem;
  font-size: 0.96rem;
}

@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}

@keyframes ageGateDrift {
  from { background-position: 0% 40%; }
  to { background-position: 100% 60%; }
}

@media (prefers-reduced-motion: reduce) {
  .age-gate__logo,
  .age-gate__age,
  .age-gate__title,
  .age-gate__copy,
  .age-gate__facts,
  .age-gate__actions,
  .age-gate__legal {
    opacity: 1;
    transform: none;
  }
  .age-gate::before {
    animation: none;
  }
}

@media (max-width: 560px) {
  .age-gate {
    place-items: start center;
    padding-top: 5rem;
  }
  .age-gate__inner {
    padding-inline: 1rem;
  }
  .age-gate__actions .btn {
    width: min(100%, 280px);
  }
  .age-gate__legal {
    letter-spacing: 0.2em;
  }
}

/* ---------- HERO (home + page-heros) ---------- */
.hero {
  position: relative;
  padding: clamp(5rem, 12vw, 9rem) 0 clamp(4rem, 9vw, 7rem);
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(800px 400px at 80% 20%, rgba(155,28,31,0.06), transparent 60%),
    radial-gradient(700px 360px at 10% 80%, rgba(71,85,105,0.11), transparent 70%);
  pointer-events: none;
}
.hero__grid {
  display: grid;
  gap: 3rem;
  align-items: center;
  grid-template-columns: 1fr;
}
@media (min-width: 1024px) {
  .hero__grid { grid-template-columns: 1.15fr 0.85fr; gap: 5rem; }
}
.hero h1 {
  margin-top: 1.4rem;
  margin-bottom: 1.6rem;
}
.hero h1 em {
  font-style: italic;
  color: var(--gold-300);
  font-weight: 300;
}
.hero__lede {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 50ch;
  margin-bottom: 2.2rem;
}
.hero__cta { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero__media {
  position: relative;
  aspect-ratio: 8/5;
  background: var(--bg-elevated);
  border: 1px solid var(--rule-soft);
  overflow: hidden;
}
.hero__media img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1.4s var(--ease-soft);
}
.hero__media:hover img { transform: scale(1.04); }
.hero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(7,6,5,0.55));
  pointer-events: none;
}
.hero__caption {
  position: absolute;
  bottom: 1.2rem; left: 1.4rem; right: 1.4rem;
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #f8fafc;
  display: flex;
  justify-content: space-between;
  z-index: 2;
  font-weight: 500;
  text-shadow: 0 1px 8px rgba(0,0,0,0.6);
}

/* generic page hero (smaller than home) */
.page-hero {
  padding: clamp(4rem, 8vw, 6.5rem) 0 clamp(2.5rem, 5vw, 4rem);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(700px 320px at 50% 0%, rgba(155,28,31,0.055), transparent 65%);
  pointer-events: none;
}
.page-hero__inner {
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
  position: relative;
}
.page-hero__crumb {
  font-size: 0.72rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 1.2rem;
}
.page-hero h1 {
  font-size: clamp(2.4rem, 5vw, 4.5rem);
}
.page-hero p {
  margin: 1.4rem auto 0;
  color: var(--text-secondary);
  max-width: 58ch;
}

/* ---------- USP grid (home) ---------- */
.usp-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.4rem;
}
@media (min-width: 720px) { .usp-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .usp-grid { grid-template-columns: repeat(4, 1fr); } }
.usp {
  padding: 2rem 1.6rem;
  background: var(--bg-elevated);
  border: 1px solid var(--rule-soft);
  position: relative;
  transition: border-color 0.3s var(--ease-soft), transform 0.3s var(--ease-soft);
}
.usp:hover { border-color: var(--rule-medium); transform: translateY(-3px); }
.usp__num {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.85rem;
  color: var(--gold-300);
  letter-spacing: 0.08em;
  display: block;
  margin-bottom: 0.7rem;
}
.usp h3 {
  font-size: 1.45rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
  color: var(--heading-color);
}
.usp p {
  font-size: 0.93rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ---------- Featured products row (home) ---------- */
.featured-grid {
  display: grid;
  gap: 1.6rem;
  grid-template-columns: 1fr;
}
@media (min-width: 720px) { .featured-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .featured-grid { grid-template-columns: repeat(3, 1fr); } }

.product-mini {
  background: var(--bg-elevated);
  border: 1px solid var(--rule-soft);
  display: flex;
  flex-direction: column;
  transition: border-color 0.3s var(--ease-soft), transform 0.4s var(--ease-soft);
}
.product-mini:hover { border-color: var(--rule-medium); transform: translateY(-4px); }
.product-mini__image {
  aspect-ratio: 1/1;
  overflow: hidden;
  background: var(--product-bg);
  display: grid; place-items: center;
  padding: 1.5rem;
}
.product-mini__image img {
  width: 100%; height: 100%;
  object-fit: contain;
  transition: transform 0.7s var(--ease-soft);
}
.product-mini:hover .product-mini__image img { transform: scale(1.06); }
.product-mini__body {
  padding: 1.4rem 1.5rem 1.6rem;
  border-top: 1px solid var(--rule-soft);
}
.product-mini__brand {
  font-size: 0.72rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--text-primary);
  margin-bottom: 0.4rem;
}
.product-mini h3 {
  font-size: 1.4rem;
  font-weight: 500;
  margin-bottom: 0.4rem;
  color: var(--heading-color);
}
.product-mini__tagline {
  color: var(--text-secondary);
  font-size: 0.92rem;
}

/* ---------- Product detail card (zestawy) ---------- */
.product-grid {
  display: grid;
  gap: clamp(1.5rem, 3vw, 2.4rem);
  grid-template-columns: 1fr;
}
@media (min-width: 880px) { .product-grid { grid-template-columns: repeat(2, 1fr); } }

.product {
  background: var(--bg-elevated);
  border: 1px solid var(--rule-soft);
  display: flex;
  flex-direction: column;
  position: relative;
  transition: border-color 0.3s var(--ease-soft);
}
.product:hover { border-color: var(--rule-medium); }
.product__index {
  position: absolute;
  top: 14px;
  right: 18px;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1rem;
  color: var(--text-primary);
  letter-spacing: 0.1em;
  z-index: 2;
}
.product__image {
  aspect-ratio: 4/3;
  background:
    radial-gradient(circle at 50% 24%, rgba(255, 255, 255, 0.42), transparent 44%),
    linear-gradient(145deg, #f1f3f5 0%, #d6dbe2 52%, #a7b0bc 100%);
  display: grid;
  place-items: center;
  padding: 2rem;
  border-bottom: 1px solid var(--rule-soft);
  overflow: hidden;
  position: relative;
}
.product__image img {
  max-width: 100%; max-height: 100%;
  object-fit: contain;
  transition:
    opacity 0.65s var(--ease-soft),
    transform 0.65s var(--ease-soft),
    filter 0.65s var(--ease-soft);
}
.product__image--gallery {
  min-height: 300px;
}
.product__image--gallery::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  pointer-events: none;
}
.product__image--gallery img {
  position: absolute;
  inset: clamp(1.15rem, 4vw, 2.4rem);
  width: calc(100% - clamp(2.3rem, 8vw, 4.8rem));
  height: calc(100% - clamp(2.3rem, 8vw, 4.8rem));
  filter: saturate(1.03) contrast(1.04);
  mix-blend-mode: multiply;
}
.product__image--gallery img:nth-child(2) {
  opacity: 0;
  transform: scale(1.04);
}
.product:hover .product__image--gallery img:first-child,
.product:focus-within .product__image--gallery img:first-child {
  opacity: 0;
  transform: scale(0.98);
}
.product:hover .product__image--gallery img:nth-child(2),
.product:focus-within .product__image--gallery img:nth-child(2) {
  opacity: 1;
  transform: scale(1.02);
}
@media (max-width: 560px) {
  .product__image--gallery {
    min-height: 240px;
  }
}
.product__body { padding: clamp(1.5rem, 3vw, 2.4rem); }
.product__brand {
  font-size: 0.72rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}
.product__title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.4vw, 2rem);
  font-weight: 500;
  margin-bottom: 1rem;
  letter-spacing: -0.01em;
  color: var(--heading-color);
}
.product__tagline {
  font-style: italic;
  color: var(--text-primary);
  margin-bottom: 1.4rem;
  font-size: 1.02rem;
  font-family: var(--font-display);
}
.product__specs {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.4rem 1.4rem;
  border-top: 1px solid var(--rule-soft);
  border-bottom: 1px solid var(--rule-soft);
  padding: 1rem 0;
  margin-bottom: 1.4rem;
}
@media (min-width: 480px) {
  .product__specs { grid-template-columns: 1fr 1fr; }
}
.product__specs li {
  font-size: 0.86rem;
  color: var(--text-secondary);
  display: flex;
  gap: 0.55rem;
  align-items: baseline;
}
.product__specs li::before {
  content: "";
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--gold-500);
  flex-shrink: 0;
  transform: translateY(-2px);
}
.product__desc { color: var(--text-secondary); font-size: 0.96rem; }
.product__desc details {
  margin-top: 1rem;
  border-top: 1px dashed var(--rule-soft);
  padding-top: 1rem;
}
.product__desc summary {
  cursor: pointer;
  color: var(--gold-300);
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 600;
  list-style: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.product__desc summary::after {
  content: "+";
  font-family: var(--font-display);
  font-size: 1.4rem;
  line-height: 1;
  transition: transform 0.3s var(--ease-soft);
}
.product__desc details[open] summary::after { transform: rotate(45deg); }

/* ---------- O-nas: alternating layout ---------- */
.about-block {
  display: grid;
  gap: 2.5rem;
  grid-template-columns: 1fr;
  align-items: center;
  margin-bottom: clamp(3rem, 6vw, 5rem);
}
@media (min-width: 880px) {
  .about-block { grid-template-columns: 1fr 1fr; }
  .about-block.reverse > :first-child { order: 2; }
}
.about-block .figure-frame { max-width: 480px; }
.about-block p { margin-bottom: 1rem; }

.signature {
  text-align: center;
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.6rem, 3.2vw, 2.4rem);
  color: var(--gold-300);
  margin-top: 3rem;
}

/* ---------- Dobór sprzętu: numbered sections ---------- */
.numbered-section {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-bottom: clamp(3rem, 6vw, 5rem);
  position: relative;
}
@media (min-width: 880px) {
  .numbered-section {
    grid-template-columns: 140px 1fr;
    gap: 3rem;
  }
}
.numbered-section__num {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(4rem, 10vw, 7rem);
  font-weight: 300;
  color: transparent;
  -webkit-text-stroke: 1px var(--gold-500);
  opacity: 0.9;
  line-height: 0.85;
}
.numbered-section h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  margin-bottom: 1.4rem;
}
.numbered-section p { margin-bottom: 1rem; max-width: 65ch; }

.cost-card {
  margin-top: 2.5rem;
  padding: clamp(1.8rem, 4vw, 3rem);
  background: var(--bg-elevated);
  border: 1px solid var(--rule-medium);
  position: relative;
}
.cost-card::before, .cost-card::after {
  content: ""; position: absolute; width: 22px; height: 22px;
  border: 1px solid var(--gold-500);
}
.cost-card::before { top: -1px; left: -1px; border-right: 0; border-bottom: 0; }
.cost-card::after { bottom: -1px; right: -1px; border-left: 0; border-top: 0; }

.cost-grid {
  display: grid; gap: 1.5rem;
  grid-template-columns: 1fr;
  margin-top: 1.4rem;
}
@media (min-width: 720px) { .cost-grid { grid-template-columns: 1fr 1fr; } }
.cost-item {
  text-align: center;
  padding: 1.4rem;
  border: 1px solid var(--rule-soft);
}
.cost-item__label {
  font-size: 0.72rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.6rem;
}
.cost-item__value {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--gold-300);
}
.cost-item__sub {
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin-top: 0.4rem;
}

/* ---------- Liquidy / Sole sections ---------- */
.flavor-section {
  margin-bottom: clamp(3rem, 5vw, 4.5rem);
  scroll-margin-top: 100px;
}
.flavor-section__head {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  margin-bottom: 0.6rem;
  flex-wrap: wrap;
}
.flavor-section__head h3 {
  font-size: clamp(1.6rem, 2.8vw, 2.2rem);
  font-weight: 500;
  color: var(--heading-color);
}
.flavor-section__head .meta {
  font-size: 0.78rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--text-primary);
}
.flavor-section__sub {
  font-size: 0.95rem;
  color: var(--text-secondary);
  margin-bottom: 1.6rem;
  font-style: italic;
  font-family: var(--font-display);
}
.flavor-group {
  margin-bottom: 1.8rem;
}
.flavor-group h4 {
  font-family: var(--font-body);
  font-size: 0.78rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--text-primary);
  margin-bottom: 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.7rem;
}
.flavor-group h4::before {
  content: "";
  width: 24px;
  height: 1px;
  background: var(--gold-500);
}

/* secondary nav for flavor categories */
.tab-nav {
  display: flex;
  gap: 0.4rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--rule-soft);
}
.tab-nav a {
  padding: 0.6rem 1.1rem;
  border: 1px solid var(--rule-soft);
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-secondary);
  font-weight: 500;
  transition: all 0.25s var(--ease-soft);
}
.tab-nav a:hover {
  border-color: var(--gold-500);
  color: var(--gold-100);
  background: rgba(155,28,31,0.045);
}

/* ---------- Sole — group cards ---------- */
.salt-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
}
@media (min-width: 1024px) { .salt-grid { grid-template-columns: 1fr 1fr 1fr; } }
.salt-card {
  background: var(--bg-elevated);
  border: 1px solid var(--rule-soft);
  padding: clamp(1.8rem, 3vw, 2.4rem);
  position: relative;
}
.salt-card__name {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.85rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-primary);
  margin-bottom: 0.4rem;
  opacity: 0.95;
}
.salt-card h3 {
  font-size: 1.7rem;
  margin-bottom: 0.8rem;
  font-weight: 500;
  color: var(--heading-color);
}
.salt-card .salt-card__sub {
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin-bottom: 1.4rem;
}
.salt-card .tag-cloud { margin: 0; }
.salt-card .tag {
  font-size: 0.78rem;
  padding: 0.35rem 0.8rem;
}

/* ---------- Kontakt page ---------- */
.contact-grid {
  display: grid;
  gap: 2.5rem;
  grid-template-columns: 1fr;
  align-items: stretch;
}
@media (min-width: 880px) {
  .contact-grid { grid-template-columns: 1.1fr 0.9fr; gap: 3rem; }
}
.contact-grid iframe {
  border: 1px solid var(--rule-soft);
  width: 100%;
  height: 100%;
  min-height: 460px;
  filter: contrast(1.05) saturate(0.85);
}
[data-theme="light"] .contact-grid iframe { filter: none; }
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}
.contact-row {
  display: flex;
  gap: 1.2rem;
  padding: 1.2rem 0;
  border-bottom: 1px solid var(--rule-soft);
  align-items: flex-start;
}
.contact-row:last-child { border-bottom: 0; }
.contact-row__icon {
  flex-shrink: 0;
  width: 42px; height: 42px;
  border: 1px solid var(--rule-medium);
  border-radius: 50%;
  display: grid; place-items: center;
  color: var(--text-primary);
  background: var(--bg-elevated);
}
.contact-row__label {
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.25rem;
}
.contact-row__value {
  font-size: 1.05rem;
  color: var(--text-primary);
  font-family: var(--font-display);
  font-style: italic;
}
.contact-row__value--stacked {
  display: block;
  margin-top: 0.4rem;
}
.contact-row a.contact-row__value { color: var(--gold-100); }
.contact-row a.contact-row__value:hover { color: var(--gold-300); }

.storefront-figure {
  margin-top: clamp(3rem, 6vw, 5rem);
  position: relative;
}
.storefront-figure img {
  width: 100%;
  border: 1px solid var(--rule-soft);
}
.storefront-figure__caption {
  position: absolute;
  bottom: 1.2rem; left: 1.5rem;
  background: var(--bg-overlay);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 0.7rem 1.1rem;
  border: 1px solid var(--rule-soft);
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-50);
}

/* ---------- Stat / quote block ---------- */
.quote-block {
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
}
.quote-block::before {
  content: "\201C";
  font-family: var(--font-display);
  font-size: 6rem;
  color: var(--gold-300);
  line-height: 0.7;
  opacity: 0.5;
  display: block;
  margin-bottom: -1rem;
}
.quote-block p {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2.4vw, 1.85rem);
  line-height: 1.45;
  font-weight: 400;
  font-style: italic;
  color: var(--heading-color);
  max-width: none;
}

/* CTA banner */
.cta-banner {
  margin-top: clamp(3rem, 6vw, 5rem);
  padding: clamp(2.5rem, 5vw, 4.5rem);
  border: 1px solid var(--rule-medium);
  text-align: center;
  background:
    radial-gradient(800px 300px at 50% 0%, rgba(155,28,31,0.055), transparent 70%),
    var(--bg-elevated);
  position: relative;
}
.cta-banner h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  margin-bottom: 1.2rem;
}
.cta-banner p {
  margin: 0 auto 2rem;
  max-width: 56ch;
  color: var(--text-secondary);
}

/* small disclaimer banner */
.disclaimer-banner {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  margin: 0 auto;
  padding: 0.7rem 1.4rem;
  border: 1px dashed var(--rule-medium);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-secondary);
  background: var(--inset-shade);
}
[data-theme="light"] .disclaimer-banner { color: var(--text-secondary); }
.disclaimer-banner svg { color: var(--gold-500); }

/* video embed wrapper */
.video-embed {
  position: relative;
  margin: 3rem auto;
  max-width: 720px;
  aspect-ratio: 16/9;
  border: 1px solid var(--rule-soft);
  background: #000;
}
.video-embed iframe {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  border: 0;
}
.video-embed__caption {
  text-align: center;
  margin-top: 1rem;
  font-size: 0.85rem;
  color: var(--text-secondary);
  font-style: italic;
  font-family: var(--font-display);
}
