/* ============================================================
   VOGELHAUS EVY â€“ Haupt-Stylesheet
   ============================================================ */

/* ===== CSS CUSTOM PROPERTIES ===== */
:root {
  --color-primary:       #30a836;
  --color-primary-light: #5cc661;
  --color-primary-dark:  #23852a;
  --color-accent:        #f6c60c;
  --color-accent-light:  #f9d84e;
  --color-navy:          #214193;
  --color-navy-dark:     #172e6e;
  --color-navy-light:    #a0d9f7;
  --color-bg:            #edf7ef;
  --color-bg-card:       #ffffff;
  --color-kachel:        #ceeed4;
  --color-text:          #000000;
  --color-text-muted:    #000000;
  --color-border:        #c8e6cc;
  --color-btn:           var(--color-accent);
  --color-btn-hover:     var(--color-accent-light);
  --color-btn-text:      #1a1a1a;
  --radius-card:         0;
  --shadow-card:         0 4px 24px rgba(48,168,54,0.1);
  --shadow-hover:        0 8px 40px rgba(48,168,54,0.18);
  --transition:          0.3s ease;
  --max-width:           1400px;
  --font-heading:        'Dancing Script', cursive;
  --nav-bar-height:      150px;
  /* Freier Bereich unter fixer Navigation (inkl. Logo-Überhang) */
  --hero-safe-top:       clamp(148px, 16vh, 192px);
  --z-virentest-corner:  2100;
  --color-virentest-btn:       #c62828;
  --color-virentest-btn-hover: #a61f1f;
  --color-virentest-btn-text:  #ffffff;
  --virentest-top: 30px;
  --virentest-right: -58px;
  --virentest-width: 200px;
  --virentest-font-size: 15px;
  --virentest-padding-top: 14px;
  --virentest-padding-bottom: 6px;
}

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Lato', sans-serif;
  background: var(--color-bg);
  color: var(--color-text);
  line-height: 1.7;
  font-size: 17px;
}

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  line-height: 1.2;
  font-weight: 700;
}

h1 { font-size: clamp(40px, 6vw, 72px); }
h2 { font-size: clamp(32px, 4.5vw, 50px); }
h3 { font-size: clamp(24px, 3vw, 30px); }
h4 { font-size: clamp(22px, 2.5vw, 26px); }

h3, h4 {
  font-weight: 400;
}

h2, h3, h4 {
  color: var(--color-navy);
}

/* Fließtext einheitlich schwarz – Überschriften & Buttons behalten eigene Farben */
:where(
  p, li, label, td, th, dd, dt, small,
  .section-subtitle,
  .section-tag,
  .about-check,
  .about-fact strong,
  .about-fact span,
  .about-text p,
  .service-card p,
  .bring-card p,
  .note-card:not(.hours-note-box) p,
  .contact-item-label,
  .contact-item-value,
  .contact-item-value a,
  .pub-card p,
  .prose p,
  .prose li,
  .prose strong,
  .prose a,
  .link-item-text p,
  .link-item-url,
  .link-add-box p,
  .gb-name,
  .gb-meta,
  .gb-entry-body,
  .gb-form-box p,
  .story-card-year,
  .story-card p,
  .story-card-pages,
  .gallery-placeholder p,
  .about-icon-card p,
  .about-helper-card p,
  .review-text,
  .review-headline,
  .review-meta,
  .review-read-more,
  .text-muted-sm,
  .text-italic-note,
  .form-check-row label,
  .form-note,
  .form-check-row a,
  .hours-table td,
  .hours-table-row .time
) {
  color: var(--color-text);
}

:where(
  .contact-item-value a:hover,
  .prose a:hover
) {
  color: var(--color-text);
}

a {
  color: var(--color-text);
  text-decoration: underline;
  text-underline-offset: 0.12em;
}

a:hover { color: var(--color-text); }

/* Keine Unterstreichung bei Buttons, Navigation, Footer und Karten-Links */
:where(
  .btn,
  .nav-cta,
  .nav-logo,
  .nav-links a,
  .nav-mobile a,
  .footer a,
  .link-item,
  .gallery-cat-btn,
),
:where(
  .btn:hover,
  .nav-cta:hover,
  .nav-logo:hover,
  .nav-links a:hover,
  .nav-mobile a:hover,
  .footer a:hover,
  .link-item:hover,
  .gallery-cat-btn:hover
) {
  text-decoration: none;
}
img { max-width: 100%; height: auto; display: block; }

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* Global: keine runden Ecken bei Boxen/UI */
:where(
  .btn,
  .nav,
  .nav-mobile,
  .page-banner,
  .service-card,
  .about-logo-display,
  .hero-card,
  .hero-stat,
  .hours-table,
  .hours-note-box,
  .note-card,
  .link-item,
  .link-add-box,
  .contact-info-card,
  .contact-map-placeholder,
  .pub-card,
  .gb-entry,
  .gb-form-box,
  .footer,
  input,
  textarea,
  select,
  button
) {
  border-radius: 0 !important;
}

/* ===== SECTION HELPERS ===== */
section { padding: 88px 0; }

.section-tag {
  display: inline-block;
  background: var(--color-navy-light);
  color: #1a1a1a;
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 0;
  margin-bottom: 14px;
  margin-top:30px;
}

.section-title {
  font-size: clamp(38px, 5.5vw, 58px);
  color: var(--color-navy);
  margin-bottom: 18px;
  font-weight: 700;
}

.section-subtitle {
  font-size: 18px;
  color: var(--color-text-muted);
  max-width: 640px;
  line-height: 1.65;
}

.section-header { margin-bottom: 56px; }
.section-header .section-tag { margin-top: 0; }
.section-header.center { text-align: center; }
.section-header.center .section-subtitle { margin: 0 auto; }

/* ===== NAVIGATION ===== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 999;
  background: #ffffff;
  transition: box-shadow var(--transition);
}

.nav.scrolled {
  box-shadow: 0 2px 20px rgba(0,0,0,0.1);
}

.nav .container {
  position: relative;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 150px;
  gap: 24px;
  padding-right: 56px;
  transition: height 0.3s ease;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-shrink: 0;
  color: var(--color-navy);
  text-decoration: none;
}

.nav-logo:hover {
  color: var(--color-navy);
  text-decoration: none;
}

.nav-logo img {
  width: 178px;
  height: auto;
  border-radius: 0;
  box-shadow: none;
  margin-top: 24px;
  margin-bottom: -36px;
  position: relative;
  z-index: 1;
  transition: width 0.3s ease, margin-top 0.3s ease, margin-bottom 0.3s ease;
}

.nav.scrolled .nav-inner {
  height: 64px;
}

.nav.scrolled .nav-logo img {
  width: 54px;
  margin-top: 0;
  margin-bottom: 0;
  box-shadow: none;
}

.nav-logo-text {
  font-family: 'Nunito', sans-serif;
  font-weight: 900;
  font-size: 22px;
  color: var(--color-navy);
  line-height: 1.1;
  margin-top: 12px;
}

.nav.scrolled .nav-logo-text {
  margin-top: 0;
}

.nav-logo-text span {
  display: block;
  font-weight: 400;
  font-size: 13px;
  color: var(--color-navy);
  margin-top: 4px;
}

.nav-links {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  justify-content: flex-end;
  gap: 4px;
  list-style: none;
  margin-left: auto;
}

.nav-links a {
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 15px;
  color: var(--color-navy);
  padding: 10px 14px;
  border-radius: 0;
  transition: color var(--transition), background var(--transition);
  white-space: nowrap;
  text-decoration: none;
}

.nav-links a:hover {
  color: var(--color-navy);
  background: rgba(160, 217, 247, 0.45);
  text-decoration: none;
}

.nav-links a.active {
  color: var(--color-navy);
  background: var(--color-navy-light);
}

.nav-cta {
  background: var(--color-btn) !important;
  color: var(--color-btn-text) !important;
  padding: 11px 22px !important;
  font-size: 15px !important;
  border-radius: 0;
  transition: background var(--transition), transform var(--transition) !important;
}

.nav-cta:hover {
  background: var(--color-btn-hover) !important;
  transform: translateY(-1px);
  color: var(--color-btn-text) !important;
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  flex-shrink: 0;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
}

.nav-actions {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.nav-hamburger span {
  display: block;
  width: 26px;
  height: 3px;
  background: var(--color-navy);
  border-radius: 0;
  transition: var(--transition);
}

.nav-mobile {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(320px, 88vw);
  z-index: 1001;
  background: #fff;
  border-left: 3px solid var(--color-primary);
  padding: 72px 0 24px;
  overflow-y: auto;
  transform: translateX(100%);
  visibility: hidden;
  pointer-events: none;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.35s;
  box-shadow: -8px 0 40px rgba(33, 65, 147, 0.15);
}

.nav-mobile.open {
  transform: translateX(0);
  visibility: visible;
  pointer-events: auto;
}

.nav-mobile a {
  display: block;
  padding: 14px 24px;
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: var(--color-navy);
  border-bottom: 1px solid var(--color-border);
  transition: background var(--transition);
  text-decoration: none;
}

.nav-mobile a.nav-cta {
  color: var(--color-btn-text) !important;
}

.nav-mobile a:hover { background: var(--color-bg); }
.nav-mobile a:last-child { border-bottom: none; }

.nav-mobile-close {
  display: none;
  position: absolute;
  top: 14px;
  left: 16px;
  right: auto;
  z-index: 31;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 2px solid var(--color-border);
  background: rgba(255, 255, 255, 0.95);
  color: var(--color-navy);
  font-family: 'Nunito', sans-serif;
  font-size: 28px;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  border-radius: 0;
  transition: background var(--transition), border-color var(--transition);
}

.nav-mobile-close:hover {
  background: var(--color-kachel);
  border-color: var(--color-primary);
}

.nav-mobile-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1000;
  margin: 0;
  padding: 0;
  border: none;
  background: rgba(33, 65, 147, 0.25);
  cursor: pointer;
}

.nav-mobile-backdrop.open {
  display: block;
}

body.nav-mobile-open {
  overflow: hidden;
}

/* ===== PAGE BANNER (Unterseiten-Header) ===== */
.page-banner {
  padding: 0;
  background: linear-gradient(135deg, #23852a 0%, #30a836 50%, #214193 100%);
  position: relative;
  overflow: visible;
}

.page-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 100% at 80% 50%, rgba(246,198,12,0.1) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.page-banner-inner {
  position: relative;
  z-index: 1;
  padding: calc(var(--nav-bar-height) + 80px) 24px 72px;
  max-width: var(--max-width);
  margin: 0 auto;
}

.page-banner-inner .section-tag {
  margin-bottom: 16px;
  margin-top: 0;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: var(--color-accent-light);
}

.page-banner h1 {
  font-size: clamp(44px, 6.5vw, 76px);
  color: #fff;
  font-weight: 700;
  margin-bottom: 16px;
  line-height: 1.35;
  overflow: visible;
  padding: 0.06em 0 0.1em;
}

.page-banner p {
  font-size: 18px;
  color: rgba(255,255,255,0.82);
  max-width: 600px;
  line-height: 1.7;
  margin-bottom: 0;
  padding-bottom: 0.25em;
}

.page-banner-inner--with-photo {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 28px;
  align-items: center;
}

.page-banner-photo {
  margin: 0;
  border: none;
}

.page-banner-photo img {
  width: 100%;
  height: auto;
  display: block;
}

/* ===== BTN ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 16px;
  padding: 14px 30px;
  border-radius: 0;
  transition: all var(--transition);
  cursor: pointer;
  border: none;
  text-decoration: none;
}

a.btn.btn-sm,
button.btn.btn-sm {
  font-size: 12px;
  font-weight: 700;
  padding: 5px 10px;
  gap: 4px;
}

a.btn.btn-sm:hover,
button.btn.btn-sm:hover {
  transform: none;
  box-shadow: none;
}

.btn-primary,
.btn-green,
a.btn:not(.btn-outline),
button.btn:not(.btn-outline) {
  background: var(--color-btn);
  color: var(--color-btn-text);
}

.btn-primary:hover,
.btn-green:hover,
a.btn:not(.btn-outline):hover,
button.btn:not(.btn-outline):hover {
  background: var(--color-btn-hover);
  color: var(--color-btn-text);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(33, 65, 147, 0.2);
  text-decoration: none;
}

.btn-outline {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,0.5);
}

.btn-outline:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.8);
  transform: translateY(-2px);
  color: #fff;
}

/* ===== HERO-BG (Startseite mit Hintergrundbild) ===== */
.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 80% 30%;
  z-index: 0;
}

/* ===== HERO (Startseite) ===== */
.hero {
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: calc(var(--nav-bar-height) + 50px) 24px clamp(48px, 6vh, 80px);
  position: relative;
  overflow: hidden;
  box-sizing: border-box;
  background: linear-gradient(135deg, #23852a 0%, #30a836 45%, #214193 100%);
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.62) 0%,
    rgba(0, 0, 0, 0.42) 22%,
    rgba(0, 0, 0, 0.2) 38%,
    transparent 50%
  );
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  right: 6%;
  top: 50%;
  transform: translateY(-50%);
  font-size: clamp(120px, 18vw, 240px);
  opacity: 0.08;
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
}

.hero-content {
  max-width: min(640px, 100%);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.22);
  color: var(--color-accent-light);
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 7px 18px;
  border-radius: 0;
  margin-bottom: 24px;
}



.hero h1 {
  font-size: clamp(52px, 7vw, 88px);
  color: #fff;
  margin-bottom: 24px;
  font-weight: 700;
  line-height: 1.35;
  overflow: visible;
  padding: 0.06em 0 0.1em;
}

.hero h1 em { font-style: normal; color:var(--color-accent) !important; }

.hero-desc {
  font-size: 18px;
  color: rgba(255,255,255,0.82);
  margin-bottom: 40px;
  line-height: 1.7;
  max-width: 520px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-card {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.18);
  backdrop-filter: blur(16px);
  border-radius: 0;
  padding: 36px;
}

.hero-card-title {
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 20px;
  color: #fff;
  margin-bottom: 20px;
}

.hero-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.hero-stat {
  background: rgba(255,255,255,0.08);
  border-radius: 0;
  padding: 18px;
  text-align: center;
}

.hero-stat-num {
  font-family: 'Nunito', sans-serif;
  font-weight: 900;
  font-size: 32px;
  color: var(--color-accent);
  line-height: 1;
  margin-bottom: 4px;
}

.hero-stat-label {
  font-size: 13px;
  color: rgba(255,255,255,0.7);
  font-weight: 600;
}

.hero-features {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.hero-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255,255,255,0.85);
  font-size: 15px;
}

.hero-feature-icon {
  width: 28px;
  height: 28px;
  background: rgba(48,168,54,0.3);
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  flex-shrink: 0;
}

/* ===== TRUST BAR ===== */
.trust-bar {
  background: var(--color-navy);
  padding: 28px 0;
}

.trust-bar-inner {
  display: flex;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255,255,255,0.85);
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: 15px;
}

.trust-item-icon { font-size: 22px; }

/* ===== ABOUT ===== */
.about {
  background: var(--color-bg-card);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
}

.about-img-wrap {
  position: relative;
}

.about-logo-display {
  background: none;
  border-radius: 0;
  padding: 0;
  display: block;
  box-shadow: none;
  border: none;
}

.about-logo-display img {
  max-width: 100%;
  width: 100%;
  height: auto;
  border-radius: 0;
  display: block;
  border: none;
  box-shadow: none;
}

.about-leitsatz {
  margin: 28px 0 0;
  padding: 24px 28px;
  background: var(--color-kachel);
  border-radius: 0;
}

.about-leitsatz p {
  margin: 0;
  font-family: var(--font-heading);
  font-size: clamp(26px, 3.2vw, 34px);
  line-height: 1.45;
  color: var(--color-primary-dark);
  text-align: center;
}

.about-evy-thumb {
  margin: 12px 0 0 auto;
  max-width: 175px;
}

.about-evy-thumb img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 0;
}

.about-person-thumb {
  margin: 16px 0 0;
  max-width: 175px;
}

.about-person-thumb img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 0;
}

.about-badge-inline {
  display: block;
  width: fit-content;
  margin: 10px 0 0 auto;
  background: var(--color-navy-light);
  color: #1a1a1a;
  font-family: 'Nunito', sans-serif;
  font-weight: 900;
  font-size: 13px;
  padding: 12px 20px;
  border-radius: 0;
  box-shadow: 0 4px 16px rgba(160,217,247,0.4);
  line-height: 1.3;
}

.about-badge-float {
  position: absolute;
  right: -16px;
  background: var(--color-navy-light);
  color: #1a1a1a;
  font-family: 'Nunito', sans-serif;
  font-weight: 900;
  font-size: 13px;
  padding: 12px 20px;
  border-radius: 0;
  box-shadow: 0 4px 16px rgba(160,217,247,0.4);
  line-height: 1.3;
}

.about-text p {
  margin-bottom: 18px;
  color: var(--color-text);
}

.about-text p:last-of-type { margin-bottom: 32px; }

.about-checks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 32px;
}

.about-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 15px;
  font-weight: 600;
  color: var(--color-text);
}

.about-check::before {
  content: 'âœ“';
  display: flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  background: var(--color-primary-light);
  color: #fff;
  border-radius: 0;
  font-size: 11px;
  font-weight: 900;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ===== SERVICES ===== */
.services { background: var(--color-bg); }

.services-illustration {
  margin: 0 0 48px;
  padding: 0;
}

.services-illustration img {
  display: block;
  width: 100%;
  max-width: 960px;
  height: auto;
  margin: 0 auto;
  border-radius: 0;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.service-card {
  background: var(--color-bg-card);
  border-radius: 0;
  padding: 36px 28px;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--color-border);
  transition: transform var(--transition), box-shadow var(--transition);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}

.service-icon {
  width: 120px;
  height: 70px;
  
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin-bottom: 24px;
 
}

.service-card h3 {
  font-size: 26px;
  color: var(--color-navy);
  margin-bottom: 12px;
}

.service-card p {
  font-size: 15px;
  color: var(--color-text-muted);
  line-height: 1.65;
}

/* ===== INFO BANNER ===== */
.info-banner {
  background: linear-gradient(135deg, var(--color-navy) 0%, var(--color-navy-dark) 100%);
  padding: 72px 0;
}

.info-banner-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.info-banner h2 {
  font-size: clamp(30px, 4.5vw, 46px);
  color: #fff;
  margin-bottom: 20px;
}

.info-banner p {
  color: rgba(255,255,255,0.78);
  font-size: 16px;
  margin-bottom: 16px;
}

.info-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.info-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  color: rgba(255,255,255,0.85);
  font-size: 16px;
}

.info-list-icon { font-size: 18px; flex-shrink: 0; margin-top: 1px; }

/* ===== WHAT TO BRING ===== */
.bring { background: var(--color-bg-card); }

.bring-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.bring-card {
  background: var(--color-bg);
  border-radius: 0;
  padding: 32px 28px;
  border: 1px solid var(--color-border);
  transition: border-color var(--transition);
}

.bring-card:hover { border-color: var(--color-primary-light); }

.bring-card h3 { font-size: 24px; color: var(--color-navy); margin-bottom: 16px; }

.bring-card p {
  font-size: 15px;
  color: var(--color-text-muted);
  line-height: 1.65;
}

/* ===== NOTE CARDS ===== */
.important { background: var(--color-bg); }

.important-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.note-card {
  border-radius: 0;
  padding: 32px;
  border-left: 5px solid;
}

.note-card.green { background: #ceeed4; border-color: var(--color-primary); }
.note-card.yellow { background: #fdf8d0; border-color: var(--color-accent); }
.note-card.blue { background: var(--color-navy-light); border-color: var(--color-navy); }

.note-card h3 { font-size: 24px; margin-bottom: 12px; color: var(--color-navy); }
.note-card p { font-size: 15px; color: var(--color-text); line-height: 1.65; }

/* ===== OPENING HOURS ===== */
.hours { background: var(--color-bg-card); }

.hours-section-header {
  margin-bottom: 28px;
}

.hours-intro {
  display: grid;
  grid-template-columns: 1fr minmax(200px, 420px);
  gap: 48px;
  align-items: center;
  margin-bottom: 40px;
}

.hours-intro-text {
  margin-bottom: 0;
  max-width: none;
}

.hours-visual {
  margin: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
}

.hours-visual img {
  max-width: 100%;
  width: 100%;
  height: auto;
  display: block;
  border-radius: 0;
}


.hours-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: start;
}

.hours-table {
  background: var(--color-bg);
  border-radius: 0;
  overflow: hidden;
  border: 1px solid var(--color-border);
}

.hours-table-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 24px;
  border-bottom: 1px solid var(--color-border);
  font-size: 16px;
  transition: background var(--transition);
}

.hours-table-row:last-child { border-bottom: none; }
.hours-table-row:hover { background: var(--color-bg-card); }
.hours-table-row .day { font-weight: 600; color: var(--color-text); }
.hours-table-row .time { font-weight: 700; color: var(--color-text); }
.hours-table-row .time.closed { color: #e05252; }

.hours-note-box {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
  border-radius: 0;
  padding: 36px;
  color: #fff;
}

.hours-note-box h3 { font-size: 28px; margin-bottom: 16px; color: #fff; }
.hours-note-box p { font-size: 15px; color: rgba(255,255,255,0.85); margin-bottom: 12px; line-height: 1.65; }

/* ===== CONTACT ===== */
.contact { background: var(--color-bg); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: stretch;
}

.contact-info-card {
  background: var(--color-bg-card);
  border-radius: 0;
  padding: 44px;
  min-height: 400px;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--color-border);
}

.contact-logo { margin-bottom: 28px; }
.contact-logo img { height: 80px; width: auto; border-radius: 0; }

.contact-details { display: flex; flex-direction: column; gap: 20px; }

.contact-item { display: flex; align-items: flex-start; gap: 0; }

.contact-item-text { padding-top: 0; }

.contact-item-label {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--color-text-muted);
  margin-bottom: 4px;
}

.contact-item-value { font-size: 17px; font-weight: 400; color: var(--color-text); }
.contact-item-value a { color: var(--color-text); transition: color var(--transition); }
.contact-item-value a:hover { color: var(--color-text); }

.contact-phone-email {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.contact-phone-email__mail {
  font-size: inherit;
}

.footer-contact-stack {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.impressum-contact-stack {
  display: inline-flex;
  flex-direction: column;
  gap: 4px;
  margin-top: 4px;
  vertical-align: top;
}

.contact-map-placeholder {
  background: var(--color-bg-card);
  border-radius: 0;
  min-height: 400px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 24px;
  border: 1px solid var(--color-border);
  padding: 44px;
  box-shadow: var(--shadow-card);
  text-align: left;
}

.contact-map-placeholder .contact-details { width: 100%; }

.contact-map-hint {
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
  color: var(--color-text-muted);
}

/* ===== REVIEWS (STARTSEITE) ===== */
.reviews {
  --reviews-visible: 4;
  --reviews-gap: 20px;
  background: var(--color-bg-card);
  padding: 72px 0 80px;
  overflow: visible;
}

.reviews-slider-outer {
  width: 100%;
  margin-top: 40px;
  min-width: 0;
}

.reviews-slider {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 12px;
  align-items: center;
  width: 100%;
  min-width: 0;
  padding: 0 12px;
  box-sizing: border-box;
}

.reviews-slider-btn {
  width: 44px;
  height: 44px;
  min-width: 44px;
  min-height: 44px;
  border: 1px solid var(--color-border);
  background: var(--color-bg-card);
  color: var(--color-navy);
  font-family: 'Lato', sans-serif;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  border-radius: 0;
  box-shadow: var(--shadow-card);
  flex-shrink: 0;
  padding: 0;
  touch-action: manipulation;
}

.reviews-slider-btn:hover:not(:disabled) {
  background: var(--color-primary);
  border-color: var(--color-primary-dark);
  color: #fff;
}

.reviews-slider-btn:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

.reviews-track {
  display: flex;
  gap: var(--reviews-gap);
  width: 100%;
  min-width: 0;
  position: relative;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 4px 0 8px;
  overscroll-behavior-x: contain;
  touch-action: manipulation;
  cursor: grab;
}

.reviews-track.is-dragging,
.reviews-track.is-snapping-off {
  scroll-snap-type: none;
  scroll-behavior: auto;
}

.reviews-track.is-dragging {
  cursor: grabbing;
}

.reviews-track::-webkit-scrollbar {
  display: none;
}

.review-card {
  flex: 0 0 calc((100% - ((var(--reviews-visible) - 1) * var(--reviews-gap))) / var(--reviews-visible));
  scroll-snap-align: start;
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-card);
  padding: 20px 18px 18px;
  position: relative;
  min-height: 100%;
}

.review-card::before {
  content: '„';
  position: absolute;
  top: 14px;
  right: 20px;
  font-family: 'Dancing Script', cursive;
  font-size: 52px;
  color: var(--color-accent);
  line-height: 1;
  opacity: 0.4;
}

.review-card-header {
  margin-bottom: 16px;
  padding-right: 36px;
}

.review-author {
  font-family: 'Dancing Script', cursive;
  font-size: 28px;
  font-weight: 700;
  color: var(--color-navy);
  line-height: 1.1;
}

.review-meta {
  font-size: 13px;
  color: var(--color-text-muted);
  margin-top: 4px;
}

.review-headline {
  font-family: 'Lato', sans-serif;
  font-size: 17px;
  font-weight: 400;
  color: var(--color-navy);
  line-height: 1.65;
  margin: 0 0 12px;
}

.review-text-wrap {
  position: relative;
  z-index: 1;
}

.review-text {
  font-size: 17px;
  line-height: 1.7;
  color: var(--color-text);
}

.review-text.is-clamped {
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.review-read-more {
  margin-top: 14px;
  padding: 8px 0;
  min-height: 44px;
  border: 0;
  background: none;
  color: var(--color-primary-dark);
  font-family: 'Lato', sans-serif;
  font-size: 17px;
  font-weight: 700;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 3px;
  touch-action: manipulation;
  position: relative;
  z-index: 2;
}

.review-read-more:hover {
  color: var(--color-navy);
}

/* ===== PUBLICATIONS ===== */
.publications { background: var(--color-bg-card); }

.pub-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.pub-card {
  background: var(--color-bg);
  border-radius: 0;
  padding: 28px;
  border: 1px solid var(--color-border);
  transition: border-color var(--transition), box-shadow var(--transition);
}

.pub-card:hover { border-color: var(--color-primary-light); box-shadow: var(--shadow-card); }

.pub-label {
  display: inline-block;
  background: var(--color-navy);
  color: #fff;
  font-family: 'Nunito', sans-serif;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 0;
  margin-bottom: 14px;
}

.pub-card h3 { font-size: 22px; color: var(--color-navy); margin-bottom: 8px; line-height: 1.4; }
.pub-card p { font-size: 14px; color: var(--color-text-muted); }

/* ===== CONTENT PROSE (fÃ¼r redaktionelle Unterseiten) ===== */
.prose {
  max-width: 760px;
}

.prose h2 {
  font-size: clamp(28px, 3.8vw, 40px);
  color: var(--color-navy);
  margin-top: 48px;
  margin-bottom: 16px;
}

.prose h3 {
  font-size: 26px;
  color: var(--color-navy);
  margin-top: 32px;
  margin-bottom: 12px;
}

.prose h4 {
  font-size: 20px;
  color: var(--color-navy);
  margin-top: 24px;
  margin-bottom: 10px;
  font-family: 'Lato', sans-serif;
  font-weight: 700;
}

.prose p {
  margin-bottom: 18px;
  color: var(--color-text);
  line-height: 1.75;
}

.prose ul, .prose ol {
  margin: 0 0 20px 24px;
}

.prose li {
  margin-bottom: 8px;
  color: var(--color-text);
  line-height: 1.7;
}

.prose strong { color: var(--color-text); }

.prose-lead {
  font-size: 19px;
  line-height: 1.75;
  color: var(--color-text);
  margin-bottom: 8px;
}

.prose--wissenswertes h2:first-of-type {
  margin-top: 32px;
}

.page-ueber-mich .about-wissenswertes-link {
  margin-top: 40px;
  font-size: 17px;
  line-height: 1.7;
}

.page-ueber-mich .about-wissenswertes-link a {
  color: var(--color-primary-dark);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.page-ueber-mich .about-wissenswertes-link a:hover {
  color: var(--color-navy);
}

.faq-wissenswertes-teaser {
  margin-top: 48px;
  padding: 36px 32px;
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-card);
}

.faq-wissenswertes-teaser__title {
  font-family: var(--font-heading);
  font-size: clamp(28px, 4vw, 38px);
  color: var(--color-navy);
  margin: 0 0 12px;
}

.faq-wissenswertes-teaser__text {
  margin: 0 0 24px;
  max-width: 640px;
  font-size: 17px;
  line-height: 1.65;
  color: var(--color-text);
}

.prose a { color: var(--color-text); font-weight: 600; }
.prose a:hover { color: var(--color-text); }

/* ===== GALLERY ===== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.gallery-item {
  border-radius: 0;
  overflow: hidden;
  background: var(--color-kachel);
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  border: 2px solid var(--color-border);
  transition: transform var(--transition), box-shadow var(--transition);
}

.gallery-item:hover {
  transform: scale(1.03);
  box-shadow: var(--shadow-hover);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ===== CONTACT FORM ===== */
.form-group {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: var(--color-navy);
  margin-bottom: 8px;
  letter-spacing: 0.3px;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 13px 16px;
  border: 2px solid var(--color-border);
  border-radius: 0;
  font-family: 'Lato', sans-serif;
  font-size: 16px;
  color: var(--color-text);
  background: var(--color-bg-card);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(48,168,54,0.12);
}

.form-textarea {
  resize: vertical;
  min-height: 140px;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--color-navy);
  color: rgba(255,255,255,0.7);
  padding: 60px 0 32px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand img {
  height: 100px;
  width: auto;
  border-radius: 0;
  margin-bottom: 18px;
}

.footer-brand p {
  font-size: 15px;
  line-height: 1.7;
  max-width: 320px;
  color: #fff;
}

.footer-col h4 {
  font-weight: 700;
  font-size: 28px;
  color: #fff;
  margin-bottom: 18px;
}

.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li {
  color: rgba(255,255,255,0.65);
  font-size: 15px;
}
.footer-col ul li a {
  color: rgba(255,255,255,0.65);
  font-size: 15px;
  transition: color var(--transition);
  text-decoration: none;
}
.footer-col ul li a:hover {
  color: var(--color-accent);
  text-decoration: none;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 14px;
}

.footer-bottom-links { display: flex; gap: 24px; }
.footer-bottom-links a {
  color: rgba(255,255,255,0.55);
  transition: color var(--transition);
  text-decoration: none;
}
.footer-bottom-links a:hover {
  color: var(--color-accent);
  text-decoration: none;
}

/* ===== SCROLL TO TOP ===== */
#scroll-top {
  position: fixed;
  bottom: 80px;
  right: 32px;
  width: 48px;
  height: 48px;
  background: var(--color-btn);
  color: var(--color-btn-text);
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(33, 65, 147, 0.25);
  opacity: 0;
  transform: translateY(16px);
  transition: opacity var(--transition), transform var(--transition), background var(--transition);
  border: none;
  z-index: 99;
}

#scroll-top.visible { opacity: 1; transform: translateY(0); }
#scroll-top:hover { background: var(--color-btn-hover); color: var(--color-btn-text); transform: translateY(-3px); }

/* Virentest – Ecke oben rechts (Desktop/Tablet), Button in der Nav (Mobil) */
.virentest-float {
  position: fixed;
  top: max(var(--virentest-top), env(safe-area-inset-top, 0px));
  right: calc(var(--virentest-right) - env(safe-area-inset-right, 0px));
  z-index: var(--z-virentest-corner);
  display: flex;
  align-items: center;
  justify-content: center;
  width: var(--virentest-width);
  padding: var(--virentest-padding-top) 0 var(--virentest-padding-bottom) 0;
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: var(--virentest-font-size);
  line-height: 1;
  letter-spacing: 0.02em;
  text-align: center;
  text-decoration: none;
  color: var(--color-virentest-btn-text);
  background: var(--color-virentest-btn);
  border: none;
  border-radius: 0;
  box-shadow: 0 4px 20px rgba(166, 31, 31, 0.4);
  transform: rotate(45deg);
  transform-origin: center center;
  transition: background var(--transition), box-shadow var(--transition);
  flex-shrink: 0;
  white-space: nowrap;
}

.virentest-float__text {
  display: block;
  transform: translateY(-2px);
}

.virentest-float:hover {
  background: var(--color-virentest-btn-hover);
  color: var(--color-virentest-btn-text);
  text-decoration: none;
  box-shadow: 0 6px 26px rgba(166, 31, 31, 0.48);
}

.virentest-float:focus-visible {
  outline: 3px solid var(--color-navy);
  outline-offset: 2px;
}

.impressum-prose address {
  font-style: normal;
  line-height: 1.8;
  margin-bottom: 18px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1280px) {
  .nav-links { display: none; }
  .nav-hamburger {
    display: flex;
    align-self: center;
    position: relative;
  }
  .nav-mobile-close { display: block; }

  .nav-actions {
    margin-left: auto;
  }

  .nav {
    overflow: visible;
  }

  :root {
    --nav-bar-height: 108px;
    --nav-logo-overhang: 40px;
    --banner-safe-top: 52px;
    --hero-safe-top: clamp(108px, 12vh, 120px);
    --virentest-top: 22px;
    --virentest-right: -52px;
    --virentest-width: 158px;
    --virentest-font-size: 13px;
    --virentest-padding-top: 12px;
    --virentest-padding-bottom: 5px;
  }

  .nav-inner {
    height: 108px;
    align-items: center;
    overflow: visible;
    padding-right: 52px;
  }

  .nav-logo-text {
    display: none;
  }

  .nav-logo {
    align-items: center;
  }

  .nav-logo img {
    width: 152px;
    height: auto;
    margin-top: 26px;
    margin-bottom: -40px;
  }

  .nav.scrolled .nav-inner {
    height: 72px;
  }

  .nav.scrolled .nav-logo img {
    width: 50px;
    height: auto;
    margin-top: 0;
    margin-bottom: 0;
  }

  .page-banner-inner {
    padding-top: calc(var(--nav-bar-height) + var(--nav-logo-overhang) + var(--banner-safe-top));
    padding-bottom: 68px;
  }

  .virentest-float__text {
    transform: translateY(-2px);
  }

  body:has(.nav.scrolled) {
    --virentest-top: 17px;
    --virentest-width: 148px;
  }
}

@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .pub-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews { --reviews-visible: 2; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-inner > :first-child { grid-column: 1 / -1; }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }

  .hero-bg {
    inset: auto;
    left: 0;
    right: 0;
    width: 100%;
    height: 115%;
    top: -10%;
    object-position: 78% 12%;
  }
}

@media (max-width: 768px) {
  section { padding: 60px 0; }

  .nav-inner {
    padding-right: 12px;
    gap: 10px;
  }

  .nav-actions {
    gap: 4px;
  }

  .virentest-float {
    position: static;
    top: auto;
    right: auto;
    width: auto;
    padding: 9px 11px;
    font-size: 12px;
    letter-spacing: 0.02em;
    transform: none;
    box-shadow: none;
  }

  .virentest-float:hover {
    transform: none;
    box-shadow: none;
  }

  .virentest-float__text {
    transform: none;
  }

  .page-banner-inner {
    padding-top: calc(var(--nav-bar-height) + var(--nav-logo-overhang) + 60px);
    padding-bottom: 84px;
  }

  .page-banner-inner--with-photo {
    padding-top: calc(var(--nav-bar-height) + var(--nav-logo-overhang) + 68px);
    padding-bottom: 96px;
    gap: 28px;
  }

  .page-banner-inner--with-photo .page-banner-content {
    padding-top: 0;
  }

  .page-banner-inner--with-photo .page-banner-photo {
    margin-top: 24px;
  }

  .nav-mobile a:hover {
    background: var(--color-kachel);
  }

  .hero {
    padding-top: calc(var(--nav-bar-height) + var(--nav-logo-overhang) + 28px);
    padding-bottom: clamp(72px, 10vh, 100px);
    min-height: calc(100dvh + 48px);
  }

  .hero-inner {
    text-align: center;
    padding-top: 48px;
  }

  .hero-content {
    max-width: 100%;
    margin: 0 auto;
  }

  .hero-bg {
    inset: auto;
    left: 0;
    right: 0;
    width: 100%;
    height: 112%;
    top: -14%;
    object-position: 70% 45%;
  }

  .hero::before {
    background: linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0.45) 0%,
      rgba(0, 0, 0, 0.58) 35%,
      rgba(0, 0, 0, 0.72) 70%,
      rgba(0, 0, 0, 0.78) 100%
    );
  }

  .hero-card { display: none; }
  .hero-actions { justify-content: center; }
  .hero-desc { margin: 0 auto 40px; }

  .about-grid,
  .info-banner-inner,
  .contact-grid,
  .hours-grid { grid-template-columns: 1fr; gap: 40px; }
  .hours-intro { grid-template-columns: 1fr; gap: 32px; }
  .hours-visual { max-width: 360px; margin: 0 auto; }

  .about-img-wrap { order: -1; }
  .about-checks { grid-template-columns: 1fr; }
  .about-facts-grid,
  .about-helper-grid { grid-template-columns: 1fr; }
  .about-icon-grid,
  .about-gallery-grid { grid-template-columns: 1fr; }

  .services-grid,
  .important-grid { grid-template-columns: 1fr; }

  .bring-grid { grid-template-columns: 1fr; }
  .pub-grid { grid-template-columns: 1fr; }
  .reviews {
    --reviews-visible: 1;
    --reviews-gap: 12px;
    overflow: visible;
    padding-bottom: 64px;
  }

  .reviews-slider {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 14px 12px;
    padding: 0 12px;
  }

  .reviews-track {
    grid-column: 1 / -1;
    grid-row: 1;
    touch-action: manipulation;
    scroll-snap-type: x mandatory;
    scroll-padding-inline: 16px;
    cursor: default;
    padding-bottom: 4px;
    -webkit-overflow-scrolling: touch;
  }

  .review-text.is-clamped {
    pointer-events: none;
  }

  .review-text.is-expanded,
  .review-read-more {
    pointer-events: auto;
  }

  #reviews-prev {
    grid-column: 1;
    grid-row: 2;
    width: 100%;
    min-height: 48px;
    font-size: 22px;
  }

  #reviews-next {
    grid-column: 2;
    grid-row: 2;
    width: 100%;
    min-height: 48px;
    font-size: 22px;
  }

  .review-card {
    flex: 0 0 min(88vw, calc(100% - 24px));
    max-width: min(88vw, calc(100% - 24px));
    scroll-snap-align: center;
    scroll-snap-stop: always;
  }

  .reviews-slider-btn {
    width: 100%;
    min-width: 0;
    min-height: 48px;
    font-size: 24px;
  }

  .trust-bar-inner { gap: 24px; }

  .ueber-mich-aside { margin-top: 8px; }

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

  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .footer-inner > :first-child { grid-column: auto; }
  .footer-bottom { flex-direction: column; text-align: center; }

  #scroll-top {
    bottom: 72px;
    right: 20px;
  }
}

@media (max-width: 400px) {
  :root {
    --nav-bar-height: 100px;
    --nav-logo-overhang: 32px;
  }

  .nav-inner {
    height: 100px;
    padding-right: 8px;
  }

  .nav-logo img {
    width: 132px;
    margin-top: 20px;
    margin-bottom: -32px;
  }

  .nav.scrolled .nav-inner {
    height: 68px;
  }

  .nav.scrolled .nav-logo img {
    width: 46px;
    margin: 0;
  }

  .virentest-float {
    padding: 8px 10px;
    font-size: 11px;
    letter-spacing: 0.02em;
  }
}

/* ============================================================
   UTILITY CLASSES
   ============================================================ */

/* Hintergrundfarben für Sections */
.bg-light  { background: var(--color-bg); }
.bg-white  { background: var(--color-bg-card); }
.bg-dark   { background: #2b2b25; padding: 72px 0; }

/* Max-Width Wrapper */
.max-w-680 { max-width: 680px; }
.max-w-720 { max-width: 720px; margin: 0 auto; }
.max-w-760 { max-width: 760px; }
.max-w-820 { max-width: 820px; }
.mx-auto   { margin-left: auto; margin-right: auto; }
.note-card-compact { margin-top: 0; margin-bottom: 32px; }
.note-centered { max-width: 680px; margin: 0 auto; }
.icon-marker { font-size: 40px; margin-bottom: 12px; }
.map-note { font-size: 14px; }
.mt-8 { margin-top: 8px; }
.min-h-120 { min-height: 120px; }
.gb-avatar-navy { background: linear-gradient(135deg, var(--color-navy) 0%, var(--color-navy-light) 100%); }
.gb-avatar-gold { background: linear-gradient(135deg, #e9a922 0%, #f4cc6b 100%); color: #1a1a1a; }
.gb-avatar-purple { background: linear-gradient(135deg, #6b48ff 0%, #9b7dff 100%); }
.gb-avatar-red { background: linear-gradient(135deg, #e05252 0%, #f08080 100%); }
.legal-note {
  color: var(--color-text-muted);
  font-size: 14px;
  margin-top: 40px;
  border-top: 1px solid var(--color-border);
  padding-top: 20px;
}

/* CTA-Bereich */
.cta-center   { text-align: center; margin-top: 48px; }
.prose-actions { margin-top: 40px; display: flex; gap: 16px; flex-wrap: wrap; }

/* Emoji-Icons */
.icon-xl { font-size: 56px; margin-bottom: 20px; }
.icon-lg { font-size: 48px; margin-bottom: 20px; }
.icon-md { font-size: 40px; margin-bottom: 16px; }

/* Text-Hilfsstile */
.text-sm     { font-size: 14px; }
.text-muted-sm { font-size: 14px; color: var(--color-text-muted); font-weight: 400; }
.text-italic-note { font-size: 15px; color: var(--color-text-muted); margin-top: 16px; text-align: center; }

/* Bullet-Liste im Über-uns-Bereich */
.about-bullet-list {
  margin: 0 0 32px 18px;
  padding: 0;
  color: var(--color-text);
}

.about-intro-box {
  background: linear-gradient(135deg, var(--color-bg-card) 0%, var(--color-kachel) 100%);
  border: 1px solid var(--color-border);
  padding: 28px;
  margin-bottom: 34px;
}

.about-intro-lead {
  font-size: 18px;
  line-height: 1.75;
  margin-bottom: 22px;
}


.about-facts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.about-fact {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  padding: 14px 16px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.about-fact strong {
  font-family: 'Nunito', sans-serif;
  font-size: 14px;
  color: var(--color-text);
}

.about-fact span {
  font-size: 13px;
  color: var(--color-text-muted);
}

.about-helper-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 18px 0 30px;
}

.about-helper-card {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  padding: 20px;
}

.about-helper-card h3 {
  font-size: 24px;
  color: var(--color-navy);
  margin-bottom: 10px;
}

.about-helper-card p {
  margin: 0;
  font-size: 15px;
  line-height: 1.65;
  color: var(--color-text);
}

.about-cta-row {
  margin-top: 36px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.ueber-mich-layout {
  grid-template-columns: minmax(0, 1fr) 280px;
}

.page-ueber-mich .prose {
  max-width: none;
}

.about-icon-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin: 0 0 30px;
}

.about-icon-card {
  border: 1px solid var(--color-border);
  background: var(--color-bg-card);
  padding: 18px;
}

.about-icon {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  background: var(--color-navy-light);
  color: var(--color-navy);
  margin-bottom: 10px;
  font-size: 13px;
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  letter-spacing: 0.5px;
}

.about-icon-card h3 {
  font-size: 24px;
  color: var(--color-navy);
  margin-bottom: 8px;
}

.about-icon-card p {
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
}

.about-gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 14px;
}

.about-gallery-item {
  margin: 0;
  border: 1px solid var(--color-border);
  background: var(--color-bg-card);
}

.about-gallery-item img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
}

/* Hinweistext auf rechtlichen Seiten */
.legal-note {
  color: var(--color-text-muted);
  font-size: 14px;
  margin-top: 40px;
  border-top: 1px solid var(--color-border);
  padding-top: 20px;
}

/* ============================================================
   FORMULARE
   ============================================================ */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }

.form-check-row { display: flex; align-items: flex-start; gap: 12px; }
.form-check-row input[type="checkbox"] {
  margin-top: 4px;
  width: auto;
  accent-color: var(--color-primary);
  flex-shrink: 0;
}
.form-check-row label { font-size: 14px; color: var(--color-text-muted); cursor: pointer; }
.form-check-row a    { color: var(--color-text); }

.form-note  { font-size: 13px; color: var(--color-text-muted); margin-top: 16px; text-align: center; }
.btn-block  { width: 100%; justify-content: center; margin-top: 8px; font-size: 17px; padding: 16px; }

/* ============================================================
   FAQ
   ============================================================ */
.faq-section {
  padding: 72px 0 88px;
}

.faq-section .section-header {
  margin-bottom: 48px;
}

.faq-section .section-subtitle {
  max-width: 720px;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
}

.faq-entry {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-card);
  padding: 36px 40px;
  scroll-margin-top: 100px;
}

.faq-entry__title {
  font-family: var(--font-heading);
  font-size: clamp(28px, 3.5vw, 38px);
  font-weight: 700;
  color: var(--color-navy);
  line-height: 1.2;
  margin: 0 0 20px;
  padding-bottom: 16px;
  border-bottom: 2px solid var(--color-kachel);
}

.faq-entry__body p {
  margin: 0 0 16px;
  font-size: 17px;
  line-height: 1.75;
  color: var(--color-text);
}

.faq-entry__body p:last-child {
  margin-bottom: 0;
}

.faq-entry__link-wrap {
  margin-top: 20px;
  margin-bottom: 0;
}

.faq-entry__link-wrap .btn {
  text-decoration: none;
}

.faq-footer-cta {
  margin-top: 56px;
  padding: 48px 40px;
  text-align: center;
  background: linear-gradient(135deg, var(--color-kachel) 0%, var(--color-bg-card) 100%);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-card);
}

.faq-footer-cta__title {
  font-family: var(--font-heading);
  font-size: clamp(32px, 4.5vw, 44px);
  color: var(--color-navy);
  margin: 0 0 12px;
}

.faq-footer-cta__text {
  margin: 0 auto 28px;
  max-width: 520px;
  font-size: 17px;
  line-height: 1.65;
  color: var(--color-text);
}

.faq-footer-cta__actions {
  display: flex;
  justify-content: center;
}

.faq-footer-cta__actions .btn {
  text-decoration: none;
}

.faq-footer-cta__contact {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 12px;
  width: 100%;
  max-width: 360px;
}

.faq-footer-cta__contact .btn {
  width: 100%;
  min-height: 48px;
  justify-content: center;
  box-sizing: border-box;
}

.faq-footer-cta__comm-label {
  margin-bottom: 0;
  color: var(--color-text-muted);
}

@media (max-width: 768px) {
  .faq-section {
    padding: 56px 0 72px;
  }

  .faq-entry {
    padding: 28px 22px;
  }

  .faq-entry__body p {
    font-size: 16px;
  }

  .faq-footer-cta {
    padding: 36px 24px;
  }
}

/* ============================================================
   WAS BISHER GESCHAH
   ============================================================ */
.stories-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.story-card {
  background: var(--color-bg-card);
  border-radius: var(--radius-card);
  padding: 36px;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-card);
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.story-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }

.page-was-bisher-geschah .story-card--teaser:hover {
  transform: none;
  box-shadow: var(--shadow-card);
}

.story-card-meta { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }

.story-card-source {
  background: var(--color-navy);
  color: #fff;
  font-family: 'Nunito', sans-serif;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 6px;
}

.story-card-year  { font-size: 13px; color: var(--color-text-muted); font-weight: 600; }
.story-card h3    { font-size: 26px; color: var(--color-navy); line-height: 1.35; }
.story-card p     { font-size: 15px; color: var(--color-text-muted); line-height: 1.65; }
.story-card-pages { font-size: 13px; color: var(--color-text); font-weight: 700; }

.page-was-bisher-geschah .story-card--teaser .story-card-link {
  margin-top: auto;
  align-self: flex-start;
}

.story-card-subtitle {
  font-size: 14px;
  color: var(--color-text-muted);
  font-style: italic;
  margin-top: -6px;
}

.story-detail {
  max-width: 820px;
  margin: 0 auto;
}

.story-detail-back {
  margin-bottom: 28px;
}

.story-detail-back--bottom {
  margin-top: 36px;
  margin-bottom: 0;
}

.story-detail-content p {
  margin-bottom: 18px;
}

.nachruf-box {
  background: #2b2b25;
  border-radius: 0;
  padding: 44px;
  color: #fff;
}

.nachruf-photo {
  margin: 0 0 28px;
}

.nachruf-photo img {
  width: 100%;
  max-width: 400px;
  height: auto;
  display: block;
  margin: 0;
}

.nachruf-box h2 {
  color: #fff;
  margin-bottom: 16px;
  font-size: 34px;
}

.nachruf-box p,
.nachruf-box .nachruf-note {
  color: #fff;
  margin-bottom: 16px;
  line-height: 1.75;
  font-size: 16px;
}

.nachruf-note {
  font-style: italic;
  font-size: 15px;
  margin-bottom: 0;
}

/* ============================================================
   GALERIE
   ============================================================ */
.gallery-placeholder {
  background: var(--color-kachel);
  border-radius: var(--radius-card);
  padding: 80px 40px;
  text-align: center;
  border: 2px dashed var(--color-primary);
}
.gallery-placeholder-icon { font-size: 72px; margin-bottom: 24px; }
.gallery-placeholder h3   { font-size: 30px; color: var(--color-navy); margin-bottom: 12px; }
.gallery-placeholder p    { color: var(--color-text-muted); font-size: 16px; max-width: 480px; margin: 0 auto 24px; }

.gallery-section {
  padding-top: 56px;
}

.gallery-categories { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 40px; }

.gallery-cat-btn {
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: 14px;
  padding: 8px 20px;
  border-radius: 0;
  border: 2px solid var(--color-primary);
  background: var(--color-bg);
  color: var(--color-navy);
  cursor: pointer;
  transition: all var(--transition);
}
.gallery-cat-btn.active,
.gallery-cat-btn:hover { background: var(--color-primary); border-color: var(--color-primary-dark); color: #fff; }

.gallery-demo-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.gallery-demo-item {
  border-radius: 0;
  aspect-ratio: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 52px;
  background: var(--color-kachel);
  border: 2px solid var(--color-border);
  transition: transform var(--transition), box-shadow var(--transition);
  cursor: pointer;
  overflow: hidden;
  position: relative;
}
.gallery-demo-item img { width: 100%; height: 100%; object-fit: cover; }
.gallery-demo-item:hover { transform: scale(1.04); box-shadow: var(--shadow-hover); }

.gallery-demo-item .label { display: none; }

.gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0, 0, 0, 0.88);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.gallery-lightbox.open {
  display: flex;
}

body.gallery-lightbox-open {
  overflow: hidden;
}

.gallery-demo-item[hidden] {
  display: none;
}

.gallery-lightbox-content {
  margin: 0;
  max-width: min(1100px, 96vw);
  max-height: 92vh;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.gallery-lightbox-content img {
  max-width: 100%;
  max-height: calc(92vh - 56px);
  object-fit: contain;
  border: 2px solid rgba(255, 255, 255, 0.2);
}

.gallery-lightbox-content figcaption { display: none; }

.gallery-lightbox-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 44px;
  height: 44px;
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: 0;
  background: rgba(0, 0, 0, 0.45);
  color: #fff;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}

/* ============================================================
   LINKS-SEITE
   ============================================================ */
.link-category { margin-bottom: 48px; }

.link-category h3 {
  font-size: 28px;
  color: var(--color-navy);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 3px solid var(--color-accent);
  display: inline-block;
}

.links-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px 18px;
}

.link-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  background: var(--color-bg-card);
  border-radius: 12px;
  padding: 20px 24px;
  border: 1px solid var(--color-border);
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
  text-decoration: none;
}
.link-item:hover { border-color: var(--color-primary); box-shadow: var(--shadow-card); transform: translateX(4px); text-decoration: none; }

.link-icon          { font-size: 28px; flex-shrink: 0; margin-top: 2px; }
.link-logo          { width: 240px; max-width: 48%; height: auto; flex-shrink: 0; object-fit: contain; }
.link-item-text h2,
.link-item-text h3,
.link-item-text h4  { font-size: 26px; color: var(--color-navy); margin-bottom: 4px; font-family: var(--font-heading); font-weight: 400; line-height: 1.2; }
.link-item-text p   { font-size: 14px; color: var(--color-text-muted); line-height: 1.55; }
.link-item-url      { font-size: 12px; color: var(--color-text); font-weight: 600; margin-top: 4px; display: block; }

.link-add-box {
  background: var(--color-kachel);
  border-radius: var(--radius-card);
  padding: 36px;
  text-align: center;
  border: 2px dashed var(--color-primary);
  margin-top: 48px;
}
.link-add-box h3 { font-size: 26px; color: var(--color-navy); margin-bottom: 10px; }
.link-add-box p  { color: var(--color-text-muted); font-size: 15px; margin-bottom: 20px; }

/* ============================================================
   GÄSTEBUCH
   ============================================================ */
.page-gaestebuch .gb-section {
  padding-top: 56px;
  padding-bottom: 56px;
}

.page-gaestebuch .prose {
  max-width: none;
}

.page-gaestebuch .gb-layout {
  max-width: none;
  margin: 0;
}

.gb-entries { display: flex; flex-direction: column; gap: 28px; margin-bottom: 56px; }

.gb-entry {
  background: var(--color-bg-card);
  border-radius: 0;
  padding: 32px 36px;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-card);
  position: relative;
}

.gb-entry--featured {
  padding: 0;
  border: none;
  box-shadow: none;
  background: transparent;
}

.gb-entry--featured .gb-entry-header {
  background: var(--color-kachel);
  border: 1px solid var(--color-border);
  padding: 24px 28px;
  margin-bottom: 0;
}

.gb-entry--featured .gb-text--long {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-top: none;
  padding: 32px 36px 40px;
  box-shadow: var(--shadow-card);
}

.gb-entry::before {
  content: '„';
  position: absolute;
  top: 18px;
  right: 24px;
  font-family: 'Dancing Script', cursive;
  font-size: 56px;
  color: var(--color-accent);
  line-height: 1;
  opacity: 0.45;
}

.gb-entry--featured::before {
  display: none;
}

.gb-entry-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}

.gb-avatar {
  width: 56px;
  height: 56px;
  border-radius: 0;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  flex-shrink: 0;
  color: #fff;
  font-family: 'Dancing Script', cursive;
  font-weight: 700;
}

.gb-avatar-navy   { background: linear-gradient(135deg, var(--color-navy) 0%, var(--color-navy-light) 100%); }
.gb-avatar-gold   { background: linear-gradient(135deg, #e9a922 0%, #f4cc6b 100%); color: #1a1a1a; }
.gb-avatar-purple { background: linear-gradient(135deg, #6b48ff 0%, #9b7dff 100%); }
.gb-avatar-red    { background: linear-gradient(135deg, #e05252 0%, #f08080 100%); }

.gb-name {
  font-family: 'Dancing Script', cursive;
  font-weight: 700;
  font-size: 28px;
  color: var(--color-navy);
  line-height: 1.1;
}

.gb-meta {
  font-size: 13px;
  color: var(--color-text-muted);
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 4px;
}

.gb-bird {
  background: var(--color-navy-light);
  color: var(--color-navy);
  padding: 3px 10px;
  border-radius: 0;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.gb-text  { font-size: 16px; color: var(--color-text); line-height: 1.75; font-style: italic; }
.gb-stars { color: var(--color-accent); font-size: 18px; margin-top: 12px; letter-spacing: 2px; }

.gb-intro-card {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-left: 4px solid var(--color-primary);
  padding: 36px 40px;
  box-shadow: var(--shadow-card);
  max-width: none;
}

.gb-intro-card p {
  margin-bottom: 18px;
}

.gb-intro-greeting {
  font-family: 'Dancing Script', cursive;
  font-size: clamp(28px, 4vw, 36px);
  color: var(--color-navy);
  margin-bottom: 12px;
}

.gb-signature {
  font-family: 'Dancing Script', cursive;
  font-size: clamp(26px, 3.5vw, 34px);
  color: var(--color-primary-dark);
  text-align: right;
  margin-top: 8px;
  margin-bottom: 0;
}

.gb-featured-head {
  margin-bottom: 28px;
}

.gb-featured-title {
  font-family: 'Dancing Script', cursive;
  font-size: clamp(34px, 5vw, 48px);
  color: var(--color-navy);
  margin: 8px 0 12px;
  line-height: 1.15;
}

.gb-featured-lead {
  font-size: 17px;
  color: var(--color-text-muted);
  line-height: 1.7;
  margin: 0;
}

.gb-text--long {
  font-style: normal;
  font-size: 16px;
  line-height: 1.8;
}

.gb-text--long p {
  margin-bottom: 1.15em;
}

.gb-text--long p:last-child {
  margin-bottom: 0;
}

.gb-opener {
  font-family: 'Dancing Script', cursive;
  font-size: clamp(26px, 3.5vw, 34px);
  color: var(--color-navy);
  margin-bottom: 1.25em;
}

.gb-closing {
  font-family: 'Dancing Script', cursive;
  font-size: clamp(24px, 3vw, 30px);
  color: var(--color-primary-dark);
  margin-top: 1.5em;
}

.gb-summary {
  background: var(--color-kachel);
  border: 1px solid var(--color-border);
  border-left: 4px solid var(--color-accent);
  padding: 24px 28px;
  margin: 28px 0;
}

.gb-summary p {
  margin-bottom: 14px;
}

.gb-summary p:last-child {
  margin-bottom: 0;
}

.gb-summary-label {
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--color-navy);
  margin-bottom: 12px;
}

.gb-archive {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 80px;
  padding: 32px 36px;
  background: var(--color-kachel);
  border: 1px solid var(--color-border);
}

.gb-archive h3 {
  font-family: 'Dancing Script', cursive;
  font-size: clamp(26px, 3.5vw, 34px);
  color: var(--color-navy);
  margin: 0 0 8px;
}

.gb-archive p {
  margin: 0;
  color: var(--color-text-muted);
  font-size: 15px;
  line-height: 1.65;
}

.gb-form-box { background: var(--color-kachel); border-radius: 0; padding: 44px; border: 1px solid var(--color-border); }
.gb-form-box h3 { font-size: 30px; color: var(--color-navy); margin-bottom: 8px; }
.gb-form-box p  { color: var(--color-text-muted); font-size: 15px; margin-bottom: 28px; }

@media (max-width: 480px) {
  .hero-bg {
    height: 118%;
    top: -14%;
    object-position: 70% 45%;
  }
}

/* ============================================================
   RESPONSIVE ERGÄNZUNGEN
   ============================================================ */
@media (max-width: 768px) {
  .page-banner-inner--with-photo {
    grid-template-columns: 1fr;
  }
  .page-banner-photo {
    max-width: 280px;
    margin-left: auto;
    margin-right: auto;
  }
  .stories-grid    { grid-template-columns: 1fr; }
  .gallery-demo-grid { grid-template-columns: repeat(2, 1fr); }
  .links-list      { grid-template-columns: 1fr; }
  .link-logo       { width: 190px; max-width: 50%; }
  .gb-entry        { padding: 24px 20px; }
  .gb-entry::before { display: none; }
  .gb-intro-card,
  .gb-entry--featured .gb-text--long { padding: 24px 20px; }
  .gb-entry--featured .gb-entry-header { padding: 20px; }
  .gb-archive { padding: 24px 20px; flex-direction: column; align-items: flex-start; }
  .gb-form-box     { padding: 28px 20px; }
  .form-grid       { grid-template-columns: 1fr; }
}
