/* ==========================
   Machbar – Designsystem (lokal)
   ========================== */

/* ===== Basis, Variablen & Typo ===== */
:root{
  /* Farben (Light) */
  --anthrazit:#1f1f1f;
  --anthrazit-2:#222222;
  --orange:#ff7a00;
  --orange-600:#e66e00;
  --sand:#f5f3f0;

  --bg:#ffffff;
  --bg-elev:#ffffff;
  --text:#171717;
  --muted:#6b7280;
  --line:#eaeaea;
  --line-strong:#dddddd;
  --shadow: 0 10px 30px rgba(0,0,0,.12);

  /* Typo (lokal / Systemstack) */
  --font-sans: Inter, system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  --font-head: Montserrat, Inter, system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;

  /* Headline-Sizing */
  --h1: clamp(28px, 4.3vw, 56px);
  --h2: clamp(24px, 3.2vw, 36px);
  --h3: clamp(18px, 2.2vw, 22px);
  --lead: clamp(16px, 2.1vw, 20px);

  /* Kacheln */
  --kachel-gap: 16px;
  --kachel-minh: 160px;
  --kachel-pad: 18px;

  --radius:14px;

  /* Wasserzeichen */
  --wm-logo: url("assets/img/logo.png");
  --wm-opacity-light:.12;
  --wm-opacity-dark:.10;

  /* Kontakt-Buttons */
  --contact-btn-w: 44px;
  --contact-btn-h: 44px; /* >=44px für Touch */
  --contact-btn-radius: 10px;
  --contact-icon-size: 40px;
}

/* Auto Darkmode (System) */
@media (prefers-color-scheme: dark){
  :root{
    --bg:#0e0e10;
    --bg-elev:#141416;
    --text:#e8e8ea;
    --muted:#a1a1aa;
    --line:#26262a;
    --line-strong:#2f2f35;
    --sand:#161617;
    --shadow: 0 10px 30px rgba(0,0,0,.5);
    --orange-600:#d86400;
  }
}

/* Manuelle Umschaltung per .theme-dark */
.theme-dark{
  --bg:#0e0e10 !important;
  --bg-elev:#141416 !important;
  --text:#e8e8ea !important;
  --muted:#a1a1aa !important;
  --line:#26262a !important;
  --line-strong:#2f2f35 !important;
  --sand:#161617 !important;
  --shadow: 0 10px 30px rgba(0,0,0,.5) !important;
  --orange-600:#d86400 !important;
}

/* ===== Reset & Grundlayout ===== */
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family: var(--font-sans);
  color:var(--text);
  background:var(--bg);
  line-height:1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
.container{max-width:1180px; margin:0 auto; padding:0 20px}

/* Links & Fokus */
a{color:var(--orange); text-decoration:none}
a:hover{color:var(--orange-600); text-decoration:underline}
a:focus, button:focus, .btn:focus, .theme-toggle:focus, .icon-btn:focus{
  outline: 3px solid color-mix(in oklab, var(--orange), white 40%);
  outline-offset: 2px;
}

/* ===== Typografie ===== */
h1,h2,h3{
  font-family: var(--font-head);
  color: var(--anthrazit);
  margin: 0 0 12px;
  line-height: 1.12;
}
h1{ font-size: var(--h1); font-weight: 800; }
h2{ font-size: var(--h2); font-weight: 800; }
h3{ font-size: var(--h3); font-weight: 800; }
.section p.lead{ color: #374151; font-size: var(--lead); }

/* Darkmode Headline-Farbe */
@media (prefers-color-scheme: dark){ h1,h2,h3{ color:#f1f1f3; } }
.theme-dark h1,.theme-dark h2,.theme-dark h3{ color:#f1f1f3; }

/* Hellmodus: Abschnitts-Überschriften kräftiger */
html:not(.theme-dark) .section h2{
  color:#0b0b0d !important;
  text-shadow:0 1px 2px rgba(0,0,0,.06);
  letter-spacing:-0.01em;
}
html:not(.theme-dark) .section .lead{ color:#2b2b2f !important; }

/* ==========================
   Header / Navigation
   ========================== */
header{
  position: sticky;
  top: 0;
  z-index: 1000;
  margin-bottom:0 !important;
  background: rgba(255,255,255,.65);
  border-bottom: 0;
  backdrop-filter: saturate(160%) blur(12px);
  -webkit-backdrop-filter: saturate(160%) blur(12px);
  transition: background .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.theme-dark header{ background: rgba(14,14,16,.55); }
header.is-scrolled{
  background: rgba(255,255,255,.9);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 6px 22px rgba(0,0,0,.08);
}
.theme-dark header.is-scrolled{
  background: rgba(20,20,22,.88);
  border-bottom-color:#26262a;
  box-shadow: 0 8px 24px rgba(0,0,0,.35);
}

/* Kein weißer Spalt unter dem Header */
header + *{ margin-top:0 !important; }
.hero{ margin-top:0 !important; }

.nav{display:flex; align-items:center; justify-content:space-between; padding:12px 0; position:relative}
.brand{display:flex; align-items:center; gap:12px}
.brand img{height:40px; width:auto}
.brand .name{
  font-weight:800; letter-spacing:.3px;
  color: var(--text) !important;
}
.theme-dark .brand .name{ text-shadow:0 1px 1px rgba(0,0,0,.25); }
.menu{display:flex; align-items:center; gap:20px}
.menu a{color:var(--text); font-weight:600}
.menu a:hover{color:var(--orange)}
.burger{display:none; background:none; border:0; font-size:28px; color:var(--text)}

/* ==========================
   Buttons
   ========================== */
.btn{
  background:var(--orange); color:#fff; padding:12px 18px; border-radius:12px; font-weight:800;
  border:0; cursor:pointer; display:inline-block; box-shadow: var(--shadow);
  transition: transform .15s ease, background-color .15s ease;
}
.btn:hover{ background:var(--orange-600); transform:translateY(-1px) }
.btn.secondary{
  background:color-mix(in oklab, var(--orange), black 92% / 0.06);
  color:#fff; border:1px solid color-mix(in oklab, #fff, black 80%);
}
.btn.outline{
  background: transparent;
  color: var(--orange);
  border: 1px solid var(--orange);
  border-radius: 12px;
  font-weight: 800;
  padding: 12px 18px;
}
.btn.outline:hover{
  text-decoration: none;
  transform: translateY(-1px);
  color:#fff; background:var(--orange);
  border-color:var(--orange);
}

/* ==========================
   Direktkontakt – Icon-Buttons
   ========================== */
.contact-icons{
  display:flex;
  gap:10px;
  align-items:center;
  flex-wrap:wrap;
}
.icon-btn{
  width: var(--contact-btn-w);
  height: var(--contact-btn-h);
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border: none;
  border-radius: var(--contact-btn-radius);
  background: var(--bg-elev);
  box-shadow: var(--shadow);
  text-decoration:none;
  transition: transform .15s ease, box-shadow .2s ease, background-color .2s ease;
}
.icon-btn:hover{
  transform: translateY(-1px);
  box-shadow: 0 6px 22px rgba(0,0,0,.12);
}
.icon-btn img,
.icon-btn svg{
  width: var(--contact-icon-size);
  height: var(--contact-icon-size);
  display:block;
}
.icon-btn--ig{ background: var(--bg-elev); }
.icon-btn--wa{ background: var(--bg-elev); }
.icon-btn--tel{ background: var(--orange); }
.icon-btn--tel svg{ fill:#fff; }
.theme-dark .icon-btn{ background:#1b1b1d; box-shadow: 0 0 6px rgba(0,0,0,.35); }
.theme-dark .icon-btn--tel{ background:#ff7a00; }

/* ==========================
   Toggle („Dogge“) – Theme Switch
   ========================== */
.theme-toggle{
  --size: 40px;
  display:inline-flex; align-items:center; justify-content:center;
  width:var(--size); height:var(--size);
  border-radius: 999px;
  border:1px solid var(--line);
  background: var(--bg-elev);
  box-shadow: var(--shadow);
  cursor:pointer;
  transition: transform .15s ease, background-color .15s ease, border-color .15s ease;
  position:relative;
  color: var(--text);
  z-index:1002;
}
.theme-toggle:hover{ transform: translateY(-1px); border-color: var(--line-strong); }
.theme-toggle::before{ content:"☀"; font-size:18px; line-height:1; }
.theme-dark .theme-toggle::before{ content:"☾"; }
.theme-toggle::after{
  content:""; position:absolute; bottom:6px; right:6px; width:8px; height:8px; border-radius:999px;
  background: var(--orange); box-shadow: 0 0 0 2px color-mix(in oklab, var(--orange), white 70%);
}
.theme-dark .theme-toggle::after{
  background: var(--orange-600);
  box-shadow: 0 0 0 2px color-mix(in oklab, var(--orange-600), white 70%);
}

/* ==========================
   Hero
   ========================== */
.hero{
  background:linear-gradient(120deg, var(--anthrazit), #000);
  color:#fff; padding:84px 0 64px;
}
.hero .grid{ display:grid; grid-template-columns: 1.2fr .8fr; gap:40px; align-items:center; }
.badges{display:flex; gap:10px; flex-wrap:wrap; margin:10px 0 24px}
.badge{background:#ffffff10; border:1px solid #ffffff22; color:#fff; padding:6px 10px; border-radius:999px; font-size:14px}
.hero h1{ margin:0 0 12px; }
.hero p{ font-size: var(--lead); color:#e5e7eb}
.hero .cta{display:flex; gap:12px; margin-top:22px; flex-wrap:wrap}

/* Hinweis-Banner im Hero */
.notice{ display:flex; gap:12px; align-items:center; justify-content:space-between; }
.notice--brand{
  background: linear-gradient(90deg, var(--orange), color-mix(in oklab, var(--orange), white 20%));
  color:#fff; border:none; padding:12px 14px; border-radius:10px;
}
.notice__actions{ display:flex; gap:10px; flex-wrap:wrap; }
.notice__close{ background:transparent; border:0; color:#fff; font-size:22px; line-height:1; cursor:pointer; padding:0 4px; }
.hero .notice{ margin-bottom: 20px; }

/* ==========================
   Kacheln
   ========================== */
.kacheln{ margin-top: 24px; }
.kachel-grid{ display:grid; gap: var(--kachel-gap); grid-template-columns: repeat(3, 1fr); }
.kachel{
  background:var(--bg-elev);
  border:1px solid var(--line);
  border-radius:var(--radius);
  padding:var(--kachel-pad);
  box-shadow: var(--shadow);
  min-height: var(--kachel-minh);
  color: var(--text);
}
.kachel h3{ margin:0 0 8px; font-size:18px; font-family: var(--font-head); color: var(--anthrazit); font-weight:800; }
.kachel p{margin:0; color:var(--muted); font-size:15px}

/* ==========================
   Sections, Cards, Grids
   ========================== */
.section{padding:64px 0}
.section.alt{background:var(--sand)}
.section h2{font-size: var(--h2); margin:0 0 16px}
.grid-3{display:grid; grid-template-columns: repeat(3, 1fr); gap:20px}

.card{
  background:var(--bg-elev);
  border:1px solid var(--line);
  border-radius:var(--radius);
  padding:20px;
  box-shadow: var(--shadow);
}
.card h3{margin-top:0}
.card .list{margin:0; padding-left:18px}
.card .price{font-weight:800; font-size:22px; color:var(--anthrazit)}

/* USPs */
.usp{display:grid; grid-template-columns: repeat(4, 1fr); gap:18px}
.usp .item{ background:var(--sand); border:1px solid var(--line); border-radius:var(--radius); padding:16px }
.usp .item strong{display:block; font-size:18px; color:var(--anthrazit)}
.usp .item span{color:var(--muted)}

/* ==========================
   Galerie
   ========================== */
.galerie{ display:grid; grid-template-columns: repeat(3, 1fr); gap:14px; }
.galerie figure{
  margin:0; border-radius:12px; overflow:hidden; border:1px solid var(--line);
  background:color-mix(in oklab, var(--sand), white 40%);
  aspect-ratio: 4 / 3; position: relative;
  display:flex; align-items:center; justify-content:center;
  color:#9ca3af; font-weight:600;
}
.galerie figure picture, .galerie figure img{
  width:100%; height:100%; object-fit:cover; display:block;
  transition: transform .28s ease, filter .28s ease;
}
.galerie figure:hover img{ transform: scale(1.04); filter: brightness(1.05); }
.galerie figure figcaption{
  position:absolute; left:0; right:0; bottom:0; padding: 6px 10px;
  background: linear-gradient(to top, rgba(0,0,0,.6), transparent);
  color:#fff; font-size:14px; font-weight:600; text-shadow:0 1px 2px rgba(0,0,0,.5);
  pointer-events:none;
}

/* ==========================
   Kontakt / Formulare
   ========================== */
.kontakt-grid{display:grid; grid-template-columns: 1fr 1fr; gap:24px}
.form input, .form textarea{
  width:100%; padding:12px 14px; border:1px solid var(--line); border-radius:10px; font-size:16px; background:var(--bg)
}
.form input:focus, .form textarea:focus{
  border-color: var(--orange);
  box-shadow: 0 0 0 4px color-mix(in oklab, var(--orange), white 70%);
  outline: none;
}
.form label{font-weight:700; display:block; margin:12px 0 6px; color:var(--anthrazit)}
.form .row{display:grid; grid-template-columns:1fr 1fr; gap:12px}
.form .submit{margin-top:16px}

/* ==========================
   Footer
   ========================== */
footer{
  background:var(--anthrazit-2);
  color:#c7c7c7;
  padding:26px 0;
  border-top:4px solid var(--orange)
}
footer a{color:#eeeeee}
footer a:hover{color:#ffffff}

/* ==========================
   Mobile Menü
   ========================== */
.menu.active{
  display:flex !important; flex-direction:column;
  position:absolute; top:64px; right:20px;
  background: var(--bg);
  border:1px solid var(--line-strong);
  border-radius:12px; box-shadow: var(--shadow);
  padding:16px; gap:12px; z-index:999;
}
.burger.open{ transform: rotate(90deg); transition: transform .3s ease; }

/* ==========================
   Darkmode – stärkere Lesbarkeit & Soft-Glow
   ========================== */
html.theme-dark .kachel,
html.theme-dark .card,
html.theme-dark .usp .item,
html.theme-dark .galerie figure{
  background:#1b1b1d !important;
  border:1px solid rgba(255,255,255,0.08) !important;
  color:#e8e8ea !important;
  box-shadow:
    0 0 8px rgba(255,122,0,0.12),
    0 0 2px rgba(255,255,255,0.05),
    inset 0 0 1px rgba(255,255,255,0.04);
  transition: box-shadow .25s ease, transform .25s ease;
}
html.theme-dark .kachel:hover,
html.theme-dark .card:hover,
html.theme-dark .usp .item:hover,
html.theme-dark .galerie figure:hover{
  transform: translateY(-2px);
  box-shadow:
    0 0 12px rgba(255,122,0,0.25),
    0 0 4px rgba(255,255,255,0.06),
    inset 0 0 1px rgba(255,255,255,0.05);
}
html.theme-dark .kachel h3,
html.theme-dark .card h3,
html.theme-dark .usp .item strong,
html.theme-dark .galerie figcaption{
  color:#fff !important;
  text-shadow:0 0 6px rgba(255,122,0,0.15), 0 0 1px rgba(255,255,255,0.2);
}
html.theme-dark .kachel p,
html.theme-dark .card p,
html.theme-dark .usp .item span{ color:#d4d4d6 !important; }

html.theme-dark #kontakt .card{
  background:#1b1b1d !important;
  border:1px solid rgba(255,255,255,0.08) !important;
  color:#e8e8ea !important;
  box-shadow:0 0 8px rgba(255,122,0,0.12), 0 0 2px rgba(255,255,255,0.05), inset 0 0 1px rgba(255,255,255,0.04);
}
html.theme-dark .form input,
html.theme-dark .form textarea{
  background:#141416 !important;
  border:1px solid rgba(255,255,255,0.1) !important;
  color:#f0f0f2 !important;
  box-shadow: inset 0 0 4px rgba(255,122,0,0.08);
}
html.theme-dark .form input:focus,
html.theme-dark .form textarea:focus{
  border-color:#ff7a00 !important;
  box-shadow: 0 0 6px rgba(255,122,0,0.35), inset 0 0 4px rgba(255,122,0,0.15);
}
html.theme-dark .form label{ color:#fff !important; text-shadow:0 0 4px rgba(255,122,0,0.15); }
html.theme-dark .form .btn.submit{
  background:linear-gradient(90deg,#ff7a00,#e66e00);
  color:#fff; box-shadow:0 0 10px rgba(255,122,0,0.3); border:none;
}

/* ==========================
   Hellmodus – weiße Kacheln & höherer Kontrast
   ========================== */
html:not(.theme-dark) .kachel,
html:not(.theme-dark) .card,
html:not(.theme-dark) .usp .item,
html:not(.theme-dark) .galerie figure,
html:not(.theme-dark) #kontakt .card{
  background:#fff !important;
  border:1px solid #e5e5e5 !important;
  color:#171717 !important;
  box-shadow:0 2px 6px rgba(0,0,0,0.05), 0 0 0 1px rgba(0,0,0,0.03);
  transition: box-shadow .25s ease, transform .25s ease;
}
html:not(.theme-dark) .kachel:hover,
html:not(.theme-dark) .card:hover,
html:not(.theme-dark) .usp .item:hover,
html:not(.theme-dark) .galerie figure:hover,
html:not(.theme-dark) #kontakt .card:hover{
  transform: translateY(-2px);
  box-shadow:0 6px 14px rgba(0,0,0,0.08), 0 0 0 1px rgba(0,0,0,0.04);
}
html:not(.theme-dark) .kachel h3,
html:not(.theme-dark) .card h3,
html:not(.theme-dark) .usp .item strong,
html:not(.theme-dark) .galerie figcaption,
html:not(.theme-dark) #kontakt .card h3{
  color:#101010 !important; font-weight:800; text-shadow:0 1px 2px rgba(0,0,0,0.05);
}
html:not(.theme-dark) .kachel p,
html:not(.theme-dark) .card p,
html:not(.theme-dark) .usp .item span,
html:not(.theme-dark) #kontakt .card p{ color:#2d2d2d !important; }
html:not(.theme-dark) .form input,
html:not(.theme-dark) .form textarea{
  background:#fff !important; border:1px solid #dcdcdc !important; color:#1a1a1a !important;
  box-shadow: inset 0 0 3px rgba(0,0,0,0.05);
}
html:not(.theme-dark) .form input:focus,
html:not(.theme-dark) .form textarea:focus{
  border-color:#ff7a00 !important;
  box-shadow:0 0 5px rgba(255,122,0,0.25), inset 0 0 2px rgba(255,122,0,0.1);
}

/* ==========================
   Smooth Theme Transitions (optional)
   ========================== */
@media (prefers-reduced-motion: no-preference){
  html.theme-animate body,
  html.theme-animate header,
  html.theme-animate footer,
  html.theme-animate .kachel,
  html.theme-animate .card,
  html.theme-animate .usp .item,
  html.theme-animate .galerie figure,
  html.theme-animate .menu,
  html.theme-animate .notice,
  html.theme-animate .notice--brand,
  html.theme-animate .form input,
  html.theme-animate .form textarea,
  html.theme-animate .btn,
  html.theme-animate .theme-toggle,
  html.theme-animate .icon-btn {
    transition: background-color .45s ease, color .45s ease, border-color .45s ease, box-shadow .45s ease, filter .45s ease, transform .25s ease;
  }
  html.theme-animate svg, html.theme-animate .icon{
    transition: color .45s ease, fill .45s ease, stroke .45s ease, filter .45s ease;
  }
}

/* ==========================
   Responsive
   ========================== */
@media (max-width: 980px){
  .hero .grid{grid-template-columns: 1fr; text-align:center}
  .menu{display:none}
  .burger{display:block}

  .kachel-grid{ grid-template-columns: repeat(2, 1fr); }
  .grid-3{grid-template-columns: 1fr}
  .usp{grid-template-columns: repeat(2, 1fr)}
  .galerie{grid-template-columns: repeat(2, 1fr)}
  .kontakt-grid{grid-template-columns: 1fr}
  .form .row{grid-template-columns:1fr}

  /* Toggle mobil rechts ausrichten */
  .theme-toggle{ margin-left:auto; }
}
@media (max-width: 520px){
  .kachel-grid{ grid-template-columns: 1fr; }
  .usp{grid-template-columns: 1fr}
  .galerie{grid-template-columns: 1 fr}
}

/* ==========================
   XXL-Logo als Hintergrund-Wasserzeichen
   ========================== */
body{ position:relative; }
body::before{
  content:"";
  position: fixed;
  top: 55vh;
  left: 50vw;
  transform: translate(-50%, -50%) rotate(-8deg);
  width: clamp(600px, 85vw, 1400px);
  height: clamp(600px, 85vw, 1400px);
  background: var(--wm-logo) no-repeat center / contain;
  opacity: var(--wm-opacity-light);
  pointer-events: none;
  z-index: 0;
  filter: saturate(.2) brightness(1.02);
}
.theme-dark body::before{
  opacity: var(--wm-opacity-dark);
  filter: saturate(0) brightness(2) contrast(.9);
}
/* Inhaltsebene über dem Wasserzeichen */
header, main, section, footer, .container, .hero{ position:relative; z-index:1; }
/* Sehr kleine Screens: Logo etwas kleiner/tiefer */
@media (max-width:520px){
  body::before{ top:60vh; width:110vw; height:110vw; }
}
/* Drucken: Logo aus */
@media print{ body::before{ display:none !important; } }

/* ==========================
   Slogan (Hero H1) – zuverlässig Orange (#ff7a00)
   - Greift global, inkl. iOS/Safari (webkit-text-fill-color)
   - Darkmode: dezenter Glow für bessere Lesbarkeit
   ========================== */
section.hero h1{
  color:#ff7a00 !important;
  -webkit-text-fill-color:#ff7a00 !important; /* iOS/WebKit */
  text-shadow:0 1px 3px rgba(0,0,0,.25) !important;
  mix-blend-mode:normal !important;
}
section.hero h1 em{
  color:inherit !important;
  -webkit-text-fill-color:inherit !important;
  font-style:normal;  /* optional */
  font-weight:inherit;/* optional */
}
/* iOS/Safari-Feature-Query: doppelt absichern */
@supports (-webkit-touch-callout:none){
  section.hero h1{
    -webkit-text-fill-color:#ff7a00 !important;
  }
}
/* Kleiner Viewport (Android/iOS): ebenfalls absichern */
@media (max-width:980px){
  section.hero h1{ -webkit-text-fill-color:#ff7a00 !important; }
}
@media (prefers-color-scheme: dark){
  section.hero h1{ text-shadow:0 0 6px rgba(255,122,0,.35) !important; }
}
.theme-dark section.hero h1{
  text-shadow:0 0 6px rgba(255,122,0,.35) !important;
}
/* 🔧 Wasserzeichen – Größe auf kleineren Geräten anpassen */
@media (max-width: 980px) {
  body::after {
    width: clamp(400px, 90vw, 800px);
    height: clamp(400px, 90vw, 800px);
    top: 60%; /* etwas tiefer, wirkt harmonischer */
  }
}

@media (max-width: 520px) {
  body::after {
    width: clamp(280px, 90vw, 600px);
    height: clamp(280px, 90vw, 600px);
    top: 65%; /* noch etwas tiefer für Smartphones */
    opacity: .12; /* leicht erhöhen, damit sichtbar bleibt */
  }
}
/* ===== Hinweisblock in der Hero-Sektion ===== */
.hero .notice {
  margin-top: 16px;
}

.notice {
  border-radius: 18px;
  padding: 14px 18px;
  font-size: 0.95rem;
  line-height: 1.5;
}

.notice--brand {
  /* leichtes, modernes Orange-Gradient */
  background: linear-gradient(135deg, #ff7a00, #ff9940);
  color: #ffffff;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
}

/* Inhalt schön „atmen“ lassen */
.notice__content {
  margin: 0;
}

/* E-Mail-Link kontrastreich und klar klickbar */
.notice--brand a {
  color: #ffffff;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 0.12em;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.28);
}

/* Hover-Effekt Desktop */
@media (hover: hover) {
  .notice--brand a:hover {
    text-decoration-thickness: 0.14em;
  }
}

/* ===== Responsives Layout ===== */

/* Desktop: Hinweisblock nicht zu breit, bleibt links unter dem Text */
@media (min-width: 900px) {
  .hero .notice {
    max-width: 520px;
  }
}

/* Mobile: Buttons & Hinweisblock schön untereinander */
@media (max-width: 720px) {
  .hero .cta {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
  }

  .hero .cta .btn,
  .hero .cta .btn.secondary {
    width: 100%;
    text-align: center;
  }

  .hero .notice {
    margin-top: 12px;
  }
}
