/* =========================================================
   WETTERSCHACHT — Shared Stylesheet v1.1
   imbiss-wetterschacht.de
   ========================================================= */

/* ── Google Fonts ── */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400;1,600&family=Inter:wght@300;400;500;600&display=swap');

/* ── Design Tokens ── */
:root {
  --primary:        #009B39;
  --primary-hover:  #007d2e;
  --primary-soft:   #e8f7ee;
  --accent:         #009B39;
  --bg:             #f9f7f3;
  --bg-alt:         #ffffff;
  --bg-dark:        #0D0D0D;
  --bg-dark-2:      #1a1a1a;
  --bg-dark-3:      #111111;
  --surface:        #ffffff;
  --text:           #1a1a1a;
  --text-muted:     #5a5a5a;
  --text-light:     #f0f0ee;
  --text-on-dark:   #e8e8e4;
  --border:         #e0ddd6;
  --border-dark:    rgba(255,255,255,.08);
  --container-max:  1180px;
  --container-pad:  clamp(1rem, 4vw, 2.5rem);
  --font-serif:     'Playfair Display', 'Nimbus Roman D', Georgia, 'Times New Roman', serif;
  --font-ui:        'Inter', system-ui, -apple-system, sans-serif;
  --radius-card:    12px;
  --radius-btn:     8px;
  --shadow-card:    0 1px 3px rgba(0,0,0,.06), 0 4px 16px rgba(0,0,0,.06);
  --shadow-hover:   0 8px 32px rgba(0,0,0,.12);
  --shadow-dark:    0 4px 24px rgba(0,0,0,.4);
  --transition:     200ms ease;
}

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
  overflow-x: hidden;
  background: var(--bg-dark);
}
html { background: var(--bg-dark); }
body {
  font-family: var(--font-ui);
  font-size: clamp(0.95rem, 0.9rem + 0.2vw, 1.05rem);
  color: var(--text);
  background: var(--bg);
  color: var(--text-on-dark);
  overflow-x: hidden;
  background: var(--bg-dark);
  max-width: 100%;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button, input, select, textarea {
  font-family: var(--font-ui);
  font-size: 1rem;
}

/* ── Container ── */
.container-main {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--container-pad);
}

/* ── Typography ── */
h1, h2, h3 { font-family: var(--font-serif); font-weight: 700; line-height: 1.2; }
h1 { font-size: clamp(2.2rem, 2rem + 2.5vw, 4rem); }
h2 { font-size: clamp(1.7rem, 1.4rem + 1.5vw, 2.6rem); }
h3 { font-size: clamp(1.15rem, 1rem + 0.7vw, 1.5rem); }
p { line-height: 1.7; }

.section-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--primary);
  display: block;
  margin-bottom: .75rem;
}
.section-label--light {
  color: var(--accent);
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  height: 52px;
  padding-inline: 1.75rem;
  border-radius: var(--radius-btn);
  font-size: .95rem;
  font-weight: 600;
  cursor: pointer;
  transition: background var(--transition), color var(--transition),
              transform var(--transition), box-shadow var(--transition);
  border: 2px solid transparent;
  text-decoration: none;
  white-space: nowrap;
}
.btn:active { transform: scale(.97); }

.btn-primary {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}
.btn-primary:hover {
  background: var(--primary-hover);
  border-color: var(--primary-hover);
  box-shadow: 0 4px 20px rgba(0,155,57,.3);
}

.btn-ghost-white {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,.5);
}
.btn-ghost-white:hover {
  background: rgba(255,255,255,.1);
  border-color: #fff;
}

.btn-ghost-green {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
}
.btn-ghost-green:hover {
  background: var(--primary-soft);
}

.btn-lg {
  height: 56px;
  padding-inline: 2.5rem;
  font-size: 1.02rem;
  min-width: 220px;
}

/* ── Header ── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  background: rgba(13,13,13,.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-dark);
  transition: background var(--transition);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100px;
  gap: 1.5rem;
}
.header-logo {
  flex-shrink: 0;
  width: 200px;
  height: auto;
}
.header-logo img {
  width: 200px;
  height: auto;
  display: block;
}
.header-nav {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}
.header-nav a {
  color: var(--text-on-dark);
  font-size: .88rem;
  font-weight: 500;
  letter-spacing: .02em;
  transition: color var(--transition);
  position: relative;
}
.header-nav a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0; right: 100%;
  height: 1.5px;
  background: var(--primary);
  transition: right var(--transition);
}
.header-nav a:hover { color: #fff; }
.header-nav a:hover::after { right: 0; }

.header-phone {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: var(--primary);
  color: #fff;
  padding: .55rem 1.2rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: .88rem;
  white-space: nowrap;
  transition: background var(--transition), box-shadow var(--transition);
  box-shadow: 0 2px 12px rgba(0,155,57,.35);
  text-decoration: none;
}
.header-phone:hover { background: var(--primary-hover); box-shadow: 0 4px 20px rgba(0,155,57,.45); color: #fff; }
.header-phone svg { flex-shrink: 0; }

/* Mobile Menu Toggle */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform .3s ease, opacity .3s ease;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--bg-dark-2);
  z-index: 150;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 6rem 2rem 3rem;
  overflow-y: auto;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  display: block;
  color: var(--text-on-dark);
  font-size: clamp(1.6rem, 5vw, 2.2rem);
  font-family: var(--font-serif);
  font-weight: 700;
  letter-spacing: .03em;
  padding: .65rem 0;
  border-bottom: none;
  text-align: center;
  text-transform: uppercase;
  transition: color var(--transition);
}
.mobile-nav a:hover { color: var(--primary); }
.mobile-nav .mobile-phone {
  margin-top: 2rem;
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: var(--primary);
  color: #fff;
  padding: .65rem 1.5rem;
  border-radius: 999px;
  font-size: 1rem;
  font-weight: 600;
  font-family: var(--font-ui);
  transition: background var(--transition);
}
.mobile-nav .mobile-phone:hover { background: var(--primary-hover); }

/* ── Hero ── */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(0,0,0,.80) 0%,
    rgba(0,0,0,.55) 50%,
    rgba(0,0,0,.35) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  padding-block: 120px 80px;
}
.hero-logo {
  height: 120px;
  width: auto;
  margin-bottom: 2.5rem;
  filter: drop-shadow(0 2px 12px rgba(0,0,0,.5));
}
.hero h1 {
  color: #fff;
  margin-bottom: 1rem;
  text-shadow: 0 2px 20px rgba(0,0,0,.5);
  max-width: 720px;
}
.hero-sub {
  font-size: clamp(1.05rem, 0.9rem + .5vw, 1.3rem);
  color: rgba(255,255,255,.85);
  margin-bottom: 2.5rem;
  max-width: 560px;
  line-height: 1.65;
}
.hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}
.hero-badge {
  position: absolute;
  right: max(var(--container-pad), 6vw);
  top: 50%;
  transform: translateY(-50%);
  background: var(--primary);
  color: #fff;
  border-radius: 50%;
  width: 150px;
  height: 150px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: .88rem;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: .01em;
  box-shadow: 0 6px 28px rgba(0,155,57,.5);
  z-index: 2;
}
.hero-badge strong { font-size: 1.25rem; display: block; margin-bottom: .2rem; }

/* ── Trust Bar ── */
.trust-bar {
  background: var(--primary);
  color: #fff;
  padding-block: 1rem;
}
.trust-bar-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1.5rem 3rem;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .88rem;
  font-weight: 600;
  letter-spacing: .02em;
  white-space: nowrap;
}
.trust-item svg { flex-shrink: 0; opacity: .85; }

/* ── Sections (generic) ── */
.section {
  padding-block: clamp(3.5rem, 6vw, 5.5rem);
}
.section--dark {
  background: var(--bg-dark);
  color: var(--text-on-dark);
}
.section--dark-2 {
  background: var(--bg-dark-2);
  color: var(--text-on-dark);
}
.section--alt {
  background: var(--bg-alt);
}
.section--green {
  background: var(--primary);
  color: #fff;
}

.section-head {
  margin-bottom: 2.75rem;
}
.section-head--center {
  text-align: center;
}

/* ── USP Grid ── */
.usp-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}
.usp-card {
  background: var(--surface);
  border-radius: var(--radius-card);
  padding: 2rem;
  box-shadow: var(--shadow-card);
  transition: transform var(--transition), box-shadow var(--transition);
}
.usp-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
}
.usp-card__icon {
  width: 52px;
  height: 52px;
  background: var(--primary-soft);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  color: var(--primary);
}
.usp-card__icon svg { width: 26px; height: 26px; }
.usp-card { color: #1a1a1a; }
.usp-card h3 { margin-bottom: .5rem; font-size: 1.15rem; color: #1a1a1a; }
.usp-card p { color: #555555; font-size: .9rem; line-height: 1.6; }

/* ── Tagesangebote ── */
.tages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.25rem;
}
.tages-card {
  border-radius: var(--radius-card);
  overflow: hidden;
  background: var(--bg-dark-2);
  border: 1px solid var(--border-dark);
  transition: transform var(--transition), box-shadow var(--transition);
}
.tages-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-dark);
}
.tages-card__day {
  background: var(--primary);
  color: #fff;
  padding: .6rem 1.2rem;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.tages-card__body {
  padding: 1.25rem;
}
.tages-card__dish {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--text-light);
  margin-bottom: .4rem;
}
.tages-card__note {
  font-size: .82rem;
  color: rgba(255,255,255,.5);
  margin-bottom: .9rem;
  line-height: 1.5;
}
.tages-card__price {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--accent);
}

/* ── Speisekarte Cards ── */
.menu-section-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}
.menu-category {
  background: var(--surface);
  border-radius: var(--radius-card);
  padding: 1.75rem;
  box-shadow: var(--shadow-card);
}
.menu-category h3 {
  font-size: 1.2rem;
  color: var(--primary);
  margin-bottom: 1.25rem;
  padding-bottom: .75rem;
  border-bottom: 2px solid var(--primary-soft);
}
.menu-item {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: .75rem;
  padding: .55rem 0;
  border-bottom: 1px solid var(--border);
}
.menu-item:last-child { border-bottom: none; }
.menu-item__name {
  font-size: .92rem;
  color: var(--text);
  flex: 1;
  min-width: 0;
  overflow-wrap: break-word;
}
.menu-item__note {
  font-size: .78rem;
  color: var(--text-muted);
  display: block;
  margin-top: .15rem;
}
.menu-item__price {
  font-weight: 700;
  font-size: .95rem;
  color: var(--primary);
  white-space: nowrap;
  flex-shrink: 0;
}

/* ── Full Speisekarte Page ── */
.menu-full-section {
  margin-bottom: 3rem;
}
.menu-full-section h2 {
  font-size: 1.6rem;
  color: var(--bg-dark);
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 3px solid var(--primary);
}
.menu-full-table {
  width: 100%;
  border-collapse: collapse;
}
.menu-full-table tr {
  border-bottom: 1px solid var(--border);
}
.menu-full-table tr:last-child { border-bottom: none; }
.menu-full-table td {
  padding: .75rem .5rem;
  font-size: .93rem;
}
.menu-full-table td:last-child {
  text-align: right;
  font-weight: 700;
  color: var(--primary);
  white-space: nowrap;
}
.menu-full-table td small {
  display: block;
  font-size: .78rem;
  color: var(--text-muted);
  font-weight: 400;
  margin-top: .15rem;
}

/* ── Galerie ── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
  width: 100%;
}
.gallery-grid > div {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--bg-dark-2);
  display: block;
}
.gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .45s ease, opacity .3s ease;
}
.gallery-grid > div:hover img {
  transform: scale(1.07);
  opacity: .85;
}
/* Galerie-Section: heading zentriert, grid direkt anschließend */
#galerie .container-main {
  padding-bottom: clamp(1.5rem, 2.5vw, 2.5rem);
}
#galerie .gallery-grid {
  margin-top: 0;
}

/* ── Anlass Section ── */
.anlass-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}
.anlass-card {
  background: var(--bg-dark-2);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-card);
  padding: 2rem;
  transition: border-color var(--transition), transform var(--transition);
}
.anlass-card:hover {
  border-color: var(--primary);
  transform: translateY(-3px);
}
.anlass-card__icon {
  font-size: 2.2rem;
  margin-bottom: 1rem;
}
.anlass-card h3 {
  font-size: 1.1rem;
  color: var(--text-light);
  margin-bottom: .6rem;
}
.anlass-card p {
  font-size: .88rem;
  color: rgba(255,255,255,.55);
  line-height: 1.6;
}

/* ── CTA Banner ── */
.cta-banner {
  background: var(--primary);
  color: #fff;
  padding-block: clamp(2.5rem, 4vw, 4rem);
  text-align: center;
}
.cta-banner h2 {
  color: #fff;
  margin-bottom: 1rem;
}
.cta-banner p {
  color: rgba(255,255,255,.85);
  margin-bottom: 2rem;
  font-size: 1.05rem;
  max-width: 560px;
  margin-inline: auto;
}
.cta-banner .btn-ghost-white {
  border-color: rgba(255,255,255,.6);
}

/* ── Kontakt Section ── */
.kontakt-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 3rem;
  align-items: start;
}
.kontakt-info h2 {
  color: var(--text-light);
  margin-bottom: 1.5rem;
}
.kontakt-detail {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.75rem;
  align-items: flex-start;
}
.kontakt-detail__icon {
  width: 44px;
  height: 44px;
  background: rgba(0,155,57,.15);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  flex-shrink: 0;
}
.kontakt-detail__text strong {
  display: block;
  font-size: .8rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: rgba(255,255,255,.4);
  margin-bottom: .35rem;
}
.kontakt-detail__text a,
.kontakt-detail__text span {
  color: var(--text-light);
  font-size: .97rem;
  line-height: 1.6;
}
.kontakt-detail__text a:hover { color: var(--accent); }

/* Kontakt Form */
.kontakt-form {
  background: var(--bg-dark-2);
  border-radius: var(--radius-card);
  padding: 2.25rem;
  border: 1px solid var(--border-dark);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.form-group {
  margin-bottom: 1.25rem;
}
.form-group label {
  display: block;
  font-size: .82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .07em;
  color: rgba(255,255,255,.5);
  margin-bottom: .45rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: rgba(255,255,255,.05);
  border: 1px solid var(--border-dark);
  border-radius: 8px;
  padding: .85rem 1rem;
  color: var(--text-light);
  transition: border-color var(--transition), background var(--transition);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,.25); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  background: rgba(0,155,57,.06);
}
.form-group select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23666' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}
.form-group select option { background: var(--bg-dark-2); color: var(--text-light); }
.form-group textarea { resize: vertical; min-height: 120px; }
/* Honeypot hidden field */
.field-website { display: none !important; }

.form-submit .btn {
  width: 100%;
  justify-content: center;
}
.form-feedback {
  display: none;
  padding: 1rem 1.25rem;
  border-radius: 8px;
  font-size: .9rem;
  margin-top: 1rem;
}
.form-feedback--success {
  background: rgba(0,155,57,.12);
  border: 1px solid rgba(0,155,57,.3);
  color: var(--accent);
}
.form-feedback--error {
  background: rgba(220,38,38,.1);
  border: 1px solid rgba(220,38,38,.3);
  color: #f87171;
}

/* ── Opening Hours Table ── */
.hours-table {
  width: 100%;
  margin-top: 1rem;
}
.hours-table tr td {
  padding: .4rem 0;
  font-size: .9rem;
  color: var(--text-on-dark);
}
.hours-table tr td:first-child {
  color: rgba(255,255,255,.5);
  width: 110px;
}
.hours-table tr td:last-child {
  font-weight: 600;
  color: var(--accent);
}

/* ── Social Links ── */
.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 1.25rem;
}
.social-link {
  width: 44px;
  height: 44px;
  background: rgba(255,255,255,.07);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-on-dark);
  transition: background var(--transition), color var(--transition);
}
.social-link:hover {
  background: var(--primary);
  color: #fff;
}

/* ── Footer ── */
.site-footer {
  background: #080808;
  color: var(--text-on-dark);
  border-top: 1px solid var(--border-dark);
}
.footer-top {
  padding-block: 3rem;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.3fr;
  gap: 2.5rem;
}
.footer-brand img { height: 58px; margin-bottom: 1.25rem; }
.footer-brand p {
  font-size: .88rem;
  color: rgba(255,255,255,.45);
  line-height: 1.7;
  max-width: 240px;
}
.footer-col h4 {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.35);
  margin-bottom: 1rem;
}
.footer-col a {
  display: block;
  font-size: .88rem;
  color: rgba(255,255,255,.55);
  margin-bottom: .5rem;
  transition: color var(--transition);
}
.footer-col a:hover { color: var(--accent); }

/* Footer Akkordeon (SEO) */
.footer-accordion {
  border-top: 1px solid var(--border-dark);
}
.sc-acc {
  border-bottom: 1px solid var(--border-dark);
}
.sc-acc-btn {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  padding-block: 1rem;
  padding-inline: 0;
  background: none;
  border: none;
  color: rgba(255,255,255,.35);
  cursor: pointer;
  font-family: var(--font-ui);
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  transition: color var(--transition);
}
.sc-acc-btn:hover { color: rgba(255,255,255,.7); }
.sc-acc-btn .acc-arrow {
  transition: transform .25s ease;
  flex-shrink: 0;
}
.sc-acc-btn[aria-expanded="true"] .acc-arrow { transform: rotate(180deg); }
.sc-acc-body {
  padding-block: .75rem 1.5rem;
  padding-inline: 0;
  display: flex;
  flex-wrap: wrap;
  gap: .5rem 1.5rem;
}
.sc-acc-body[hidden] { display: none; }
.sc-acc-body a {
  font-size: .83rem;
  color: rgba(255,255,255,.45);
  transition: color var(--transition);
}
.sc-acc-body a:hover { color: var(--accent); }

/* Legal Row */
.footer-legal {
  border-top: 1px solid var(--border-dark);
  padding-block: 1.25rem;
}
.footer-legal-row {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: .75rem;
  font-size: .78rem;
  color: rgba(255,255,255,.3);
}
@media (min-width: 640px) {
  .footer-legal-row {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    text-align: left;
  }
}
.footer-legal-row a {
  color: rgba(255,255,255,.35);
  transition: color var(--transition);
}
.footer-legal-row a:hover { color: rgba(255,255,255,.7); }
.footer-legal-links { display: flex; gap: 1.25rem; flex-wrap: wrap; }

/* ── FAB Stack (Scroll-to-Top + Bedienhilfen) ── */
.fab-wrap {
  position: fixed;
  right: 1.25rem;
  bottom: calc(1.25rem + env(safe-area-inset-bottom, 0px));
  display: flex;
  flex-direction: column-reverse;
  gap: .6rem;
  align-items: center;
  z-index: 92;
}
.fab {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--primary);
  border: none;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(0,155,57,.35);
  transition: background var(--transition), transform .25s ease, opacity .35s ease;
  font-size: 1.1rem;
}
.fab:hover { background: var(--accent); transform: scale(1.1); }
.fab svg { pointer-events: none; }

/* Scroll-to-Top: standardmäßig versteckt, JS blendet ein */
.fab-top {
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px) scale(.7);
}
.fab-top.visible {
  opacity: 1;
  pointer-events: auto;
  transform: none;
}
.sc-stt:hover { background: var(--primary-hover); }
@media (prefers-reduced-motion: reduce) {
  .sc-stt, }

/* ── Sticky Mobile CTA ── */
.mobile-cta-bar {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--bg-dark);
  border-top: 1px solid var(--border-dark);
  padding: .75rem var(--container-pad);
  z-index: 80;
  gap: .75rem;
}
.mobile-cta-bar a {
  flex: 1;
  text-align: center;
  justify-content: center;
}

/* ── SEO Page Header ── */
.page-hero {
  background: var(--bg-dark);
  padding-block: 120px 60px;
  text-align: center;
}
.page-hero h1 {
  color: #fff;
  margin-bottom: 1rem;
}
.page-hero p {
  color: rgba(255,255,255,.7);
  font-size: 1.05rem;
  max-width: 560px;
  margin-inline: auto;
}

/* ── Breadcrumb ── */
.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: .4rem;
  align-items: center;
  font-size: .8rem;
  color: rgba(255,255,255,.4);
  margin-bottom: 1.5rem;
}
.breadcrumb a { color: rgba(255,255,255,.4); }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb span { color: rgba(255,255,255,.6); }

/* ── Responsive ── */
@media (max-width: 900px) {
  .header-nav { display: none; }
  .header-phone { display: none; }
  .hamburger { display: flex; }
  .mobile-cta-bar { display: flex; }
  body { padding-bottom: 72px; }
  /* FABs über der Sticky-Bar platzieren */
  .fab-wrap { bottom: calc(5.5rem + env(safe-area-inset-bottom, 0px)); }
  /* A11y-Panel entsprechend höher */
  .a11y-panel { bottom: calc(9.5rem + env(safe-area-inset-bottom, 0px)); }

  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .kontakt-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }

@media (max-width: 640px) {
  .form-row { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .hero-badge { display: none; }
  .trust-item { font-size: .82rem; }

/* ── Utilities ── */
.text-green { color: var(--primary); }
.text-accent { color: var(--accent); }
.text-muted { color: var(--text-muted); }
.text-center { text-align: center; }
.mt-1 { margin-top: .5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 3rem; }
.mb-1 { margin-bottom: .5rem; }
.mb-2 { margin-bottom: 1rem; }
.gap-cta { display: flex; flex-wrap: wrap; gap: 1rem; align-items: center; }

/* Addresse highlight */
.address-box {
  background: rgba(0,155,57,.08);
  border: 1px solid rgba(0,155,57,.2);
  border-radius: var(--radius-card);
  padding: 1.25rem 1.5rem;
  margin-top: 1.5rem;
}
.address-box p {
  font-size: .9rem;
  color: var(--text-on-dark);
  line-height: 1.7;
}

/* Hinweis Karte */
.note-card {
  background: rgba(168,202,81,.08);
  border-left: 3px solid var(--accent);
  border-radius: 0 8px 8px 0;
  padding: 1rem 1.25rem;
  font-size: .88rem;
  color: var(--text-on-dark);
  line-height: 1.6;
}

/* ── A11y / Bedienhilfen Toolbar ── */
.a11y-panel {
  position: fixed;
  right: 1.25rem;
  bottom: calc(8.5rem + env(safe-area-inset-bottom, 0px));
  width: 300px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 12px 48px rgba(0,0,0,.22);
  z-index: 200;
  overflow: hidden;
  font-family: var(--font-ui);
  color: #1a1a1a;
}
.a11y-panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.25rem 1rem;
  border-bottom: 1px solid #ececec;
}
.a11y-panel-title {
  font-weight: 800;
  font-size: .95rem;
  letter-spacing: .07em;
  color: #1a1a1a;
}
.a11y-close-btn {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #f0f0f0;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: #555;
  transition: background .2s;
}
.a11y-close-btn:hover { background: #e0e0e0; }
.a11y-panel-body { padding: 1.1rem 1.25rem 1.25rem; display: flex; flex-direction: column; gap: 1.1rem; }
.a11y-section-label {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .09em;
  color: #999;
  margin-bottom: .55rem;
  text-transform: uppercase;
}
.a11y-btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: .4rem;
}
.a11y-opt-btn {
  padding: .45rem 1rem;
  border-radius: 8px;
  border: 1.5px solid #ddd;
  background: #fff;
  color: #333;
  font-size: .88rem;
  font-weight: 500;
  cursor: pointer;
  transition: all .18s ease;
  font-family: var(--font-ui);
}
.a11y-opt-btn:hover { border-color: var(--primary); color: var(--primary); }
.a11y-opt-btn.active { background: var(--primary); border-color: var(--primary); color: #fff; font-weight: 600; }
.a11y-hint {
  font-size: .78rem;
  color: #aaa;
  margin-top: .4rem;
  line-height: 1.5;
}
.a11y-reset-btn {
  width: 100%;
  padding: .7rem 1rem;
  border-radius: 10px;
  border: 1.5px dashed #ddd;
  background: transparent;
  color: #777;
  font-size: .88rem;
  cursor: pointer;
  font-family: var(--font-ui);
  transition: border-color .2s, color .2s;
}
.a11y-reset-btn:hover { border-color: var(--primary); color: var(--primary); }

/* Hoher Kontrast */
body.hc-mode { filter: contrast(1.4) saturate(1.1); }

/* ── Light-Theme (Tagmodus) ── */
[data-theme="light"] {
  --bg-dark:    #f4f3ef;
  --bg-dark-2:  #ffffff;
  --bg-dark-3:  #ebebeb;
  --text-on-dark: #1a1a1a;
  --text-light: #1a1a1a;
  --border-dark: rgba(0,0,0,.09);
}
[data-theme="light"] body { background: #f4f3ef; color: #1a1a1a; }
[data-theme="light"] .site-header { background: rgba(244,243,239,.96); }
[data-theme="light"] .site-header a,
[data-theme="light"] .site-footer { color: #1a1a1a; }
[data-theme="light"] .section--dark,
[data-theme="light"] .section--dark-2 { background: #fff; }
[data-theme="light"] .section--dark h2,
[data-theme="light"] .section--dark-2 h2 { color: #1a1a1a; }
[data-theme="light"] .section--dark .section-head p,
[data-theme="light"] .section--dark-2 .section-head p { color: rgba(0,0,0,.6); }
[data-theme="light"] .anlass-card { background: #f0efeb; border-color: rgba(0,0,0,.08); }
[data-theme="light"] .anlass-card h3 { color: #1a1a1a; }
[data-theme="light"] .anlass-card p { color: rgba(0,0,0,.6); }
[data-theme="light"] .site-footer { background: #1a1a1a; }

/* Dark / Light forced overrides live in JS via data-theme on html */

/* ── Textfarbe in dunklen Sections ── */
/* Alle section-head Texte weiß (Body ist dunkel) */
.section-head h2 { color: #fff; }
.section-head p  { color: rgba(255,255,255,.65); }
.section--dark .section-head p,
.section--dark-2 .section-head p { color: rgba(255,255,255,.65); }
/* section--alt (heller Hintergrund) braucht dunkle Textfarbe */
.section--alt .section-head h2 { color: #1a1a1a; }
.section--alt .section-head p  { color: #555555; }
.section--alt .section-label   { color: var(--primary); background: rgba(0,155,57,.08); }
/* Light-Theme Override */
[data-theme="light"] .section-head h2 { color: #1a1a1a; }
[data-theme="light"] .section-head p  { color: rgba(0,0,0,.6); }

#anlass .section-head p {
  margin-inline: auto;
  text-align: center;
  max-width: 560px;
}
