:root {
  --bg: #f6f2e7;
  --bg-strong: #0c2219;
  --surface: rgba(255, 255, 255, 0.8);
  --surface-solid: #fffdf8;
  --surface-dark: rgba(8, 28, 20, 0.88);
  --text: #16271f;
  --muted: #55645c;
  --line: rgba(22, 63, 44, 0.14);
  --primary: #57e36e;
  --primary-strong: #149548;
  --accent: #f3c96b;
  --white: #ffffff;
  --shadow: 0 24px 60px rgba(18, 32, 26, 0.12);
  --radius-lg: 32px;
  --radius-md: 22px;
  --radius-sm: 14px;
  --container: 1180px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(243, 201, 107, 0.26), transparent 28%),
    radial-gradient(circle at right 18%, rgba(87, 227, 110, 0.24), transparent 30%),
    radial-gradient(circle at 60% 100%, rgba(20, 149, 72, 0.14), transparent 24%),
    linear-gradient(180deg, #fbf8f1 0%, #f1eadc 100%);
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.page-shell {
  min-height: 100vh;
}

.topbar,
.site-nav,
.section-inner,
.footer-grid,
.footer-bottom,
.page-hero-content,
.contact-grid,
.legal-copy,
.offers-grid,
.category-grid,
.feature-grid,
.story-grid,
.split-grid {
  width: min(calc(100% - 32px), var(--container));
  margin: 0 auto;
}

.topbar {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  padding: 12px 0;
  font-size: 0.92rem;
  color: #ebf5ef;
}

.topbar p,
.topbar a {
  margin: 0;
  display: inline-flex;
  align-items: center;
}

.topbar i {
  color: var(--accent);
  margin-right: 8px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(18px);
  background:
    linear-gradient(180deg, rgba(7, 26, 18, 0.94), rgba(10, 38, 26, 0.78)),
    radial-gradient(circle at 12% 50%, rgba(87, 227, 110, 0.12), transparent 30%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 16px 40px rgba(5, 18, 13, 0.18);
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  gap: 20px;
}

.nav-cluster {
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: var(--white);
}

.brand-mark {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, rgba(243, 201, 107, 0.98), rgba(87, 227, 110, 0.98));
  color: #10231d;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.9rem;
  font-weight: 700;
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.25);
}

.brand-copy {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.brand-copy strong {
  font-size: 1rem;
}

.brand-copy small {
  color: rgba(255, 255, 255, 0.72);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.nav-menu a {
  color: rgba(255, 255, 255, 0.86);
  padding: 10px 14px;
  border-radius: 999px;
  transition: 180ms ease;
}

.nav-menu a:hover,
.nav-menu a.active {
  background: rgba(87, 227, 110, 0.14);
  color: var(--white);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #57e36e, #21b857 72%, #f3c96b 120%);
  color: #0a2317 !important;
  font-weight: 900;
  box-shadow: 0 16px 30px rgba(33, 184, 87, 0.2);
}

.nav-toggle {
  display: none;
  background: transparent;
  border: 0;
  padding: 6px;
}

.nav-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  margin: 5px 0;
  background: var(--white);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 110px 0 90px;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(9, 24, 17, 0.82), rgba(14, 74, 42, 0.68)),
    url('https://images.unsplash.com/photo-1542838132-92c53300491e?auto=format&fit=crop&w=1600&q=80') center/cover;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 15% 25%, rgba(225, 190, 105, 0.28), transparent 24%),
    radial-gradient(circle at 78% 32%, rgba(57, 184, 106, 0.28), transparent 30%);
  animation: floatGlow 10s ease-in-out infinite alternate;
}

@keyframes floatGlow {
  from { transform: translateY(0) scale(1); }
  to { transform: translateY(-18px) scale(1.04); }
}

.page-hero-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 36px;
  align-items: end;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  margin-bottom: 20px;
}

.hero h1,
.page-banner h1,
.section-title h2,
.card h3,
.cta-panel h2,
.story-copy h2,
.footer-grid h3,
.footer-grid h4,
.legal-copy h1 {
  font-family: "Cormorant Garamond", serif;
}

.hero h1,
.page-banner h1,
.legal-copy h1 {
  font-size: clamp(3rem, 7vw, 5.4rem);
  line-height: 0.96;
  margin: 0 0 18px;
  letter-spacing: -0.03em;
}

.hero p {
  max-width: 620px;
  font-size: 1.08rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.88);
}

.hero-actions,
.button-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.btn,
.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-width: 190px;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 700;
  letter-spacing: 0.02em;
  transition: 180ms ease;
}

.btn {
  background: linear-gradient(135deg, #5cf278, #28c35a 56%, #f3c96b 120%);
  color: #082014;
  box-shadow: 0 20px 40px rgba(40, 195, 90, 0.3);
}

.btn:hover {
  transform: translateY(-3px) scale(1.015);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.26);
  color: var(--white);
}

.hero-card,
.card,
.contact-card,
.offer-card,
.cta-panel,
.page-card {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(255, 253, 248, 0.72)),
    radial-gradient(circle at top right, rgba(57, 184, 106, 0.12), transparent 36%);
  border: 1px solid rgba(255, 255, 255, 0.52);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

.hero-card {
  padding: 28px;
  border-radius: var(--radius-lg);
}

.hero-card {
  display: grid;
  gap: 20px;
}

.hero-card-media {
  min-height: 220px;
  border-radius: 24px;
  background-size: cover;
  background-position: center;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.18);
}

.hero-card-copy strong {
  display: block;
  margin-bottom: 6px;
  font-size: 1.25rem;
}

.hero-card ul,
.footer-grid ul,
.contact-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.hero-card li,
.contact-card li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.hero-card li:last-child,
.contact-card li:last-child {
  border-bottom: 0;
}

.hero-card strong,
.section-title h2,
.story-copy h2,
.cta-panel h2,
.offer-card h3,
.card h3,
.page-card h3 {
  color: #122019;
}

.section {
  padding: 88px 0;
}

.section.alt {
  background:
    radial-gradient(circle at 10% 10%, rgba(87, 227, 110, 0.18), transparent 24%),
    radial-gradient(circle at 90% 16%, rgba(243, 201, 107, 0.12), transparent 22%),
    linear-gradient(180deg, rgba(12, 34, 25, 0.99), rgba(10, 27, 20, 0.99));
  color: var(--white);
}

.section-title {
  margin-bottom: 34px;
  text-align: center;
}

.section-title span {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.78rem;
  color: var(--primary);
  font-weight: 800;
}

.section-title h2 {
  font-size: clamp(2.4rem, 5vw, 4rem);
  margin: 12px 0 10px;
}

.section-title p {
  max-width: 680px;
  margin: 0 auto;
  line-height: 1.8;
  color: var(--muted);
}

.section.alt .section-title p,
.section.alt .card p,
.section.alt .card li {
  color: rgba(255, 255, 255, 0.76);
}

.section.alt .section-title h2,
.section.alt .card h3 {
  color: var(--white);
}

.section.alt .card {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.08);
}

.feature-grid,
.category-grid,
.offers-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.split-grid,
.story-grid,
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: stretch;
}

.card,
.offer-card,
.page-card,
.contact-card {
  border-radius: var(--radius-md);
  padding: 26px;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.card:hover,
.offer-card:hover,
.page-card:hover,
.contact-card:hover {
  transform: translateY(-4px);
  border-color: rgba(87, 227, 110, 0.34);
  box-shadow: 0 30px 68px rgba(18, 32, 26, 0.18);
}

.card i,
.offer-card i,
.page-card i {
  width: 52px;
  height: 52px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(57, 184, 106, 0.18), rgba(225, 190, 105, 0.14));
  color: var(--primary-strong);
  margin-bottom: 18px;
  font-size: 1.15rem;
}

.media-card {
  min-height: 420px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  background-size: cover;
  background-position: center;
}

.story-copy,
.cta-panel {
  border-radius: var(--radius-lg);
  padding: 34px;
}

.story-copy {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 252, 245, 0.94)),
    radial-gradient(circle at top right, rgba(57, 184, 106, 0.12), transparent 32%);
  box-shadow: var(--shadow);
}

.story-copy p,
.legal-copy p,
.page-card p,
.contact-card p {
  line-height: 1.85;
  color: var(--muted);
}

.trust-strip {
  padding: 22px 0;
  background: linear-gradient(90deg, #10231d, #1e5e43, #214233);
  overflow: hidden;
}

.trust-track {
  width: min(calc(100% - 32px), var(--container));
  margin: 0 auto;
  display: flex;
  gap: 18px;
  overflow-x: auto;
  padding-bottom: 4px;
}

.trust-pill {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  color: #f4f7f5;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.page-banner {
  padding: 90px 0 54px;
  color: var(--white);
  background:
    radial-gradient(circle at 12% 24%, rgba(87, 227, 110, 0.24), transparent 26%),
    radial-gradient(circle at 86% 18%, rgba(243, 201, 107, 0.14), transparent 22%),
    linear-gradient(135deg, rgba(12, 34, 25, 0.92), rgba(18, 72, 45, 0.72)),
    url('https://images.unsplash.com/photo-1516594798947-e65505dbb29d?auto=format&fit=crop&w=1600&q=80') center/cover;
}

.page-banner p {
  max-width: 720px;
  font-size: 1.05rem;
  line-height: 1.85;
  color: rgba(255, 255, 255, 0.82);
}

.page-banner-copy .eyebrow {
  margin-bottom: 18px;
}

.page-banner-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 28px;
  align-items: end;
}

.banner-stat-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.banner-stat-cards article {
  padding: 18px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(14px);
}

.banner-stat-cards strong {
  display: block;
  color: #e9cf7f;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.9rem;
  margin-bottom: 4px;
}

.banner-stat-cards span {
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.55;
}

.spotlight-row {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 22px;
  margin-bottom: 34px;
}

.spotlight-card {
  display: grid;
  min-height: 360px;
  overflow: hidden;
  border-radius: 32px;
  background: #10231d;
  box-shadow: 0 28px 60px rgba(18, 32, 26, 0.16);
}

.spotlight-card-large {
  grid-template-columns: 1fr 1fr;
}

.spotlight-media {
  min-height: 100%;
  background-size: cover;
  background-position: center;
}

.spotlight-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 34px;
  color: #fff;
  background:
    radial-gradient(circle at top right, rgba(87, 227, 110, 0.24), transparent 34%),
    radial-gradient(circle at 80% 80%, rgba(243, 201, 107, 0.14), transparent 24%),
    linear-gradient(180deg, rgba(12, 34, 25, 0.98), rgba(19, 76, 43, 0.98));
}

.spotlight-copy span,
.immersive-band-copy span {
  color: #e9cf7f;
  text-transform: uppercase;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.16em;
}

.spotlight-copy h2,
.immersive-band-copy h2 {
  margin: 10px 0 12px;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  line-height: 0.98;
  letter-spacing: -0.04em;
}

.spotlight-copy p,
.immersive-band-copy p {
  margin: 0;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.8;
}

.spotlight-mini-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.spotlight-mini-card {
  min-height: 172px;
  padding: 22px;
  border-radius: 26px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 251, 244, 0.9)),
    radial-gradient(circle at top right, rgba(57, 184, 106, 0.16), transparent 36%);
  border: 1px solid rgba(29, 60, 49, 0.08);
  box-shadow: 0 18px 38px rgba(18, 32, 26, 0.08);
}

.spotlight-mini-card strong {
  display: block;
  color: #10231d;
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  margin-bottom: 6px;
}

.spotlight-mini-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.immersive-band {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  padding: 28px;
  margin-bottom: 34px;
  border-radius: 34px;
  background:
    radial-gradient(circle at 0% 0%, rgba(87, 227, 110, 0.2), transparent 24%),
    radial-gradient(circle at 100% 100%, rgba(243, 201, 107, 0.12), transparent 26%),
    linear-gradient(180deg, rgba(13, 35, 27, 0.98), rgba(12, 60, 38, 0.98));
  box-shadow: 0 28px 60px rgba(18, 32, 26, 0.16);
}

.immersive-band-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.immersive-thumb {
  min-height: 170px;
  border-radius: 24px;
  background-size: cover;
  background-position: center;
}

.immersive-thumb:first-child {
  grid-column: 1 / -1;
  min-height: 220px;
}

.site-footer {
  padding: 0 0 24px;
  background:
    radial-gradient(circle at top left, rgba(87, 227, 110, 0.16), transparent 24%),
    radial-gradient(circle at 100% 0%, rgba(243, 201, 107, 0.1), transparent 18%),
    #0d251b;
  color: rgba(255, 255, 255, 0.78);
}

.footer-cta {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 24px;
  align-items: center;
  padding: 42px 0 28px;
}

.footer-cta h2 {
  margin: 12px 0 10px;
  color: var(--white);
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.3rem, 4vw, 3.8rem);
  line-height: 0.98;
  letter-spacing: -0.04em;
}

.footer-cta p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.8;
}

.footer-cta-actions {
  display: flex;
  justify-content: flex-end;
  gap: 14px;
  flex-wrap: wrap;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr 1fr 1fr;
  gap: 28px;
  padding: 26px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-grid h3,
.footer-grid h4 {
  color: var(--white);
  font-size: 1.6rem;
  margin: 0 0 12px;
}

.footer-grid li {
  margin-bottom: 10px;
}

.footer-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.footer-badges span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-badges i {
  color: #8df4a0;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  padding-top: 18px;
  font-size: 0.92rem;
}

.legal-copy {
  width: min(calc(100% - 32px), 960px);
  margin: 0 auto;
  padding: 78px 0 96px;
}

.legal-copy h2 {
  margin-top: 34px;
  font-size: 1.5rem;
}

.legal-copy h1 {
  margin-bottom: 18px;
}

.legal-copy > p,
.legal-copy > h2 + p {
  padding: 22px 24px;
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(255, 252, 246, 0.86)),
    radial-gradient(circle at top right, rgba(87, 227, 110, 0.1), transparent 34%);
  border: 1px solid rgba(22, 63, 44, 0.1);
  box-shadow: 0 18px 42px rgba(18, 32, 26, 0.08);
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: 500ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.feinkost-page {
  background:
    radial-gradient(circle at 12% 16%, rgba(216, 179, 106, 0.18), transparent 24%),
    radial-gradient(circle at 88% 24%, rgba(46, 139, 87, 0.14), transparent 26%),
    linear-gradient(180deg, #fffaf0 0%, #f4ecdd 48%, #fffdfa 100%);
}

.feinkost-hero {
  position: relative;
  overflow: hidden;
  padding: 104px 0 74px;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(8, 22, 18, 0.92), rgba(23, 61, 47, 0.72)),
    url('https://images.unsplash.com/photo-1541529086526-db283c563270?auto=format&fit=crop&w=1600&q=80') center/cover;
}

.feinkost-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 70%, rgba(216, 179, 106, 0.24), transparent 28%),
    linear-gradient(90deg, rgba(16, 35, 29, 0.92), transparent 68%);
  pointer-events: none;
}

.feinkost-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  gap: 34px;
  align-items: end;
}

.feinkost-hero h1 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(3.2rem, 7vw, 5.8rem);
  line-height: 0.95;
  margin: 0 0 18px;
  letter-spacing: -0.04em;
}

.feinkost-hero p {
  max-width: 700px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.08rem;
  line-height: 1.85;
}

.feinkost-hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.feinkost-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  padding: 18px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(16px);
  box-shadow: 0 26px 60px rgba(0, 0, 0, 0.24);
}

.feinkost-stats div {
  min-height: 118px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  padding: 18px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.1);
}

.feinkost-stats strong {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  color: #f6d994;
  line-height: 0.95;
}

.feinkost-stats span {
  color: rgba(255, 255, 255, 0.78);
  font-weight: 700;
}

.feinkost-toolbar-section {
  position: sticky;
  top: 102px;
  z-index: 15;
  padding: 22px 0;
  background:
    linear-gradient(180deg, rgba(255, 250, 240, 0.9), rgba(255, 250, 240, 0.7)),
    radial-gradient(circle at 22% 0%, rgba(216, 179, 106, 0.18), transparent 34%);
  border-bottom: 1px solid rgba(29, 60, 49, 0.1);
  backdrop-filter: blur(18px);
}

.feinkost-search-panel {
  position: relative;
  display: grid;
  grid-template-columns: minmax(230px, 0.8fr) minmax(320px, 1.35fr) auto;
  gap: 20px;
  align-items: center;
  padding: 20px;
  overflow: hidden;
  border-radius: 34px;
  background:
    linear-gradient(135deg, rgba(16, 35, 29, 0.98), rgba(31, 83, 62, 0.94)),
    radial-gradient(circle at 10% 10%, rgba(246, 217, 148, 0.2), transparent 32%);
  border: 1px solid rgba(255, 255, 255, 0.13);
  box-shadow: 0 28px 70px rgba(16, 35, 29, 0.22);
}

.feinkost-search-panel::before {
  content: "";
  position: absolute;
  width: 280px;
  height: 280px;
  right: -110px;
  top: -120px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(216, 179, 106, 0.34), transparent 64%);
  pointer-events: none;
}

.search-panel-copy,
.search-panel-tools,
.feinkost-counter {
  position: relative;
  z-index: 1;
}

.search-panel-copy span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
  color: #f6d994;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.search-panel-copy h2 {
  margin: 0 0 6px;
  color: var(--white);
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2rem, 4vw, 3.15rem);
  line-height: 0.98;
  letter-spacing: -0.04em;
}

.search-panel-copy p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.7;
  font-size: 0.94rem;
}

.feinkost-toolbar {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 16px;
  align-items: center;
}

.feinkost-search {
  position: relative;
  display: flex;
  align-items: center;
  isolation: isolate;
}

.feinkost-search i {
  position: absolute;
  left: 22px;
  z-index: 2;
  color: #1f6b43;
  pointer-events: none;
  font-size: 1.08rem;
}

.feinkost-search input {
  width: 100%;
  min-height: 68px;
  padding: 0 58px 0 58px;
  border: 1px solid rgba(246, 217, 148, 0.55);
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 250, 240, 0.94));
  color: var(--text);
  font: inherit;
  font-weight: 700;
  outline: 0;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    0 18px 42px rgba(0, 0, 0, 0.2);
  transition: 180ms ease;
}

.feinkost-search input:focus {
  border-color: #f6d994;
  box-shadow:
    0 0 0 5px rgba(246, 217, 148, 0.16),
    0 22px 52px rgba(0, 0, 0, 0.24);
}

.search-clear {
  position: absolute;
  right: 14px;
  z-index: 2;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 50%;
  background: rgba(16, 35, 29, 0.1);
  color: #10231d;
  font-size: 1.35rem;
  cursor: pointer;
}

.quick-searches {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 10px;
}

.quick-searches button {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.82);
  padding: 8px 12px;
  font: inherit;
  font-size: 0.82rem;
  font-weight: 800;
  cursor: pointer;
  transition: 180ms ease;
}

.quick-searches button:hover {
  transform: translateY(-1px);
  background: rgba(246, 217, 148, 0.18);
  border-color: rgba(246, 217, 148, 0.44);
  color: #f6d994;
}

.feinkost-counter {
  min-width: 128px;
  display: grid;
  justify-items: center;
  gap: 2px;
  padding: 18px 16px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.78);
  font-weight: 800;
}

.feinkost-counter strong {
  color: #f6d994;
  font-family: "Cormorant Garamond", serif;
  font-size: 2.55rem;
  line-height: 0.9;
}

.feinkost-counter span {
  color: #f6d994;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.feinkost-filters {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 18px;
}

.filter-chip,
.mini-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid rgba(29, 60, 49, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--text);
  padding: 11px 16px;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
  transition: 180ms ease;
}

.filter-chip:hover,
.filter-chip.active,
.mini-button:hover {
  transform: translateY(-1px);
  background: #10231d;
  border-color: #10231d;
  color: var(--white);
}

.feinkost-selected {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  margin-top: 18px;
  padding: 18px 20px;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(16, 35, 29, 0.96), rgba(31, 107, 67, 0.9));
  color: rgba(255, 255, 255, 0.84);
  box-shadow: 0 22px 44px rgba(18, 32, 26, 0.14);
}

.feinkost-selected[hidden] {
  display: none;
}

.feinkost-selected strong {
  display: block;
  color: #f6d994;
  margin-bottom: 4px;
}

.feinkost-selected p {
  margin: 0;
}

.feinkost-products-section {
  padding-top: 58px;
}

.feinkost-category-block {
  margin-bottom: 54px;
}

.feinkost-category-block.is-hidden {
  display: none;
}

.feinkost-category-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 20px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(29, 60, 49, 0.12);
}

.category-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  color: var(--primary-strong);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.78rem;
  font-weight: 900;
}

.feinkost-category-head h2 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.2rem, 4.5vw, 3.7rem);
  letter-spacing: -0.03em;
}

.feinkost-category-head p {
  max-width: 680px;
  margin: 8px 0 0;
  color: var(--muted);
  line-height: 1.75;
}

.category-count {
  flex: 0 0 auto;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(216, 179, 106, 0.18);
  color: #7a5722;
  font-weight: 900;
}

.feinkost-product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.feinkost-product-card {
  position: relative;
  min-height: 360px;
  display: flex;
  flex-direction: column;
  padding: 0;
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(255, 253, 250, 0.82)),
    radial-gradient(circle at top right, rgba(216, 179, 106, 0.14), transparent 36%);
  border: 1px solid rgba(29, 60, 49, 0.1);
  box-shadow: 0 20px 46px rgba(18, 32, 26, 0.09);
  overflow: hidden;
  transition: 180ms ease;
}

.feinkost-product-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(46, 139, 87, 0.11), transparent 42%);
  opacity: 0;
  transition: 180ms ease;
  pointer-events: none;
}

.feinkost-product-card:hover {
  transform: translateY(-4px);
  border-color: rgba(46, 139, 87, 0.28);
  box-shadow: 0 26px 58px rgba(18, 32, 26, 0.14);
}

.feinkost-product-card:hover::before {
  opacity: 1;
}

.feinkost-product-card.is-hidden {
  display: none;
}

.product-image-placeholder {
  position: relative;
  min-height: 158px;
  display: grid;
  place-items: center;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(16, 35, 29, 0.94), rgba(31, 107, 67, 0.82)),
    radial-gradient(circle at 25% 20%, rgba(216, 179, 106, 0.34), transparent 34%);
  color: rgba(255, 255, 255, 0.9);
}

.product-image-placeholder::before {
  content: "";
  position: absolute;
  inset: 16px;
  border: 1px dashed rgba(246, 217, 148, 0.42);
  border-radius: 20px;
}

.product-image-placeholder i {
  position: relative;
  z-index: 1;
  font-size: 2.3rem;
  color: #f6d994;
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.25));
}

.product-image-placeholder span {
  position: absolute;
  left: 16px;
  bottom: 16px;
  z-index: 1;
  padding: 7px 11px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.favorite-button {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 2;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: rgba(16, 35, 29, 0.08);
  color: var(--primary-strong);
  cursor: pointer;
  transition: 180ms ease;
}

.favorite-button:hover,
.favorite-button.active {
  background: #10231d;
  color: #f6d994;
  transform: scale(1.04);
}

.product-card-body {
  position: relative;
  z-index: 1;
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 18px;
}

.product-card-top {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}

.product-icon {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: rgba(46, 139, 87, 0.12);
  color: var(--primary-strong);
  font-size: 0.92rem;
}

.product-category {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.feinkost-product-card h3 {
  position: relative;
  margin: 0 0 10px;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.42rem;
  line-height: 1.08;
  color: #10231d;
  letter-spacing: -0.02em;
}

.feinkost-product-card p {
  position: relative;
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.62;
}

.product-tags {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: auto;
}

.product-tags span {
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(46, 139, 87, 0.1);
  color: var(--primary-strong);
  font-size: 0.78rem;
  font-weight: 900;
}

@media (max-width: 1180px) {
  .feinkost-product-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 820px) {
  .feinkost-product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  .feinkost-product-grid {
    grid-template-columns: 1fr;
  }
}

.feinkost-empty {
  text-align: center;
  padding: 66px 20px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(29, 60, 49, 0.1);
  box-shadow: var(--shadow);
}

.feinkost-empty i {
  font-size: 2rem;
  color: var(--primary-strong);
}

.feinkost-empty h2 {
  margin: 12px 0 8px;
  font-family: "Cormorant Garamond", serif;
  font-size: 2.8rem;
}

.feinkost-empty p {
  max-width: 560px;
  margin: 0 auto;
  color: var(--muted);
  line-height: 1.75;
}

.feinkost-service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

@media (max-width: 980px) {
  .page-hero-content,
  .feature-grid,
  .category-grid,
  .offers-grid,
  .split-grid,
  .story-grid,
  .contact-grid,
  .footer-grid,
  .feinkost-hero-grid,
  .feinkost-service-grid {
    grid-template-columns: 1fr;
  }

  .feinkost-toolbar-section {
    position: static;
  }

  .footer-cta,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-cta-actions {
    justify-content: flex-start;
  }

  .page-banner-grid,
  .spotlight-row,
  .immersive-band {
    grid-template-columns: 1fr;
  }

  .spotlight-card-large {
    grid-template-columns: 1fr;
  }

  .spotlight-mini-grid,
  .banner-stat-cards,
  .immersive-band-gallery {
    grid-template-columns: 1fr 1fr;
  }

  .feinkost-search-panel {
    grid-template-columns: 1fr;
    border-radius: 28px;
  }

  .feinkost-toolbar {
    grid-template-columns: 1fr;
  }

  .feinkost-counter {
    text-align: center;
  }

  .nav-toggle {
    display: inline-block;
  }

  .nav-menu {
    position: absolute;
    top: calc(100% + 10px);
    right: 16px;
    left: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    background: rgba(9, 25, 20, 0.96);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 14px;
  }

  .nav-menu.open {
    display: flex;
  }

  .nav-cta {
    justify-content: center;
  }
}

@media (max-width: 720px) {
  .topbar {
    display: none;
  }

  .hero,
  .page-banner {
    padding-top: 72px;
  }

  .hero h1,
  .page-banner h1,
  .legal-copy h1 {
    font-size: clamp(2.5rem, 14vw, 4rem);
  }

  .btn,
  .btn-secondary {
    width: 100%;
    min-width: 0;
  }

  .footer-bottom {
    flex-direction: column;
  }

  .feinkost-hero {
    padding-top: 78px;
  }

  .feinkost-stats {
    grid-template-columns: 1fr;
  }

  .hero-card-media,
  .spotlight-media,
  .immersive-thumb:first-child {
    min-height: 220px;
  }

  .feinkost-category-head,
  .feinkost-selected {
    align-items: flex-start;
    flex-direction: column;
  }

  .filter-chip {
    flex: 1 1 auto;
  }

}

@media (max-width: 560px) {
  .banner-stat-cards,
  .spotlight-mini-grid,
  .immersive-band-gallery {
    grid-template-columns: 1fr;
  }

  .spotlight-card,
  .immersive-band,
  .catalog-search-box,
  .feinkost-search-panel {
    border-radius: 24px;
  }

  .spotlight-copy,
  .immersive-band,
  .story-copy,
  .cta-panel,
  .hero-card,
  .card,
  .offer-card,
  .page-card,
  .contact-card,
  .legal-copy > p,
  .legal-copy > h2 + p {
    padding: 22px;
  }

  .legal-copy {
    width: min(calc(100% - 24px), 960px);
    padding-top: 58px;
  }
}

.feinkost-catalog-page {
  background:
    radial-gradient(circle at 8% 10%, rgba(216, 179, 106, 0.2), transparent 26%),
    radial-gradient(circle at 92% 0%, rgba(46, 139, 87, 0.16), transparent 24%),
    linear-gradient(180deg, #fff9ee 0%, #f5efe2 48%, #fffdf8 100%);
}

.catalog-hero {
  padding: 96px 0 70px;
  background:
    linear-gradient(135deg, rgba(10, 24, 19, 0.92), rgba(28, 75, 56, 0.78)),
    url('https://images.unsplash.com/photo-1478145046317-39f10e56b5e9?auto=format&fit=crop&w=1600&q=80') center/cover;
  color: var(--white);
}

.catalog-hero-inner {
  max-width: 850px;
  text-align: center;
}

.catalog-eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: #f7d990;
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.catalog-hero h1 {
  margin: 0 0 18px;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(3.2rem, 8vw, 6.2rem);
  line-height: 0.92;
  letter-spacing: -0.05em;
}

.catalog-hero p {
  max-width: 720px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.84);
  font-size: 1.08rem;
  line-height: 1.85;
}

.catalog-finder {
  margin-top: -42px;
  position: relative;
  z-index: 4;
}

.catalog-search-box {
  padding: 22px;
  border-radius: 34px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 250, 240, 0.9)),
    radial-gradient(circle at top right, rgba(216, 179, 106, 0.18), transparent 34%);
  border: 1px solid rgba(29, 60, 49, 0.12);
  box-shadow: 0 28px 70px rgba(18, 32, 26, 0.16);
}

.catalog-search-title {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  margin-bottom: 14px;
}

.catalog-search-title span {
  color: var(--primary-strong);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.catalog-search-title strong {
  color: #10231d;
  font-weight: 900;
}

.catalog-search-field {
  position: relative;
  display: flex;
  align-items: center;
}

.catalog-search-field i {
  position: absolute;
  left: 24px;
  color: var(--primary-strong);
  font-size: 1.15rem;
  pointer-events: none;
}

.catalog-search-field input {
  width: 100%;
  min-height: 72px;
  padding: 0 64px 0 62px;
  border: 2px solid rgba(46, 139, 87, 0.18);
  border-radius: 999px;
  background: #ffffff;
  color: var(--text);
  font: inherit;
  font-size: 1.05rem;
  font-weight: 800;
  outline: 0;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9), 0 18px 40px rgba(18, 32, 26, 0.08);
  transition: 180ms ease;
}

.catalog-search-field input:focus {
  border-color: rgba(46, 139, 87, 0.6);
  box-shadow: 0 0 0 6px rgba(46, 139, 87, 0.1), 0 24px 52px rgba(18, 32, 26, 0.12);
}

.catalog-search-field .search-clear {
  position: absolute;
  right: 16px;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  background: rgba(16, 35, 29, 0.08);
  color: #10231d;
  font-size: 1.4rem;
  cursor: pointer;
}

.catalog-quick-searches,
.catalog-filters {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.catalog-quick-searches {
  margin-top: 14px;
}

.catalog-quick-searches button,
.catalog-filter {
  border: 1px solid rgba(29, 60, 49, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: #214233;
  padding: 10px 15px;
  font: inherit;
  font-size: 0.9rem;
  font-weight: 900;
  cursor: pointer;
  transition: 180ms ease;
}

.catalog-quick-searches button:hover,
.catalog-filter:hover,
.catalog-filter.active {
  transform: translateY(-1px);
  background: #10231d;
  border-color: #10231d;
  color: var(--white);
}

.catalog-filters {
  margin-top: 18px;
}

.catalog-filter {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.catalog-products {
  padding-top: 54px;
}

.catalog-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.catalog-card {
  position: relative;
  overflow: hidden;
  display: flex;
  min-height: 382px;
  flex-direction: column;
  border-radius: 28px;
  background: #fffefa;
  border: 1px solid rgba(29, 60, 49, 0.1);
  box-shadow: 0 20px 46px rgba(18, 32, 26, 0.08);
  transition: 180ms ease;
}

.catalog-card:hover {
  transform: translateY(-5px);
  border-color: rgba(46, 139, 87, 0.28);
  box-shadow: 0 28px 64px rgba(18, 32, 26, 0.14);
}

.catalog-card.is-hidden {
  display: none;
}

.catalog-card-image {
  min-height: 175px;
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(16, 35, 29, 0.96), rgba(43, 109, 77, 0.86)),
    radial-gradient(circle at 20% 20%, rgba(246, 217, 148, 0.24), transparent 36%);
}

.catalog-card-image::after {
  content: "";
  position: absolute;
  inset: 16px;
  border: 1px dashed rgba(246, 217, 148, 0.42);
  border-radius: 20px;
}

.catalog-card-image i {
  position: relative;
  z-index: 1;
  color: #f7d990;
  font-size: 2.4rem;
  filter: drop-shadow(0 12px 24px rgba(0, 0, 0, 0.28));
}

.catalog-card-image span {
  position: absolute;
  left: 16px;
  bottom: 16px;
  z-index: 1;
  padding: 7px 11px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.catalog-card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 20px;
}

.catalog-card-category {
  width: fit-content;
  margin-bottom: 12px;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(46, 139, 87, 0.1);
  color: var(--primary-strong);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.catalog-card h2 {
  margin: 0 0 10px;
  color: #10231d;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.45rem, 2vw, 1.8rem);
  line-height: 1.04;
  letter-spacing: -0.03em;
}

.catalog-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
  font-size: 0.94rem;
}

.catalog-empty {
  text-align: center;
  padding: 70px 20px;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(29, 60, 49, 0.1);
  box-shadow: var(--shadow);
}

.catalog-empty i {
  color: var(--primary-strong);
  font-size: 2rem;
}

.catalog-empty h2 {
  margin: 12px 0 8px;
  color: #10231d;
  font-family: "Cormorant Garamond", serif;
  font-size: 2.7rem;
}

.catalog-empty p {
  margin: 0 auto;
  max-width: 520px;
  color: var(--muted);
  line-height: 1.7;
}

@media (max-width: 1180px) {
  .catalog-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 840px) {
  .catalog-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 620px) {
  .catalog-hero {
    padding: 74px 0 58px;
  }

  .catalog-search-title {
    align-items: flex-start;
    flex-direction: column;
  }

  .catalog-search-field input {
    min-height: 64px;
    font-size: 0.96rem;
  }

  .catalog-grid {
    grid-template-columns: 1fr;
  }

  .catalog-filter,
  .catalog-quick-searches button {
    flex: 1 1 auto;
  }
}