/* =========================================================
   Dein Wohnzimmer – Sportpark Johannesplatz Erfurt
   Brand stylesheet
   ========================================================= */

:root {
  --olive-900: #414d26;
  --olive-700: #5c6d35;
  --olive-600: #6e7f3f;   /* Markenton */
  --olive-500: #7d8e4d;
  --sage-400: #a9b585;
  --sage-200: #cdd6b4;
  --sage-100: #e4e9d4;
  --amber: #f2a93b;
  --amber-600: #e0921f;
  --cream: #faf7ef;
  --cream-2: #f4efe1;
  --card: #fffdf8;
  --ink: #383b2c;
  --muted: #6f7360;
  --line: #e6e1d0;

  --shadow-sm: 0 2px 10px rgba(65, 77, 38, .06);
  --shadow-md: 0 14px 40px rgba(65, 77, 38, .10);
  --shadow-lg: 0 30px 70px rgba(65, 77, 38, .16);
  --radius: 18px;
  --radius-lg: 28px;

  --serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --script: "Great Vibes", "Segoe Script", cursive;
  --sans: "Nunito Sans", "Segoe UI", system-ui, -apple-system, sans-serif;

  --wrap: 1160px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }

a { color: var(--olive-700); text-decoration: none; }

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 600;
  color: var(--olive-900);
  line-height: 1.1;
  margin: 0 0 .4em;
  letter-spacing: .2px;
}

.wrap { width: min(var(--wrap), 92%); margin-inline: auto; }

.script {
  font-family: var(--script);
  color: var(--amber-600);
  font-weight: 400;
}

.eyebrow {
  font-family: var(--script);
  font-size: clamp(2rem, 4.5vw, 2.9rem);
  color: var(--amber-600);
  line-height: 1;
  display: block;
  margin-bottom: .1em;
}

.section { padding: clamp(64px, 9vw, 120px) 0; position: relative; }
.section-head { max-width: 640px; margin: 0 auto clamp(36px, 5vw, 60px); text-align: center; }
.section-head h2 { font-size: clamp(2.1rem, 4.6vw, 3.4rem); }
.section-head p { color: var(--muted); font-size: 1.08rem; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: .55em;
  font-family: var(--sans); font-weight: 800; font-size: .96rem;
  letter-spacing: .3px;
  padding: .92em 1.6em; border-radius: 999px;
  border: 2px solid transparent; cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease;
  text-align: center;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--amber); color: #40340a; box-shadow: 0 10px 24px rgba(242,169,59,.35); }
.btn-primary:hover { background: var(--amber-600); }
.btn-olive { background: var(--olive-600); color: #fff; box-shadow: 0 10px 24px rgba(94,109,53,.30); }
.btn-olive:hover { background: var(--olive-700); }
.btn-ghost { background: transparent; color: var(--olive-700); border-color: var(--sage-400); }
.btn-ghost:hover { background: var(--olive-600); color: #fff; border-color: var(--olive-600); }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(250,247,239,.82);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.nav {
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px 0; gap: 16px;
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand img { height: 46px; width: auto; }
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-text b { font-family: var(--serif); font-size: 1.25rem; color: var(--olive-900); font-weight: 700; }
.brand-text span { font-size: .68rem; letter-spacing: 2.5px; text-transform: uppercase; color: var(--muted); }
.nav-links { display: flex; align-items: center; gap: 26px; list-style: none; margin: 0; padding: 0; }
.nav-links a { color: var(--ink); font-weight: 700; font-size: .95rem; position: relative; }
.nav-links a::after {
  content: ""; position: absolute; left: 0; bottom: -6px; height: 2px; width: 0;
  background: var(--amber); transition: width .2s ease;
}
.nav-links a:hover::after { width: 100%; }
.nav-cta { display: flex; align-items: center; gap: 12px; }
.menu-toggle { display: none; background: none; border: 0; cursor: pointer; padding: 6px; }
.menu-toggle span { display: block; width: 26px; height: 2.5px; background: var(--olive-700); margin: 5px 0; border-radius: 2px; transition: .25s; }

/* ---------- Hero ---------- */
.hero {
  position: relative; overflow: hidden;
  background:
    radial-gradient(1100px 520px at 82% -10%, rgba(242,169,59,.14), transparent 60%),
    radial-gradient(900px 520px at 6% 15%, rgba(169,181,133,.28), transparent 60%),
    linear-gradient(180deg, var(--cream) 0%, var(--cream-2) 100%);
  padding: clamp(48px, 8vw, 96px) 0 clamp(60px, 9vw, 110px);
}
.hero-grid {
  display: grid; grid-template-columns: 1.05fr .95fr; gap: 48px; align-items: center;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: .5em;
  background: #fff; border: 1px solid var(--line); color: var(--olive-700);
  padding: .5em 1.05em; border-radius: 999px; font-weight: 800; font-size: .82rem;
  letter-spacing: .4px; box-shadow: var(--shadow-sm); margin-bottom: 22px;
}
.hero-badge b { color: var(--amber-600); }
.hero h1 { font-size: clamp(2.9rem, 6.4vw, 5rem); font-weight: 700; }
.hero h1 .script { display: block; font-size: .62em; color: var(--amber-600); margin-bottom: -.15em; }
.hero p.lead { font-size: 1.22rem; color: var(--muted); max-width: 30em; margin: 18px 0 30px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }
.hero-facts { display: flex; gap: 26px; margin-top: 38px; flex-wrap: wrap; }
.hero-facts div b { font-family: var(--serif); font-size: 1.9rem; color: var(--olive-700); display: block; line-height: 1; }
.hero-facts div span { font-size: .82rem; color: var(--muted); letter-spacing: .3px; }

.hero-visual { position: relative; display: flex; justify-content: center; }
.hero-logo-card {
  background: #fff; border-radius: var(--radius-lg);
  padding: clamp(26px, 4vw, 48px); box-shadow: var(--shadow-lg);
  position: relative; z-index: 2; max-width: 430px; width: 100%;
  border: 1px solid #f0ead9;
}
.hero-logo-card img { margin: 0 auto; }
.blob {
  position: absolute; border-radius: 46% 54% 60% 40% / 52% 48% 52% 48%;
  filter: blur(2px); opacity: .5; z-index: 1;
}
.blob.a { width: 260px; height: 260px; background: var(--sage-200); top: -30px; right: -20px; }
.blob.b { width: 200px; height: 200px; background: rgba(242,169,59,.28); bottom: -30px; left: -25px; }

/* floating leaves */
.leaf { position: absolute; opacity: .5; animation: float 9s ease-in-out infinite; }
.leaf svg { display: block; }
@keyframes float { 0%,100% { transform: translateY(0) rotate(0); } 50% { transform: translateY(-16px) rotate(6deg); } }

/* ---------- Divider heart ---------- */
.divider-heart { display: flex; align-items: center; justify-content: center; gap: 16px; margin: 8px 0 0; }
.divider-heart::before, .divider-heart::after {
  content: ""; height: 2px; width: 64px; background: var(--sage-400); border-radius: 2px;
}
.divider-heart svg { width: 22px; height: 22px; }

/* ---------- Philosophy ---------- */
.quote-block {
  text-align: center; max-width: 760px; margin: 0 auto clamp(48px,6vw,72px);
}
.quote-block h2 { font-size: clamp(2rem, 4.4vw, 3rem); }
.quote-block p { font-size: 1.25rem; color: var(--muted); }
.features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.feature {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 34px 30px; box-shadow: var(--shadow-sm); transition: transform .2s, box-shadow .2s;
}
.feature:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.feature .ic {
  width: 58px; height: 58px; border-radius: 16px; display: grid; place-items: center;
  background: var(--sage-100); color: var(--olive-700); margin-bottom: 18px;
}
.feature .ic svg { width: 30px; height: 30px; }
.feature h3 { font-size: 1.5rem; }
.feature p { color: var(--muted); margin: 0; }

/* ---------- Sportpark strip ---------- */
.sportpark { background: linear-gradient(180deg, var(--cream) 0%, var(--sage-100) 100%); }
.sportpark-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
.sportpark-copy h2 { font-size: clamp(2rem, 4.4vw, 3.1rem); }
.sportpark-copy p { color: var(--muted); font-size: 1.08rem; }
.facilities { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.facility {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 22px; display: flex; gap: 14px; align-items: center; box-shadow: var(--shadow-sm);
  transition: transform .2s;
}
.facility:hover { transform: translateY(-4px); }
.facility .ic { width: 46px; height: 46px; border-radius: 12px; background: var(--sage-100); display: grid; place-items: center; color: var(--olive-700); flex-shrink: 0; }
.facility .ic svg { width: 26px; height: 26px; }
.facility b { display: block; font-family: var(--serif); font-size: 1.25rem; color: var(--olive-900); }
.facility span { font-size: .85rem; color: var(--muted); }

/* ---------- Menu ---------- */
.menu { background: var(--cream); }
.menu-tabs { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-bottom: 46px; }
.menu-tab {
  border: 1.5px solid var(--sage-400); background: #fff; color: var(--olive-700);
  padding: .6em 1.25em; border-radius: 999px; font-weight: 800; font-size: .9rem; cursor: pointer;
  transition: .2s; font-family: var(--sans);
}
.menu-tab:hover { border-color: var(--olive-600); }
.menu-tab.active { background: var(--olive-600); color: #fff; border-color: var(--olive-600); }

.menu-panel { display: none; animation: fade .35s ease; }
.menu-panel.active { display: block; }
@keyframes fade { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }

.menu-columns { columns: 2; column-gap: 56px; }
.menu-group { break-inside: avoid; margin-bottom: 40px; }
.menu-group > h3 {
  font-family: var(--script); color: var(--amber-600); font-weight: 400;
  font-size: 2.2rem; margin-bottom: 18px; line-height: 1;
}
.menu-item { padding: 12px 0; border-bottom: 1px dashed var(--line); }
.menu-item:last-child { border-bottom: 0; }
.menu-item .row { display: flex; align-items: baseline; gap: 10px; }
.menu-item .name { font-family: var(--serif); font-weight: 700; font-size: 1.22rem; color: var(--olive-900); letter-spacing: .3px; text-transform: uppercase; }
.menu-item .dots { flex: 1; border-bottom: 2px dotted var(--sage-400); transform: translateY(-4px); min-width: 20px; }
.menu-item .price { font-weight: 800; color: var(--amber-600); font-size: 1.08rem; white-space: nowrap; }
.menu-item .desc { color: var(--muted); font-size: .96rem; margin-top: 2px; }
.menu-item .variants { margin-top: 6px; }
.menu-item .variants .row { font-size: 1rem; }
.menu-item .variants .name { font-family: var(--sans); text-transform: none; font-size: .96rem; font-weight: 700; color: var(--ink); }
.menu-item .variants .price { font-size: .98rem; }

.menu-note {
  margin-top: 30px; text-align: center; color: var(--muted); font-size: .95rem;
  background: var(--sage-100); border-radius: var(--radius); padding: 18px 22px;
}
.menu-download { text-align: center; margin-top: 34px; }

/* ---------- Reservation ---------- */
.reserve {
  background:
    radial-gradient(700px 400px at 90% 10%, rgba(242,169,59,.16), transparent 60%),
    linear-gradient(160deg, var(--olive-700) 0%, var(--olive-900) 100%);
  color: #fff;
}
.reserve h2 { color: #fff; }
.reserve .eyebrow { color: var(--amber); }
.reserve-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 50px; align-items: start; }
.reserve-copy p { color: rgba(255,255,255,.82); font-size: 1.08rem; }
.reserve-copy .contact-line { display: flex; align-items: center; gap: 12px; margin: 14px 0; color: #fff; font-weight: 600; }
.reserve-copy .contact-line svg { width: 20px; height: 20px; color: var(--amber); flex-shrink: 0; }
.reserve-copy .contact-line a { color: #fff; }

.form-card {
  background: var(--card); color: var(--ink); border-radius: var(--radius-lg);
  padding: clamp(26px, 3.5vw, 42px); box-shadow: var(--shadow-lg);
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { display: flex; flex-direction: column; gap: 6px; }
.field.full { grid-column: 1 / -1; }
.field label { font-size: .82rem; font-weight: 800; color: var(--olive-700); letter-spacing: .3px; }
.field input, .field select, .field textarea {
  font-family: var(--sans); font-size: 1rem; color: var(--ink);
  padding: .78em .9em; border: 1.5px solid var(--line); border-radius: 12px; background: #fff;
  transition: border .18s, box-shadow .18s;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--olive-500); box-shadow: 0 0 0 3px rgba(126,142,77,.16);
}
.field textarea { resize: vertical; min-height: 92px; }
.hp-field { display: none; }
.form-card .btn { width: 100%; justify-content: center; margin-top: 4px; }
.form-hint { font-size: .8rem; color: var(--muted); text-align: center; margin: 12px 0 0; }
.form-ok {
  display: none; background: var(--sage-100); border: 1px solid var(--sage-400);
  color: var(--olive-900); border-radius: 12px; padding: 14px 16px; margin-bottom: 16px; font-weight: 600;
}
.form-ok.show { display: block; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.info-card {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 34px; box-shadow: var(--shadow-sm);
}
.info-card h3 { font-size: 1.7rem; display: flex; align-items: center; gap: 10px; }
.info-card h3 svg { width: 24px; height: 24px; color: var(--amber-600); }
.hours { list-style: none; margin: 0; padding: 0; }
.hours li { display: flex; justify-content: space-between; padding: 9px 0; border-bottom: 1px dashed var(--line); font-size: .98rem; }
.hours li:last-child { border-bottom: 0; }
.hours li span:first-child { color: var(--ink); font-weight: 700; }
.hours li span:last-child { color: var(--muted); }
.addr-line { display: flex; gap: 12px; align-items: flex-start; margin-bottom: 16px; }
.addr-line svg { width: 20px; height: 20px; color: var(--amber-600); flex-shrink: 0; margin-top: 3px; }
.addr-line a { color: var(--olive-700); font-weight: 700; }

/* ---------- Footer ---------- */
.site-footer { background: var(--olive-900); color: rgba(255,255,255,.8); padding: 60px 0 28px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer-brand b { font-family: var(--serif); font-size: 1.6rem; color: #fff; display: block; }
.footer-brand span { font-size: .72rem; letter-spacing: 2.5px; text-transform: uppercase; color: var(--sage-400); }
.footer-brand p { margin-top: 14px; font-size: .95rem; max-width: 32em; }
.footer-col h4 { color: #fff; font-family: var(--sans); font-size: .8rem; letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 14px; }
.footer-col ul { list-style: none; margin: 0; padding: 0; }
.footer-col li { margin-bottom: 9px; }
.footer-col a { color: rgba(255,255,255,.78); font-size: .96rem; }
.footer-col a:hover { color: var(--amber); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.14); padding-top: 22px;
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  font-size: .85rem; color: rgba(255,255,255,.6);
}
.footer-bottom a { color: rgba(255,255,255,.75); }
.footer-bottom a:hover { color: var(--amber); }

/* ---------- Legal pages ---------- */
.legal { padding: clamp(48px, 7vw, 90px) 0; }
.legal .wrap { max-width: 860px; }
.legal h1 { font-size: clamp(2.2rem, 5vw, 3.2rem); margin-bottom: .3em; }
.legal h2 { font-size: 1.5rem; margin-top: 1.8em; color: var(--olive-700); }
.legal h3 { font-size: 1.15rem; margin-top: 1.4em; }
.legal p, .legal li { color: var(--ink); }
.legal a { color: var(--olive-700); text-decoration: underline; }
.legal .back { display: inline-flex; align-items: center; gap: 8px; margin-bottom: 28px; font-weight: 800; }
.legal address { font-style: normal; background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 22px 26px; box-shadow: var(--shadow-sm); }

/* ---------- Responsive ---------- */
@media (max-width: 940px) {
  .hero-grid { grid-template-columns: 1fr; text-align: center; }
  .hero p.lead { margin-inline: auto; }
  .hero-actions, .hero-facts { justify-content: center; }
  .hero-visual { order: -1; }
  .features { grid-template-columns: 1fr; }
  .sportpark-grid, .reserve-grid, .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .menu-columns { columns: 1; }
}
@media (max-width: 720px) {
  .nav-links, .nav-cta .btn { display: none; }
  .menu-toggle { display: block; }
  .nav.open .nav-links {
    display: flex; position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; background: var(--cream); padding: 20px 6%; gap: 18px;
    border-bottom: 1px solid var(--line); box-shadow: var(--shadow-md);
  }
  .form-grid { grid-template-columns: 1fr; }
  .facilities { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
}

/* =========================================================
   Relaunch: Ankündigung, Eröffnung, Vision, Team
   ========================================================= */

/* ---------- Ankündigungsleiste ---------- */
.announce {
  background: linear-gradient(100deg, var(--olive-700), var(--olive-900));
  color: #fff; font-size: .92rem; padding: 10px 0;
}
.announce .wrap { display: flex; align-items: center; justify-content: center; gap: 12px; flex-wrap: wrap; text-align: center; }
.announce b { color: var(--amber); }
.announce a { color: #fff; font-weight: 800; text-decoration: underline; text-underline-offset: 3px; white-space: nowrap; }
.announce a:hover { color: var(--amber); }
.announce-dot {
  width: 9px; height: 9px; border-radius: 50%; background: var(--amber);
  box-shadow: 0 0 0 0 rgba(242,169,59,.7); animation: pulse 2s infinite; flex-shrink: 0;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(242,169,59,.7); }
  70% { box-shadow: 0 0 0 10px rgba(242,169,59,0); }
  100% { box-shadow: 0 0 0 0 rgba(242,169,59,0); }
}

/* ---------- Zentrierter Hero ---------- */
.hero-center { text-align: center; }
.hero-inner { max-width: 820px; margin-inline: auto; display: flex; flex-direction: column; align-items: center; }
.hero-logo { width: min(520px, 82%); height: auto; margin-bottom: 26px; }
.hero-center .hero-badge { margin-bottom: 20px; }
.hero-center h1 { font-size: clamp(2.1rem, 5vw, 3.6rem); font-weight: 700; }
.hero-center p.lead { margin: 18px auto 30px; }
.hero-center .hero-actions { justify-content: center; }
.hero-center .hero-facts { justify-content: center; gap: 40px; margin-top: 42px; }
.hero-center .hero-facts div { text-align: center; }

/* ---------- Eröffnung ---------- */
.eroeffnung { background: linear-gradient(180deg, var(--cream-2) 0%, var(--cream) 100%); }
.opening-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.opening-card {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 28px 24px; box-shadow: var(--shadow-sm); text-align: center;
  display: flex; flex-direction: column; align-items: center; transition: transform .2s, box-shadow .2s;
}
.opening-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.opening-card.highlight { border-color: var(--sage-400); background: var(--sage-100); }
.op-tag {
  display: inline-block; font-size: .68rem; font-weight: 900; letter-spacing: 1.2px;
  text-transform: uppercase; color: var(--olive-700); background: #fff;
  border: 1px solid var(--sage-400); border-radius: 999px; padding: .35em .9em; margin-bottom: 16px;
}
.op-tag-amber { background: var(--amber); border-color: var(--amber); color: #40340a; }
.op-day { font-family: var(--serif); font-size: 1.9rem; color: var(--olive-900); line-height: 1; }
.op-date { font-size: .95rem; color: var(--muted); margin-top: 4px; font-weight: 700; }
.op-time {
  font-family: var(--sans); font-size: 1.12rem; color: var(--amber-600); font-weight: 900;
  letter-spacing: .3px; margin: 16px 0 0;
}
.opening-card p { color: var(--muted); font-size: .93rem; margin: 14px 0 0; }
.opening-note {
  text-align: center; margin: 34px auto 0; max-width: 46em; color: var(--muted);
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 18px 24px;
}
.opening-note a { font-weight: 800; white-space: nowrap; }

/* ---------- Vision-Band ---------- */
.vision-band {
  background: linear-gradient(140deg, var(--olive-700), var(--olive-900));
  color: #fff; border-radius: var(--radius-lg); padding: clamp(28px, 4vw, 46px);
  text-align: center; margin-bottom: clamp(40px, 5vw, 64px); box-shadow: var(--shadow-md);
}
.vision-label {
  font-family: var(--script); font-size: 2.2rem; color: var(--amber); display: block; line-height: 1; margin-bottom: 10px;
}
.vision-band p { font-size: 1.14rem; color: rgba(255,255,255,.9); margin: 0; max-width: 46em; margin-inline: auto; }
.vision-band strong { color: #fff; }

/* ---------- Geschmacks-Zitat ---------- */
.taste-quote { text-align: center; margin-top: clamp(44px, 6vw, 70px); }
.taste-lead { color: var(--muted); margin: 0; }
.taste-big {
  font-family: var(--serif); font-size: clamp(1.9rem, 4.4vw, 3rem); font-weight: 700;
  color: var(--olive-900); margin: .15em 0 .3em; line-height: 1.15;
}
.taste-sub { color: var(--muted); max-width: 38em; margin: 0 auto; font-size: 1.05rem; }

/* ---------- Team ---------- */
.team { background: linear-gradient(180deg, var(--cream) 0%, var(--sage-100) 100%); }
.team-photo { margin: 0 0 clamp(34px, 4vw, 52px); }
.team-photo img {
  width: 100%; border-radius: var(--radius-lg); box-shadow: var(--shadow-md); border: 5px solid #fff;
}
.team-photo figcaption { text-align: center; color: var(--muted); font-size: .93rem; margin-top: 14px; }
.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.member {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 28px 22px; text-align: center; box-shadow: var(--shadow-sm); transition: transform .2s, box-shadow .2s;
}
.member:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.member img {
  width: 108px; height: 108px; border-radius: 50%; object-fit: cover;
  margin: 0 auto 16px; border: 4px solid var(--sage-200);
}
.member b { font-family: var(--serif); font-size: 1.6rem; color: var(--olive-900); display: block; margin-bottom: 8px; }
.member p { color: var(--muted); font-size: .95rem; margin: 0; }
.team-bond { text-align: center; margin-top: clamp(38px, 5vw, 56px); }
.team-bond p { font-size: 1.14rem; color: var(--ink); max-width: 44em; margin: 0 auto; }

/* ---------- Kontakt-Ergänzungen ---------- */
.hours-note { margin-top: 16px; color: var(--muted); font-size: .9rem; }
.hours-note a { font-weight: 700; }
.pay-badge {
  display: flex; align-items: center; gap: 12px; margin-top: 20px;
  background: var(--sage-100); border-radius: 12px; padding: 14px 16px; font-size: .95rem;
}
.pay-badge svg { width: 24px; height: 24px; color: var(--olive-700); flex-shrink: 0; }

/* ---------- Responsive ---------- */
@media (max-width: 940px) {
  .opening-grid { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-center .hero-facts { gap: 26px; }
}
@media (max-width: 620px) {
  .opening-grid, .team-grid { grid-template-columns: 1fr; }
  .announce { font-size: .84rem; }
  .hero-logo { width: 90%; }
}

/* =========================================================
   Mobile Overflow-Fix – lange Wörter (E-Mail) umbrechen,
   damit die Seite horizontal nicht überläuft
   ========================================================= */
html { overflow-x: hidden; }

/* Grid-/Flex-Kinder dürfen schrumpfen (sonst erzwingt langer Text Überbreite) */
.contact-grid > *, .reserve-grid > *, .sportpark-grid > *,
.hero-grid > *, .footer-grid > * { min-width: 0; }
.addr-line, .contact-line { min-width: 0; }

/* Lange, ununterbrechbare Zeichenketten (E-Mail, URL) umbrechen */
.addr-line a, .addr-line span,
.contact-line a,
.info-card, .reserve-copy,
.footer-brand p, .menu-item .desc,
.field input, .field textarea {
  overflow-wrap: anywhere;
  word-break: break-word;
}

/* E-Mail-Links nicht künstlich breit werden lassen */
a[href^="mailto:"] { overflow-wrap: anywhere; }

/* ---------- Speisekarte: Gruppennotiz & lange Namen ---------- */
.menu-group .group-note {
  font-size: .84rem; color: var(--muted); font-style: italic;
  margin: 14px 0 0; padding-top: 12px; border-top: 1px dashed var(--line);
}
.menu-item .name { min-width: 0; overflow-wrap: break-word; }

/* ---------- Eingebettetes JotForm ---------- */
.form-card--embed { padding: 14px; }
.form-card--embed iframe { display: block; width: 100%; background: transparent; }
.form-card--embed .form-hint { margin: 12px 6px 2px; }

/* =========================================================
   Reservierung: zentrierter CTA + Modal-Overlay (JotForm)
   ========================================================= */
.reserve-center { max-width: 640px; margin-inline: auto; text-align: center; }
.reserve-center p { color: rgba(255,255,255,.85); font-size: 1.1rem; }
.reserve-open { font-size: 1.05rem; padding: 1.05em 2em; margin: 26px 0 30px; }
.reserve-open svg { width: 22px; height: 22px; }
.reserve-contacts { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px 28px; }
.reserve-contacts .contact-line { display: inline-flex; align-items: center; gap: 10px; color: #fff; font-weight: 600; font-size: .98rem; }
.reserve-contacts .contact-line svg { width: 20px; height: 20px; color: var(--amber); flex-shrink: 0; }
.reserve-contacts a.contact-line:hover { color: var(--amber); }
.reserve-legal { font-size: .82rem; color: rgba(255,255,255,.6); margin-top: 24px; }
.reserve-legal a { color: rgba(255,255,255,.82); text-decoration: underline; text-underline-offset: 2px; }

.modal { position: fixed; inset: 0; z-index: 200; display: none; align-items: flex-start; justify-content: center; padding: clamp(12px, 4vw, 40px); }
.modal.open { display: flex; }
.modal-backdrop { position: absolute; inset: 0; background: rgba(30,34,20,.62); backdrop-filter: blur(3px); animation: fade .25s ease; }
.modal-card { position: relative; z-index: 1; background: var(--card); width: min(640px, 100%); max-height: 92vh; margin: auto; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); display: flex; flex-direction: column; overflow: hidden; animation: modalIn .3s cubic-bezier(.2,.8,.2,1); }
@keyframes modalIn { from { opacity: 0; transform: translateY(20px) scale(.98); } to { opacity: 1; transform: none; } }
.modal-head { display: flex; align-items: center; justify-content: space-between; padding: 16px 20px; border-bottom: 1px solid var(--line); font-family: var(--serif); font-size: 1.4rem; font-weight: 700; color: var(--olive-900); flex-shrink: 0; }
.modal-close { background: var(--sage-100); border: 0; cursor: pointer; width: 38px; height: 38px; border-radius: 50%; font-size: 1.7rem; line-height: 1; color: var(--olive-700); display: grid; place-items: center; transition: background .18s, transform .18s; }
.modal-close:hover { background: var(--sage-200); transform: rotate(90deg); }
.modal-body { overflow-y: auto; -webkit-overflow-scrolling: touch; padding: 6px; }
.modal-body iframe { display: block; width: 100%; }
body.modal-lock { overflow: hidden; }

/* =========================================================
   Öffnungszeiten + Video (ersetzt Eröffnungs-Sektion)
   ========================================================= */
.welcome { background: linear-gradient(180deg, var(--cream-2) 0%, var(--cream) 100%); }
.welcome-grid { display: grid; grid-template-columns: .82fr 1.18fr; gap: clamp(30px, 5vw, 66px); align-items: center; }
.welcome-video { display: flex; justify-content: center; }
.welcome-video video {
  width: 100%; max-width: 330px; aspect-ratio: 9 / 16; height: auto; display: block;
  border-radius: var(--radius-lg); box-shadow: var(--shadow-lg);
  background: #1c1e16; border: 6px solid #fff; object-fit: cover;
}
.welcome-info h2 { font-size: clamp(2rem, 4.6vw, 3.2rem); }
.hours-big { list-style: none; margin: 20px 0 24px; padding: 0; max-width: 460px; }
.hours-big li {
  display: flex; align-items: baseline; justify-content: space-between; gap: 16px;
  padding: 15px 0; border-bottom: 2px dashed var(--line);
}
.hours-big li:last-child { border-bottom: 0; }
.hb-day { font-family: var(--serif); font-size: 1.5rem; font-weight: 600; color: var(--olive-900); }
.hb-time { font-weight: 900; font-size: 1.18rem; color: var(--amber-600); white-space: nowrap; }
.welcome-info p { color: var(--muted); font-size: 1.05rem; max-width: 40em; }
.welcome-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 8px; }
@media (max-width: 860px) {
  .welcome-grid { grid-template-columns: 1fr; }
  .welcome-video { order: -1; }
  .welcome-video video { max-width: 280px; }
}

/* ---------- Bargeldlos-Hinweis Speisekarte ---------- */
.menu-pay {
  display: flex; align-items: center; gap: 12px; justify-content: center;
  max-width: 640px; margin: 22px auto 0; text-align: left;
  background: var(--sage-100); border-radius: var(--radius); padding: 15px 22px;
  color: var(--ink); font-size: .98rem; line-height: 1.5;
}
.menu-pay svg { width: 26px; height: 26px; color: var(--olive-700); flex-shrink: 0; }

/* =========================================================
   FAQ – Akkordeon
   ========================================================= */
.faq { background: linear-gradient(180deg, var(--cream) 0%, var(--sage-100) 100%); }
.faq-list { max-width: 780px; margin: 0 auto; }
.faq-item {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius);
  margin-bottom: 14px; box-shadow: var(--shadow-sm); overflow: hidden;
  transition: box-shadow .2s;
}
.faq-item[open] { box-shadow: var(--shadow-md); }
.faq-item summary {
  cursor: pointer; list-style: none; padding: 20px 56px 20px 24px; position: relative;
  font-family: var(--serif); font-size: 1.3rem; font-weight: 600; color: var(--olive-900);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+"; position: absolute; right: 22px; top: 50%; transform: translateY(-50%);
  font-family: var(--sans); font-weight: 800; font-size: 1.55rem; color: var(--amber-600);
  line-height: 1;
}
.faq-item[open] summary::after { content: "–"; }
.faq-item summary:hover { color: var(--olive-700); }
.faq-answer { padding: 0 24px 20px; }
.faq-answer p { margin: 0; color: var(--muted); font-size: 1.02rem; }
.faq-answer a { color: var(--olive-700); font-weight: 700; text-decoration: underline; }

/* ---------- Reservierung: Bestätigungs-Screen im Modal ---------- */
.modal-success { padding: clamp(30px, 5vw, 48px) 28px; text-align: center; animation: fade .3s ease; }
.modal-success-icon {
  width: 72px; height: 72px; border-radius: 50%; display: grid; place-items: center;
  background: var(--sage-100); color: var(--olive-700); margin: 0 auto 18px;
}
.modal-success-icon svg { width: 38px; height: 38px; }
.modal-success h3 { font-size: clamp(1.7rem, 4vw, 2.2rem); margin-bottom: .3em; }
.modal-success p { color: var(--muted); font-size: 1.05rem; max-width: 34em; margin: 0 auto 24px; }
