/* ============================================================
   ZEN HOUSE ERLANGEN — zenhouseerlangen.de
   Nachbau der Original-Seite · Stand 2026-08
   ============================================================ */

:root {
  --bg: #0e0a07;
  --bg-2: #15100a;
  --bg-3: #1c1610;
  --beige: #f2eee3;
  --beige-text: #171310;
  --red: #c8332e;
  --brand-red: #d21117;
  --marquee-red: #b8382e;
  --text: #ece5d8;
  --muted: #a89d8d;
  --muted-dark: #6d675e;
  --line: rgba(255, 255, 255, 0.1);
  --line-dark: rgba(0, 0, 0, 0.12);
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Inter", system-ui, sans-serif;
  --mono: "JetBrains Mono", ui-monospace, monospace;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

.wrap { max-width: 1180px; margin: 0 auto; padding: 0 24px; }

/* ---------- Typo-Bausteine ---------- */
.label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--red);
  display: block;
  margin-bottom: 18px;
}
.h-xl, .h-l {
  font-family: var(--serif);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: 0.01em;
}
.h-xl { font-size: clamp(44px, 6.5vw, 84px); }
.h-l  { font-size: clamp(34px, 4.6vw, 58px); }
.h-l em, .h-xl em {
  font-style: italic;
  color: var(--red);
}
.beige .h-l { color: #22201b; }
.beige .h-l em { color: var(--red); }
.lead { color: var(--muted); max-width: 460px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 14px 22px;
  border: 1px solid var(--line);
  color: var(--text);
  transition: all 0.25s ease;
  cursor: pointer;
  background: transparent;
}
.btn:hover { border-color: var(--red); color: var(--red); }
.btn.primary { background: var(--red); border-color: var(--red); color: #fff; }
.btn.primary:hover { background: #a9241f; color: #fff; }
.btn .arr { transition: transform 0.25s; }
.btn:hover .arr { transform: translateX(4px); }
.textlink {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--red);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid transparent;
  padding-bottom: 3px;
}
.textlink:hover { border-color: var(--red); }

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 28px;
  transition: background 0.3s ease;
}
.site-header.scrolled {
  background: rgba(10, 7, 5, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
.logo { display: flex; align-items: center; gap: 10px; }
.logo img { height: 44px; width: auto; }
.nav { display: flex; align-items: center; gap: 26px; }
.nav a {
  font-size: 13px;
  color: var(--muted);
  transition: color 0.2s;
}
.nav a:hover { color: var(--text); }
.nav .btn { padding: 10px 18px; }
.burger { display: none; background: none; border: none; color: var(--text); font-size: 22px; cursor: pointer; }

/* ---------- Hero ---------- */
.hero {
  min-height: 100svh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(0.42);
  transform: scale(1.04);
  animation: heroZoom 14s ease-out forwards;
}
@keyframes heroZoom { to { transform: scale(1); } }
.hero-bg::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10,7,5,0.55) 0%, rgba(10,7,5,0.1) 40%, rgba(14,10,7,0.95) 100%);
}
.hero-inner { position: relative; z-index: 2; padding-top: 90px; }
.hero .lead { margin: 26px 0 34px; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 22px; }
.scroll-hint {
  position: absolute;
  right: 34px; bottom: 40px;
  writing-mode: vertical-rl;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--muted);
  display: flex; align-items: center; gap: 14px;
}
.scroll-hint::after {
  content: "";
  width: 1px; height: 56px;
  background: var(--red);
  animation: pulse 2s infinite;
}
@keyframes pulse { 50% { opacity: 0.3; } }

/* ---------- Pillars / Bereiche ---------- */
.pillars { padding: 110px 0 0; }
.pillars-head {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 48px;
  align-items: end;
  margin-bottom: 64px;
}
.pillar-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
}
.pillar { border-right: 1px solid var(--line); position: relative; }
.pillar:last-child { border-right: none; }
.pillar-img { position: relative; overflow: hidden; aspect-ratio: 4 / 3.4; }
.pillar-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
  filter: saturate(0.92);
}
.pillar:hover .pillar-img img { transform: scale(1.05); }
.badge {
  position: absolute; top: 16px; right: 16px;
  background: var(--red); color: #fff;
  font-family: var(--mono); font-size: 10px;
  letter-spacing: 0.18em; text-transform: uppercase;
  padding: 6px 10px;
}
.pillar-body { padding: 26px 26px 30px; }
.pillar-no {
  font-family: var(--mono); font-size: 10px;
  letter-spacing: 0.2em; color: var(--muted);
  text-transform: uppercase;
  display: block; margin-bottom: 12px;
}
.pillar h3 {
  font-family: var(--serif);
  font-size: 34px; font-weight: 500;
  margin-bottom: 12px;
}
.pillar h3 em { font-style: italic; color: var(--red); }
.pillar p { color: var(--muted); font-size: 14px; margin-bottom: 20px; min-height: 88px; }
.pillar .soon { color: var(--muted-dark); font-family: var(--mono); font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; }

/* ---------- Menu (beige) ---------- */
.menu-section { background: var(--beige); color: var(--beige-text); padding: 110px 0 120px; margin-top: 110px; }
.menu-head {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 48px;
  align-items: end;
  margin-bottom: 54px;
}
.menu-section .lead { color: #6d675c; }
.menu-tabs {
  display: flex; flex-wrap: wrap; gap: 8px 22px;
  border-bottom: 1px solid var(--line-dark);
  padding-bottom: 16px;
  margin-bottom: 40px;
}
.menu-tab {
  background: none; border: none; cursor: pointer;
  font-family: var(--mono); font-size: 11px;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: #8d8578;
  padding: 6px 2px;
  border-bottom: 2px solid transparent;
  transition: color 0.2s;
}
.menu-tab:hover { color: var(--beige-text); }
.menu-tab.active { color: var(--red); border-color: var(--red); }
.menu-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.85fr;
  gap: 56px;
  align-items: start;
}
.menu-list { display: none; }
.menu-list.active { display: block; }
.menu-note {
  font-size: 13.5px; color: #6d675c;
  border-left: 2px solid var(--red);
  padding: 4px 0 4px 16px;
  margin-bottom: 26px;
}
.addons { display: flex; flex-wrap: wrap; gap: 8px 18px; margin-bottom: 30px; }
.addons span {
  font-family: var(--mono); font-size: 11px;
  color: #56504a;
  background: rgba(0,0,0,0.05);
  padding: 6px 10px;
}
.addons b { color: var(--red); font-weight: 600; }
.dish {
  display: grid;
  grid-template-columns: 56px 1fr auto;
  gap: 18px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line-dark);
  cursor: default;
  align-items: start;
}
.dish:first-child { padding-top: 0; }
.dish-thumb { width: 56px; height: 56px; object-fit: cover; border-radius: 2px; }
.dish.no-thumb { grid-template-columns: 1fr auto; }
.dish h4 { font-family: var(--serif); font-size: 21px; font-weight: 600; margin-bottom: 4px; }
.dish .rec {
  font-family: var(--mono); font-size: 9.5px;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--red); display: block; margin-bottom: 4px;
}
.dish p { font-size: 13px; color: #6d675c; max-width: 520px; }
.dish .price { font-family: var(--mono); font-size: 14px; color: var(--red); white-space: nowrap; }
.dish:hover h4 { color: var(--red); transition: color 0.2s; }

.menu-feature {
  position: sticky; top: 110px;
  background: #fff;
  box-shadow: 0 30px 60px rgba(0,0,0,0.12);
}
.menu-feature img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.menu-feature-body { padding: 26px 28px 30px; }
.menu-feature-body h4 { font-family: var(--serif); font-size: 27px; font-weight: 600; margin-bottom: 10px; }
.menu-feature-body p { font-size: 13.5px; color: #6d675c; margin-bottom: 16px; }
.menu-feature-body .price { font-family: var(--mono); font-size: 17px; color: var(--red); }

/* ---------- Gallery ---------- */
.gallery { padding: 110px 0; }
.gallery-head { display: grid; grid-template-columns: 1.2fr 1fr; gap: 48px; align-items: end; margin-bottom: 44px; }
.gallery-filter { display: flex; gap: 20px; margin-bottom: 34px; }
.gallery-filter button {
  background: none; border: none; cursor: pointer;
  font-family: var(--mono); font-size: 11px;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--muted);
  padding-bottom: 5px;
  border-bottom: 2px solid transparent;
}
.gallery-filter button.active { color: var(--red); border-color: var(--red); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.g-item { position: relative; overflow: hidden; aspect-ratio: 1/1.15; }
.g-item.hidden { display: none; }
.g-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease, filter 0.5s;
  filter: saturate(0.9);
}
.g-item:hover img { transform: scale(1.06); filter: saturate(1); }
.g-item figcaption {
  position: absolute; left: 12px; bottom: 10px;
  font-family: var(--mono); font-size: 9.5px;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: #fff; opacity: 0;
  transition: opacity 0.3s;
  text-shadow: 0 1px 8px rgba(0,0,0,0.7);
}
.g-item:hover figcaption { opacity: 1; }

/* ---------- Why ---------- */
.why { padding: 40px 0 110px; }
.why-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 70px; align-items: center; }
.why-img img { width: 100%; aspect-ratio: 3/4; object-fit: cover; }
.why h2 { margin-bottom: 22px; }
.why-intro { color: var(--muted); margin-bottom: 40px; max-width: 520px; }
.why-item { display: grid; grid-template-columns: 48px 1fr; gap: 18px; padding: 22px 0; border-top: 1px solid var(--line); }
.why-item .no { font-family: var(--mono); font-size: 12px; color: var(--red); padding-top: 4px; }
.why-item h4 { font-family: var(--serif); font-size: 22px; font-weight: 600; margin-bottom: 6px; }
.why-item p { color: var(--muted); font-size: 14px; }

/* ---------- Location ---------- */
.location { padding: 70px 0 110px; }
.loc-head { display: grid; grid-template-columns: 1.2fr 1fr; gap: 48px; align-items: end; margin-bottom: 54px; }
.loc-card {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  background: var(--bg-3);
  border: 1px solid var(--line);
}
.loc-map iframe { width: 100%; height: 100%; min-height: 420px; border: 0; display: block; filter: grayscale(0.2); }
.loc-info { padding: 38px 40px; }
.loc-info .label { margin-bottom: 14px; }
.loc-info h3 { font-family: var(--serif); font-size: 34px; font-weight: 500; margin-bottom: 26px; }
.loc-info h3 em { font-style: italic; color: var(--red); }
.loc-row {
  display: grid; grid-template-columns: 110px 1fr;
  gap: 16px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  font-size: 13.5px;
}
.loc-row dt { font-family: var(--mono); font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted); padding-top: 3px; }
.loc-row dd { color: var(--text); }
.loc-row.hours dd { color: var(--red); }
.loc-cta { display: flex; gap: 12px; margin-top: 30px; flex-wrap: wrap; }

/* ---------- Reserve ---------- */
.reserve { background: var(--bg-2); padding: 110px 0; border-top: 1px solid var(--line); }
.reserve-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: start; }
.reserve h2 { margin-bottom: 22px; }
.reserve .lead { margin-bottom: 40px; }
.res-facts { display: grid; gap: 26px; }
.res-fact dt { font-family: var(--mono); font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted); margin-bottom: 8px; }
.res-fact dd { font-family: var(--serif); font-size: 21px; }
.res-fact dd.small { font-family: var(--sans); font-size: 15px; color: var(--text); }
.res-fact .ruhetag { color: var(--red); }
.res-note { margin-top: 34px; font-family: var(--mono); font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted); }
.ot-frame { background: #fff; min-height: 560px; }
.ot-frame iframe { width: 100%; height: 620px; border: 0; display: block; }

/* ---------- Spa ---------- */
.spa { padding: 110px 0; }
.spa-grid { display: grid; grid-template-columns: 1fr 1.05fr; gap: 70px; align-items: center; }
.spa-img img { width: 100%; aspect-ratio: 4/3.3; object-fit: cover; }
.spa h2 { margin-bottom: 18px; }
.spa .lead { margin-bottom: 36px; }
.price-cat {
  font-family: var(--mono); font-size: 10px;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--red);
  margin: 26px 0 6px;
}
.price-row {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 22px;
  padding: 11px 0;
  border-bottom: 1px solid var(--line);
  font-size: 14.5px;
  align-items: baseline;
}
.price-row .dur { font-family: var(--mono); font-size: 11px; color: var(--muted); }
.price-row .p { font-family: var(--mono); font-size: 14px; color: var(--red); min-width: 52px; text-align: right; }
.spa .btn { margin-top: 34px; }

/* ---------- Marquee ---------- */
.marquee {
  background: var(--marquee-red);
  overflow: hidden;
  padding: 16px 0;
  white-space: nowrap;
}
.marquee-track {
  display: inline-flex;
  gap: 0;
  animation: scroll 40s linear infinite;
}
.marquee span {
  font-family: var(--serif);
  font-style: italic;
  font-size: 19px;
  color: #f6e9df;
  padding: 0 26px;
  display: inline-flex;
  align-items: center;
  gap: 52px;
}
.marquee span::after { content: "✦"; font-size: 13px; font-style: normal; }
@keyframes scroll { to { transform: translateX(-50%); } }

/* ---------- Footer ---------- */
.site-footer { background: #0a0705; padding: 80px 0 0; border-top: 1px solid var(--line); }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 60px;
}
.footer-brand img { height: 72px; margin-bottom: 20px; }
.footer-brand p { color: var(--muted); font-size: 13.5px; max-width: 250px; }
.footer-col h5 {
  font-family: var(--mono); font-size: 10px;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--red);
  margin-bottom: 18px;
}
.footer-col li { margin-bottom: 10px; font-size: 13.5px; color: var(--muted); }
.footer-col a:hover { color: var(--text); }
.footer-col .ruhetag { color: var(--red); }
.footer-bottom {
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px;
  padding: 22px 0;
  border-top: 1px solid var(--line);
  font-family: var(--mono); font-size: 10.5px;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--muted-dark);
}
.footer-bottom a:hover { color: var(--text); }

/* ---------- Legal pages ---------- */
.legal { max-width: 780px; margin: 0 auto; padding: 150px 24px 100px; }
.legal .back { margin-bottom: 40px; display: inline-flex; }
.legal h1 { font-family: var(--serif); font-size: clamp(40px, 5vw, 62px); font-weight: 500; margin: 14px 0 8px; }
.legal .sub { color: var(--muted); margin-bottom: 50px; }
.legal h2 { font-family: var(--serif); font-size: 26px; font-weight: 600; margin: 42px 0 12px; }
.legal h3 { font-family: var(--mono); font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--red); margin: 30px 0 10px; }
.legal p, .legal li { color: var(--muted); font-size: 14.5px; margin-bottom: 12px; }
.legal ul { list-style: disc; padding-left: 20px; }
.legal .stand { margin-top: 60px; font-family: var(--mono); font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted-dark); }
.legal a { color: var(--red); }

/* ---------- Consent Banner ---------- */
.consent {
  position: fixed;
  left: 20px; right: 20px; bottom: 20px;
  z-index: 200;
  background: #1c1610;
  border: 1px solid var(--line);
  padding: 22px 24px;
  max-width: 480px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  display: none;
}
.consent.visible { display: block; }
.consent h4 { font-family: var(--serif); font-size: 21px; margin-bottom: 8px; }
.consent p { font-size: 12.5px; color: var(--muted); margin-bottom: 16px; }
.consent p a { color: var(--red); }
.consent-btns { display: flex; gap: 10px; flex-wrap: wrap; }
.consent .btn { padding: 10px 16px; font-size: 10px; }

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

/* ---------- Sprachumschalter ---------- */
.lang {
  display: inline-flex;
  align-items: stretch;
  border: 1px solid var(--line);
  line-height: 1;
}
.lang a,
.lang .lang-on {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 7px 12px;
  color: var(--muted);
  transition: color 0.2s ease, background 0.2s ease;
}
.lang a:hover { color: var(--text); background: rgba(236, 229, 216, 0.05); }
.lang .lang-on { background: rgba(236, 229, 216, 0.09); color: var(--text); cursor: default; }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .pillars-head, .menu-head, .gallery-head, .loc-head { grid-template-columns: 1fr; gap: 20px; }
  .pillar-grid { grid-template-columns: 1fr; }
  .pillar { border-right: none; border-bottom: 1px solid var(--line); }
  .pillar p { min-height: 0; }
  .menu-grid { grid-template-columns: 1fr; }
  .menu-feature { display: none; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid, .spa-grid, .reserve-grid { grid-template-columns: 1fr; gap: 44px; }
  .loc-card { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .nav { display: none; }
  .nav.open {
    display: flex;
    position: fixed; inset: 0;
    background: rgba(10,7,5,0.98);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 30px;
    font-size: 20px;
  }
  .burger { display: block; z-index: 210; }
  .nav.open .lang a,
  .nav.open .lang .lang-on { font-size: 13px; padding: 10px 16px; }
}

/* ============================================================
   ERGAENZUNGEN v3 - Stand 2026-08-25
   Reservierungs-Karte (OpenTable) + Handy-Feinschliff
   ============================================================ */

section[id], div[id] { scroll-margin-top: 84px; }

@media (min-width: 981px) {
  .reserve-grid { grid-template-columns: 1.05fr .95fr; gap: 60px; align-items: start; }
}

.ot-card {
  background: var(--bg-3);
  border: 1px solid var(--line);
  padding: 22px 22px 18px;
  box-shadow: 0 30px 70px rgba(0, 0, 0, .5);
}
.ot-head {
  display: flex; justify-content: space-between; align-items: baseline;
  margin-bottom: 16px;
  font-family: var(--mono); font-size: 10px;
  letter-spacing: .2em; text-transform: uppercase;
  color: var(--muted);
}
.ot-head b { color: var(--red); font-weight: 400; }

.ot-frame { background: transparent; min-height: 0; }
.ot-frame iframe {
  width: 100%; height: 468px; border: 0; display: block;
  background: #fff; border-radius: 3px;
}
.ot-foot {
  margin-top: 14px;
  font-family: var(--mono); font-size: 10px;
  letter-spacing: .16em; text-transform: uppercase;
  color: var(--muted-dark);
  display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap;
}
.ot-foot a { color: var(--red); }

@media (max-width: 600px) {
  .scroll-hint { display: none; }
  .ot-card { padding: 16px 14px 14px; }
  .ot-frame iframe { height: 470px; }
  .price-row { grid-template-columns: 1fr auto; row-gap: 2px; }
  .price-row .dur { grid-column: 1; font-size: 10.5px; }
  .price-row .p   { grid-column: 2; grid-row: 1 / span 2; align-self: center; }
  .loc-row { grid-template-columns: 84px 1fr; gap: 12px; }
  .footer-grid   { grid-template-columns: 1fr; gap: 34px; }
  .footer-bottom { flex-direction: column; gap: 6px; }
  .dish { grid-template-columns: 48px 1fr auto; gap: 12px; }
  .dish-thumb { width: 48px; height: 48px; }
}
