/* ============================================================
   Sharon Wetton Thermomix Theme — main.css
   ============================================================ */

:root {
  --sage:        #606f4c;
  --sage-dark:   #434f30;
  --sage-deep:   #2e3820;
  --sage-light:  #a8b896;
  --sage-pale:   #dde5d4;
  --cream:       #f7f2e8;
  --cream-soft:  #fbf8f2;
  --cream-warm:  #f2ead8;
  --mauve:       #7a5c6e;
  --mauve-light: #c4a0b4;
  --mauve-pale:  #eedde8;
  --ink:         #28251e;
  --ink-soft:    #6b6759;
  --line:        rgba(40,37,30,0.11);
  --r-xl:        32px;
  --r-lg:        22px;
  --r-md:        14px;
  --font-d:      'Bricolage Grotesque', sans-serif;
  --font-b:      'Inter', sans-serif;
  --font-m:      'JetBrains Mono', monospace;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  background: var(--cream);
}
body {
  font-family: var(--font-b); background: var(--cream); color: var(--ink);
  line-height: 1.65; -webkit-font-smoothing: antialiased; overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

/* Grain overlay */
body::after {
  content: ""; position: fixed; inset: 0; pointer-events: none; z-index: 9998;
  opacity: .028; mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ── Utilities ── */
.container { max-width: 1160px; margin: 0 auto; padding: 0 32px; }

.eyebrow {
  font-family: var(--font-b); font-size: .73rem; letter-spacing: .18em;
  text-transform: uppercase; color: var(--sage);
  display: flex; align-items: center; gap: 10px; margin-bottom: 14px;
}
.eyebrow::before {
  content: ""; width: 24px; height: 1.5px;
  background: var(--mauve); display: inline-block; border-radius: 2px;
}

h1, h2, h3 { font-family: var(--font-d); font-weight: 700; color: var(--ink); }

.reveal {
  opacity: 0; transform: translateY(26px);
  transition: opacity .75s cubic-bezier(.22,.61,.36,1), transform .75s cubic-bezier(.22,.61,.36,1);
}
.reveal.in { opacity: 1; transform: translateY(0); }

.blob { position: absolute; border-radius: 50%; filter: blur(64px); pointer-events: none; z-index: 0; }
.blob-sage  { background: rgba(96,111,76,.12); }
.blob-mauve { background: rgba(122,92,110,.10); }

/* ── NAV ── */
#nav {
  position: sticky; top: 0; z-index: 200;
  padding: 16px 0;
  /* Start with cream so iOS overscroll top gap matches body */
  background: var(--cream);
  transition: background .35s, box-shadow .35s, padding .35s;
}
#nav.scrolled {
  background: rgba(247,242,232,.92);
  backdrop-filter: blur(16px) saturate(160%);
  box-shadow: 0 1px 0 var(--line);
  padding: 10px 0;
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.logo { font-family: var(--font-d); font-weight: 800; font-size: 1.2rem; line-height: 1.1; }
.logo sub {
  display: block; font-family: var(--font-b); font-size: .65rem;
  letter-spacing: .15em; text-transform: uppercase; color: var(--sage); font-weight: 400; margin-top: 2px;
}

/* Desktop nav links — pill hover */
.nav-links { display: flex; gap: 4px; align-items: center; }
.nav-links a {
  font-size: .87rem; font-weight: 500; color: var(--ink);
  padding: 7px 14px; border-radius: 100px; position: relative; transition: color .22s;
}
.nav-links a .nav-pill-bg {
  position: absolute; inset: 0; border-radius: 100px; background: var(--sage-pale); opacity: 0;
  transform: scale(.88); transition: opacity .22s, transform .22s cubic-bezier(.34,1.56,.64,1);
}
.nav-links a:hover .nav-pill-bg,
.nav-links a.active .nav-pill-bg { opacity: 1; transform: scale(1); }
.nav-links a:hover,
.nav-links a.active { color: var(--sage-dark); }
.nav-links a span.nav-text { position: relative; z-index: 1; }

.btn-book-nav {
  display: flex; align-items: center; gap: 7px;
  background: var(--sage); color: #fff; padding: 10px 20px; border-radius: 100px;
  font-weight: 600; font-size: .84rem; border: none; cursor: pointer;
  transition: background .22s, transform .22s; font-family: var(--font-b);
}
.btn-book-nav:hover { background: var(--sage-dark); transform: translateY(-1px); }
.btn-book-nav i { font-size: 1rem; }

/* Mobile burger + icon-only CTA — hidden on desktop */
.mobile-nav-right { display: none; align-items: center; gap: 10px; }

.btn-book-mobile {
  padding: 10px 14px !important;
  gap: 0 !important;
}
.btn-book-mobile i { font-size: 1.1rem; }

.burger {
  display: flex; flex-direction: column; justify-content: center; gap: 5px;
  width: 42px; height: 42px; border-radius: 12px;
  border: 1.5px solid var(--line); background: transparent;
  cursor: pointer; padding: 10px; transition: border-color .22s, background .22s;
}
.burger:hover { border-color: var(--sage); background: var(--sage-pale); }
.burger span {
  display: block; height: 1.5px; background: var(--ink); border-radius: 2px;
  transition: transform .32s cubic-bezier(.4,0,.2,1), opacity .22s, width .22s;
  transform-origin: center;
}
.burger span:nth-child(3) { width: 60%; }
/* open state */
.burger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.burger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); width: 100%; }

/* ── FULLSCREEN MOBILE MENU ── */
.mobile-menu {
  position: fixed; inset: 0; z-index: 9000;
  background: var(--sage-deep);
  display: flex; flex-direction: column;
  transform: translateX(100%);
  transition: transform .48s cubic-bezier(.77,0,.175,1);
  pointer-events: none;
}
.mobile-menu.open {
  transform: translateX(0);
  pointer-events: all;
}
body.menu-open { overflow: hidden; }

.mobile-menu-inner {
  display: flex; flex-direction: column;
  height: 100%; padding: 28px 36px 40px;
  justify-content: space-between;
}

.mobile-menu-top {
  display: flex; justify-content: space-between; align-items: center;
}
.mobile-menu-logo {
  font-family: var(--font-d); font-weight: 800; font-size: 1.15rem; color: #fff;
}
.mobile-menu-close {
  width: 44px; height: 44px; border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,.25); background: transparent;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 1.1rem; cursor: pointer;
  transition: background .22s, border-color .22s;
}
.mobile-menu-close:hover { background: rgba(255,255,255,.12); border-color: rgba(255,255,255,.5); }

.mobile-menu-links {
  display: flex; flex-direction: column;
  gap: 0; margin: 40px 0;
}
.mm-link {
  display: flex; align-items: baseline; gap: 18px;
  font-family: var(--font-d); font-size: clamp(2rem,8vw,3.2rem);
  font-weight: 700; color: rgba(255,255,255,.9); line-height: 1.2;
  padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,.1);
  text-decoration: none;
  transition: color .22s, padding-left .22s;
  /* stagger animate in */
  opacity: 0; transform: translateX(24px);
  transition: opacity .4s, transform .4s, color .22s, padding-left .22s;
}
.mobile-menu.open .mm-link { opacity: 1; transform: translateX(0); }
.mobile-menu.open .mm-link:nth-child(1) { transition-delay: .1s; }
.mobile-menu.open .mm-link:nth-child(2) { transition-delay: .16s; }
.mobile-menu.open .mm-link:nth-child(3) { transition-delay: .22s; }
.mobile-menu.open .mm-link:nth-child(4) { transition-delay: .28s; }
.mobile-menu.open .mm-link:nth-child(5) { transition-delay: .34s; }
.mm-link:hover { color: #fff; padding-left: 8px; }
.mm-link:hover .mm-num { color: var(--mauve-light); }
.mm-num {
  font-family: var(--font-b); font-size: .7rem; letter-spacing: .14em;
  color: rgba(255,255,255,.35); flex-shrink: 0; position: relative; top: -2px;
  transition: color .22s;
}

.mobile-menu-footer {
  display: flex; flex-direction: column; gap: 20px;
}
.mobile-book-cta {
  width: 100%; justify-content: center;
  font-size: 1rem !important; padding: 16px !important;
}
.mm-social { display: flex; gap: 14px; }
.mm-social a {
  width: 44px; height: 44px; border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,.25);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; color: #fff;
  transition: background .22s, border-color .22s;
}
.mm-social a:hover { background: var(--mauve); border-color: var(--mauve); }
.mm-city {
  font-family: var(--font-b); font-size: .72rem; letter-spacing: .1em;
  text-transform: uppercase; color: rgba(255,255,255,.35);
  display: flex; align-items: center; gap: 7px;
}
.mm-city i { font-size: .85rem; }

/* ── HERO ── */
.hero-wrap {
  display: grid; grid-template-columns: 1fr 1fr;
  min-height: 94vh; padding-top: 40px; padding-bottom: 60px;
  gap: 40px; align-items: center; position: relative;
}
.blob-h1 { width: 560px; height: 560px; top: -160px; left: -180px; }
.blob-h2 { width: 400px; height: 400px; bottom: -80px; left: 30%; }
.hero-text { position: relative; z-index: 2; }
.hero-h1 {
  font-size: clamp(2.8rem, 5.5vw, 4.6rem); line-height: 1.04;
  letter-spacing: -.02em; margin-bottom: 22px;
}
.hero-h1 .accent {
  display: inline-block;
  background: linear-gradient(135deg, var(--sage) 0%, var(--mauve) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.hero-sub { font-size: 1.05rem; color: var(--ink-soft); max-width: 44ch; margin-bottom: 36px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 44px; }

.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 26px; border-radius: 100px; font-weight: 600; font-size: .93rem;
  border: none; cursor: pointer; transition: all .24s ease; font-family: var(--font-b);
}
.btn-primary { background: var(--sage); color: #fff; }
.btn-primary:hover { background: var(--sage-dark); transform: translateY(-2px); box-shadow: 0 8px 24px -8px rgba(67,79,48,.45); }
.btn-secondary { background: transparent; color: var(--ink); border: 1.5px solid var(--line); }
.btn-secondary:hover { border-color: var(--sage); color: var(--sage); }
.btn i { font-size: 1.1rem; }

.hero-stats { display: flex; gap: 32px; }
.stat-item .num { font-family: var(--font-d); font-size: 2rem; font-weight: 800; color: var(--ink); line-height: 1; }
.stat-item .lbl { font-size: .78rem; color: var(--ink-soft); margin-top: 3px; }

.hero-photo-wrap { position: relative; z-index: 2; display: flex; justify-content: flex-end; }
.hero-photo-frame { position: relative; width: 480px; max-width: 100%; }
.hero-photo-bg {
  position: absolute; inset: 0; background: var(--sage-pale);
  border-radius: 60% 40% 55% 45% / 50% 55% 45% 50%;
  transform: scale(1.08); z-index: 0;
}
.hero-photo-frame img {
  position: relative; z-index: 1; width: 100%;
  border-radius: 48% 52% 44% 56% / 46% 54% 46% 54%;
  object-fit: cover; object-position: center top;
}
.hero-badge {
  position: absolute; bottom: 32px; left: -24px; z-index: 3;
  background: #fff; border-radius: var(--r-lg); padding: 14px 18px;
  box-shadow: 0 16px 40px -12px rgba(40,37,30,.22);
  display: flex; align-items: center; gap: 12px; min-width: 200px;
  /* button reset */
  border: none; cursor: pointer; text-align: left;
  transition: transform .22s, box-shadow .22s;
}
.hero-badge:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 48px -14px rgba(40,37,30,.32);
}
.hero-badge .pulse {
  width: 10px; height: 10px; border-radius: 50%; background: var(--mauve);
  flex-shrink: 0; animation: ping 2.2s infinite;
}
@keyframes ping {
  0%,100% { box-shadow: 0 0 0 0 rgba(122,92,110,.5); }
  60%      { box-shadow: 0 0 0 9px rgba(122,92,110,0); }
}
.hero-badge .badge-text { font-family: var(--font-b); font-size: .72rem; letter-spacing: .08em; line-height: 1.4; }
.hero-badge .badge-text strong { display: block; font-size: .82rem; color: var(--ink); }
.hero-badge .badge-text span { color: var(--ink-soft); }

.ticker-band { border-top: 1.5px solid var(--line); margin-top: 52px; padding: 20px 0; overflow: hidden; white-space: nowrap; }
.ticker-track { display: inline-flex; gap: 48px; animation: scrollTicker 36s linear infinite; }
.ticker-track .item {
  font-family: var(--font-b); font-size: .75rem; letter-spacing: .08em;
  text-transform: uppercase; color: var(--ink-soft);
  display: flex; align-items: center; gap: 10px;
}
.ticker-track .item::before { content: "✦"; color: var(--mauve); font-size: .6rem; }
@keyframes scrollTicker { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ── ÜBER MICH ── */
#ueber-mich { padding: 100px 0; }
.about-grid { display: grid; grid-template-columns: 1fr 1.15fr; gap: 72px; align-items: center; }
.about-photos { position: relative; height: 520px; }
.about-card {
  position: absolute; border-radius: var(--r-xl); overflow: hidden;
  box-shadow: 0 20px 50px -16px rgba(40,37,30,.25); border: 4px solid #fff;
}
.about-card img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.card-main { width: 300px; height: 400px; top: 0; left: 0; transform: rotate(-2.5deg); z-index: 2; }
.card-sec  { width: 240px; height: 310px; bottom: 0; right: 0; transform: rotate(2.8deg);  z-index: 3; }
.about-chip {
  position: absolute; bottom: 60px; left: 50%; transform: translateX(-50%) rotate(-1deg);
  background: var(--sage-deep); color: #fff; border-radius: 100px; padding: 10px 20px;
  font-family: var(--font-b); font-size: .7rem; letter-spacing: .12em; text-transform: uppercase;
  white-space: nowrap; z-index: 4; box-shadow: 0 8px 24px -6px rgba(46,56,32,.4);
}
.about-text h2 { font-size: clamp(1.9rem,3.2vw,2.8rem); line-height: 1.14; margin-bottom: 20px; }
.about-text p  { color: var(--ink-soft); margin-bottom: 14px; font-size: 1rem; }
.facts {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1px;
  background: var(--line); border: 1px solid var(--line);
  border-radius: var(--r-md); overflow: hidden; margin-top: 28px;
}
.fact { background: var(--cream-soft); padding: 16px 18px; }
.fact .lbl { font-family: var(--font-b); font-size: .65rem; letter-spacing: .14em; text-transform: uppercase; color: var(--sage); margin-bottom: 5px; }
.fact .val { font-family: var(--font-d); font-size: 1.1rem; font-weight: 700; }

/* ── ANGEBOT ── */
#angebot { padding: 100px 0; background: var(--cream-soft); }
.offer-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 28px; margin-top: 50px; }
.offer-card {
  background: #fff; border-radius: var(--r-lg); padding: 34px 30px 28px;
  border: 1px solid var(--line); display: flex; flex-direction: column; gap: 14px;
  position: relative; overflow: hidden; transition: transform .3s, box-shadow .3s;
}
.offer-card:hover { transform: translateY(-6px); box-shadow: 0 24px 52px -20px rgba(40,37,30,.22); }
.offer-card::before {
  content: ""; position: absolute; top: -1px; left: 0; right: 0; height: 14px;
  background: var(--cream-soft);
  -webkit-mask: radial-gradient(circle 7px at 7px 7px, #000 7px, transparent 7.5px);
  mask: radial-gradient(circle 7px at 7px 7px, #000 7px, transparent 7.5px);
  -webkit-mask-size: 14px 14px; mask-size: 14px 14px;
  -webkit-mask-repeat: repeat-x; mask-repeat: repeat-x;
}
.offer-icon { width: 52px; height: 52px; border-radius: 16px; background: var(--sage-pale); color: var(--sage-dark); display: flex; align-items: center; justify-content: center; font-size: 1.5rem; }
.offer-card h3 { font-family: var(--font-d); font-size: 1.3rem; line-height: 1.22; }
.offer-card p  { color: var(--ink-soft); font-size: .96rem; flex: 1; }
.offer-tags { display: flex; flex-wrap: wrap; gap: 6px; border-top: 1px dashed var(--line); padding-top: 14px; margin-top: 4px; }
.offer-tags span { font-family: var(--font-b); font-size: .68rem; letter-spacing: .04em; background: var(--cream); border-radius: 100px; padding: 4px 11px; color: var(--ink-soft); }

/* ── HIGHLIGHT / SHOWKOCHEN ── */
#showkochen { padding: 0; }
.hl-band { margin: 0 20px; border-radius: var(--r-xl); overflow: hidden; position: relative; min-height: 480px; display: flex; align-items: center; }
.hl-band img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hl-band::after { content: ""; position: absolute; inset: 0; background: linear-gradient(130deg,rgba(46,56,32,.93) 0%,rgba(46,56,32,.55) 55%,rgba(46,56,32,.12) 100%); }
.hl-inner { position: relative; z-index: 2; padding: clamp(36px,7vw,80px); max-width: 600px; color: #fff; }
.hl-inner .eyebrow { color: var(--mauve-light); }
.hl-inner .eyebrow::before { background: rgba(255,255,255,.6); }
.hl-inner blockquote { font-family: var(--font-d); font-size: clamp(1.4rem,2.6vw,2rem); line-height: 1.44; font-weight: 600; }
.hl-inner cite { display: block; margin-top: 20px; font-family: var(--font-b); font-size: .76rem; letter-spacing: .1em; color: var(--sage-light); font-style: normal; }
.btn-book-hl {
  margin-top: 32px; display: inline-flex; align-items: center; gap: 8px;
  background: var(--mauve); color: #fff; padding: 13px 24px; border-radius: 100px;
  font-weight: 600; font-size: .9rem; border: none; cursor: pointer;
  transition: all .24s; font-family: var(--font-b);
}
.btn-book-hl:hover { background: #614856; transform: translateY(-2px); }

/* ── KONTAKT / MAP ── */
#kontakt { padding: 100px 0; }
.loc-grid {
  display: grid; grid-template-columns: 1fr 1.35fr;
  border-radius: var(--r-xl); overflow: hidden;
  border: 1px solid var(--line); box-shadow: 0 24px 60px -24px rgba(40,37,30,.18);
}
.loc-left { background: var(--sage-deep); color: #fff; padding: clamp(32px,5vw,56px); display: flex; flex-direction: column; justify-content: space-between; gap: 28px; }
.loc-left .eyebrow { color: var(--sage-light); }
.loc-left .eyebrow::before { background: var(--mauve-light); }
.loc-left h2 { font-family: var(--font-d); font-size: clamp(1.6rem,2.6vw,2.2rem); color: #fff; }
.loc-left p  { color: rgba(255,255,255,.7); font-size: .95rem; max-width: 36ch; }
.contact-rows { display: flex; flex-direction: column; gap: 12px; }
.c-row {
  display: flex; align-items: center; gap: 12px; font-size: .92rem;
  color: rgba(255,255,255,.85); padding-bottom: 12px;
  border-bottom: 1px solid rgba(255,255,255,.1);
  transition: color .2s, padding-left .2s;
}
.c-row:hover { color: var(--mauve-light); padding-left: 4px; }
.c-icon { width: 34px; height: 34px; border-radius: 9px; background: rgba(255,255,255,.09); display: flex; align-items: center; justify-content: center; font-size: 1rem; flex-shrink: 0; }
.social-row { display: flex; gap: 10px; }
.soc-a {
  width: 42px; height: 42px; border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,.22);
  display: flex; align-items: center; justify-content: center; font-size: 1.1rem;
  transition: background .22s, border-color .22s, transform .22s; color: #fff;
}
.soc-a:hover { background: var(--mauve); border-color: var(--mauve); transform: translateY(-3px); }
#map { width: 100%; min-height: 440px; filter: sepia(10%) saturate(105%); }

.pulse-mk { position: relative; width: 20px; height: 20px; }
.pulse-mk .core { position: absolute; inset: 3px; background: var(--mauve); border-radius: 50%; border: 2.5px solid #fff; box-shadow: 0 3px 10px rgba(40,37,30,.3); }
.pulse-mk .ring { position: absolute; inset: 0; border-radius: 50%; background: rgba(122,92,110,.45); animation: mkPulse 2.4s infinite ease-out; }
@keyframes mkPulse { 0% { transform: scale(1); opacity: .7; } 100% { transform: scale(3.2); opacity: 0; } }

/* ── FAQ ── */
#faq { padding: 100px 0; background: var(--cream-warm); }
.faq-wrap { max-width: 740px; }
details.faq-item { border-bottom: 1.5px solid var(--line); }
details.faq-item summary {
  list-style: none; cursor: pointer; padding: 24px 0;
  display: flex; justify-content: space-between; align-items: center; gap: 18px;
  font-family: var(--font-d); font-weight: 700; font-size: 1.08rem;
}
details.faq-item summary::-webkit-details-marker { display: none; }
.faq-chevron { font-size: 1.1rem; color: var(--sage); transition: transform .3s; flex-shrink: 0; }
details.faq-item[open] .faq-chevron { transform: rotate(180deg); }
.faq-body { padding: 0 0 24px; color: var(--ink-soft); font-size: .95rem; max-width: 58ch; line-height: 1.7; }

/* ── GALLERY ── */
#galerie { padding: 100px 0 40px; }
.gallery-intro { max-width: 520px; margin-bottom: 56px; }
.gallery-intro h2 { font-size: clamp(1.9rem,3.2vw,2.8rem); line-height: 1.1; margin-bottom: 14px; }
.gallery-intro p { color: var(--ink-soft); }
.gallery-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; align-items: start; }
.g-card {
  background: #fff; border-radius: var(--r-lg); overflow: hidden;
  border: 4px solid #fff; box-shadow: 0 14px 40px -12px rgba(40,37,30,.2);
  transition: transform .35s cubic-bezier(.34,1.56,.64,1), box-shadow .35s; cursor: pointer;
}
.g-card:hover { transform: scale(1.04) rotate(0deg) !important; box-shadow: 0 28px 60px -20px rgba(40,37,30,.32); }
.g-card:nth-child(1) { transform: rotate(-3.2deg); }
.g-card:nth-child(2) { transform: rotate(2.1deg); margin-top: 28px; }
.g-card:nth-child(3) { transform: rotate(-1.5deg); grid-column: span 2; }
.g-card:nth-child(4) { transform: rotate(1.8deg); margin-top: 14px; }
.g-card:nth-child(5) { transform: rotate(-2.4deg); }
.g-card:nth-child(6) { transform: rotate(3.1deg); margin-top: 22px; }
.g-card img { width: 100%; aspect-ratio: 4/3; object-fit: cover; display: block; }
.g-label { padding: 10px 14px; font-family: var(--font-b); font-size: .66rem; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-soft); background: #fff; border-top: 1px solid rgba(40,37,30,.06); }
.gallery-social-hint { text-align: center; margin-top: 48px; color: var(--ink-soft); font-size: .85rem; font-family: var(--font-b); letter-spacing: .08em; }
.gallery-social-hint a { color: var(--sage); text-decoration: underline; }

/* ── MODAL ── */
.modal-overlay {
  display: none; position: fixed; inset: 0; z-index: 9999;
  background: rgba(28,24,18,.62); backdrop-filter: blur(14px) saturate(120%);
  align-items: center; justify-content: center; padding: 24px;
}
.modal-overlay.open { display: flex; animation: fadeIn .28s ease; }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

.modal {
  background: var(--cream-soft); border-radius: var(--r-xl);
  max-width: 680px; width: 100%; max-height: 90vh; overflow-y: auto; padding: 36px;
  box-shadow: 0 40px 80px -24px rgba(28,24,18,.5);
  animation: slideUp .32s cubic-bezier(.22,.61,.36,1);
}
@keyframes slideUp { from { transform: translateY(28px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }

.modal-header { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 20px; }
.modal-header h2 { font-family: var(--font-d); font-size: 1.55rem; line-height: 1.2; font-weight: 800; letter-spacing: -.02em; }
.modal-header p  { font-size: .84rem; color: var(--ink-soft); margin-top: 4px; }
.modal-close {
  background: var(--line); border: none; width: 34px; height: 34px; border-radius: 50%;
  cursor: pointer; font-size: 1rem; display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; color: var(--ink); transition: background .2s; margin-left: 12px;
}
.modal-close:hover { background: rgba(40,37,30,.18); }

.step-bar { display: flex; align-items: center; margin-bottom: 24px; }
.step-item { display: flex; align-items: center; gap: 8px; }
.step-num {
  width: 28px; height: 28px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-b); font-size: .72rem;
  background: var(--line); color: var(--ink-soft);
  transition: background .3s, color .3s; flex-shrink: 0;
}
.step-num.active { background: var(--sage); color: #fff; }
.step-num.done   { background: var(--sage-pale); color: var(--sage-dark); }
.step-label { font-family: var(--font-b); font-size: .82rem; font-weight: 500; color: var(--ink-soft); transition: color .3s; }
.step-label.active { color: var(--sage-dark); font-weight: 600; }
.step-line { flex: 1; height: 1.5px; background: var(--line); margin: 0 10px; min-width: 32px; }

.cal-wrap { margin-bottom: 16px; }
.cal-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 12px; }
.cal-header h3 { font-family: var(--font-d); font-size: 1.1rem; font-weight: 700; letter-spacing: -.01em; }
.cal-nav {
  background: none; border: 1.5px solid var(--line); border-radius: 8px;
  width: 28px; height: 28px; cursor: pointer; font-size: .82rem;
  display: flex; align-items: center; justify-content: center; color: var(--ink); transition: border-color .2s;
}
.cal-nav:hover { border-color: var(--sage); color: var(--sage); }
.cal-grid { display: grid; grid-template-columns: repeat(7,1fr); gap: 3px; }
.cal-day-lbl { text-align: center; font-family: var(--font-b); font-size: .58rem; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-soft); padding: 5px 0; }
.cal-day {
  aspect-ratio: 1; display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 1px; border-radius: 8px;
  font-family: var(--font-d); font-size: .9rem; font-weight: 500;
  border: 1.5px solid transparent; transition: all .18s;
  color: var(--ink); position: relative;
}
.cal-day.disabled    { color: rgba(40,37,30,.22); cursor: default; pointer-events: none; }
.cal-day.other-month { color: rgba(40,37,30,.18); }
.cal-day.today       { border-color: var(--mauve-light); }
.cal-day.available   { cursor: pointer; }
.cal-day.available .cal-num { font-weight: 600; }
.cal-day.available:hover { background: var(--sage-pale); border-color: var(--sage-light); }
.cal-day.selected    { background: var(--sage); color: #fff; border-color: var(--sage); }
.cal-dot { display: none; width: 4px; height: 4px; border-radius: 50%; background: var(--sage); position: absolute; bottom: 3px; left: 50%; transform: translateX(-50%); }
.cal-day.available .cal-dot { display: block; }
.cal-day.selected  .cal-dot { background: rgba(255,255,255,.7); }
.cal-day .cal-num { line-height: 1; }

.date-selected-display {
  background: var(--sage-pale); border-radius: 10px; padding: 8px 13px;
  font-family: var(--font-b); font-size: .72rem; letter-spacing: .05em; color: var(--sage-dark);
  margin-bottom: 16px; display: none; align-items: center; gap: 7px;
}
.date-selected-display.show { display: flex; }

.cal-legend {
  margin-top: 8px; font-family: var(--font-b); font-size: .65rem;
  letter-spacing: .08em; color: var(--ink-soft);
  display: flex; align-items: center; gap: 6px;
}
.cal-legend-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--sage); display: inline-block; flex-shrink: 0; }

.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-group { display: flex; flex-direction: column; gap: 5px; min-width: 0; }
.form-group.span2 { grid-column: span 2; }
.form-group label {
  font-family: var(--font-b); font-size: .64rem; letter-spacing: .12em;
  text-transform: uppercase; color: var(--sage); display: flex; align-items: center; gap: 5px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; min-width: 0; padding: 11px 13px;
  border: 1.5px solid var(--line); border-radius: var(--r-md);
  font-family: var(--font-b); font-size: 1rem; background: #fff; color: var(--ink);
  outline: none; transition: border-color .2s, box-shadow .2s;
  -webkit-appearance: none; appearance: none;
}
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' fill='none' stroke='%236b6759' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center;
  padding-right: 36px;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--sage); box-shadow: 0 0 0 3px rgba(96,111,76,.13); }
.form-group textarea { resize: vertical; min-height: 72px; }

.location-radios { display: flex; flex-direction: column; gap: 8px; }
.location-radio-opt {
  display: flex; align-items: center; gap: 10px; padding: 12px 16px;
  border: 1.5px solid var(--line); border-radius: var(--r-md);
  cursor: pointer; transition: border-color .2s, background .2s;
  font-size: .95rem; font-family: var(--font-b); font-weight: 500;
}
.location-radio-opt:has(input:checked) { border-color: var(--sage); background: var(--sage-pale); }
.location-radio-opt input[type="radio"] {
  accent-color: var(--sage); width: 16px; height: 16px; flex-shrink: 0;
  border: none !important; padding: 0 !important; box-shadow: none !important; min-width: 0;
}
#addressWrap { display: none; flex-direction: column; gap: 5px; margin-top: 6px; }
#addressWrap label { font-family: var(--font-b); font-size: .64rem; letter-spacing: .12em; text-transform: uppercase; color: var(--sage); }

.modal-footer { margin-top: 20px; display: flex; justify-content: space-between; align-items: center; gap: 12px; }
.btn-cancel {
  background: transparent; border: 1.5px solid var(--line); color: var(--ink-soft);
  padding: 10px 20px; border-radius: 100px; font-size: .86rem; cursor: pointer;
  font-family: var(--font-b); transition: border-color .2s;
}
.btn-cancel:hover { border-color: var(--ink-soft); }
.btn-next,
.btn-submit {
  background: var(--sage); color: #fff; padding: 11px 26px; border-radius: 100px;
  font-size: .88rem; font-weight: 600; border: none; cursor: pointer;
  font-family: var(--font-b); transition: all .24s;
  display: inline-flex; align-items: center; gap: 7px;
}
.btn-next:hover, .btn-submit:hover { background: var(--sage-dark); transform: translateY(-1px); }
.step-panel        { display: none; }
.step-panel.active { display: block; }

/* ── MODAL: force theme fonts everywhere ── */
.modal, .modal * {
  font-family: var(--font-b);
}
.modal h2, .modal h3, .modal .cal-header h3,
.modal .cal-day, .modal .time-btn {
  font-family: var(--font-d);
}
.modal .form-group label,
.modal .cal-day-lbl,
.modal .date-selected-display,
.modal .step-num,
.modal .time-label {
  font-family: var(--font-b);
}

/* ── FOOTER ── */
footer {
  background: var(--sage-deep); color: rgba(255,255,255,.88);
  border-radius: var(--r-xl) var(--r-xl) 0 0; margin-top: 60px; padding: 64px 0 28px;
}
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 36px; padding-bottom: 44px; border-bottom: 1px solid rgba(255,255,255,.1); }
.footer-logo { font-family: var(--font-d); font-weight: 800; font-size: 1.15rem; color: #fff; }
.footer-logo sub { display: block; font-family: var(--font-b); font-size: .62rem; letter-spacing: .14em; text-transform: uppercase; color: var(--sage-light); font-weight: 400; margin-top: 3px; }
.footer-brand p { color: rgba(255,255,255,.5); font-size: .85rem; margin-top: 12px; line-height: 1.65; max-width: 30ch; }
.fcol h4 { font-family: var(--font-b); font-size: .68rem; letter-spacing: .16em; text-transform: uppercase; color: var(--sage-light); margin-bottom: 14px; }
.fcol a { display: block; font-size: .9rem; color: rgba(255,255,255,.72); margin-bottom: 9px; transition: color .2s; }
.fcol a:hover { color: var(--mauve-light); }
.fcol span { display: block; font-size: .9rem; color: rgba(255,255,255,.72); margin-bottom: 9px; }
.footer-bottom { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px; padding-top: 22px; font-size: .78rem; color: rgba(255,255,255,.38); }

/* ── FAB — immer ausgeklappt ── */
.fab {
  position: fixed; bottom: 28px; right: 28px; z-index: 300;
  background: var(--sage); color: #fff; border: none; border-radius: 100px;
  padding: 14px 24px; font-family: var(--font-b); font-weight: 700; font-size: .9rem;
  cursor: pointer; box-shadow: 0 12px 32px -8px rgba(67,79,48,.55);
  display: flex; align-items: center; gap: 8px; white-space: nowrap;
  transition: background .22s, box-shadow .22s, transform .22s;
  animation: fabIn .6s .8s both;
}
.fab:hover { background: var(--sage-dark); transform: translateY(-3px); box-shadow: 0 18px 40px -10px rgba(67,79,48,.65); }
@keyframes fabIn { from { transform: translateY(20px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }

/* ══════════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════════ */

@media (max-width: 960px) {
  /* Nav auf Mobile: NICHT sticky — einfach normal im Flow */
  #nav {
    position: relative;
    background: var(--cream);
    box-shadow: 0 1px 0 var(--line);
  }
  #nav.scrolled {
    background: var(--cream);
    backdrop-filter: none;
    box-shadow: 0 1px 0 var(--line);
    padding: 16px 0;
  }

  .nav-links { display: none; }
  .mobile-nav-right { display: flex; }

  /* ── Mobile Hero: Foto als Hintergrundbild rechts mit Opacity ──
     Das Portrait liegt absolut positioniert rechts im Hero,
     halbtransparent hinter dem Text. Text + Buttons normal drüber. */
  .hero-wrap {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 48px;
    padding-bottom: 52px;
    text-align: left;
    position: relative;
    overflow: hidden;
  }

  /* Foto: absolut rechts, groß, leicht abgeschnitten, Opacity */
  .hero-photo-wrap {
    display: block;
    position: absolute;
    top: 0; right: -8%;
    width: 72%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
  }

  .hero-photo-frame {
    width: 100%; height: 100%;
    position: relative;
  }

  /* Blob-Hintergrund hinter Foto */
  .hero-photo-bg {
    position: absolute;
    inset: -5% -10%;
    border-radius: 60% 40% 55% 45% / 50% 55% 45% 50%;
    background: var(--sage-pale);
    transform: scale(1.08);
    z-index: 0;
  }

  .hero-photo-frame img {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: center top;
    border-radius: 48% 52% 44% 56% / 46% 54% 46% 54%;
    /* halbtransparent — Text bleibt lesbar */
    opacity: 0.22;
    z-index: 1;
  }

  .hero-photo-frame::after { display: none; }
  .hero-badge { display: none; }

  /* Text über dem Hintergrundfoto */
  .hero-text {
    position: relative;
    z-index: 2;
    max-width: 85%;
  }

  .hero-actions { z-index: 2; position: relative; }
  .hero-trust   { z-index: 2; position: relative; }

  .hero-h1 {
    font-size: clamp(2rem, 7vw, 3rem);
    margin-bottom: 14px;
  }
  .hero-sub  { font-size: .95rem; max-width: 100%; margin-bottom: 28px; }

  .hero-actions {
    flex-direction: column; gap: 10px; margin-bottom: 24px;
    align-items: flex-start;
  }
  .hero-actions .btn { width: 100%; justify-content: center; }

  .hero-trust { flex-wrap: wrap; gap: 10px; margin-top: 16px; }
  .trust-item { font-size: .82rem; }
  .hero-stats { display: none; }

  .blob-h1, .blob-h2 { display: none; }
  .ticker-band { margin-top: 0; }

  .about-grid { grid-template-columns: 1fr; }
  .about-photos { height: 320px; }
  .card-main { width: 220px; height: 290px; }
  .card-sec  { width: 180px; height: 230px; }

  .offer-grid { grid-template-columns: 1fr; }
  .loc-grid   { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }

  .form-grid { grid-template-columns: 1fr; }
  .form-group.span2 { grid-column: span 1; }

  .gallery-grid { grid-template-columns: repeat(2,1fr); }
  .g-card:nth-child(3) { grid-column: span 1; }

  .hl-band { margin: 0 12px; }
}

/* Mobile small (≤560px) */
@media (max-width: 560px) {
  .container { padding: 0 18px; }

  /* Hero: mehr Abstand oben, Foto etwas mehr Opacity für kleine Screens */
  .hero-wrap { padding-top: 56px; padding-bottom: 44px; }
  .hero-photo-wrap { width: 80%; right: -12%; }
  .hero-photo-frame img { opacity: 0.18; }
  .hero-h1 { font-size: clamp(1.9rem, 7.5vw, 2.6rem); }
  .hero-text { max-width: 100%; }

  .ticker-band { margin-top: 0; }

  .about-photos { height: 260px; }
  .card-main { width: 190px; height: 250px; }
  .card-sec  { width: 155px; height: 200px; }

  #ueber-mich, #angebot, #kontakt, #faq, #galerie { padding: 64px 0; }

  footer { border-radius: 20px 20px 0 0; margin-top: 40px; padding: 48px 0 24px; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }

  .modal { padding: 22px; border-radius: 20px; }
  .form-grid { gap: 12px; }

  .fab { bottom: 16px; right: 16px; padding: 12px 18px; font-size: .82rem; }

  .gallery-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .g-card:nth-child(3) { grid-column: span 1; }

  .hl-band { margin: 0 10px; min-height: 360px; border-radius: 20px; }
  .hl-inner { padding: 32px 24px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
  .mobile-menu { transition: none; }
  .mm-link { opacity: 1; transform: none; }
}

/* ── NEUE SEKTIONEN (Content-Update) ── */

/* Hero Trust-Leiste */
.hero-trust {
  display: flex; flex-wrap: wrap; gap: 16px; margin-top: 28px;
}
.trust-item {
  display: flex; align-items: center; gap: 8px;
  font-size: .88rem; color: var(--ink-soft); font-weight: 500;
}
.trust-item i { color: var(--sage); font-size: 1rem; flex-shrink: 0; }

/* Was ist ein Showkochen — zwei-spaltig */
.showkochen-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: start;
}
.showkochen-steps { display: flex; flex-direction: column; gap: 0; }
.sk-step {
  display: flex; align-items: flex-start; gap: 18px;
  padding: 20px 0; border-bottom: 1px solid var(--line);
}
.sk-step:last-child { border-bottom: none; }
.sk-num {
  font-family: var(--font-b); font-size: .72rem; letter-spacing: .12em;
  color: var(--mauve); background: var(--mauve-pale);
  border-radius: 8px; padding: 5px 10px; flex-shrink: 0; margin-top: 2px;
}
.sk-step strong { font-family: var(--font-d); font-size: 1rem; font-weight: 700; display: block; margin-bottom: 4px; }
.sk-step p { font-size: .9rem; color: var(--ink-soft); margin: 0; }

/* Benefits Grid */
.benefits-grid {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 12px;
  margin: 40px 0 32px;
}
.benefit-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-md);
  padding: 18px 16px; display: flex; flex-direction: column; align-items: flex-start; gap: 10px;
  transition: transform .25s, box-shadow .25s;
}
.benefit-card:hover { transform: translateY(-3px); box-shadow: 0 10px 28px -10px rgba(40,37,30,.15); }
.benefit-card i { font-size: 1.4rem; color: var(--sage); }
.benefit-card span { font-size: .88rem; font-weight: 500; line-height: 1.3; }

.offer-cta-row { display: flex; flex-wrap: wrap; gap: 14px; }

/* Aktionen Grid */
.aktionen-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 48px;
}
.aktion-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 32px 28px; display: flex; flex-direction: column; gap: 14px;
  transition: transform .3s, box-shadow .3s;
}
.aktion-card:hover { transform: translateY(-5px); box-shadow: 0 20px 48px -18px rgba(40,37,30,.2); }
.aktion-icon {
  width: 48px; height: 48px; border-radius: 14px;
  background: var(--sage-pale); color: var(--sage-dark);
  display: flex; align-items: center; justify-content: center; font-size: 1.4rem;
}
.aktion-card h3 { font-family: var(--font-d); font-size: 1.15rem; line-height: 1.25; }
.aktion-card p { color: var(--ink-soft); font-size: .93rem; flex: 1; }

/* Responsive neue Sektionen */
@media (max-width: 960px) {
  .showkochen-grid { grid-template-columns: 1fr; gap: 40px; }
  .benefits-grid   { grid-template-columns: repeat(2, 1fr); }
  .aktionen-grid   { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .hero-trust      { gap: 10px; }
  .trust-item      { font-size: .82rem; }
  .benefits-grid   { grid-template-columns: 1fr 1fr; gap: 10px; }
  .benefit-card    { padding: 14px 12px; }
  .benefit-card i  { font-size: 1.2rem; }
  .benefit-card span { font-size: .8rem; }
  .showkochen-grid { gap: 28px; }
}

/* ── MODAL UPDATES ── */

/* Uhrzeit-Auswahl */
.time-label {
  font-family: var(--font-b); font-size: .68rem; letter-spacing: .12em;
  text-transform: uppercase; color: var(--sage);
  display: flex; align-items: center; gap: 6px; margin-bottom: 10px;
}
.time-options { display: flex; flex-wrap: wrap; gap: 8px; }
.time-btn {
  padding: 11px 22px; border-radius: 100px;
  border: 1.5px solid var(--line); background: #fff;
  font-family: var(--font-d); font-size: 1.05rem; font-weight: 700; letter-spacing: -.01em;
  color: var(--ink); cursor: pointer; transition: all .18s;
}
.time-btn:hover { border-color: var(--sage); color: var(--sage); background: var(--sage-pale); }
.time-btn.selected { background: var(--sage); color: #fff; border-color: var(--sage); }

/* Adressfelder im Modal */
#addressWrap .form-group { margin-bottom: 0; }

/* Booking-Hinweis */
.booking-notice {
  margin-top: 16px; padding: 14px 16px;
  background: var(--mauve-pale); border-radius: var(--r-md);
  font-family: var(--font-b); font-size: .88rem; color: var(--mauve); line-height: 1.6;
  display: flex; gap: 10px; align-items: flex-start;
}
.booking-notice i { font-size: 1rem; flex-shrink: 0; margin-top: 1px; }

/* Kalender-Grid Fix — verhindert Einzeilenrutschen */
.cal-grid {
  display: grid !important;
  grid-template-columns: repeat(7, 1fr) !important;
  gap: 3px;
  width: 100%;
}
.cal-day {
  min-width: 0;
  width: 100%;
}

/* ── COOKIDOO / REZEPTE SEKTION ── */
.cookidoo-wrap {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 72px; align-items: center;
}
.cookidoo-visual {
  position: relative; height: 380px;
}
.cookidoo-card {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 220px; height: 220px;
  background: var(--sage-deep); border-radius: 40px;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 14px; box-shadow: 0 24px 56px -16px rgba(46,56,32,.45);
}
.cookidoo-icon {
  font-size: 3.2rem; color: var(--sage-light);
}
.cookidoo-badge {
  text-align: center;
}
.cookidoo-badge-label {
  display: block; font-family: var(--font-d); font-weight: 700;
  font-size: 1rem; color: #fff; line-height: 1.2;
}
.cookidoo-badge-sub {
  display: block; font-family: var(--font-b); font-size: .62rem;
  letter-spacing: .1em; text-transform: uppercase; color: var(--sage-light);
  margin-top: 3px;
}

/* floating tags */
.cookidoo-floating-tag {
  position: absolute; background: #fff;
  border-radius: 100px; padding: 8px 16px;
  font-size: .8rem; font-weight: 600; font-family: var(--font-b);
  box-shadow: 0 8px 24px -8px rgba(40,37,30,.18);
  display: flex; align-items: center; gap: 7px; white-space: nowrap;
}
.cookidoo-floating-tag i { color: var(--sage); font-size: .85rem; }
.tag-1 { top: 12%;  left: -8%; transform: rotate(-3deg); }
.tag-2 { top: 52%;  right: -4%; transform: rotate(2deg); }
.tag-3 { bottom: 8%; left: 2%; transform: rotate(-1.5deg); }

@media (max-width: 960px) {
  .cookidoo-wrap { grid-template-columns: 1fr; gap: 40px; }
  .cookidoo-visual { height: 260px; }
  .cookidoo-card { width: 170px; height: 170px; border-radius: 28px; }
  .cookidoo-icon { font-size: 2.4rem; }
  .tag-1 { top: 4%; left: 2%; }
  .tag-2 { top: 45%; right: 0; }
  .tag-3 { bottom: 2%; left: 5%; }
}