/* ============================================================
   DER FRISCH-FISCH — Design System
   Dörig & Brandl AG · Ultra Modern Blue · 2025
   ============================================================ */

:root {
  /* --- Colour palette --- */
  --navy:    #04101e;
  --ocean:   #07213f;
  --deep:    #0a2f5c;
  --blue:    #0d5ba6;
  --azure:   #1370cc;
  --bright:  #2589e8;
  --sky:     #5bb3f0;
  --frost:   #cce4f8;
  --ice:     #eaf4fe;
  --white:   #ffffff;
  --cream:   #f6faff;
  --gold:    #e8a214;
  --gold-lt: #fff3d0;
  --coral:   #e84545;
  --green:   #17a34a;
  --ink:     #061526;
  --ink2:    #1e3a5f;
  --muted:   #5a7a9f;
  --line:    rgba(13, 91, 166, 0.14);
  --line-lt: rgba(255, 255, 255, 0.12);

  /* --- Typography --- */
  --f-display: 'Bricolage Grotesque', 'Helvetica Neue', system-ui, sans-serif;
  --f-body:    'Inter', 'Helvetica Neue', system-ui, sans-serif;

  /* --- Layout --- */
  --max-w: 1200px;
  --gutter: 24px;
  --r-xs:  6px;
  --r-sm:  10px;
  --r:     16px;
  --r-lg:  24px;
  --r-xl:  36px;
  --r-2xl: 56px;

  /* --- Shadows --- */
  --sh-xs: 0 1px 4px rgba(4, 16, 30, 0.06);
  --sh-sm: 0 4px 16px rgba(4, 16, 30, 0.10);
  --sh:    0 12px 48px rgba(4, 16, 30, 0.14);
  --sh-lg: 0 32px 96px rgba(4, 16, 30, 0.22);

  /* --- Motion --- */
  --ease:  cubic-bezier(0.22, 1, 0.36, 1);
  --ease2: cubic-bezier(0.4, 0, 0.2, 1);

  /* --- Compatibility aliases (alternate naming) --- */
  --font-display: 'Bricolage Grotesque', 'Helvetica Neue', system-ui, sans-serif;
  --ink-2:        #1e3a5f;
  --ocean-900:    #04101e;
  --ocean-800:    #07213f;
  --radius:       16px;
  --radius-lg:    24px;
  --radius-xl:    36px;
  --shadow:       0 12px 48px rgba(4, 16, 30, 0.14);
  --shadow-sm:    0 4px 16px rgba(4, 16, 30, 0.10);
  --teal-50:      #eaf4fe;
  --teal-100:     #cce4f8;
  --teal-300:     #5bb3f0;
  --teal-500:     #2589e8;
  --teal-600:     #1370cc;
  --teal-700:     #0d5ba6;
  --sand-50:      #f6faff;
  --sand-100:     #eaf4fe;
  --sand-200:     #cce4f8;
}

/* ── Reset ──────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--f-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}
img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; }
ul, ol { list-style: none; padding: 0; margin: 0; }
input, select, textarea { font: inherit; }
h1, h2, h3, h4, h5 { margin: 0 0 .5em; }

/* ── Typography ─────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: var(--f-display);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.05;
  color: var(--navy);
}
h1 { font-size: clamp(2.8rem, 5.5vw + 1rem, 5.4rem); }
h2 { font-size: clamp(2rem, 3vw + 0.6rem, 3.4rem); }
h3 { font-size: clamp(1.25rem, 0.8vw + 1rem, 1.75rem); }
h4 { font-size: 1.15rem; font-weight: 600; }
p  { margin: 0 0 1em; color: var(--ink2); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 0.74rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--azure);
  margin-bottom: 1.25rem;
}
.eyebrow::before {
  content: "";
  width: 32px;
  height: 2px;
  background: var(--azure);
  flex-shrink: 0;
}
.eyebrow--white { color: var(--sky); }
.eyebrow--white::before { background: var(--sky); }

.lead {
  font-size: clamp(1.05rem, 0.5vw + 0.85rem, 1.3rem);
  color: var(--ink2);
  max-width: 62ch;
  line-height: 1.7;
}

.display-1 { font-size: clamp(3.2rem, 7vw + 0.5rem, 7rem); letter-spacing: -0.05em; }

/* ── Layout ─────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.section {
  padding: clamp(56px, 8vw, 108px) 0;
  position: relative;
}
.section--dark  { background: var(--navy);  color: var(--white); }
.section--dark  h2, .section--dark h3, .section--dark h4 { color: var(--white); }
.section--dark  p  { color: rgba(255,255,255,0.75); }
.section--dark  .lead { color: rgba(255,255,255,0.82); }
.section--blue  { background: var(--deep); color: var(--white); }
.section--blue  h2, .section--blue h3 { color: var(--white); }
.section--blue  p, .section--blue .lead { color: rgba(255,255,255,0.78); }
.section--ice   { background: var(--ice); }
.section--cream { background: var(--cream); }

.section-head {
  max-width: 760px;
  margin: 0 auto clamp(36px, 5vw, 64px);
  text-align: center;
}
.section-head.left { text-align: left; margin-left: 0; }

/* ── Grid ───────────────────────────────────────────────── */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }

@media (max-width: 960px) { .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 800px) { .grid-3 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) {
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr; }
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(36px, 6vw, 80px);
  align-items: center;
}
.split.reverse { direction: rtl; }
.split.reverse > * { direction: ltr; }
@media (max-width: 800px) { .split, .split.reverse { grid-template-columns: 1fr; direction: ltr; } }

/* ── Buttons ────────────────────────────────────────────── */
.btn-primary, .btn-outline, .btn-ghost, .btn-white, .btn-nav {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all .25s var(--ease);
  white-space: nowrap;
  cursor: pointer;
  border: 2px solid transparent;
  border-radius: var(--r-xl);
  padding: 14px 28px;
}
.arrow { transition: transform .3s var(--ease); }
.btn-primary:hover .arrow,
.btn-outline:hover .arrow,
.btn-ghost:hover .arrow,
.btn-white:hover .arrow { transform: translateX(4px); }

.btn-primary  {
  background: var(--azure);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(19, 112, 204, 0.35);
}
.btn-primary:hover { background: var(--blue); box-shadow: 0 8px 32px rgba(19, 112, 204, 0.45); transform: translateY(-2px); }

.btn-outline  { background: transparent; color: var(--azure); border-color: var(--azure); }
.btn-outline:hover { background: var(--azure); color: var(--white); }

.btn-white    { background: var(--white); color: var(--ocean); border-color: var(--white); }
.btn-white:hover { background: var(--ice); }

.btn-ghost    { padding: 10px 0; border-radius: 0; border-bottom: 2px solid currentColor; border-top: 0; border-left: 0; border-right: 0; color: var(--azure); font-weight: 600; }
.btn-ghost:hover { color: var(--blue); }
.btn-ghost--white { color: var(--white); border-color: var(--white); }
.btn-ghost--white:hover { color: var(--frost); border-color: var(--frost); }

.btn-nav {
  background: var(--azure);
  color: var(--white);
  padding: 10px 20px;
  border-radius: var(--r-xl);
  font-size: 0.88rem;
}
.btn-nav:hover { background: var(--bright); }

/* ── Header ─────────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--navy);
  border-bottom: 1px solid var(--line-lt);
  transition: box-shadow .3s var(--ease);
}
.site-header.shadow { box-shadow: var(--sh); }

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  padding-bottom: 14px;
  gap: 24px;
}
.brand-logo img { height: 46px; width: auto; }

.main-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}
.main-nav a {
  padding: 9px 14px;
  border-radius: var(--r-sm);
  font-size: 0.92rem;
  font-weight: 500;
  color: rgba(255,255,255,0.8);
  transition: background .2s, color .2s;
}
.main-nav a:hover { background: rgba(255,255,255,0.08); color: var(--white); }
.main-nav a.active { color: var(--sky); }
.main-nav .btn-nav { margin-left: 8px; }

.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  border-radius: var(--r-sm);
  background: rgba(255,255,255,0.08);
  align-items: center;
  justify-content: center;
}
.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  display: block;
  width: 20px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  position: relative;
  transition: all .3s var(--ease);
}
.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
}
.nav-toggle span::before { top: -6px; }
.nav-toggle span::after  { top:  6px; }
.nav-toggle.open span    { background: transparent; }
.nav-toggle.open span::before { top: 0; transform: rotate(45deg); }
.nav-toggle.open span::after  { top: 0; transform: rotate(-45deg); }

@media (max-width: 900px) {
  .nav-toggle { display: inline-flex; }
  .main-nav {
    position: fixed;
    inset: 74px 12px auto;
    background: var(--ocean);
    flex-direction: column;
    align-items: stretch;
    padding: 16px;
    border-radius: var(--r-lg);
    box-shadow: var(--sh-lg);
    border: 1px solid var(--line-lt);
    gap: 4px;
    opacity: 0;
    transform: translateY(-12px);
    pointer-events: none;
    transition: opacity .25s var(--ease), transform .25s var(--ease);
  }
  .main-nav.open { opacity: 1; transform: none; pointer-events: auto; }
  .main-nav a { padding: 14px 16px; }
  .main-nav .btn-nav { margin: 8px 0 0; justify-content: center; }
}

/* ── Hero ───────────────────────────────────────────────── */
.hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--ocean) 60%, var(--deep) 100%);
  position: relative;
  overflow: hidden;
  padding: clamp(64px, 9vw, 120px) 0;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 80% 20%, rgba(13, 112, 204, 0.28) 0%, transparent 55%),
    radial-gradient(ellipse at 10% 80%, rgba(91, 179, 240, 0.14) 0%, transparent 50%);
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(36px, 5vw, 72px);
  align-items: center;
  position: relative;
  z-index: 1;
}
@media (max-width: 860px) { .hero-grid { grid-template-columns: 1fr; } }

.hero__content h1 { color: var(--white); }
.hero__content .eyebrow { color: var(--sky); }
.hero__content .eyebrow::before { background: var(--sky); }
.hero__content .lead { color: rgba(255,255,255,0.8); }

.hero-actions {
  display: flex;
  gap: 14px;
  margin-top: 32px;
  flex-wrap: wrap;
}
.hero__visual {
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--sh-lg);
  aspect-ratio: 4/5;
  position: relative;
  background: var(--deep);
}
.hero__visual img {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.9;
}
.hero-badge {
  position: absolute;
  bottom: 20px; left: 20px;
  background: rgba(4, 16, 30, 0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--line-lt);
  border-radius: var(--r-lg);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 14px;
  max-width: 82%;
}
.pulse {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--sky);
  box-shadow: 0 0 0 4px rgba(91,179,240,0.25);
  animation: pulsate 2s var(--ease) infinite;
  flex-shrink: 0;
}
@keyframes pulsate {
  0%, 100% { box-shadow: 0 0 0 4px rgba(91,179,240,0.25); }
  50%       { box-shadow: 0 0 0 12px rgba(91,179,240,0); }
}
.hero-badge strong { font-family: var(--f-display); color: var(--white); font-size: 1rem; font-weight: 700; display: block; }
.hero-badge span   { color: var(--frost); font-size: 0.8rem; }

/* ── Page hero (subpages) ───────────────────────────────── */
.page-hero {
  background: linear-gradient(135deg, var(--navy), var(--ocean));
  padding: clamp(56px, 7vw, 104px) 0 clamp(40px, 5vw, 72px);
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 90% 50%, rgba(37, 137, 232, 0.2), transparent 60%);
  pointer-events: none;
}
.page-hero .container { position: relative; z-index: 1; max-width: 820px; }
.page-hero h1 { color: var(--white); }
.page-hero .lead { color: rgba(255,255,255,0.82); }

/* ── Breadcrumb ─────────────────────────────────────────── */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
  padding: 18px 0 0;
  position: relative;
  z-index: 1;
}
.breadcrumb a { color: rgba(255,255,255,0.6); }
.breadcrumb a:hover { color: var(--sky); }
.breadcrumb-sep { font-size: 0.75rem; }

/* ── Cards ──────────────────────────────────────────────── */
.card {
  background: var(--white);
  border-radius: var(--r-lg);
  border: 1px solid var(--line);
  overflow: hidden;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
  display: flex;
  flex-direction: column;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--sh); }

.card--dark {
  background: rgba(255,255,255,0.06);
  border-color: var(--line-lt);
  backdrop-filter: blur(8px);
}
.card--dark:hover { background: rgba(255,255,255,0.10); }

.card__media {
  aspect-ratio: 16/10;
  overflow: hidden;
  position: relative;
  background: var(--deep);
}
.card__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s var(--ease);
}
.card:hover .card__media img { transform: scale(1.05); }

.card__tag {
  position: absolute;
  top: 12px; left: 12px;
  background: var(--navy);
  color: var(--sky);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 999px;
}
.card__body {
  padding: 22px 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.card__title { font-family: var(--f-display); font-size: 1.25rem; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.card__dark .card__title { color: var(--white); }
.card__meta {
  display: flex;
  gap: 16px;
  font-size: 0.8rem;
  color: var(--muted);
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px dashed var(--line);
}
.card__dark .card__meta { border-color: var(--line-lt); color: rgba(255,255,255,0.5); }

/* ── Location cards ─────────────────────────────────────── */
.location-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 28px;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
}
.location-card:hover { transform: translateY(-4px); box-shadow: var(--sh); border-color: var(--sky); }
.location-card__city {
  font-family: var(--f-display);
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.03em;
  margin-bottom: 2px;
}
.location-card__leader { font-size: 0.82rem; color: var(--muted); margin-bottom: 16px; }
.location-card__address { font-size: 0.92rem; color: var(--ink2); line-height: 1.6; margin-bottom: 14px; }
.location-card__hours { font-size: 0.86rem; color: var(--ink2); margin-bottom: 16px; }
.location-card__actions { display: flex; gap: 10px; flex-wrap: wrap; margin-top: auto; }
.location-card__actions a {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--azure);
  padding: 7px 14px;
  border: 1.5px solid var(--frost);
  border-radius: 999px;
  transition: background .2s, border-color .2s;
}
.location-card__actions a:hover { background: var(--frost); border-color: var(--sky); }

/* ── Recipe cards ───────────────────────────────────────── */
.recipe-card {
  background: var(--white);
  border-radius: var(--r-lg);
  border: 1px solid var(--line);
  overflow: hidden;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
  display: flex;
  flex-direction: column;
}
.recipe-card:hover { transform: translateY(-6px); box-shadow: var(--sh); }
.recipe-card__media {
  aspect-ratio: 4/3;
  overflow: hidden;
  position: relative;
  background: var(--deep);
}
.recipe-card__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s var(--ease);
}
.recipe-card:hover .recipe-card__media img { transform: scale(1.06); }
.recipe-card__tag {
  position: absolute;
  top: 12px; left: 12px;
  background: var(--azure);
  color: var(--white);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 11px;
  border-radius: 999px;
}
.recipe-card__tag--gold { background: var(--gold); color: var(--navy); }
.recipe-card__body { padding: 20px 22px; flex: 1; display: flex; flex-direction: column; }
.recipe-card__title { font-family: var(--f-display); font-size: 1.15rem; font-weight: 700; color: var(--navy); margin-bottom: 8px; line-height: 1.25; }
.recipe-card__desc { font-size: 0.88rem; color: var(--ink2); flex: 1; }
.recipe-card__meta {
  display: flex;
  gap: 12px;
  font-size: 0.78rem;
  color: var(--muted);
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px dashed var(--line);
}

/* ── Course cards ───────────────────────────────────────── */
.course-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  padding: 32px;
  position: relative;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.course-card:hover { transform: translateY(-4px); box-shadow: var(--sh); }
.course-card__badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 999px;
  margin-bottom: 16px;
}
.badge--red   { background: #fdecea; color: var(--coral); }
.badge--green { background: #e6f9ee; color: var(--green); }
.badge--blue  { background: var(--frost); color: var(--blue); }
.course-card__title { font-family: var(--f-display); font-size: 1.4rem; font-weight: 700; color: var(--navy); margin-bottom: 12px; }
.course-card__dishes {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}
.dish-pill {
  background: var(--ice);
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 999px;
}
.course-card__price {
  font-family: var(--f-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--azure);
  letter-spacing: -0.03em;
}
.course-card__price small { font-size: 0.85rem; font-weight: 400; color: var(--muted); font-family: var(--f-body); }

/* ── Stats ──────────────────────────────────────────────── */
.stat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; }
@media (max-width: 700px) { .stat-grid { grid-template-columns: repeat(2, 1fr); } }

.stat { text-align: center; }
.stat__number {
  font-family: var(--f-display);
  font-size: clamp(2.8rem, 5vw, 4.4rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  color: var(--sky);
  line-height: 1;
  display: block;
}
.stat__label {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.62);
  display: block;
  margin-top: 8px;
  letter-spacing: 0.04em;
}

/* ── USP cards ──────────────────────────────────────────── */
.usp {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 28px 24px;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s;
}
.usp:hover { transform: translateY(-4px); box-shadow: var(--sh-sm); border-color: var(--sky); }
.usp__icon {
  width: 52px; height: 52px;
  border-radius: var(--r);
  background: var(--frost);
  color: var(--azure);
  display: grid; place-items: center;
  margin-bottom: 18px;
}
.usp h3 { font-size: 1.15rem; margin-bottom: 8px; }
.usp p  { margin: 0; font-size: 0.92rem; }

/* ── Filter pills ───────────────────────────────────────── */
.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 40px;
}
.pill-filter {
  padding: 10px 20px;
  border-radius: 999px;
  background: var(--ice);
  border: 1.5px solid var(--frost);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--ink2);
  cursor: pointer;
  transition: background .2s, color .2s, border-color .2s;
}
.pill-filter:hover { background: var(--frost); border-color: var(--sky); }
.pill-filter.active { background: var(--azure); color: var(--white); border-color: var(--azure); }

/* ── CTA Block ──────────────────────────────────────────── */
.cta-block {
  background: linear-gradient(135deg, var(--ocean), var(--deep));
  border-radius: var(--r-2xl);
  padding: clamp(40px, 6vw, 72px);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-block::before {
  content: "";
  position: absolute;
  inset: -40% 0 auto;
  height: 200%;
  background: radial-gradient(ellipse at 50% 0%, rgba(37, 137, 232, 0.22), transparent 60%);
  pointer-events: none;
}
.cta-block h2, .cta-block h3 { color: var(--white); position: relative; z-index: 1; }
.cta-block p { color: rgba(255,255,255,0.78); position: relative; z-index: 1; max-width: 52ch; margin: 0 auto 28px; }
.cta-block .cta-actions { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; position: relative; z-index: 1; }

/* ── Info boxes ─────────────────────────────────────────── */
.info-box {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  padding: 32px 36px;
  box-shadow: var(--sh-xs);
}
.info-row {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}
.info-row:last-child { border-bottom: 0; }
.info-row__icon {
  width: 44px; height: 44px;
  border-radius: var(--r-sm);
  background: var(--frost);
  color: var(--azure);
  display: grid; place-items: center;
  flex-shrink: 0;
}
.info-row h4 { margin-bottom: 4px; font-size: 1rem; }
.info-row p  { margin: 0; font-size: 0.92rem; }

/* ── Quality table ──────────────────────────────────────── */
.quality-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--sh-xs);
}
.quality-table th {
  background: var(--ocean);
  color: var(--white);
  padding: 12px 16px;
  text-align: left;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.quality-table td {
  padding: 12px 16px;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
  background: var(--white);
  color: var(--ink2);
}
.quality-table td:first-child { font-weight: 600; color: var(--navy); background: var(--ice); }
.quality-table tr:last-child td { border-bottom: 0; }

/* ── Product cards (Lachs & Wein) ───────────────────────── */
.product-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  overflow: hidden;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
  display: flex;
  flex-direction: column;
}
.product-card:hover { transform: translateY(-6px); box-shadow: var(--sh); }
.product-card__media {
  aspect-ratio: 3/2;
  background: linear-gradient(135deg, var(--deep), var(--ocean));
  overflow: hidden;
}
.product-card__media img { width: 100%; height: 100%; object-fit: cover; opacity: 0.85; }
.product-card__body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.product-card__label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 8px;
}
.product-card__title { font-family: var(--f-display); font-size: 1.2rem; font-weight: 700; color: var(--navy); margin-bottom: 10px; line-height: 1.25; }
.product-card__desc { font-size: 0.88rem; color: var(--ink2); flex: 1; margin-bottom: 16px; }
.product-card__price {
  font-family: var(--f-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--azure);
  letter-spacing: -0.03em;
}
.product-card__price small { font-size: 0.8rem; font-weight: 400; color: var(--muted); font-family: var(--f-body); }

/* ── Contact / Form ─────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
  align-items: start;
}
@media (max-width: 860px) { .contact-grid { grid-template-columns: 1fr; } }

.form-box {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  padding: 36px;
  box-shadow: var(--sh-sm);
}
.field { display: grid; gap: 6px; margin-bottom: 16px; }
.field label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--blue);
  letter-spacing: 0.04em;
}
.field input, .field select, .field textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--line);
  border-radius: var(--r);
  background: var(--cream);
  color: var(--ink);
  transition: border-color .2s, box-shadow .2s;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--azure);
  box-shadow: 0 0 0 4px var(--frost);
  background: var(--white);
}
.field textarea { min-height: 120px; resize: vertical; }
.field--row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field.error input, .field.error textarea { border-color: var(--coral); }
.field-msg { font-size: 0.78rem; color: var(--coral); display: none; }
.field.error .field-msg { display: block; }
.form-success {
  background: #e6f9ee;
  color: var(--green);
  padding: 14px 18px;
  border-radius: var(--r);
  font-weight: 500;
  margin-bottom: 16px;
  display: none;
}
.form-success.show { display: block; }

/* ── Hours list ─────────────────────────────────────────── */
.hours-list { display: grid; gap: 0; }
.hours-list li {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px dashed var(--line);
  font-size: 0.92rem;
}
.hours-list li:last-child { border-bottom: 0; }
.hours-list strong { color: var(--ocean); }

/* ── Species list ───────────────────────────────────────── */
.species-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 700px) { .species-grid { grid-template-columns: 1fr 1fr; } }
.species-col h4 { font-size: 0.8rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--azure); margin-bottom: 10px; }
.species-col li { font-size: 0.9rem; color: var(--ink2); padding: 5px 0; border-bottom: 1px solid var(--line); }
.species-col li:last-child { border-bottom: 0; }

/* ── Footer ─────────────────────────────────────────────── */
.site-footer {
  background: var(--navy);
  color: rgba(255,255,255,0.68);
  padding: 64px 0 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--line-lt);
}
@media (max-width: 860px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-brand img { margin-bottom: 18px; }
.footer-col h4 {
  color: var(--white);
  font-family: var(--f-display);
  font-size: 0.88rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.footer-col a {
  display: block;
  font-size: 0.9rem;
  padding: 6px 0;
  color: rgba(255,255,255,0.64);
  transition: color .2s;
}
.footer-col a:hover { color: var(--sky); }
.footer-col p { font-size: 0.88rem; margin-bottom: 8px; line-height: 1.7; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
  padding-top: 24px;
  font-size: 0.82rem;
}
.footer-bottom a:hover { color: var(--sky); }

/* ── Reveal animations ──────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}
.reveal.in { opacity: 1; transform: none; }

/* ── Utilities ──────────────────────────────────────────── */
.text-center { text-align: center; }
.center { text-align: center; }
.mt-lg { margin-top: clamp(28px, 4vw, 48px); }
.mt-sm { margin-top: 16px; }
.gap-sm { gap: 12px; }
.hidden { display: none; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
}

/* ── Section backgrounds (flat modifier classes) ─────────── */
section { padding: clamp(56px, 8vw, 108px) 0; position: relative; }
.bg-sand  { background: var(--ice); }
.bg-ocean { background: var(--navy); }
.bg-ocean h2, .bg-ocean h3, .bg-ocean h4 { color: var(--white); }
.bg-ocean .eyebrow::before { background: var(--sky); }
.bg-ocean p, .bg-ocean .lead { color: rgba(255,255,255,0.78); }
.bg-teal  { background: var(--deep); }
.bg-teal  h2, .bg-teal h3, .bg-teal h4 { color: var(--white); }
.bg-teal  p, .bg-teal .lead { color: rgba(255,255,255,0.80); }

/* ── Navigation (matches HTML nav pattern) ───────────────── */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  padding-bottom: 14px;
  gap: 24px;
}
.brand { display: flex; align-items: center; flex-shrink: 0; }
.brand img { height: 46px; width: auto; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  margin: 0;
}
.nav-links > li > a {
  display: block;
  padding: 9px 14px;
  border-radius: var(--r-sm);
  font-size: 0.92rem;
  font-weight: 500;
  color: rgba(255,255,255,0.82);
  transition: background .2s, color .2s;
}
.nav-links > li > a:hover { background: rgba(255,255,255,0.08); color: var(--white); }
.nav-links > li > a.active { color: var(--sky); }
.nav-links .nav-cta { margin-left: 8px; }

@media (max-width: 900px) {
  .nav-toggle { display: inline-flex; }
  .nav-links {
    position: fixed;
    inset: 76px 12px auto;
    background: var(--ocean);
    flex-direction: column;
    align-items: stretch;
    padding: 16px;
    border-radius: var(--r-lg);
    box-shadow: var(--sh-lg);
    border: 1px solid var(--line-lt);
    gap: 4px;
    opacity: 0;
    transform: translateY(-12px);
    pointer-events: none;
    transition: opacity .25s var(--ease), transform .25s var(--ease);
    z-index: 99;
  }
  .nav-links.open { opacity: 1; transform: none; pointer-events: auto; }
  .nav-links > li > a { padding: 14px 16px; }
  .nav-links .nav-cta { margin: 8px 0 0; }
  .nav-links .nav-cta a { display: block; text-align: center; }
}

/* ── Buttons (base + secondary) ─────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all .25s var(--ease);
  white-space: nowrap;
  cursor: pointer;
  border: 2px solid transparent;
  border-radius: var(--r-xl);
  padding: 14px 28px;
}
.btn.btn-primary {
  background: var(--azure);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(19, 112, 204, 0.35);
}
.btn.btn-primary:hover { background: var(--blue); box-shadow: 0 8px 32px rgba(19, 112, 204, 0.45); transform: translateY(-2px); }
.btn-secondary, .btn.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 14px 28px;
  border-radius: var(--r-xl);
  background: rgba(255,255,255,0.10);
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.20);
  transition: all .25s var(--ease);
  white-space: nowrap;
}
.btn-secondary:hover, .btn.btn-secondary:hover { background: rgba(255,255,255,0.18); border-color: rgba(255,255,255,0.35); }

/* ── Hero inner layout (matches index.html) ──────────────── */
.hero-inner {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(36px, 5vw, 72px);
  align-items: center;
  position: relative;
  z-index: 1;
}
@media (max-width: 860px) { .hero-inner { grid-template-columns: 1fr; } }

.hero-text h1 { color: var(--white); }
.hero-text .eyebrow { color: var(--sky); }
.hero-text .eyebrow::before { background: var(--sky); }
.hero-text .lead { color: rgba(255,255,255,0.80); max-width: 52ch; }

.hero-visual {
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--sh-lg);
  aspect-ratio: 4/5;
  position: relative;
  background: var(--deep);
}
.hero-visual img {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.9;
}

.dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--sky);
  box-shadow: 0 0 0 4px rgba(91,179,240,0.25);
  animation: pulsate 2s var(--ease) infinite;
  flex-shrink: 0;
}

/* ── USPs grid ──────────────────────────────────────────── */
.usps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
@media (max-width: 960px) { .usps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 500px) { .usps { grid-template-columns: 1fr; } }

.usp-icon {
  width: 52px; height: 52px;
  border-radius: var(--r);
  background: var(--frost);
  color: var(--azure);
  display: grid; place-items: center;
  margin-bottom: 18px;
}

/* ── Cards grid ─────────────────────────────────────────── */
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 860px) { .cards { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .cards { grid-template-columns: 1fr; } }

/* ── Origin card (Herkunft section) ─────────────────────── */
.origin-card {
  background: var(--cream, #fffdf7);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg, 18px);
  padding: 28px 26px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.origin-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 30px -10px rgba(0,0,0,0.4);
}
.origin-card h3 {
  color: var(--ocean-900, #071d35) !important;
  font-size: 1.25rem;
  margin: 0;
}
.origin-card p {
  color: var(--ink-2, #3a4a5c) !important;
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}
.origin-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--teal-100, #cdebee), var(--ocean-100, #d8e6f3));
  color: var(--ocean-800, #0a3a66);
  display: grid; place-items: center;
}
.origin-icon svg { width: 26px; height: 26px; }

.card-body {
  padding: 22px 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.card-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--azure);
  background: var(--frost);
  padding: 4px 12px;
  border-radius: 999px;
  margin-bottom: 12px;
}
.card-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px dashed var(--line);
}

/* ── Recipes grid ───────────────────────────────────────── */
.recipes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 860px) { .recipes { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .recipes { grid-template-columns: 1fr; } }

.recipe {
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--line-lt);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
  display: flex;
  flex-direction: column;
}
.recipe:hover { transform: translateY(-4px); box-shadow: var(--sh); }
.recipe-media {
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--deep);
}
.recipe-media img { width: 100%; height: 100%; object-fit: cover; opacity: 0.88; transition: transform .5s var(--ease); }
.recipe:hover .recipe-media img { transform: scale(1.05); }
.recipe-body { padding: 18px 20px; flex: 1; }
.recipe-body h3 { color: var(--white); font-size: 1.1rem; margin-bottom: 8px; }
.recipe-body p  { color: rgba(255,255,255,0.72); font-size: 0.88rem; margin: 0; }
.recipe-meta {
  display: flex;
  gap: 14px;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.50);
  margin-top: 12px;
}

/* ── Split layout image ─────────────────────────────────── */
.split-media {
  border-radius: var(--r-xl);
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: var(--sh);
}
.split-media img { width: 100%; height: 100%; object-fit: cover; }

/* ── Stats (flat class) ─────────────────────────────────── */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
@media (max-width: 700px) { .stats { grid-template-columns: repeat(2, 1fr); } }
.stat { text-align: center; }
.stat strong {
  font-family: var(--f-display);
  font-size: clamp(2.8rem, 5vw, 4.4rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  color: var(--sky);
  line-height: 1;
  display: block;
}
.stat span {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.62);
  display: block;
  margin-top: 8px;
  letter-spacing: 0.04em;
}

/* ── CTA Banner ─────────────────────────────────────────── */
.cta-banner {
  background: linear-gradient(135deg, var(--ocean), var(--deep));
  border-radius: var(--r-2xl);
  padding: clamp(48px, 6vw, 80px) clamp(28px, 5vw, 72px);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: "";
  position: absolute;
  inset: -40% 0 auto;
  height: 200%;
  background: radial-gradient(ellipse at 50% 0%, rgba(37, 137, 232, 0.22), transparent 60%);
  pointer-events: none;
}
.cta-banner h2, .cta-banner h3 { color: var(--white); position: relative; z-index: 1; }
.cta-banner p { color: rgba(255,255,255,0.78); position: relative; z-index: 1; max-width: 52ch; margin: 0 auto 28px; }
.cta-banner .cta-actions { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; position: relative; z-index: 1; }

/* ── Divider ────────────────────────────────────────────── */
.divider { height: 1px; background: var(--line); margin: 0; }
.divider--lt { background: var(--line-lt); }

/* ── page-head (alias for page-hero) ────────────────────── */
.page-head {
  background: linear-gradient(135deg, var(--navy), var(--ocean));
  padding: clamp(56px, 7vw, 104px) 0 clamp(40px, 5vw, 72px);
  position: relative;
  overflow: hidden;
}
.page-head::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 90% 50%, rgba(37, 137, 232, 0.2), transparent 60%);
  pointer-events: none;
}
.page-head .container { position: relative; z-index: 1; max-width: 820px; }
.page-head h1 { color: var(--white); }
.page-head .eyebrow { color: var(--sky); }
.page-head .eyebrow::before { background: var(--sky); }
.page-head .lead { color: rgba(255,255,255,0.82); }

/* ── crumbs (alias for breadcrumb) ─────────────────────── */
.crumbs {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
  padding: 18px 0 0;
  position: relative;
  z-index: 1;
}
.crumbs a { color: rgba(255,255,255,0.6); }
.crumbs a:hover { color: var(--sky); }

/* ── pill (alias for pill-filter) ─────────────────────── */
.pill[data-filter] {
  padding: 10px 20px;
  border-radius: 999px;
  background: var(--ice);
  border: 1.5px solid var(--frost);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--ink2);
  cursor: pointer;
  transition: background .2s, color .2s, border-color .2s;
}
.pill[data-filter]:hover { background: var(--frost); border-color: var(--sky); }
.pill[data-filter].active { background: var(--azure); color: var(--white); border-color: var(--azure); }

/* ── Info list (contact page) ───────────────────────────── */
.info-list { display: grid; gap: 0; }
.info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}
.info-item:last-child { border-bottom: 0; }
.info-icon {
  width: 44px; height: 44px;
  border-radius: var(--r-sm);
  background: var(--frost);
  color: var(--azure);
  display: grid; place-items: center;
  flex-shrink: 0;
}
.info-item h3 { font-size: 1rem; margin-bottom: 4px; }
.info-item p  { margin: 0; font-size: 0.92rem; }

/* ── Footer brand ────────────────────────────────────────── */
.footer-brand img { margin-bottom: 4px; }
.footer-brand a { color: rgba(255,255,255,0.68); }
.footer-brand p { color: rgba(255,255,255,0.60); font-size: 0.88rem; margin-bottom: 8px; line-height: 1.7; }
.footer-brand a:hover { color: var(--sky); }
