/* =====================================================================
   Änderungsatelier Kofidis – Stylesheet
   Handgeschrieben, ohne Framework, ohne externe Ressourcen.
   Schriften werden selbst gehostet (kein Google-Fonts-Aufruf).
   ===================================================================== */

/* ------------------------- Schriften ------------------------- */
@font-face{ font-family:"Inter"; src:url("../fonts/inter-400.woff2") format("woff2"); font-weight:400; font-style:normal; font-display:swap; }
@font-face{ font-family:"Inter"; src:url("../fonts/inter-500.woff2") format("woff2"); font-weight:500; font-style:normal; font-display:swap; }
@font-face{ font-family:"Inter"; src:url("../fonts/inter-600.woff2") format("woff2"); font-weight:600; font-style:normal; font-display:swap; }
@font-face{ font-family:"Inter"; src:url("../fonts/inter-700.woff2") format("woff2"); font-weight:700; font-style:normal; font-display:swap; }
@font-face{ font-family:"Playfair Display"; src:url("../fonts/playfair-500.woff2") format("woff2"); font-weight:500; font-style:normal; font-display:swap; }
@font-face{ font-family:"Playfair Display"; src:url("../fonts/playfair-600.woff2") format("woff2"); font-weight:600; font-style:normal; font-display:swap; }
@font-face{ font-family:"Playfair Display"; src:url("../fonts/playfair-700.woff2") format("woff2"); font-weight:700; font-style:normal; font-display:swap; }

:root{
  --paper:      #fafbfc;   /* sehr helles Off-White, nicht schneeweiß */
  --paper-2:    #ffffff;
  --paper-3:    #eef0f3;   /* zart getönte Abschnitte */
  --ink:        #1d2126;
  --ink-soft:   #3c414a;
  --muted:      #6c7079;
  --accent:     #4096ed;   /* Marken-Blau */
  --accent-dk:  #4096ed;   /* Marken-Blau auch für Text/Links/Akzente */
  --accent-dkr: #2b7de0;   /* nur leicht dunkler für Hover */
  --accent-lt:  #e8f2fd;   /* heller Blau-Ton für Flächen */
  --line:       #e7e9ed;
  --line-2:     #d9dce2;
  --gold:       #c08a3e;   /* dezenter Faden-Ton (Sterne) */
  --shadow:     0 1px 2px rgba(29,33,38,.04), 0 10px 28px rgba(29,33,38,.07);
  --radius:     14px;
  --wrap:       1120px;
  --serif:      "Playfair Display","Iowan Old Style",Palatino,Georgia,"Times New Roman",serif;
  --sans:       "Inter",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,sans-serif;
}

*,*::before,*::after{ box-sizing:border-box; }

html{ scroll-behavior:smooth; }

/* Anker nicht unter dem klebenden Header verstecken */
:where(section[id], [id]){ scroll-margin-top:92px; }

body{
  margin:0;
  font-family:var(--sans);
  font-size:17px;
  line-height:1.72;
  color:var(--ink-soft);
  background:var(--paper);
  -webkit-font-smoothing:antialiased;
  text-rendering:optimizeLegibility;
}

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

a{ color:var(--accent-dk); text-decoration:none; }
a:hover{ color:var(--accent-dkr); }

/* Einheitliche Betonung: Fettes im Fließtext immer als Semibold */
strong,b{ font-weight:600; color:var(--ink); }

h1,h2,h3,h4{
  font-family:var(--serif);
  color:var(--ink);
  line-height:1.16;
  font-weight:600;
  margin:0 0 .5em;
  letter-spacing:-.005em;
}
h2{ font-size:clamp(1.8rem,3.4vw,2.55rem); }
h3{ font-size:1.28rem; font-weight:600; }

p{ margin:0 0 1rem; }

.wrap{ width:100%; max-width:var(--wrap); margin:0 auto; padding:0 22px; }

.section{ padding:80px 0; }
.section--tint{ background:var(--paper); }

/* --- Kicker / kleine Überschrift über der Sektion --- */
.kicker{
  font-family:var(--sans);
  font-size:.76rem;
  letter-spacing:.2em;
  text-transform:uppercase;
  color:var(--accent-dk);
  font-weight:700;
  margin:0 0 .7rem;
}
.section-head{ max-width:740px; margin-bottom:46px; }
.section-head p:not(.kicker){ color:var(--muted); font-size:1.06rem; }
.center{ text-align:center; margin-left:auto; margin-right:auto; }

/* --- Naht-Trenner (gestrichelte Linie als Schneiderei-Motiv) --- */
.stitch{
  border:0; height:0;
  border-top:2px dashed var(--line-2);
  max-width:var(--wrap);
  margin:0 auto;
}

/* =========================== Buttons =========================== */
.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:.5rem;
  font-family:var(--sans); font-weight:600; font-size:1rem; line-height:1.1;
  padding:.85rem 1.5rem; border-radius:999px;
  border:1.5px solid transparent; cursor:pointer;
  transition:transform .12s ease, background .15s ease, color .15s ease, border-color .15s ease, box-shadow .15s ease;
}
.btn:active{ transform:translateY(1px); }
.btn--primary{ background:var(--accent); color:#fff; }
.btn--primary:hover{ background:var(--accent-dkr); color:#fff; }
.btn--ghost{ background:transparent; color:var(--accent-dk); border-color:var(--line-2); }
.btn--ghost:hover{ border-color:var(--accent); color:var(--accent-dk); background:var(--paper-2); }

/* =========================== Topbar =========================== */
.topbar{
  background:var(--accent); color:#ffffff;
  font-size:.86rem; letter-spacing:.01em;
}
.topbar .wrap{ display:flex; flex-wrap:wrap; gap:6px 22px; justify-content:space-between; align-items:center; min-height:40px; padding-top:6px; padding-bottom:6px; }
.topbar a{ color:#ffffff; }
.topbar a:hover{ color:#ffffff; opacity:.8; }
.topbar .dot{ opacity:.55; margin:0 .55rem; }

/* =========================== Header =========================== */
.site-header{
  position:sticky; top:0; z-index:50;
  background:rgba(250,251,252,.9);
  backdrop-filter:saturate(140%) blur(8px);
  border-bottom:1px solid var(--line);
}
.site-header .wrap{ display:flex; align-items:center; justify-content:space-between; min-height:76px; gap:20px; }
.brand{ display:flex; align-items:center; }
.brand img{ height:34px; width:auto; }
.nav{ display:flex; align-items:center; gap:4px; }
.nav a{
  color:var(--ink-soft); font-weight:600; font-size:.96rem;
  padding:.5rem .8rem; border-radius:8px;
}
.nav a:hover{ background:var(--paper-3); color:var(--ink); }
.nav .btn{ margin-left:8px; padding:.55rem 1.15rem; }
.nav .btn--primary{ color:#fff; }
.nav .btn--primary:hover{ color:#fff; background:var(--accent-dkr); }

.nav-toggle{ display:none; background:none; border:0; cursor:pointer; padding:8px; }
.nav-toggle span{ display:block; width:24px; height:2px; background:var(--ink); margin:5px 0; transition:.2s; }

/* =========================== Hero =========================== */
.hero{ background:var(--paper); overflow:hidden; }
.hero .wrap{
  display:grid; grid-template-columns:1.05fr 1fr; gap:58px; align-items:center;
  padding-top:78px; padding-bottom:78px;
}
.hero .kicker{ margin-bottom:1.1rem; }
.hero h1{
  font-size:clamp(2.2rem,4.8vw,3.5rem); line-height:1.06; margin-bottom:.45em;
  font-weight:700; letter-spacing:-.015em;
}
.hero h1 em{ font-style:italic; color:var(--accent-dk); font-weight:600; }
.hero__lead{ font-size:1.14rem; color:var(--ink-soft); max-width:46ch; }
.hero__cta{ display:flex; flex-wrap:wrap; gap:14px; margin-top:1.7rem; }
.hero__meta{ display:flex; flex-wrap:wrap; gap:8px 24px; margin-top:2rem; color:var(--muted); font-size:.95rem; }
.hero__meta b{ color:var(--ink); font-weight:600; }
.hero__figure{ position:relative; }
.hero__figure img{
  border-radius:18px; box-shadow:var(--shadow);
  border:6px solid #fff; width:100%; object-fit:cover; aspect-ratio:16/11;
}
.stars{ color:var(--gold); letter-spacing:1px; font-size:.95rem; }

/* Google-Bewertungs-Card */
.rating-badge{
  position:absolute; left:-16px; bottom:-20px;
  display:flex; align-items:center; gap:12px;
  background:#fff; border:1px solid var(--line);
  border-radius:16px; padding:12px 18px 12px 14px; box-shadow:var(--shadow);
  text-decoration:none; transition:transform .15s ease, box-shadow .15s ease;
}
.rating-badge:hover{ transform:translateY(-2px); box-shadow:0 12px 30px rgba(29,33,38,.14); }
.rating-badge__g{ display:flex; }
.rating-badge__g svg{ width:28px; height:28px; }
.rating-badge__line{ display:flex; align-items:center; gap:8px; }
.rating-badge__num{ font-family:var(--serif); font-weight:700; font-size:1.5rem; color:var(--ink); line-height:1; }
.rating-badge small{ display:block; color:var(--muted); font-size:.78rem; margin-top:3px; }

/* =========================== Leistungen =========================== */
.grid-services{
  display:grid; grid-template-columns:repeat(3,1fr); gap:22px;
}
.card-service{
  background:var(--paper-2); border:1px solid var(--line);
  border-radius:var(--radius); padding:28px 26px 30px;
  box-shadow:var(--shadow); transition:transform .15s ease, box-shadow .15s ease;
}
.card-service:hover{ transform:translateY(-3px); box-shadow:0 14px 34px rgba(29,33,38,.10); }
.card-service .ic{
  width:76px; height:76px; margin-bottom:16px;
  display:flex; align-items:center; justify-content:center;
  background:var(--accent-lt); border-radius:50%;
}
.card-service .ic img{ width:46px; height:46px; object-fit:contain; }
.card-service h3{ margin-bottom:.4em; }
.card-service p{ color:var(--muted); font-size:.98rem; margin:0; }

/* =========================== Über uns =========================== */
.about{ display:grid; grid-template-columns:1fr 1.05fr; gap:58px; align-items:start; }
.about__media{ display:flex; flex-direction:column; gap:18px; position:sticky; top:100px; }
.about__media figure{ margin:0; }
.about__media img{
  border-radius:12px; border:6px solid #fff; box-shadow:var(--shadow);
  filter:grayscale(100%) contrast(1.03); width:100%; aspect-ratio:3/2; object-fit:cover;
}
.about__media figcaption{ font-size:.82rem; color:var(--muted); margin-top:.5rem; font-style:italic; }
.about__text p{ color:var(--ink-soft); }
.about__text .lead{ font-size:1.16rem; color:var(--ink); line-height:1.6; font-weight:500; }

/* Quellen-Hinweis ECHT Nordstadt */
.credit{ display:flex; align-items:center; gap:14px; margin:1.4rem 0 .4rem; text-decoration:none;
  background:var(--paper-2); border:1px solid var(--line); border-radius:14px; padding:16px 20px; }
.credit img{ width:52px; height:auto; flex:0 0 52px; }
.credit p{ margin:0; font-size:.92rem; color:var(--muted); }
.credit strong{ color:var(--accent-dk); }
.credit .go{ color:var(--accent-dk); font-weight:600; }

/* Realisierungs-Hinweis (KORE SYSTEMS) – weiße Kachel, kein Schatten, kein Hover, Schrift bleibt normal */
.realisation{ display:inline-flex; align-items:center; gap:14px; margin-top:.8rem; text-decoration:none;
  background:var(--paper-2); border:1px solid var(--line); border-radius:14px; padding:16px 20px; }
.realisation img{ width:48px; height:48px; border-radius:10px; flex:0 0 48px; }
.realisation__text{ display:flex; flex-direction:column; }
.realisation__name{ font-family:var(--sans); font-weight:600; color:var(--ink); font-size:1.05rem; line-height:1.2; }
.realisation__meta{ font-size:.9rem; color:var(--muted); margin-top:1px; }

.timeline{ list-style:none; margin:1.6rem 0 0; padding:0; }
.timeline li{ position:relative; padding-left:74px; margin-bottom:1.15rem; }
.timeline .yr{
  position:absolute; left:0; top:0; font-family:var(--serif);
  font-weight:700; color:var(--accent-dk); font-size:1.08rem;
}
.timeline p{ margin:0; color:var(--muted); font-size:.98rem; }
.timeline b{ color:var(--ink); font-weight:600; }

/* =========================== Referenzen =========================== */
.grid-reviews{ display:grid; grid-template-columns:repeat(2,1fr); gap:22px; }
.review{
  background:var(--paper-2); border:1px solid var(--line);
  border-radius:var(--radius); padding:28px 28px 24px; box-shadow:var(--shadow);
  display:flex; flex-direction:column;
}
.review .stars{ margin-bottom:.7rem; }
.review blockquote{ margin:0 0 1.1rem; font-size:1.06rem; color:var(--ink-soft); line-height:1.6; }
.review blockquote::before{ content:"\201C"; font-family:var(--serif); color:var(--line-2); font-size:2.4rem; line-height:0; vertical-align:-.35em; margin-right:.08em; }
.review .who{ margin-top:auto; display:flex; align-items:center; gap:12px; }
.who-badge{ flex:0 0 42px; width:42px; height:42px; border-radius:50%; background:#fff; border:1px solid var(--line); display:flex; align-items:center; justify-content:center; overflow:hidden; }
.who-badge svg{ width:22px; height:22px; }
.who-badge img{ width:100%; height:100%; object-fit:contain; padding:6px; }
.who-name{ font-weight:600; color:var(--ink); line-height:1.3; }
.review .src{ display:block; color:var(--muted); font-size:.85rem; font-weight:400; }
.reviews-cta{ text-align:center; margin-top:38px; }
.g-inline{ height:1em; width:auto; vertical-align:-.15em; margin-right:.15em; }

/* =========================== FAQ =========================== */
.faq{ max-width:820px; margin:0 auto; }
.faq details{
  background:var(--paper-2); border:1px solid var(--line);
  border-radius:12px; margin-bottom:14px; overflow:hidden;
}
.faq summary{
  list-style:none; cursor:pointer; padding:20px 24px;
  font-family:var(--serif); font-size:1.14rem; font-weight:600; color:var(--ink);
  display:flex; justify-content:space-between; align-items:center; gap:16px;
}
.faq summary::-webkit-details-marker{ display:none; }
.faq summary::after{
  content:"+"; font-family:var(--sans); font-weight:400; font-size:1.6rem;
  color:var(--accent); transition:transform .2s ease; line-height:1;
}
.faq details[open] summary::after{ transform:rotate(45deg); }
.faq .answer{ padding:0 24px 22px; color:var(--muted); }
.faq .answer p{ margin:0; }

/* =========================== Kontakt =========================== */
.contact{ display:grid; grid-template-columns:1fr 1fr; gap:48px; align-items:start; }
.contact-card{
  background:var(--paper-2); border:1px solid var(--line); border-radius:var(--radius);
  padding:32px; box-shadow:var(--shadow);
}
.info-row{ display:flex; gap:16px; padding:16px 0; border-bottom:1px dashed var(--line-2); }
.info-row:last-child{ border-bottom:0; }
.info-row .ic{
  flex:0 0 42px; width:42px; height:42px; border-radius:10px;
  background:var(--accent-lt); color:var(--accent-dk);
  display:flex; align-items:center; justify-content:center;
}
.info-row .ic svg{ width:20px; height:20px; }
.info-row h4{ margin:0 0 2px; font-family:var(--sans); font-size:.78rem; letter-spacing:.08em; text-transform:uppercase; color:var(--muted); font-weight:700; }
.info-row .val{ font-size:1.08rem; color:var(--ink); }
.info-row .val a{ color:var(--ink); }
.info-row .val a:hover{ color:var(--accent-dk); }
.contact-actions{ display:flex; flex-wrap:wrap; gap:12px; margin-top:22px; }
.social-row{ display:flex; gap:12px; margin-top:24px; }
.social-row a{
  width:44px; height:44px; border-radius:50%; border:1px solid var(--line-2);
  display:flex; align-items:center; justify-content:center; color:var(--ink-soft);
  transition:.15s;
}
.social-row a:hover{ background:var(--accent); color:#fff; border-color:var(--accent); }
.social-row svg{ width:20px; height:20px; }

/* Kontaktformular */
.form label{ display:block; font-weight:600; color:var(--ink); font-size:.92rem; margin:0 0 6px; }
.form .field{ margin-bottom:16px; }
.form input,.form textarea{
  width:100%; font-family:var(--sans); font-size:1rem; color:var(--ink);
  background:var(--paper); border:1px solid var(--line-2); border-radius:10px;
  padding:.72rem .85rem; transition:border-color .15s, box-shadow .15s;
}
.form input:focus,.form textarea:focus{
  outline:0; border-color:var(--accent); box-shadow:0 0 0 3px var(--accent-lt);
}
.form textarea{ min-height:130px; resize:vertical; }
.form .hint{ font-size:.82rem; color:var(--muted); margin-top:12px; }
.form .req{ color:var(--accent); margin-left:2px; }
/* Honeypot (Spamschutz) – für Menschen unsichtbar */
.hp{ position:absolute; left:-9999px; width:1px; height:1px; overflow:hidden; }
/* Einwilligungs-Checkbox */
.consent{ display:flex; align-items:flex-start; gap:10px; margin:4px 0 18px; }
.consent input{ width:18px; height:18px; margin-top:3px; flex:0 0 18px; accent-color:var(--accent); }
.consent label{ font-weight:400; font-size:.9rem; color:var(--muted); margin:0; line-height:1.5; }

/* =========================== Anfahrt-Banner (auf Inhaltsbreite) =========================== */
.anfahrt{ background:var(--paper); }
.anfahrt .wrap{ padding-top:0; padding-bottom:60px; }
.maplink{
  display:flex; flex-wrap:wrap; align-items:center; gap:16px 24px; justify-content:space-between;
  background:var(--accent-lt); border:1px solid #cfe3fb; border-radius:var(--radius);
  padding:24px 30px;
}
.maplink p{ margin:0; color:var(--accent-dkr); font-size:1.05rem; }

/* =========================== Footer =========================== */
.site-footer{ background:var(--accent); color:rgba(255,255,255,.9); font-size:.94rem; }
.site-footer .wrap{ padding-top:54px; padding-bottom:28px; }
.footer-grid{ display:grid; grid-template-columns:1.6fr 1fr 1fr 1.1fr; gap:40px; margin-bottom:36px; }
.site-footer h4{ color:#fff; font-family:var(--sans); font-size:.8rem; letter-spacing:.09em; text-transform:uppercase; margin-bottom:1rem; font-weight:700; }
.site-footer a{ color:#ffffff; }
.site-footer a:hover{ color:#fff; opacity:.8; }
.site-footer ul{ list-style:none; margin:0; padding:0; }
.site-footer li{ margin-bottom:.55rem; }
.footer-logo{ height:30px; margin-bottom:14px; filter:brightness(0) invert(1); }
.footer-social{ display:flex; gap:10px; margin-top:18px; }
.footer-social a{ width:38px; height:38px; border-radius:50%; border:1px solid rgba(255,255,255,.45); display:flex; align-items:center; justify-content:center; color:#fff; transition:background .15s, color .15s, border-color .15s; }
.footer-social a:hover{ background:#fff; color:var(--accent); border-color:#fff; opacity:1; }
.footer-social svg{ width:18px; height:18px; }
.footer-bottom{
  border-top:1px solid rgba(255,255,255,.28); padding-top:20px;
  display:flex; flex-wrap:wrap; gap:8px 20px; justify-content:space-between; align-items:center;
  font-size:.86rem; color:rgba(255,255,255,.82);
}
.footer-bottom a{ color:rgba(255,255,255,.9); }

/* =========================== Cookie-/Datenschutzhinweis =========================== */
.cookie-note{
  position:fixed; left:16px; right:16px; bottom:16px; z-index:100;
  max-width:560px; margin:0 auto;
  background:#fff; border:1px solid var(--line); border-radius:14px;
  box-shadow:0 12px 40px rgba(29,33,38,.18); padding:20px 22px;
}
.cookie-note[hidden]{ display:none; }
.cookie-note h3{ margin:0 0 6px; font-family:var(--serif); font-weight:600; font-size:1.05rem; color:var(--ink); }
.cookie-note p{ margin:0 0 14px; font-size:.92rem; color:var(--muted); }
.cookie-note .cookie-actions{ display:flex; gap:10px; flex-wrap:wrap; }
.cookie-note .btn{ padding:.6rem 1.3rem; }

/* =========================== Nach-oben-Button =========================== */
.to-top{
  position:fixed; right:20px; bottom:20px; z-index:90;
  width:46px; height:46px; border-radius:50%;
  background:var(--accent); color:#fff; border:0; cursor:pointer;
  display:flex; align-items:center; justify-content:center;
  box-shadow:0 6px 20px rgba(29,33,38,.20);
  opacity:0; visibility:hidden; transform:translateY(10px);
  transition:opacity .2s ease, transform .2s ease, background .15s ease;
}
.to-top.show{ opacity:1; visibility:visible; transform:none; }
.to-top:hover{ background:var(--accent-dkr); }
.to-top svg{ width:22px; height:22px; }
@media (max-width:640px){ .to-top{ right:14px; bottom:14px; } }

/* =========================== Rechts-/Ergebnisseiten =========================== */
.legal{ background:var(--paper); }
/* gleicher Container (1120) und gleiches Padding wie die Startseite;
   Text nutzt die volle Breite, nur die Datenboxen bleiben kurz */
.legal-hero{ padding:64px 0 10px; }
.legal-body address{ max-width:460px; }
.legal-hero .kicker{ margin-bottom:.4rem; }
.legal-body{ padding:20px 0 84px; }
.legal-body h2{ font-size:1.55rem; margin-top:2.3rem; }
.legal-body h3{ font-size:1.18rem; margin-top:1.6rem; }
.legal-body p,.legal-body li{ color:var(--ink-soft); }
.legal-body a{ word-break:break-word; }
.legal-body address{ font-style:normal; background:var(--paper-2); border:1px solid var(--line); border-radius:12px; padding:18px 22px; margin:1rem 0; }
.backlink{ display:inline-flex; align-items:center; gap:.4rem; margin-bottom:.5rem; font-weight:600; }

/* Zentrierte Ergebnisseite (Danke / 404) */
.result{ min-height:64vh; display:flex; align-items:center; }
.result .wrap{ max-width:640px; text-align:center; padding-top:60px; padding-bottom:60px; }
.result .mark{ font-family:var(--serif); font-size:clamp(3.5rem,12vw,6rem); color:var(--accent); line-height:1; margin-bottom:.2em; font-weight:700; }
.result h1{ font-size:clamp(1.8rem,4vw,2.6rem); margin-bottom:.4em; }
.result p{ color:var(--muted); font-size:1.08rem; max-width:48ch; margin-left:auto; margin-right:auto; }
.result .btn{ margin-top:1.6rem; }

/* =========================== Scroll-Animationen =========================== */
.reveal{ opacity:0; transform:translateY(26px); transition:opacity .7s cubic-bezier(.22,.61,.36,1), transform .7s cubic-bezier(.22,.61,.36,1); will-change:opacity,transform; }
.reveal.is-visible{ opacity:1; transform:none; }
/* gestaffelte Verzögerung für Elemente in einer Gruppe */
.reveal.d1{ transition-delay:.08s; }
.reveal.d2{ transition-delay:.16s; }
.reveal.d3{ transition-delay:.24s; }
.reveal.d4{ transition-delay:.32s; }
.reveal.d5{ transition-delay:.40s; }
@media (prefers-reduced-motion:reduce){
  .reveal{ opacity:1 !important; transform:none !important; transition:none !important; }
  html{ scroll-behavior:auto; }
}

/* =========================== Responsive =========================== */
@media (max-width:900px){
  .hero .wrap{ grid-template-columns:1fr; gap:40px; }
  /* Hero gestapelt: zuerst Text, dann Bild (Bild behält seine DOM-Position) */
  .about{ grid-template-columns:1fr; gap:34px; }
  .about__media{ position:static; flex-direction:row; order:1; }
  .about__media figure{ flex:1; }
  .grid-services{ grid-template-columns:repeat(2,1fr); }
  .contact{ grid-template-columns:1fr; }
  .footer-grid{ grid-template-columns:1fr 1fr; }
}
@media (max-width:640px){
  /* Adressleiste ganz oben auf dem Handy ausblenden */
  .topbar{ display:none; }

  .section{ padding:58px 0; }
  .nav{
    position:absolute; top:76px; left:0; right:0;
    flex-direction:column; align-items:stretch; gap:0;
    background:var(--paper); border-bottom:1px solid var(--line);
    padding:10px 16px 18px; box-shadow:var(--shadow);
    display:none;
  }
  .nav.open{ display:flex; }
  .nav a{ padding:.8rem .5rem; border-radius:0; border-bottom:1px solid var(--line); }
  .nav .btn{ margin:12px 0 0; }
  .nav-toggle{ display:block; }
  .grid-services{ grid-template-columns:1fr; }
  .grid-reviews{ grid-template-columns:1fr; }
  .about__media{ flex-direction:column; }
  .rating-badge{ left:0; }

  /* Auf dem Handy alles zentrieren */
  .hero__text{ text-align:center; }
  .hero__lead{ margin-left:auto; margin-right:auto; }
  .hero__cta{ justify-content:center; }
  .section-head{ text-align:center; }
  .about__text{ text-align:center; }
  .about__text .credit{ justify-content:center; text-align:left; }
  .about__text .realisation{ justify-content:center; }
  .card-service{ text-align:center; }
  .card-service .ic{ margin-left:auto; margin-right:auto; }
  .review .who{ justify-content:center; }

  /* Footer: Navigation und Kontakt ausblenden, Öffnungszeiten bleibt */
  .footer-grid{ grid-template-columns:1fr; text-align:center; }
  .footer-grid > div:nth-child(2),
  .footer-grid > div:nth-child(3){ display:none; }
  .footer-logo{ margin-left:auto; margin-right:auto; }
  .footer-social{ justify-content:center; }
  .footer-bottom{ justify-content:center; text-align:center; }
}
