﻿@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,700;0,900;1,400;1,700&family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,400;1,600&family=Instrument+Sans:wght@400;500;600&display=swap');

/* ── Tokens ─────────────────────────────────── */
:root {
  --calendula:    #DE8554;
  --delphinium:   #A8B9C3;
  --buttercup:    #C4A524;
  --daisy:        #F5F0EC;
  --petal:        #F0CEBA;
  --moss:         #5B623A;
  --lilac:        #B8A0B9;
  --foxglove:     #C2355A;
  --copper:       #C45524;
  --ivy:          #40654A;

  --bg:           #F9F8F4;
  --bg-card:      #FFFFFF;
  --dark:         #1C1810;
  --mid:          #5A4A38;
  --light:        #9A8A78;
  --border:       #E8E2D8;
  --border-dark:  #D0C8BC;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
body {
  font-family: 'Instrument Sans', system-ui, sans-serif;
  background: var(--bg);
  color: var(--dark);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  cursor: url('huhn_cursor_64.png') 22 16, auto;
}

/* ── Header ─────────────────────────────────── */
.site-header {
  background: #fff;
  border-bottom: 1px solid var(--border);
  padding: 0 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  position: sticky;
  top: 0;
  z-index: 100;
}
.site-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}
.site-logo-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.45rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--dark);
  line-height: 1;
}
.footer-logo-text {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--mid);
  text-align: center;
}
.site-nav { display: flex; gap: 2.5rem; list-style: none; }
.site-nav a {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mid);
  text-decoration: none;
  transition: color 0.15s;
}
.site-nav a:hover, .site-nav a.active { color: var(--dark); }

/* ── Hero (dunkel – Sammlungen, Rezept) ─────── */
.page-hero {
  background: var(--moss);
  padding: 4.5rem 3rem 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 20% 50%, rgba(255,255,255,.06) 0%, transparent 60%),
                    radial-gradient(circle at 80% 30%, rgba(255,255,255,.04) 0%, transparent 50%);
}
.page-hero__eyebrow {
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,.6);
  font-weight: 600;
  margin-bottom: 1rem;
}
.page-hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 300;
  color: #fff;
  line-height: 1.05;
  margin-bottom: 0.75rem;
  letter-spacing: 0.01em;
}
.page-hero__sub {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.2rem;
  color: rgba(255,255,255,.75);
}

/* ── Hero Karo – echter Baumwollstoff (Canva-Bild, gekachelt) ─ */
.page-hero--karo {
  background-color: #E8D5BE;
  background-image: url('karo-hintergrund.png');
  /* Klein gekachelt: scharf auf Retina, kein Strecken, Muster bleibt proportional */
  background-size: 530px auto;
  background-repeat: repeat;
  background-position: 0 0;
  padding: 4.5rem 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.page-hero--karo::before { display: none; }
/* Titel-Farbe explizit überschreiben (sonst weiss durch .page-hero h1) */
.page-hero--karo h1 { color: #2C1006; }

/* ── Home Hero (Vorschau) – kein Rahmen, grösser ── */
.page-hero--home {
  padding: 7rem 3rem;
  flex-direction: column;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.hero-home__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(7rem, 17vw, 13rem);
  font-weight: 600;
  color: #fff !important;
  line-height: 1;
  letter-spacing: 0.01em;
  position: relative; z-index: 1;
  text-shadow: 0 2px 16px rgba(60,20,0,.25);
  margin-bottom: 0.5rem;
}
.hero-home__rule {
  width: 48px;
  height: 2px;
  background: rgba(255,255,255,.7);
  margin: 0 auto 0.5rem;
  position: relative; z-index: 1;
}
.hero-home__claim {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.7rem;
  color: rgba(255,255,255,.85);
  position: relative; z-index: 1;
  text-shadow: 0 1px 8px rgba(60,20,0,.2);
}

/* ── Hero Karo Blau-Weiss (Sammlungen) ─────────── */
.page-hero--karo-blau {
  background-color: #C8D8EA;
  position: relative;
  overflow: hidden;
  padding: 4.5rem 3rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.page-hero--karo-blau::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('karo-hintergrund.png');
  background-size: 530px auto;
  background-repeat: repeat;
  background-position: 0 0;
  filter: hue-rotate(210deg) saturate(0.75) brightness(1.05);
}
.page-hero--karo-blau .page-hero__eyebrow { color: rgba(255,255,255,.7); position: relative; z-index: 1; }
.page-hero--karo-blau h1 { color: #fff; position: relative; z-index: 1; }

/* ── Hero Karo Grün (Vorratskammer) ────────────── */
.page-hero--karo-gruen {
  background-color: #8A9870;
  position: relative;
  overflow: hidden;
  padding: 4.5rem 3rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.page-hero--karo-gruen::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('karo-hintergrund.png');
  background-size: 530px auto;
  background-repeat: repeat;
  background-position: 0 0;
  filter: hue-rotate(115deg) saturate(0.6) brightness(0.92);
}
.page-hero--karo-gruen .page-hero__eyebrow { color: rgba(255,255,255,.7); position: relative; z-index: 1; }
.page-hero--karo-gruen h1 { color: #fff; position: relative; z-index: 1; }

.hero-book-frame {
  display: inline-block;
}

.hero-book {
  position: relative;
  z-index: 1;
  display: inline-block;
  text-align: center;
  background: #F2E8D8;
  padding: 3rem 4.5rem 2.6rem;
  box-shadow: 0 4px 40px rgba(28,14,6,.18);
}

.hero-book__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(4rem, 9vw, 6.5rem);
  font-weight: 600;
  color: #2C1006;
  line-height: 1;
  letter-spacing: 0.03em;
  margin-bottom: 1rem;
}
.hero-book__rule {
  width: 40px;
  height: 1.5px;
  background: #B35A4A;
  margin: 0 auto 0.9rem;
  opacity: 0.7;
}
.hero-book__claim {
  font-family: 'Instrument Sans', sans-serif;
  font-size: 0.58rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #6A4030;
  line-height: 1;
}

/* ── Stats bar ──────────────────────────────── */
.stats-bar {
  background: var(--dark);
  display: flex;
  justify-content: center;
  gap: 3rem;
  padding: 0.9rem 3rem;
}
.stat {
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.stat strong { color: #fff; font-size: 1rem; letter-spacing: 0; }

/* ── Suche ───────────────────────────────────── */
.search-row {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.5rem 0 0.6rem;
  max-width: 1280px;
  margin: 0 auto;
  border-bottom: 1px solid var(--border);
  margin-bottom: 0.6rem;
}
.search-icon {
  width: 16px;
  height: 16px;
  color: var(--light);
  flex-shrink: 0;
}
.search-input {
  font-family: 'Instrument Sans', sans-serif;
  font-size: 0.88rem;
  color: var(--dark);
  border: none;
  outline: none;
  background: transparent;
  width: 100%;
  max-width: 320px;
}
.search-input::placeholder { color: var(--light); }
.search-input::-webkit-search-cancel-button { cursor: pointer; }

/* ── Filter ─────────────────────────────────── */
.filter-section {
  background: #fff;
  border-bottom: 1px solid var(--border);
  padding: 1rem 3rem;
  position: sticky;
  top: 68px;
  z-index: 90;
}
.filter-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.4rem;
  max-width: 1280px;
  margin: 0 auto;
}
.filter-row + .filter-row { margin-top: 0.4rem; }
.filter-label {
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--light);
  width: 5rem;
  flex-shrink: 0;
}
.filter-btn {
  font-family: 'Instrument Sans', sans-serif;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  border: 1.5px solid var(--border-dark);
  background: transparent;
  color: var(--mid);
  padding: 0.28rem 0.8rem;
  border-radius: 2rem;
  cursor: pointer;
  transition: all 0.15s;
  white-space: nowrap;
}
.filter-btn:hover { border-color: var(--dark); color: var(--dark); }
.filter-btn.active {
  background: var(--dark);
  border-color: var(--dark);
  color: #fff;
}

/* ── Grid ───────────────────────────────────── */
.grid-wrapper {
  max-width: 1280px;
  margin: 0 auto;
  padding: 2.5rem 3rem;
}
.grid-meta {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 1.5rem;
}
.grid-count {
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--light);
}
.recipe-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.25rem;
}

/* ── Kategorie-Sektionen ─────────────────────── */
.kat-section { margin-bottom: 3.5rem; }
.kat-section.hidden { display: none; }

.kat-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.55rem;
  font-weight: 400;
  letter-spacing: 0.01em;
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: 1.25rem;
  padding-bottom: 0.65rem;
  border-bottom: 1px solid var(--border);
}
.kat-pip {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: currentColor;
  flex-shrink: 0;
  opacity: .75;
}
.kat-section-count {
  font-family: 'Instrument Sans', sans-serif;
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--light);
  margin-left: auto;
}

/* ── Card ───────────────────────────────────── */
.recipe-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 3px;
  overflow: hidden;
  display: block;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.recipe-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(28,24,16,.1);
}
.recipe-card.hidden { display: none; }

/* illustration area */
.card-illo {
  height: 168px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.card-illo svg {
  width: 88px;
  height: 88px;
  opacity: .92;
}
.card-illo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.card-illo img.illus-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  padding: 10px;
}

/* category color themes – unified warm beige */
.card-illo--vorrat    { background: #F5EDE6; }
.card-illo--suppe     { background: #F5EDE6; }
.card-illo--haupt     { background: #F5EDE6; }
.card-illo--beilage   { background: #F5EDE6; }
.card-illo--backen    { background: #F5EDE6; }
.card-illo--suesser   { background: #F5EDE6; }
/* Illustration thumbnails: warm amber, matches illustration paper tone */
.card-illo--illus     { background: #F5EDE6; }
/* Category accent: coloured top border on every card */
.recipe-card[data-kat="vorrat"]  { border-top: 4px solid #C45524; }
.recipe-card[data-kat="suppe"]   { border-top: 4px solid #4A7080; }
.recipe-card[data-kat="haupt"]   { border-top: 4px solid #445230; }
.recipe-card[data-kat="beilage"] { border-top: 4px solid #9A7C10; }
.recipe-card[data-kat="backen"]  { border-top: 4px solid #A06040; }
.recipe-card[data-kat="suesser"] { border-top: 4px solid #7050A0; }
.card-illo--coming    {
  background: var(--bg);
  background-image: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 6px,
    rgba(28,24,16,.04) 6px,
    rgba(28,24,16,.04) 7px
  );
}

/* coming soon overlay */
.card-illo--coming::after {
  content: 'Kommt bald';
  position: absolute;
  font-family: 'Instrument Sans', sans-serif;
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--light);
  background: rgba(249,248,244,.9);
  border: 1px solid var(--border-dark);
  padding: 0.3rem 0.8rem;
  border-radius: 2rem;
}

.card-nr {
  position: absolute;
  top: 10px;
  left: 12px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.72rem;
  color: rgba(28,24,16,.3);
  font-weight: 600;
}

/* body */
.card-body { padding: 1rem 1.1rem 1.2rem; }
.card-cat {
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 0.4rem;
}
.cat--vorrat  { color: #C45524; }
.cat--suppe   { color: #4A7080; }
.cat--haupt   { color: #445230; }
.cat--beilage { color: #9A7C10; }
.cat--backen  { color: #A06040; }
.cat--suesser { color: #7050A0; }
.cat--coming  { color: var(--light); }

.card-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--dark);
  line-height: 1.25;
  margin-bottom: 0.1rem;
}
.card-coming .card-title { color: var(--light); }

.card-von {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 0.88rem;
  color: var(--light);
  margin-bottom: 0.4rem;
}
.card-tags { display: flex; flex-wrap: wrap; gap: 0.35rem; }
.card-tag {
  font-size: 0.6rem;
  font-weight: 500;
  padding: 0.18rem 0.55rem;
  border-radius: 2px;
  background: var(--bg);
  color: var(--mid);
  border: 1px solid var(--border);
}

/* ── Collections ─────────────────────────────── */
.collections-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.25rem;
  max-width: 1280px;
  margin: 3rem auto;
  padding: 0 3rem;
}
.coll-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 3px;
  overflow: hidden;
  cursor: pointer;
  display: block;
  text-decoration: none;
  color: var(--ink);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.coll-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(28,24,16,.1); }
.coll-card__img {
  width: 100%;
  height: 320px;
}
.coll-card__img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
}
.coll-card__body {
  padding: 1.25rem 1.4rem 1.5rem;
}
.coll-count {
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--light);
  margin-bottom: 0.3rem;
}
.coll-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.55rem;
  font-weight: 400;
  color: var(--ink);
  line-height: 1.15;
  margin-bottom: 0.3rem;
}
.coll-desc { font-size: 0.82rem; color: var(--light); line-height: 1.5; }

/* ── Recipe page ─────────────────────────────── */
.rezept-hero {
  position: relative;
  overflow: hidden;
  padding: 4rem 3rem 3.5rem;
  text-align: center;
}
/* Gingham-Titelbild – Basisstil, Farbe per Kategorie-Klasse */
.rezept-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('karo-hintergrund.png') 0 0 / 530px auto repeat;
  filter: hue-rotate(115deg) saturate(0.82) brightness(0.9); /* Fallback: Grün */
  z-index: 0;
}
/* Vorräte & Eingemachtes → Burgund/Pflaume */
.rezept-hero--vorrat::before   { filter: hue-rotate(330deg) saturate(0.88) brightness(0.88); }
/* Suppen & Saucen → Petrol/Blauteal */
.rezept-hero--suppe::before    { filter: hue-rotate(180deg) saturate(0.80) brightness(0.88); }
/* Hauptgerichte → Waldgrün */
.rezept-hero--haupt::before    { filter: hue-rotate(115deg) saturate(0.82) brightness(0.90); }
/* Beilagen & Salate → Olive/Gelbgrün */
.rezept-hero--beilage::before  { filter: hue-rotate(70deg)  saturate(0.78) brightness(0.90); }
/* Backen → Warmes Amber/Weizen */
.rezept-hero--backen::before   { filter: hue-rotate(30deg)  saturate(0.80) brightness(0.88); }
/* Süsses → Beere/Malve */
.rezept-hero--suess::before    { filter: hue-rotate(270deg) saturate(0.80) brightness(0.88); }
/* Dunkler Schleier für Lesbarkeit */
.rezept-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(8, 28, 8, 0.20);
  z-index: 1;
}
.rezept-hero h1,
.rezept-hero .rezept-hero__sub {
  position: relative;
  z-index: 2;
}
.rezept-hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 300;
  color: #F4EDE0;
  line-height: 1.05;
  letter-spacing: 0.01em;
  margin-bottom: 0.15rem;
  text-shadow: 0 2px 10px rgba(0,25,0,.4);
}
/* Mengen-Scaler */
.portion-scaler {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  vertical-align: middle;
}
.scaler-btn {
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
  border: 1px solid rgba(244,237,224,0.6);
  background: rgba(255,255,255,0.12);
  color: rgba(244,237,224,0.88);
  cursor: pointer;
  font-size: 1.05rem;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-style: normal;
  transition: background 0.15s;
  padding: 0;
}
.scaler-btn:hover { background: rgba(255,255,255,0.25); }
.scaler-btn:disabled { opacity: 0.3; cursor: default; }
#scaler-val {
  min-width: 5rem;
  text-align: center;
  font-style: italic;
}

/* Von / Menge gestapelt */
.rezept-hero__sub {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.15rem;
  color: rgba(244, 237, 224, 0.88);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  line-height: 1.7;
}
.rezept-hero__dot {
  font-style: normal;
  opacity: 0.45;
  font-size: 1.3rem;
  line-height: 0.9;
  display: block;
}

/* Zutaten-Block: Salbei-grün */
.zutaten-block .section-label {
  color: var(--ivy);
  border-bottom-color: rgba(64,101,74,.28);
}
/* Zubereitung-Block: Foxglove/Terracotta (bleibt wie bisher) */
.zubereitung-block .section-label {
  color: var(--foxglove);
}

/* ── Photo Album Frame ───────────────────────── */
.photo-album {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 3rem auto 0.5rem;
  padding: 0 2.5rem;
}

.photo-frame {
  position: relative;
  background: #fffef8;
  padding: 12px;
  border: 1px solid rgba(28,24,16,.18);
  box-shadow:
    0 2px 6px rgba(28,24,16,.10),
    3px 12px 36px rgba(28,24,16,.20);
  max-width: min(520px, 100%);
  transform: rotate(-1.2deg);
}

.photo-frame img {
  display: block;
  width: 100%;
  height: auto;
}


/* Carousel inside frame */
.photo-frame .carousel-track-wrap {
  overflow: hidden;
  transition: aspect-ratio 0.4s cubic-bezier(.4,0,.2,1);
}
.photo-frame .carousel-track {
  display: flex;
  transition: transform 0.4s cubic-bezier(.4,0,.2,1);
  will-change: transform;
}
.photo-frame .carousel-slide {
  min-width: 100%;
}
.photo-frame .carousel-slide img {
  display: block;
  width: 100%;
  height: auto;
}
.photo-frame .carousel-btn {
  position: absolute;
  top: calc(50% - 21px - 15px);
  transform: translateY(-50%);
  background: rgba(255,254,248,.88);
  border: 1px solid rgba(28,24,16,.12);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dark);
  transition: box-shadow 0.15s, background 0.15s;
  z-index: 10;
  padding: 0;
}
.photo-frame .carousel-btn:hover {
  background: #fff;
  box-shadow: 0 3px 14px rgba(28,24,16,.2);
}
.photo-frame .carousel-btn--prev { left: 6px; }
.photo-frame .carousel-btn--next { right: 6px; }
.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1rem;
}
.carousel-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--border-dark);
  cursor: pointer;
  transition: background 0.18s;
  border: none;
  padding: 0;
}
.carousel-dot.active { background: var(--foxglove); }

/* Legacy single photo (fallback) */
.rezept-photo {
  margin: 2rem auto 0;
  padding: 0 3rem;
  text-align: center;
}
.rezept-photo img {
  max-height: 520px;
  max-width: min(100%, 820px);
  width: auto;
  height: auto;
  display: inline-block;
}

.rezept-story {
  max-width: 620px;
  margin: 2.5rem auto;
  padding: 0 3rem;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.12rem;
  line-height: 1.8;
  color: var(--mid);
}

.rezept-zeiten {
  display: flex;
  justify-content: center;
  max-width: 560px;
  margin: 2rem auto;
  padding: 0 3rem;
}
.zeit-item {
  flex: 1;
  text-align: center;
  padding: 1.25rem 1rem;
  border: 1px solid var(--border);
}
.zeit-item + .zeit-item { border-left: none; }
.zeit-label { font-size: 0.6rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--light); margin-bottom: 0.3rem; }
.zeit-value { font-family: 'Playfair Display', serif; font-size: 1.1rem; font-weight: 700; color: var(--dark); }

.rezept-divider {
  max-width: 560px;
  margin: 0 auto 2rem;
  height: 1px;
  background: var(--border);
  position: relative;
}
.rezept-divider::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  width: 6px;
  height: 6px;
  background: var(--foxglove);
  border-radius: 50%;
}

.rezept-main {
  max-width: 960px;
  margin: 2.5rem auto 4rem;
  padding: 0 3rem;
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 5rem;
  align-items: start;
}
.section-label {
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--foxglove);
  margin-bottom: 1.25rem;
  padding-bottom: 0.6rem;
  border-bottom: 1px solid var(--border);
}
.zutaten-gruppe { margin-bottom: 1.5rem; }
.zutaten-gruppe__label {
  font-size: 0.65rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--light); margin-bottom: 0.5rem;
}
.zutaten-liste { list-style: none; }
.zutaten-liste li {
  font-size: 0.9rem;
  padding: 0.45rem 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}
.zutaten-liste li .menge { color: var(--light); white-space: normal; font-size: 0.85rem; text-align: right; flex-shrink: 0; max-width: 50%; }
.menge-note { display: block; font-size: 0.78rem; opacity: 0.5; margin-top: 0.15rem; }
.sammlung-banner { display:flex; align-items:center; justify-content:space-between; background:rgba(244,237,224,0.08); border:1px solid rgba(244,237,224,0.18); border-radius:6px; padding:0.6rem 1rem; margin-bottom:1rem; font-size:0.88rem; color:var(--light); }
.sammlung-banner a { color:var(--light); opacity:0.6; text-decoration:none; } .sammlung-banner a:hover { opacity:1; }

.schritt { display: grid; grid-template-columns: 2.25rem 1fr; gap: 1rem; margin-bottom: 2rem; }
.schritt-nr {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--border-dark);
  line-height: 1;
  padding-top: 0.05rem;
}
.schritt-text { font-size: 0.95rem; line-height: 1.75; color: var(--dark); }

.mise {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}
.mise h3 { font-size: 0.62rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--buttercup); margin-bottom: 0.9rem; }
.mise-list { list-style: none; }
.mise-list li { font-size: 0.88rem; color: var(--mid); padding: 0.3rem 0 0.3rem 1rem; position: relative; border-bottom: 1px solid var(--border); }
.mise-list li:last-child { border-bottom: none; }
.mise-list li::before { content: '–'; position: absolute; left: 0; color: var(--foxglove); }

.rezept-notiz {
  margin-top: 2rem;
  padding: 1rem 1.25rem;
  background: var(--daisy);
  border-left: 2px solid var(--foxglove);
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1rem;
  color: var(--mid);
  line-height: 1.6;
}

.rezept-secondary-photo {
  max-width: 500px;
  margin: 0 auto 3rem;
  padding: 0 3rem;
}
.rezept-secondary-photo img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  object-position: center;
  display: block;
  border-radius: 2px;
}

/* ── Back nav ────────────────────────────────── */
.back-nav { max-width: 1280px; margin: 0 auto; padding: 1.25rem 3rem 0; }
.back-nav a {
  font-size: 0.68rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--light); text-decoration: none;
  transition: color 0.15s;
}
.back-nav a:hover { color: var(--dark); }

/* ── Footer ─────────────────────────────────── */
.site-footer {
  margin-top: 4rem;
  border-top: 1px solid var(--border);
  padding: 2rem 3rem;
  text-align: center;
}
.site-footer strong {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-weight: 400;
  font-style: italic;
  letter-spacing: 0.04em;
  color: var(--light);
}


/* ═══════════════════════════════════════════════
   VORRATSKAMMER / EINKAUFSLISTE
   ═══════════════════════════════════════════════ */

.einkauf-page {
  max-width: 820px;
  margin: 0 auto;
  padding: 4rem 3rem 6rem;
}

/* Header */
.einkauf-header {
  text-align: center;
  margin-bottom: 3.5rem;
}
.einkauf-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.4rem, 6vw, 4rem);
  font-weight: 300;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--dark);
  margin: 0 0 0.6rem;
  line-height: 1.1;
}
.einkauf-sub {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.05rem;
  color: var(--light);
  margin: 0 0 1.8rem;
  letter-spacing: 0.03em;
}
.einkauf-print-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-family: 'Instrument Sans', sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--light);
  background: none;
  border: 1px solid var(--border-dark);
  border-radius: 2px;
  padding: 0.5rem 1.1rem;
  cursor: pointer;
  transition: color 0.15s, border-color 0.15s;
}
.einkauf-print-btn:hover {
  color: var(--dark);
  border-color: var(--dark);
}

/* Grid: 2 Spalten, Kategorien paarweise in derselben Zeile → Titel immer bündig */
.einkauf-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 3.5rem;
  align-items: start;
}

/* Kategorie-Block */
.einkauf-kat {
  margin-bottom: 2.8rem;
}
.einkauf-kat-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--dark);
  text-align: center;
  margin: 0 0 1rem;
}

/* Liste */
.einkauf-liste {
  list-style: none;
  padding: 0;
  margin: 0;
}
.einkauf-liste li {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  line-height: 1.35;
  color: var(--dark);
  padding: 0.42rem 0 0.42rem 1.1rem;
  border-bottom: 1px solid rgba(28,24,16,.11);
  position: relative;
  min-height: 2.1rem;
}
.einkauf-liste li:not(.leer)::before {
  content: '•';
  position: absolute;
  left: 0;
  top: 0.42rem;
  color: var(--dark);
  opacity: 0.55;
}
.einkauf-liste li.leer {
  /* empty line – only the border shows */
}

/* ── Print ──────────────────────────────────── */
@media print {
  .site-header,
  .site-footer,
  .einkauf-print-btn {
    display: none !important;
  }
  body {
    background: #fff;
    cursor: default;
  }
  .einkauf-page {
    padding: 1.5cm 1.5cm 2cm;
    max-width: 100%;
  }
  .einkauf-columns {
    column-count: 2;
    column-gap: 2cm;
  }
  .einkauf-title {
    font-size: 2.6rem;
  }
  .einkauf-liste li {
    font-size: 10pt;
  }
}

@media (max-width: 600px) {
  .einkauf-columns {
    grid-template-columns: 1fr;
  }
}

/* ── Hamburger Button ────────────────────────── */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px 4px;
  flex-shrink: 0;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: transform 0.25s, opacity 0.25s;
}

/* ── Mobile ──────────────────────────────────── */
@media (max-width: 700px) {

  /* Header */
  .site-header {
    padding: 0 1rem;
    height: 56px;
  }
  .site-logo-text {
    font-size: 1.2rem;
    white-space: nowrap;
  }
  .hamburger {
    display: flex;
  }
  body.nav-open .hamburger span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  body.nav-open .hamburger span:nth-child(2) {
    opacity: 0;
  }
  body.nav-open .hamburger span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  /* Nav as dropdown */
  nav {
    position: absolute;
    top: 56px;
    left: 0;
    right: 0;
    background: #fff;
    border-bottom: 1px solid var(--border);
    z-index: 99;
    display: none;
    box-shadow: 0 4px 16px rgba(28,24,16,.08);
  }
  body.nav-open nav {
    display: block;
  }
  .site-nav {
    flex-direction: column;
    gap: 0;
    padding: 0.25rem 1.5rem;
  }
  .site-nav li {
    border-bottom: 1px solid var(--border);
  }
  .site-nav li:last-child {
    border-bottom: none;
  }
  .site-nav a {
    display: block;
    padding: 0.85rem 0;
    font-size: 0.78rem;
  }

  /* Filter */
  .filter-section {
    padding: 0.75rem 1rem;
    top: 56px;
  }
  .search-input {
    max-width: 100%;
  }

  /* Hero */
  .page-hero {
    padding: 3rem 1.5rem 2.5rem;
  }
  /* Home Hero: kompakter wie Sammlungen/Vorratskammer */
  .page-hero--home {
    padding: 2.5rem 1.5rem;
  }
  .hero-home__title {
    font-size: clamp(2.2rem, 13vw, 4rem);
  }
  .hero-home__claim {
    font-size: 1rem;
  }
  /* Karo-Muster kleiner auf Mobile (für alle Seiten) */
  .page-hero--karo {
    background-size: 265px auto;
  }
  .page-hero--karo-blau::before,
  .page-hero--karo-gruen::before {
    background-size: 265px auto;
  }

  /* Grid */
  .grid-wrapper {
    padding: 1.5rem 1rem;
  }
  /* Mindestens 2 Rezepte pro Zeile */
  .recipe-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.6rem;
  }
  .card-illo {
    height: 110px;
  }
  .card-illo svg {
    width: 60px;
    height: 60px;
  }
  .card-body {
    padding: 0.65rem 0.75rem 0.8rem;
  }
  .card-title {
    font-size: 1rem;
  }

  /* Sammlungen */
  .collections-grid {
    grid-template-columns: 1fr;
    gap: 0.75rem;
    padding: 1.5rem 1rem;
    margin: 1.5rem auto;
  }

  /* Rezeptseite */
  .back-nav {
    padding: 0.75rem 1.25rem 0;
  }
  .rezept-hero {
    padding: 2.5rem 1.25rem 2rem;
  }
  .photo-album {
    padding: 0 1rem;
    margin: 2rem auto 0.5rem;
  }
  .rezept-story {
    padding: 0 1.25rem;
    margin: 1.5rem auto;
    font-size: 1rem;
  }
  .rezept-zeiten {
    padding: 0 1rem;
    margin: 1.5rem auto;
  }
  .rezept-divider {
    margin: 0 1.25rem 1.5rem;
  }
  .rezept-main {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    padding: 0 1.25rem;
    margin: 2rem auto 3rem;
  }
  .rezept-photo {
    padding: 0 1rem;
  }
}
