/* ════════════════════════════════════════════════
   TURMHÜTTE GROSSBEEREN — Stylesheet
   Rustikal · warm · modern · Parallax
   ════════════════════════════════════════════════ */

:root {
  /* Farbpalette — warmes Holz, Lichterketten-Gold, Espresso */
  --espresso:    #1a1410;
  --espresso-2:  #241a12;
  --bark:        #3a2a1c;
  --wood:        #6b4a2e;
  --wood-light:  #8a5a33;
  --gold:        #e0a458;
  --gold-soft:   #d9aa6b;
  --gold-deep:   #b9803a;
  --cream:       #f6efe3;
  --cream-2:     #efe5d4;
  --paper:       #fbf7ef;
  --ink:         #2a221a;
  --ink-soft:    #5c5043;
  --line:        rgba(107, 74, 46, 0.18);

  --shadow-sm: 0 4px 16px rgba(26, 20, 16, 0.08);
  --shadow-md: 0 16px 40px rgba(26, 20, 16, 0.14);
  --shadow-lg: 0 30px 70px rgba(26, 20, 16, 0.30);

  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Inter", system-ui, -apple-system, sans-serif;

  --container: 1200px;
  --radius: 18px;
  --radius-lg: 28px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ─── Reset ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
:focus-visible { outline: 2px solid var(--gold-deep); outline-offset: 3px; border-radius: 4px; }

/* ─── Typo-Bausteine ─── */
.h2 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.9rem, 1.2rem + 2.6vw, 3.2rem);
  line-height: 1.08;
  letter-spacing: -0.015em;
  color: var(--ink);
}
.eyebrow {
  font-size: 0.78rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--gold-deep);
  margin-bottom: 0.9rem;
}
.lead { font-size: clamp(1.05rem, 0.98rem + 0.4vw, 1.22rem); color: var(--ink); }

.section { padding: clamp(4.5rem, 3rem + 7vw, 8.5rem) clamp(1.25rem, 0.5rem + 3vw, 3rem); }
.section__head { max-width: 720px; margin: 0 auto clamp(2.5rem, 1.5rem + 3vw, 4rem); text-align: center; }
.section__intro { margin-top: 1rem; color: var(--ink-soft); max-width: 580px; margin-inline: auto; }

/* ─── Buttons ─── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5em;
  padding: 0.95em 1.9em;
  font-weight: 600; font-size: 0.95rem; letter-spacing: 0.02em;
  border-radius: 100px;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), background 0.3s, color 0.3s;
  will-change: transform;
  min-height: 48px;
}
.btn--gold {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-deep) 100%);
  color: #2a1a0a;
  box-shadow: 0 10px 26px rgba(185, 128, 58, 0.38);
}
.btn--gold:hover { transform: translateY(-3px); box-shadow: 0 16px 34px rgba(185, 128, 58, 0.5); }
.btn--ghost {
  background: rgba(255, 255, 255, 0.08);
  color: var(--cream);
  border: 1.5px solid rgba(246, 239, 227, 0.45);
  backdrop-filter: blur(4px);
}
.btn--ghost:hover { background: rgba(255, 255, 255, 0.16); transform: translateY(-3px); }
.btn--full { width: 100%; }

/* ════════ Scroll progress ════════ */
.scroll-progress {
  position: fixed; top: 0; left: 0; height: 3px; width: 0%;
  background: linear-gradient(90deg, var(--gold-deep), var(--gold));
  z-index: 200; transition: width 0.1s linear;
}

/* ════════ Navigation ════════ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  transition: background 0.4s var(--ease), box-shadow 0.4s, padding 0.4s var(--ease);
  padding: 1.1rem 0;
}
.nav__inner {
  max-width: var(--container); margin: 0 auto;
  padding: 0 clamp(1.25rem, 0.5rem + 3vw, 3rem);
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
}
.nav__brand { display: flex; align-items: center; gap: 0.7rem; }
.nav__logo { height: 44px; width: auto; filter: brightness(0) invert(1); transition: filter 0.4s; }
.nav__brandtext {
  font-family: var(--font-display); font-weight: 600; font-size: 1.25rem; line-height: 1;
  color: var(--cream); display: flex; flex-direction: column; transition: color 0.4s;
}
.nav__brandtext small {
  font-family: var(--font-body); font-size: 0.6rem; font-weight: 500;
  letter-spacing: 0.3em; text-transform: uppercase; opacity: 0.75; margin-top: 2px;
}
.nav__links { display: flex; align-items: center; gap: 0.4rem; }
.nav__links a {
  padding: 0.5rem 0.95rem; font-size: 0.92rem; font-weight: 500; color: var(--cream);
  border-radius: 100px; transition: color 0.3s, background 0.3s; position: relative;
}
.nav__links a:not(.nav__cta)::after {
  content: ""; position: absolute; left: 0.95rem; right: 0.95rem; bottom: 0.3rem; height: 1.5px;
  background: var(--gold); transform: scaleX(0); transform-origin: left; transition: transform 0.35s var(--ease);
}
.nav__links a:not(.nav__cta):hover::after { transform: scaleX(1); }
.nav__cta {
  background: var(--gold); color: #2a1a0a !important; font-weight: 600;
  box-shadow: 0 6px 18px rgba(185, 128, 58, 0.35);
}
.nav__cta:hover { background: var(--gold-soft); transform: translateY(-2px); }

/* Scrolled state */
.nav.is-scrolled {
  background: rgba(251, 247, 239, 0.88);
  backdrop-filter: blur(14px) saturate(1.2);
  box-shadow: 0 6px 30px rgba(26, 20, 16, 0.10);
  padding: 0.65rem 0;
}
.nav.is-scrolled .nav__logo { filter: none; }
.nav.is-scrolled .nav__brandtext { color: var(--ink); }
.nav.is-scrolled .nav__links a:not(.nav__cta) { color: var(--ink); }

.nav__burger { display: none; width: 44px; height: 44px; flex-direction: column; gap: 5px; align-items: center; justify-content: center; }
.nav__burger span { width: 24px; height: 2px; background: var(--cream); border-radius: 2px; transition: transform 0.35s var(--ease), opacity 0.3s, background 0.3s; }
.nav.is-scrolled .nav__burger span { background: var(--ink); }

/* ════════ HERO ════════ */
.hero {
  position: relative; min-height: 100svh; display: flex; flex-direction: column;
  align-items: center; justify-content: center; text-align: center;
  overflow: hidden; color: var(--cream); padding: 6rem 1.25rem 5rem;
}
.hero__bg { position: absolute; inset: -12% 0 -12% 0; z-index: 0; will-change: transform; }
.hero__img {
  position: absolute; inset: 0;
  background: url("images/exterior.jpg") center 30% / cover no-repeat;
  transform: scale(1.08);
}
.hero__veil {
  position: absolute; inset: 0; z-index: 1;
  background:
    radial-gradient(120% 90% at 50% 18%, rgba(26,20,16,0.18) 0%, rgba(26,20,16,0.62) 55%, rgba(26,20,16,0.88) 100%),
    linear-gradient(180deg, rgba(26,20,16,0.55) 0%, rgba(26,20,16,0.20) 35%, rgba(26,20,16,0.85) 100%);
}
.hero__content { position: relative; z-index: 3; max-width: 860px; }
.hero__logo {
  width: clamp(80px, 14vw, 132px); margin: 0 auto 1.4rem; filter: brightness(0) invert(1) drop-shadow(0 6px 18px rgba(0,0,0,0.5));
  will-change: transform;
}
.hero__eyebrow {
  font-size: 0.8rem; letter-spacing: 0.34em; text-transform: uppercase; font-weight: 600;
  color: var(--gold-soft); margin-bottom: 1.1rem;
}
.hero__title {
  font-family: var(--font-display); font-weight: 500;
  font-size: clamp(2.4rem, 1.2rem + 5.4vw, 5rem); line-height: 1.04; letter-spacing: -0.02em;
  text-shadow: 0 4px 30px rgba(0,0,0,0.4);
}
.hero__title em { font-style: italic; color: var(--gold); }
.hero__sub {
  margin: 1.5rem auto 0; max-width: 600px; font-size: clamp(1.05rem, 0.98rem + 0.5vw, 1.28rem);
  color: var(--cream-2); text-shadow: 0 2px 12px rgba(0,0,0,0.5);
}
.hero__actions { margin-top: 2.4rem; display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

.hero__scroll {
  position: absolute; bottom: 2.2rem; left: 50%; transform: translateX(-50%); z-index: 3;
  display: flex; flex-direction: column; align-items: center; gap: 0.6rem; color: var(--cream-2);
}
.hero__scroll-dot {
  width: 26px; height: 42px; border: 2px solid rgba(246,239,227,0.55); border-radius: 100px; position: relative;
}
.hero__scroll-dot::before {
  content: ""; position: absolute; top: 8px; left: 50%; width: 4px; height: 8px; margin-left: -2px;
  background: var(--gold); border-radius: 4px; animation: scrolldot 1.8s var(--ease) infinite;
}
.hero__scroll-label { font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase; }
@keyframes scrolldot { 0% { opacity: 0; transform: translateY(-4px); } 40% { opacity: 1; } 80%,100% { opacity: 0; transform: translateY(12px); } }

/* schwebende Lichtpunkte */
.embers { position: absolute; inset: 0; z-index: 2; pointer-events: none; }
.ember {
  position: absolute; bottom: -10px; width: 6px; height: 6px; border-radius: 50%;
  background: radial-gradient(circle, var(--gold) 0%, rgba(224,164,88,0) 70%);
  animation: rise linear infinite;
}
@keyframes rise {
  0% { transform: translateY(0) translateX(0); opacity: 0; }
  10% { opacity: 0.9; }
  90% { opacity: 0.7; }
  100% { transform: translateY(-105vh) translateX(var(--drift, 20px)); opacity: 0; }
}

/* ════════ WILLKOMMEN ════════ */
.welcome { background: linear-gradient(180deg, var(--paper) 0%, var(--cream) 100%); }
.welcome__grid {
  max-width: var(--container); margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 1rem + 4vw, 5rem); align-items: center;
}
.welcome__media { position: relative; }
.welcome__imgwrap {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-md); aspect-ratio: 4 / 5;
}
.welcome__imgwrap img { width: 100%; height: 116%; object-fit: cover; will-change: transform; }
.welcome__imgwrap::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(160deg, transparent 55%, rgba(26,20,16,0.28));
}
.welcome__badge {
  position: absolute; bottom: -22px; right: -10px; z-index: 2;
  background: var(--espresso); color: var(--gold-soft);
  width: 108px; height: 108px; border-radius: 50%;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; box-shadow: var(--shadow-md); border: 2px solid var(--gold-deep);
  font-family: var(--font-display);
}
.welcome__badge strong { font-size: 1.7rem; line-height: 1; }
.welcome__badge span { font-size: 0.62rem; letter-spacing: 0.18em; text-transform: uppercase; margin-top: 4px; color: var(--cream-2); font-family: var(--font-body); }

.welcome__text .lead { margin: 1.2rem 0; }
.welcome__text p:not(.lead):not(.eyebrow) { color: var(--ink-soft); }
.welcome__stats { display: flex; gap: clamp(1.1rem, 0.4rem + 2vw, 2.2rem); margin-top: 2.4rem; flex-wrap: wrap; }
.stat { display: flex; flex-direction: column; }
.stat__value { display: flex; align-items: baseline; gap: 0.12rem; font-family: var(--font-display); line-height: 1; min-height: clamp(2rem, 1.5rem + 1.6vw, 2.8rem); }
.stat__num { font-size: clamp(2rem, 1.5rem + 1.6vw, 2.8rem); font-weight: 600; color: var(--wood); line-height: 1; }
.stat__num--text { color: var(--gold-deep); }
.stat__suffix { font-size: 1.4rem; font-weight: 600; color: var(--gold-deep); line-height: 1; }
.stat__label { font-size: 0.82rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-soft); margin-top: 0.7rem; font-weight: 500; }

/* ════════ ZITAT-BAND (Parallax) ════════ */
.quote { position: relative; min-height: 60vh; display: flex; align-items: center; justify-content: center; overflow: hidden; padding: 6rem 1.5rem; }
.quote__bg { position: absolute; inset: -15% 0; z-index: 0; background: url("images/dish.jpeg") center 40% / cover no-repeat; will-change: transform; }
.quote__veil { position: absolute; inset: 0; z-index: 1; background: linear-gradient(180deg, rgba(26,20,16,0.82), rgba(58,42,28,0.78)); }
.quote__text {
  position: relative; z-index: 2; max-width: 880px; text-align: center;
  font-family: var(--font-display); font-weight: 400; font-style: italic;
  font-size: clamp(1.6rem, 1rem + 2.8vw, 3rem); line-height: 1.25; color: var(--cream);
}
.quote__text cite {
  display: block; margin-top: 1.6rem; font-family: var(--font-body); font-style: normal;
  font-size: 0.9rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold-soft); font-weight: 500;
}

/* ════════ SPEISEKARTE ════════ */
.menu { background: var(--cream); }
.menu__cats {
  max-width: 1080px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(330px, 1fr));
  gap: clamp(2.2rem, 1rem + 3vw, 4rem) clamp(2rem, 1rem + 3vw, 3.6rem);
  align-items: start;
}
.menu__cat-title {
  font-family: var(--font-display); font-weight: 500; font-style: italic;
  font-size: clamp(1.5rem, 1.2rem + 1.1vw, 2.1rem); color: var(--gold-deep);
  margin-bottom: 1rem; padding-bottom: 0.6rem; border-bottom: 1px solid var(--line);
}
.dish { padding: 1rem 0; border-bottom: 1px dashed var(--line); }
.dish:last-child { border-bottom: 0; }
.dish__row { display: grid; grid-template-columns: 1fr auto; gap: 0.2rem 1rem; align-items: baseline; }
.dish__name { font-family: var(--font-display); font-weight: 500; font-size: clamp(1.1rem, 1rem + 0.45vw, 1.32rem); color: var(--ink); }
.dish__price { font-family: var(--font-display); font-weight: 600; font-size: 1.18rem; color: var(--gold-deep); white-space: nowrap; text-align: right; }
.dish__desc { margin-top: 0.3rem; color: var(--ink-soft); font-size: 0.95rem; }
.menu__note { margin-top: 1.1rem; font-style: italic; font-family: var(--font-display); font-size: 0.96rem; line-height: 1.45; color: var(--gold-deep); opacity: 0.92; }
.menu__foot { text-align: center; margin-top: clamp(2.5rem, 1.5rem + 2vw, 3.5rem); display: flex; flex-direction: column; align-items: center; gap: 1.4rem; }
.menu__foot p { color: var(--ink-soft); font-style: italic; font-family: var(--font-display); font-size: 1.1rem; }

/* Außenstand-Banner */
.menu__outdoor {
  max-width: 1080px; margin: clamp(2.2rem, 1.5rem + 2vw, 3.4rem) auto 0;
  display: flex; align-items: center; gap: 1.3rem;
  background: linear-gradient(135deg, rgba(224,164,88,0.16), rgba(224,164,88,0.05));
  border: 1px solid rgba(185,128,58,0.28); border-radius: var(--radius);
  padding: clamp(1.2rem, 0.8rem + 1.5vw, 1.8rem) clamp(1.3rem, 0.8rem + 1.5vw, 2.2rem);
}
.menu__outdoor-icon {
  flex-shrink: 0; width: 54px; height: 54px; border-radius: 50%; display: grid; place-items: center;
  background: var(--paper); border: 1px solid rgba(185,128,58,0.3); color: var(--gold-deep);
}
.menu__outdoor-icon svg { width: 28px; height: 28px; }
.menu__outdoor-text strong { display: block; font-family: var(--font-display); font-size: 1.25rem; color: var(--wood); margin-bottom: 0.2rem; }
.menu__outdoor-text p { color: var(--ink-soft); font-size: 0.98rem; }
.menu__outdoor-text em { font-style: normal; font-weight: 600; color: var(--gold-deep); }

/* ════════ GETRÄNKEKARTE ════════ */
.drinks {
  background:
    radial-gradient(120% 90% at 50% 0%, rgba(224,164,88,0.10), transparent 55%),
    var(--espresso);
  color: var(--cream);
  position: relative;
}
.drinks .eyebrow { color: var(--gold); }
.drinks .h2 { color: var(--cream); }
.drinks .section__intro { color: var(--cream-2); opacity: 0.85; }
.drinks__grid {
  max-width: 1120px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(310px, 1fr));
  gap: clamp(1.4rem, 0.8rem + 2vw, 2.6rem) clamp(1.6rem, 1rem + 2.5vw, 3.4rem);
  align-items: start;
}
.drink-cat {
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(224, 164, 88, 0.16);
  border-radius: var(--radius);
  padding: clamp(1.4rem, 1rem + 1.5vw, 2rem);
}
.drink-cat__title {
  font-family: var(--font-display); font-weight: 500;
  font-size: clamp(1.3rem, 1.1rem + 0.8vw, 1.65rem); color: var(--gold-soft);
  padding-bottom: 0.7rem; margin-bottom: 0.5rem;
  border-bottom: 1px solid rgba(224, 164, 88, 0.22);
  display: flex; align-items: baseline; gap: 0.5rem;
}
.drink-cat__title em { font-style: normal; font-size: 0.7rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold-deep); font-family: var(--font-body); }
.drink-list { display: flex; flex-direction: column; }
.drink-row {
  display: grid; grid-template-columns: 1fr auto; gap: 0.4rem 1rem; align-items: baseline;
  padding: 0.62rem 0; border-bottom: 1px dotted rgba(246, 239, 227, 0.12);
}
.drink-row:last-child { border-bottom: 0; }
.drink-row__name { color: var(--cream); font-size: 0.96rem; line-height: 1.4; }
.drink-row__name em {
  font-style: normal; color: var(--cream-2); opacity: 0.6; font-size: 0.82rem; white-space: nowrap;
}
.drink-row__price {
  font-family: var(--font-display); font-weight: 600; color: var(--gold);
  font-size: 0.98rem; white-space: nowrap; text-align: right;
}
.drink-cat__note {
  margin-top: 0.9rem; font-style: italic; font-family: var(--font-display);
  font-size: 0.92rem; color: var(--gold-soft); opacity: 0.85;
}

/* ════════ FEATURES ════════ */
.features { background: linear-gradient(180deg, var(--cream) 0%, var(--paper) 100%); }
.features__grid { max-width: var(--container); margin: 0 auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1.2rem, 0.5rem + 2vw, 2.2rem); }
.feature {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: clamp(1.8rem, 1rem + 2vw, 2.8rem); text-align: center;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.4s;
  position: relative; overflow: hidden;
}
.feature::before {
  content: ""; position: absolute; inset: 0; opacity: 0; transition: opacity 0.4s;
  background: radial-gradient(120% 80% at 50% 0%, rgba(224,164,88,0.12), transparent 70%);
}
.feature:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); border-color: var(--gold-soft); }
.feature:hover::before { opacity: 1; }
.feature__icon {
  width: 66px; height: 66px; margin: 0 auto 1.4rem; border-radius: 50%;
  display: grid; place-items: center; color: var(--gold-deep);
  background: linear-gradient(145deg, rgba(224,164,88,0.16), rgba(224,164,88,0.04));
  border: 1px solid rgba(185,128,58,0.25); position: relative;
}
.feature__icon svg { width: 30px; height: 30px; }
.feature__title { font-family: var(--font-display); font-weight: 500; font-size: 1.4rem; margin-bottom: 0.7rem; position: relative; }
.feature p { color: var(--ink-soft); position: relative; }

/* ════════ GALERIE ════════ */
.gallery { background: var(--paper); }
.gallery__grid {
  max-width: var(--container); margin: 0 auto;
  display: grid; grid-template-columns: repeat(3, 1fr); grid-auto-rows: 220px; gap: 1rem;
}
.gallery__item { position: relative; overflow: hidden; border-radius: var(--radius); box-shadow: var(--shadow-sm); }
.gallery__item--tall { grid-row: span 2; }
.gallery__item--wide { grid-column: span 2; }
.gallery__item img { width: 100%; height: 118%; object-fit: cover; transition: transform 0.8s var(--ease); will-change: transform; }
.gallery__item:hover img { transform: scale(1.06); }
.gallery__item figcaption {
  position: absolute; left: 0; right: 0; bottom: 0; padding: 1.4rem 1.2rem 1rem;
  background: linear-gradient(transparent, rgba(26,20,16,0.85));
  color: var(--cream); font-family: var(--font-display); font-size: 1.05rem; font-style: italic;
}
.gallery__quote {
  height: 100%; background: var(--espresso); color: var(--cream);
  display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center;
  padding: 2rem; gap: 0.8rem;
  background-image: radial-gradient(90% 70% at 50% 0%, rgba(224,164,88,0.14), transparent 70%);
}
.gallery__quote p { font-family: var(--font-display); font-style: italic; font-size: clamp(1.2rem, 1rem + 1vw, 1.8rem); line-height: 1.3; }
.gallery__quote span { font-size: 0.78rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold-soft); }

/* ════════ GOOGLE-BEWERTUNGEN ════════ */
.reviews { background: linear-gradient(180deg, var(--paper) 0%, var(--cream) 100%); }
.reviews__inner {
  max-width: 1000px; margin: 0 auto;
  display: grid; grid-template-columns: minmax(220px, 0.8fr) 1.4fr;
  gap: clamp(1.6rem, 1rem + 3vw, 3.6rem); align-items: center;
}
/* Bewertungs-Block */
.reviews__rating {
  text-align: center; background: var(--paper); border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: clamp(1.8rem, 1.2rem + 2vw, 2.6rem) 1.5rem;
  box-shadow: var(--shadow-sm);
}
.reviews__score { font-family: var(--font-display); font-weight: 600; font-size: clamp(3rem, 2rem + 4vw, 4.4rem); line-height: 1; color: var(--wood); }
.stars { position: relative; display: inline-block; margin: 0.5rem 0 0.9rem; font-size: 1.5rem; letter-spacing: 0.1em; }
.stars__base { color: rgba(107, 74, 46, 0.22); }
.stars__fill { position: absolute; inset: 0; color: var(--gold); overflow: hidden; white-space: nowrap; }
.reviews__count { display: flex; align-items: center; justify-content: center; gap: 0.5rem; font-size: 0.95rem; color: var(--ink-soft); }
.reviews__count strong { color: var(--ink); }
.g-logo { width: 20px; height: 20px; flex-shrink: 0; }
.reviews__link { display: inline-block; margin-top: 1.2rem; font-weight: 600; font-size: 0.92rem; color: var(--gold-deep); border-bottom: 1.5px solid var(--gold-soft); padding-bottom: 2px; transition: color 0.25s, border-color 0.25s; }
.reviews__link:hover { color: var(--wood); border-color: var(--wood); }

/* Zitat-Karussell */
.reviews__carousel { position: relative; padding-left: clamp(0.5rem, 0.2rem + 1vw, 1.5rem); }
.reviews__mark { display: block; color: var(--gold); opacity: 0.5; margin-bottom: 0.4rem; }
.reviews__mark svg { width: 44px; height: 44px; }
.reviews__quote {
  font-family: var(--font-display); font-style: italic; font-weight: 400;
  font-size: clamp(1.25rem, 1rem + 1.3vw, 1.85rem); line-height: 1.35; color: var(--ink);
  min-height: 4.2em; transition: opacity 0.5s var(--ease), transform 0.5s var(--ease);
}
.reviews__quote.is-fading { opacity: 0; transform: translateY(10px); }
.reviews__author { display: flex; align-items: center; gap: 0.8rem; margin-top: 1.2rem; flex-wrap: wrap; }
.reviews__stars { color: var(--gold); letter-spacing: 0.08em; font-size: 1rem; }
.reviews__author cite { font-style: normal; font-weight: 600; color: var(--ink-soft); font-size: 0.95rem; }
.reviews__author cite::before { content: "— "; color: var(--gold-deep); }
.reviews__dots { display: flex; gap: 0.5rem; margin-top: 1.6rem; }
.reviews__dots button {
  width: 9px; height: 9px; border-radius: 50%; background: rgba(107,74,46,0.25);
  transition: background 0.3s, transform 0.3s, width 0.3s;
}
.reviews__dots button.is-active { background: var(--gold-deep); width: 22px; border-radius: 5px; }

/* ════════ KONTAKT ════════ */
.contact { background: linear-gradient(180deg, var(--paper) 0%, var(--cream) 100%); }
.contact__grid {
  max-width: var(--container); margin: 0 auto clamp(2rem, 1rem + 3vw, 3.5rem);
  display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 1rem + 4vw, 4.5rem); align-items: start;
}
.contact__info .lead { margin: 1.1rem 0 2rem; color: var(--ink-soft); }
.contact__list { display: flex; flex-direction: column; gap: 1.2rem; margin-bottom: 2.2rem; }
.contact__list li { display: flex; gap: 1rem; align-items: flex-start; }
.contact__ico {
  flex-shrink: 0; width: 46px; height: 46px; border-radius: 14px; display: grid; place-items: center;
  background: linear-gradient(145deg, rgba(224,164,88,0.18), rgba(224,164,88,0.05));
  border: 1px solid rgba(185,128,58,0.22); color: var(--gold-deep);
}
.contact__ico svg { width: 22px; height: 22px; }
.contact__list strong { display: block; font-size: 0.76rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink-soft); font-weight: 600; margin-bottom: 2px; }
.contact__list a { font-weight: 500; color: var(--ink); transition: color 0.25s; border-bottom: 1px solid transparent; }
.contact__list a:hover { color: var(--gold-deep); border-color: var(--gold-soft); }
.contact__hours {
  padding: 1.3rem 1.5rem; background: var(--espresso); color: var(--cream-2); border-radius: var(--radius);
  border-left: 3px solid var(--gold);
}
.contact__hours strong { display: block; color: var(--gold-soft); font-family: var(--font-display); font-size: 1.25rem; margin-bottom: 0.7rem; }
.contact__hours a { color: var(--gold); border-bottom: 1px solid var(--gold-soft); }
.hours { display: flex; flex-direction: column; }
.hours li {
  display: flex; justify-content: space-between; gap: 1rem;
  padding: 0.42rem 0.2rem; font-size: 0.95rem;
  border-bottom: 1px dotted rgba(246,239,227,0.12);
}
.hours li:last-child { border-bottom: 0; }
.hours li span:first-child { color: var(--cream-2); }
.hours li span:last-child { color: var(--cream); font-variant-numeric: tabular-nums; }
.hours li.is-today {
  background: rgba(224,164,88,0.14); border-radius: 8px; padding-inline: 0.6rem; margin-inline: -0.4rem;
  border-bottom-color: transparent;
}
.hours li.is-today span:first-child { color: var(--gold); font-weight: 600; }
.hours li.is-today span:first-child::after { content: " · heute"; font-weight: 500; font-size: 0.78rem; color: var(--gold-soft); }
.hours li.is-today span:last-child { color: var(--gold); font-weight: 600; }
.hours__note { margin-top: 0.9rem; font-size: 0.85rem; color: var(--cream-2); opacity: 0.8; }

/* Formular */
.contact__form-wrap {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: clamp(1.6rem, 1rem + 2vw, 2.8rem); box-shadow: var(--shadow-md);
}
.contact__form-title { font-family: var(--font-display); font-weight: 500; font-size: 1.5rem; margin-bottom: 1.6rem; }
.field { position: relative; margin-bottom: 1.1rem; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.field input, .field textarea {
  width: 100%; padding: 1.1rem 1rem 0.6rem; font-size: 1rem; font-family: inherit; color: var(--ink);
  background: var(--cream); border: 1.5px solid var(--line); border-radius: 12px;
  transition: border-color 0.3s, box-shadow 0.3s, background 0.3s; resize: vertical;
}
.field textarea { min-height: 110px; }
.field input:focus, .field textarea:focus {
  outline: none; border-color: var(--gold-deep); background: var(--paper);
  box-shadow: 0 0 0 4px rgba(224,164,88,0.14);
}
.field label {
  position: absolute; left: 1rem; top: 0.95rem; font-size: 1rem; color: var(--ink-soft);
  pointer-events: none; transition: transform 0.25s var(--ease), font-size 0.25s, color 0.25s;
  transform-origin: left;
}
.field input:focus + label, .field input:not(:placeholder-shown) + label,
.field textarea:focus + label, .field textarea:not(:placeholder-shown) + label {
  transform: translateY(-0.7rem) scale(0.74); color: var(--gold-deep); font-weight: 600;
}
.contact__note { margin-top: 1rem; font-size: 0.92rem; text-align: center; min-height: 1.2em; }
.contact__note.is-ok { color: #2f7d4f; font-weight: 500; }
.contact__note.is-err { color: #b4452f; font-weight: 500; }

.contact__map { max-width: var(--container); margin: 0 auto; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); border: 1px solid var(--line); line-height: 0; }

/* ════════ FOOTER ════════ */
.footer { background: var(--espresso); color: var(--cream-2); padding: clamp(3rem, 2rem + 3vw, 4.5rem) clamp(1.25rem, 0.5rem + 3vw, 3rem) 2rem; }
.footer__inner { max-width: var(--container); margin: 0 auto; display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1.5rem; padding-bottom: 2rem; border-bottom: 1px solid rgba(246,239,227,0.12); }
.footer__brand { display: flex; align-items: center; gap: 0.7rem; font-family: var(--font-display); font-size: 1.3rem; color: var(--cream); }
.footer__brand span { display: flex; flex-direction: column; line-height: 1; }
.footer__brand small { font-family: var(--font-body); font-size: 0.58rem; letter-spacing: 0.3em; text-transform: uppercase; opacity: 0.7; margin-top: 3px; }
.footer__logo { height: 54px; width: auto; filter: brightness(0) invert(1); }
.footer__links { display: flex; flex-wrap: wrap; gap: 0.4rem 1.4rem; }
.footer__links a { font-size: 0.92rem; opacity: 0.85; transition: color 0.25s, opacity 0.25s; }
.footer__links a:hover { color: var(--gold); opacity: 1; }
.footer__contact { font-size: 0.92rem; opacity: 0.85; }
.footer__contact a:hover { color: var(--gold); }
.footer__copy { max-width: var(--container); margin: 1.6rem auto 0; text-align: center; font-size: 0.82rem; opacity: 0.55; }

/* ════════ To-Top ════════ */
.to-top {
  position: fixed; bottom: 1.4rem; right: 1.4rem; z-index: 90;
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--gold); color: #2a1a0a; display: grid; place-items: center;
  box-shadow: 0 8px 22px rgba(185,128,58,0.4);
  opacity: 0; visibility: hidden; transform: translateY(14px) scale(0.9);
  transition: opacity 0.35s, transform 0.35s var(--ease), visibility 0.35s;
}
.to-top.is-visible { opacity: 1; visibility: visible; transform: translateY(0) scale(1); }
.to-top:hover { transform: translateY(-3px) scale(1.05); }
.to-top svg { width: 22px; height: 22px; }

/* ════════ Reveal-Animation ════════ */
.reveal { opacity: 0; transform: translateY(34px); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }
.reveal.is-in { opacity: 1; transform: none; }

/* ════════ Responsive ════════ */
@media (max-width: 900px) {
  .welcome__grid { grid-template-columns: 1fr; }
  .welcome__media { max-width: 460px; margin: 0 auto; width: 100%; }
  .features__grid { grid-template-columns: 1fr; max-width: 460px; }
  .contact__grid { grid-template-columns: 1fr; }
  .gallery__grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 200px; }
  .gallery__item--wide { grid-column: span 2; }
}

@media (max-width: 720px) {
  .nav__links {
    position: fixed; inset: 0 0 0 auto; width: min(78vw, 320px);
    flex-direction: column; align-items: flex-start; justify-content: center; gap: 0.5rem;
    background: var(--espresso); padding: 5rem 2rem 2rem;
    transform: translateX(100%); transition: transform 0.45s var(--ease);
    box-shadow: -20px 0 60px rgba(0,0,0,0.4);
  }
  .nav__links.is-open { transform: translateX(0); }
  .nav__links a { color: var(--cream) !important; width: 100%; font-size: 1.05rem; padding: 0.7rem 0.5rem; }
  .nav__links a::after { display: none; }
  .nav__cta { background: var(--gold); color: #2a1a0a !important; text-align: center; justify-content: center; margin-top: 0.6rem; }
  .nav__burger { display: flex; z-index: 101; }
  .nav__burger.is-open span { background: var(--cream); }
  .nav__burger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav__burger.is-open span:nth-child(2) { opacity: 0; }
  .nav__burger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  .field-row { grid-template-columns: 1fr; }
  .gallery__grid { grid-template-columns: 1fr; grid-auto-rows: 240px; }
  .gallery__item--wide, .gallery__item--tall { grid-column: auto; grid-row: auto; }
  .hero__actions { flex-direction: column; width: 100%; max-width: 320px; margin-inline: auto; }
  .hero__actions .btn { width: 100%; }
}

/* ════════ Reduced motion ════════ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
  [data-parallax] { transform: none !important; }
  .embers { display: none; }
}
