/* ==============================================
   Gewerbepark Schweer – Modern Styles
   ============================================== */

/* Inter – lokal gehostet (DSGVO-konform) */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url('fonts/inter-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url('fonts/inter-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

/* ── Custom Properties ───────────────────── */
:root {
  --bg: #f4f7fb;
  --text: #0e1d2d;
  --muted: #4e5d6e;
  --primary: #1a3a5c;
  --primary-2: #234b74;
  --primary-light: #eff6ff;
  --accent: #3b82f6;
  --accent-2: #2563eb;
  --gold: #a9814f;
  --gold-dark: #8a6a3f;
  --gold-light: #f8f2e9;
  --white: #ffffff;
  --border: #dae3ed;
  --shadow-sm: 0 2px 8px rgba(15,31,48,.06);
  --shadow: 0 8px 24px rgba(15,31,48,.10);
  --shadow-lg: 0 20px 48px rgba(15,31,48,.14);
  --radius: 1.25rem;
  --radius-lg: 1.75rem;
  --transition: 0.2s ease;
  --transition-slow: 0.4s ease;
}

/* ── Reset ───────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: Inter, system-ui, Arial, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* ── Layout ──────────────────────────────── */
.container { width: min(1160px, calc(100% - 2.5rem)); margin-inline: auto; }

/* ── Typography ──────────────────────────── */
h1, h2, h3, h4 { line-height: 1.1; font-weight: 800; }
h1 { font-size: clamp(2rem, 5vw, 3.625rem); margin-bottom: 1rem; }
h2 { font-size: clamp(1.75rem, 3.5vw, 2.625rem); margin-bottom: 0.875rem; }
h3 { font-size: 1.375rem; margin-bottom: 0.625rem; }
.lead { font-size: 1.125rem; color: var(--muted); max-width: 60ch; line-height: 1.7; }

/* ── Eyebrow ─────────────────────────────── */
.eyebrow {
  display: inline-flex; align-items: center; gap: 6px;
  margin-bottom: 1rem;
  color: var(--accent-2);
  background: #eff6ff; border: 1px solid #bfdbfe;
  padding: 5px 14px; border-radius: 999px;
  font-weight: 700; font-size: 0.8rem;
  letter-spacing: 0.04em; text-transform: uppercase;
}

/* ── Buttons ─────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  border: none; cursor: pointer;
  border-radius: 999px; padding: 0.875rem 1.75rem;
  font-family: inherit; font-size: 0.9375rem; font-weight: 700; line-height: 1;
  transition: all var(--transition); white-space: nowrap;
}
.btn-primary {
  background: var(--primary); color: #fff;
  box-shadow: 0 4px 14px rgba(26,58,92,.28);
}
.btn-primary:hover {
  background: var(--primary-2);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(26,58,92,.38);
}
.btn-secondary { background: #eff6ff; color: var(--primary); }
.btn-secondary:hover { background: #dbeafe; transform: translateY(-1px); }
.btn-light { background: rgba(255,255,255,.95); color: var(--primary); }
.btn-light:hover { background: #fff; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,0,0,.12); }
.full { width: 100%; }

/* ── Header ──────────────────────────────── */
.site-header {
  position: sticky; top: 0; z-index: 1000;
  background: rgba(255,255,255,.9);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(26,58,92,.08);
  transition: box-shadow var(--transition);
}
.site-header.scrolled { box-shadow: 0 2px 20px rgba(15,31,48,.10); }
.nav {
  display: flex; align-items: center; justify-content: space-between; gap: 1.5rem;
  min-height: 72px;
}
.brand { display: flex; align-items: center; gap: 10px; font-weight: 800; flex-shrink: 0; }
.brand-logo { height: 68px; width: auto; display: block; }
.brand-mark {
  width: 40px; height: 40px; border-radius: 10px;
  background: var(--primary); color: var(--gold);
  border: 1.5px solid var(--gold);
  display: grid; place-items: center;
  font-size: 13px; font-weight: 800; letter-spacing: .06em; flex-shrink: 0;
}
.desktop-nav { display: flex; gap: 1.75rem; color: var(--muted); font-weight: 500; }
.desktop-nav a { transition: color var(--transition); }
.desktop-nav a:hover, .desktop-nav a.active { color: var(--primary); font-weight: 600; }

/* Hamburger */
.hamburger {
  display: none; flex-direction: column; justify-content: center;
  gap: 5px; width: 40px; height: 40px;
  background: none; border: none; cursor: pointer; padding: 6px;
  border-radius: 8px; transition: background var(--transition);
  -webkit-appearance: none;
}
.hamburger:hover { background: #f1f5f9; }
.hamburger span {
  display: block; height: 2px; width: 100%;
  background: var(--text); border-radius: 2px;
  transition: all 0.3s ease; transform-origin: center;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav */
.mobile-nav {
  display: none; flex-direction: column; gap: 2px;
  border-top: 1px solid var(--border);
  background: #fff; padding: 0.75rem 1rem 1.25rem;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  padding: 0.75rem 1rem; font-weight: 600; color: var(--text);
  border-radius: 10px; transition: background var(--transition), color var(--transition);
}
.mobile-nav a:hover { background: #eff6ff; color: var(--primary); }
.mobile-nav .btn { margin-top: 0.5rem; justify-content: center; }

/* ── Hero ────────────────────────────────── */
.hero {
  padding: 5rem 0 3.5rem;
  background:
    radial-gradient(ellipse at 85% 5%, #dbeafe 0%, transparent 42%),
    radial-gradient(ellipse at 5% 90%, #eff6ff 0%, transparent 45%),
    linear-gradient(180deg, #f8fbff 0%, #fff 100%);
  overflow: hidden;
}
.hero-grid {
  display: grid; grid-template-columns: 1.15fr 0.85fr;
  gap: 3rem; align-items: center;
}
.hero-actions { display: flex; gap: 0.875rem; flex-wrap: wrap; margin: 1.75rem 0; }
.hero-badges { display: flex; flex-wrap: wrap; gap: 0.625rem; list-style: none; }
.hero-badges li {
  border: 1px solid var(--border); background: #fff;
  border-radius: 999px; padding: 7px 14px;
  font-weight: 600; font-size: 0.875rem;
  display: flex; align-items: center; gap: 6px;
}
.hero-badges li::before {
  content: ''; width: 6px; height: 6px;
  border-radius: 50%; background: var(--accent); flex-shrink: 0;
}
.hero-card {
  background: #fff; border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: var(--shadow-lg); border: 1px solid #edf1f5;
}
.hero-card picture { display: block; }
.hero-card img { height: 300px; width: 100%; object-fit: cover; }
.availability-card { padding: 1.5rem; }
.availability-card h2 { font-size: 1.375rem; margin-bottom: 0.75rem; }
.availability-card ul { display: flex; flex-direction: column; gap: 0.5rem; list-style: none; padding: 0; }
.availability-card li {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.9rem; color: var(--muted);
}
.availability-card li::before {
  content: '✓'; width: 20px; height: 20px; flex-shrink: 0;
  border-radius: 50%; background: #dcfce7; color: #166534;
  display: grid; place-items: center; font-size: 11px; font-weight: 700;
}
.small { font-size: 0.875rem; color: var(--muted); margin-top: 0.75rem; }

/* ── Trust Strip ─────────────────────────── */
.trust-strip {
  border-top: 1px solid #edf1f5; border-bottom: 1px solid #edf1f5;
  background: #fbfdff;
}
.trust-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1rem; padding: 1.25rem 0;
  color: var(--muted); font-size: 0.9375rem;
}
.trust-grid > div { display: flex; align-items: center; gap: 8px; }

/* ── Sections ────────────────────────────── */
.section { padding: 5rem 0; }
.alt { background: var(--bg); }
.section-head { max-width: 760px; margin-bottom: 2.5rem; }
.section-head p:last-child { color: var(--muted); font-size: 1.0625rem; }

/* Feature Cards */
.cards.three { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.cards.two { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.25rem; }
.card {
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--radius); padding: 1.75rem;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: #bfdbfe; }
.card-icon {
  width: 52px; height: 52px; border-radius: 14px;
  background: #eff6ff; display: grid; place-items: center;
  margin-bottom: 1.25rem; color: var(--accent-2);
}
.card p { color: var(--muted); font-size: 0.9375rem; line-height: 1.7; }

/* Size Grid */
/* Gruppenüberschrift über den Größen-Karten (Privat / Gewerbe) */
.size-group-title {
  display: flex; align-items: center; gap: 0.875rem;
  font-size: 1.125rem; color: var(--primary);
  margin-bottom: 1rem;
}
.size-group-title::after {
  content: ''; flex: 1; height: 1px; background: var(--border);
}
.size-grid + .size-group-title { margin-top: 2.75rem; }

.size-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.size-card {
  background: #fff; border: 2px solid var(--border);
  border-radius: 1.5rem; padding: 2rem 1.75rem;
  position: relative;
  transition: transform var(--transition), box-shadow var(--transition);
}
.size-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.size-card.featured {
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(59,130,246,.08), var(--shadow);
  transform: scale(1.02);
}
.size-card.featured:hover { transform: scale(1.02) translateY(-5px); }
.badge {
  display: inline-flex; align-items: center;
  background: var(--gold); color: #fff;
  padding: 5px 12px; border-radius: 999px;
  font-size: 0.75rem; font-weight: 700; margin-bottom: 0.875rem;
}
.size { font-size: 2.25rem; font-weight: 800; color: var(--primary); margin-bottom: 1rem; }
.size-card ul { display: flex; flex-direction: column; gap: 0.5rem; padding: 0; list-style: none; }
.size-card li {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.9375rem; color: var(--muted);
}
.size-card li::before {
  content: '✓'; width: 18px; height: 18px; flex-shrink: 0;
  border-radius: 50%; background: #dcfce7; color: #166534;
  font-size: 10px; font-weight: 700; display: grid; place-items: center;
}

/* Benefits Split */
.split { display: grid; grid-template-columns: 1fr 0.9fr; gap: 3rem; align-items: start; }
.check-list { display: flex; flex-direction: column; gap: 0.75rem; padding: 0; list-style: none; margin-top: 1.5rem; }
.check-list li {
  display: flex; align-items: center; gap: 12px;
  font-weight: 500; font-size: 1rem;
}
.check-list li::before {
  content: '✓'; width: 24px; height: 24px; flex-shrink: 0;
  border-radius: 50%; background: var(--primary); color: #fff;
  font-size: 12px; font-weight: 700; display: grid; place-items: center;
}
.note-box {
  background: #f0f7ff; border: 1px solid #bfdbfe;
  border-radius: 1.5rem; padding: 1.75rem;
}
.note-box p { color: var(--muted); font-size: 0.9375rem; line-height: 1.7; margin-top: 0.5rem; }

/* Gallery
   Gleichmäßiges Raster statt Masonry: Die Fotos haben unterschiedliche
   Seitenverhältnisse (hoch und quer). Feste Kachelformate + object-fit halten
   die Reihen bündig, statt dass die Spalten unterschiedlich weit auslaufen. */
/* Sechs Spalten als Raster, die Kacheln belegen je zwei davon (drei pro Reihe).
   Dadurch kann die Schlussreihe bei ungerader Kachelzahl breiter aufgeteilt
   werden, statt eine Lücke zu lassen. */
.gallery {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1.25rem;
}
/* Wrapper, weil die Bilder als <picture> (WebP + JPEG-Rückfall) eingebunden sind */
.gallery picture { display: block; grid-column: span 2; }
/* Die letzten beiden Kacheln teilen sich die Schlussreihe zu gleichen Teilen */
.gallery picture:nth-last-child(-n+2) { grid-column: span 3; }
.gallery img {
  width: 100%;
  /* height:auto ist nötig: sonst wirkt das height-Attribut aus dem HTML als
     feste Höhe und setzt aspect-ratio außer Kraft. */
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
  border-radius: 1rem;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-slow), box-shadow var(--transition-slow);
}
.gallery img:hover { transform: scale(1.015); box-shadow: var(--shadow); }
.gallery img.zoomable { cursor: zoom-in; }
.gallery img.zoomable:focus-visible { outline: 3px solid var(--primary); outline-offset: 3px; }

/* ── Lightbox ─────────────────────────────── */
.lightbox {
  position: fixed; inset: 0; z-index: 100;
  background: rgba(10, 20, 32, 0.93);
  display: flex; align-items: center; justify-content: center;
  padding: clamp(1rem, 4vw, 3rem);
}
/* Muss sein: "display: flex" oben würde sonst die Standardregel des Browsers
   für [hidden] überstimmen – das Overlay ließe sich nicht mehr schließen. */
.lightbox[hidden] { display: none; }
body.lightbox-open { overflow: hidden; }
.lightbox-figure {
  margin: 0; max-width: 100%; max-height: 100%;
  display: flex; flex-direction: column; align-items: center; gap: 0.75rem;
}
.lightbox-figure img {
  max-width: min(1200px, 92vw);
  max-height: 82vh;
  width: auto; height: auto;
  object-fit: contain;
  border-radius: 0.75rem;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  animation: lightbox-in 0.18s ease-out;
}
.lightbox-figure figcaption {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.875rem; text-align: center; max-width: 60ch;
}
.lightbox-btn {
  position: absolute;
  background: rgba(255, 255, 255, 0.12);
  color: #fff; border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 999px; cursor: pointer;
  width: 48px; height: 48px;
  font-size: 1.75rem; line-height: 1;
  display: grid; place-items: center;
  transition: background var(--transition), transform var(--transition);
}
.lightbox-btn:hover { background: rgba(255, 255, 255, 0.24); }
.lightbox-btn:focus-visible { outline: 3px solid #fff; outline-offset: 2px; }
.lightbox-close { top: 1rem; right: 1rem; font-size: 1.5rem; }
.lightbox-prev  { left: 1rem;  top: 50%; transform: translateY(-50%); }
.lightbox-next  { right: 1rem; top: 50%; transform: translateY(-50%); }
.lightbox-prev:hover, .lightbox-next:hover { transform: translateY(-50%) scale(1.06); }

@keyframes lightbox-in { from { opacity: 0; transform: scale(0.98); } to { opacity: 1; transform: none; } }

@media (max-width: 560px) {
  .lightbox-btn { width: 42px; height: 42px; }
  .lightbox-prev { left: 0.375rem; }
  .lightbox-next { right: 0.375rem; }
  .lightbox-figure img { max-height: 70vh; }
}

@media (prefers-reduced-motion: reduce) {
  .lightbox-figure img { animation: none; }
  .gallery img, .lightbox-btn { transition: none; }
}
/* Luftaufnahme als breites Banner über die volle Breite */
.gallery picture:first-child { grid-column: 1 / -1; }
.gallery picture:first-child img { aspect-ratio: 21 / 9; }
.gallery picture:first-child img { aspect-ratio: 21 / 9; border-radius: var(--radius); }

/* CTA */
.cta-section { padding-top: 0; }
.cta-box {
  background: linear-gradient(135deg, var(--primary) 0%, #1d4e8f 55%, #2563eb 100%);
  border-radius: 2rem; padding: 3rem;
  color: #fff;
  display: flex; align-items: center; justify-content: space-between; gap: 2rem;
  position: relative; overflow: hidden;
}
.cta-box::after {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 85% 50%, rgba(59,130,246,.22), transparent 60%);
  pointer-events: none;
}
.cta-box .eyebrow { background: rgba(255,255,255,.15); color: rgba(255,255,255,.92); border-color: rgba(255,255,255,.2); }
.cta-box h2 { color: #fff; }
.cta-box p { color: rgba(255,255,255,.8); margin: 0; max-width: 50ch; }

/* Contact */
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 2.5rem; align-items: start; }
.contact-card {
  background: #f8fbff; border: 1px solid var(--border);
  border-radius: 1.25rem; padding: 1.5rem; margin-top: 1.25rem;
}
.contact-card p { margin-bottom: 0.5rem; }
.contact-form {
  background: #fff; border: 1px solid var(--border);
  border-radius: 1.5rem; padding: 2rem;
  box-shadow: var(--shadow);
}
label { display: block; font-weight: 600; font-size: 0.9375rem; margin-bottom: 0.875rem; }
input, select, textarea {
  width: 100%; margin-top: 0.375rem;
  border: 1.5px solid #d1dde8; border-radius: 0.75rem;
  padding: 0.75rem 1rem; font: inherit; font-size: 0.9375rem;
  transition: border-color var(--transition), box-shadow var(--transition);
}
input:focus, select:focus, textarea:focus {
  outline: none; border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(59,130,246,.12);
}
.form-success {
  font-size: 0.875rem; color: #166534; background: #dcfce7;
  border: 1px solid #bbf7d0; border-radius: 8px; padding: 0.75rem 1rem; margin-top: 0.625rem;
}
.form-error {
  font-size: 0.875rem; color: #991b1b; background: #fee2e2;
  border: 1px solid #fecaca; border-radius: 8px; padding: 0.75rem 1rem; margin-top: 0.625rem;
}
.map-consent {
  background: var(--bg); border: 1px solid var(--border); border-radius: 1.125rem;
  padding: 2rem; text-align: center; min-height: 180px; margin-top: 1rem;
  display: flex; flex-direction: column; align-items: center;
  justify-content: center; gap: 0.625rem;
}
.map-consent p { color: var(--muted); margin: 0; font-size: 0.875rem; }
.map-consent iframe { width: 100%; height: 320px; border: 0; border-radius: 12px; margin-top: 0.75rem; }

/* Footer */
.site-footer { background: #0a1929; color: #94a3b8; padding: 3rem 0 2rem; margin-top: 1.5rem; }
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr; gap: 3rem;
  padding-bottom: 2rem; margin-bottom: 2rem;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.footer-brand { display: flex; align-items: center; gap: 9px; margin-bottom: 0.625rem; }
.footer-brand-icon { height: 30px; width: auto; display: block; flex-shrink: 0; }
.footer-brand-name { font-size: 1rem; font-weight: 700; color: #fff; letter-spacing: .01em; }
.footer-brand-mark {
  width: 38px; height: 38px; border-radius: 10px;
  background: var(--primary-2); color: var(--gold);
  border: 1.5px solid var(--gold);
  display: grid; place-items: center; font-size: 13px; font-weight: 800; flex-shrink: 0;
}
.footer-grid strong { color: #e2e8f0; }
.footer-grid p { margin-top: 0.375rem; font-size: 0.9rem; line-height: 1.65; }
.footer-links { display: flex; flex-direction: column; gap: 0.625rem; margin-top: 0.5rem; }
.footer-links a { font-size: 0.9rem; transition: color var(--transition); }
.footer-links a:hover { color: #fff; }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  gap: 1rem; font-size: 0.875rem; flex-wrap: wrap;
}
.footer-bottom a { transition: color var(--transition); }
.footer-bottom a:hover { color: #fff; }

/* Legal pages */
.legal-page { padding-top: 2.5rem; }
.legal-content { max-width: 780px; }
.legal-content h1 { font-size: clamp(1.875rem, 4vw, 2.875rem); margin-bottom: 1.5rem; }
.legal-content h2 { font-size: clamp(1.25rem, 2.5vw, 1.75rem); margin-top: 2.5rem; }
.legal-content h3 { font-size: 1.125rem; margin-top: 1.75rem; }
.legal-content p, .legal-content ul { color: var(--muted); line-height: 1.75; }
.legal-content a { color: var(--accent-2); text-decoration: underline; }
.legal-content a:hover { color: var(--primary); }

/* Scroll reveal animation */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.65s ease, transform 0.65s ease; }
.reveal.visible { opacity: 1; transform: none; }

/* ── Responsive ──────────────────────────── */

/* Tablet: ≤ 1024px */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  /* Ab hier wären drei Spalten zu schmal für erkennbare Motive: zwei pro Reihe */
  .gallery { grid-template-columns: repeat(4, 1fr); }
  .gallery picture,
  .gallery picture:nth-last-child(-n+2) { grid-column: span 2; }
  .gallery picture:first-child { grid-column: 1 / -1; }
  .gallery picture:first-child img { aspect-ratio: 16 / 9; }
}

/* Mobile: ≤ 768px */
@media (max-width: 768px) {
  .desktop-nav, .nav > .btn { display: none; }
  .hamburger { display: flex; }

  .hero { padding: 2.5rem 0 2rem; }
  .hero-grid { grid-template-columns: 1fr; gap: 2rem; }
  .hero-card img { height: 220px; }

  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .cards.three, .cards.two, .size-grid, .split, .contact-grid { grid-template-columns: 1fr; }
  .size-card.featured { transform: none; }
  .size-card.featured:hover { transform: translateY(-5px); }
  .cta-box { flex-direction: column; align-items: flex-start; padding: 2rem 1.5rem; }
  .footer-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .section { padding: 3.5rem 0; }
  .split { gap: 2rem; }
}

/* Small mobile: ≤ 480px */
@media (max-width: 480px) {
  .trust-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; text-align: center; }
  .cta-box { padding: 1.75rem 1.25rem; }
}

/* Galerie einspaltig, bevor die Kacheln zu schmal für die Motive werden */
@media (max-width: 560px) {
  .gallery { grid-template-columns: 1fr; }
  .gallery picture,
  .gallery picture:nth-last-child(-n+2),
  .gallery picture:first-child { grid-column: 1 / -1; }
  .gallery picture:first-child img { aspect-ratio: 4 / 3; }
}
