@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@400;600;700&display=swap');

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Nunito", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  font-size: 15px;        /* wieder etwas kleiner */
  line-height: 1.5;       /* etwas kompakter */
  background: radial-gradient(circle at top, #f5eee8 0, #ece2d7 35%, #dfd0c0 100%);
  color: #2b1b17;
}


/* Container & grundlegendes Layout */

.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 16px;
}

main {
  min-height: 60vh;
}


.hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #7b1623, #b83734);
  color: #fff;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top left, rgba(255,255,255,0.08), transparent 60%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 200px minmax(500px, 2fr) minmax(380px, 1fr);
  gap: 48px;
  align-items: start;
  padding-top: 40px;
  padding-bottom: 40px;
  max-width: 1400px;
  margin: 0 auto;
}

/* linke seite*/
.hero-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}

.hero-brand-logo {
  width: 150px;
  height: 200px;
  border-radius: 14px;
  padding: 8px;
}

.hero-brand-text {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.hero-name {
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin: 0;
}

.hero-tag {
  letter-spacing: 0.02em;
  font-size: 0.8rem;
  opacity: 0.9;
  margin: 0;
  line-height: 1.4;
}

/* Mitte*/
.hero-left {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.hero-text {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hero h1 {
  font-size: 2.4rem;
  line-height: 1.25;
  margin: 0;
}

.hero-claim-sub {
  margin: 0;
  font-size: 1.1rem;
  opacity: 0.95;
  line-height: 1.5;
}

.hero-sub {
  margin: 0;
  font-size: 1rem;
  line-height: 1.6;
}

.hero-sub a {
  color: #fff;
  text-decoration: underline;
  opacity: 0.9;
}

.hero-sub a:hover {
  opacity: 1;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 8px;
}

.hero-badges {
  display: flex;
  flex-direction: row;
  gap: 8px;
  font-size: 0.9rem;
  opacity: 0.95;
  margin-top: 8px;
}

.hero-badges span {
  padding: 8px 14px;
  border-radius: 999px;              /* pill-rund wie Buttons */
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.28);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
}


/* Rechts*/
.hero-panel {
  display: flex;
  align-items: flex-start;
  padding-top: 0;
}

.hero-panel-inner {
  background: rgba(54, 23, 22, 0.92);
  border-radius: 14px;
  padding: 26px 30px 22px;
  box-shadow: 0 10px 24px rgba(0,0,0,0.5);
  width: 100%;
  font-size: 0.9rem;
}

.hero-panel-inner h2 {
  margin: 0 0 8px;
  font-size: 1.1rem;
}

.hero-panel-inner p {
  margin: 0 0 14px;
  font-size: 0.88rem;
  line-height: 1.5;
}

.hero-contact-buttons {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 10px;
}

.hero-mini-hint {
  font-size: 0.75rem;
  opacity: 0.8;
  margin: 0;
}

.sub-hero {
  background: linear-gradient(135deg, #7b1623, #b83734);
  color: #f7e7de;
  padding: 48px 0 32px;
  box-shadow: 0 4px 18px rgba(0,0,0,0.5);
}

.sub-hero h1 {
  margin: 0 0 6px;
  font-size: 2rem;
}

.sub-hero p {
  margin: 0;
  font-size: 0.95rem;
  opacity: 0.9;
}

@media (max-width: 1200px) {
  .hero-inner {
    grid-template-columns: 180px minmax(400px, 2fr) minmax(340px, 1fr);
    gap: 36px;
  }
  
  .hero h1 {
    font-size: 2.1rem;
  }
}

@media (max-width: 1024px) {
  .hero-inner {
    grid-template-columns: 140px minmax(0, 1fr) 320px;
    gap: 24px;
  }
  
  .hero-brand-logo {
    width: 100px;
    height: 100px;
  }
  
  .hero h1 {
    font-size: 1.9rem;
  }
}

@media (max-width: 768px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 32px;
    padding-top: 32px;
    padding-bottom: 32px;
  }
  
  .hero-brand {
    flex-direction: row;
    align-items: center;
    gap: 16px;
  }
  
  .hero-brand-logo {
    width: 80px;
    height: 80px;
  }
  
  .hero h1 {
    font-size: 1.7rem;
  }
  
  .hero-actions {
    flex-direction: column;
  }
  
  .hero-actions .button {
    width: 100%;
    text-align: center;
  }
  
  .hero-panel-inner {
    max-width: 100%;
  }
}

/* Navigation */

.main-nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: #1a0f0e;
  background-image: linear-gradient(90deg, rgba(255,255,255,0.12) 0, transparent 16px);
  box-shadow: 0 4px 16px rgba(0,0,0,0.7);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 16px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 40px;
  color: #f7e7de;
}

.logo-img {
  height: 42px;
  width: auto;
  margin-right: 12px;
  display: block;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.logo-title {
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #f7e7de;
}

.logo-sub {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  color: #f7e7de;
  opacity: 0.85;
  text-transform: uppercase;
}

.bold {
  font-weight: 800;
}

/* Nav-Links */

.nav-links {
  display: flex;
  flex-wrap: nowrap;      /* KEIN Umbruch mehr */
  gap: 6px;
  align-items: center;
  white-space: nowrap;    /* alles bleibt in einer Zeile */
}


.nav-links a {
  color: #f7e7de;
  text-decoration: none;
  font-weight: 500;       /* wieder etwas leichter */
  font-size: 0.9rem;      /* wieder kleiner */
  padding: 6px 12px;      /* wieder kompakter */
  border-radius: 999px;
  transition: background 0.15s ease, transform 0.1s ease, box-shadow 0.1s ease;
}

.nav-links a:hover {
  background: #b83734;
  box-shadow: 0 3px 10px rgba(0,0,0,0.6);
  transform: translateY(-1px);
}

.nav-links a.active {
  background: #b83734;
  box-shadow: 0 3px 10px rgba(0,0,0,0.6);
}

/* Mini-Kontaktleiste rechts oben */

.nav-contacts {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: 6px;
  flex: 0 0 auto;         /* verhindert Zusammendrücken */
}


.nav-contacts a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: rgba(247, 231, 222, 0.12);
  color: #f7e7de;
  font-size: 0.8rem;
  text-decoration: none;
  border: 1px solid rgba(247,231,222,0.3);
  transition: background 0.15s ease, transform 0.1s ease, box-shadow 0.1s ease;
}

.nav-contacts a:hover {
  background: rgba(247,231,222,0.3);
  box-shadow: 0 2px 8px rgba(0,0,0,0.5);
  transform: translateY(-1px);
}

.nav-item.has-submenu {
  position: relative;
  display: inline-block;
}



.nav-item .submenu {
  position: absolute;
  top: 100%;
  left: 0;
  background: #111;
  padding: 0.5rem 0;
  min-width: 220px;
  box-shadow: 0 8px 16px rgba(0,0,0,0.2);
  display: none;
  z-index: 1000;
}

.nav-item .submenu a {
  display: block;
  padding: 0.4rem 1rem;
  color: #fff;
  font-size: 0.9rem;
  white-space: nowrap;
}

.nav-item .submenu a:hover {
  background: #c8102e; /* dein Rotton */
}

.nav-item.has-submenu:hover .submenu {
  display: block;
}

/* Optional: auf Handy einfach untereinander anzeigen oder Dropdown ausblenden */
@media (max-width: 768px) {
  .nav-item.has-submenu {
    display: block;
  }
  .nav-item .submenu {
    position: static;
    box-shadow: none;
  }
}

/* Mobile Nav Toggle */

.nav-toggle {
  position: fixed;
  top: 12px;
  right: 12px;
  z-index: 60;
  width: 40px;
  height: 32px;
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: rgba(26,15,14,0.9);
  border-radius: 6px;
  border: none;
  padding: 0 8px;
}

.nav-toggle span {
  display: block;
  height: 3px;
  border-radius: 99px;
  background: #f7e7de;
}

/* Sections generell */

.section {
  padding: 40px 0;
}

/* Offset für Ankerziele unter der sticky Navigation,
   damit die Inhalte nicht unter der Navigation verschwinden */
.section[id] {
  scroll-margin-top: 96px;
}

.section-header h2 {
  margin: 0 0 8px;
  font-size: 1.9rem;      /* wieder kleiner */
  color: #5c2322;
}

.section-header {
  margin-bottom: 24px;
}

#inhaber .section-header {
  text-align: center;
}


.section-header p {
  margin: 0 0 18px;
  font-size: 0.98rem;
  color: #745446;
}

/* Varianten Hintergrund */

.section-light {
  background: linear-gradient(135deg, #faf5ef, #f2e7db);
}

.section-wood {
  background: linear-gradient(135deg, #faf3ec, #f1e2d3);
}

.section-steps {
  background: linear-gradient(135deg, #fbf6ef, #f3e8dc);
}

.section-contact {
  background: linear-gradient(135deg, #f3f5f0, #e4ebdf);
}

/* Grid / Layout-Varianten */

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.layout-two {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(0, 1.2fr);
  gap: 24px;
  align-items: flex-start;
}

/* Cards */

.card {
  background: radial-gradient(circle at top left, #f7eee5 0, #f0e0d0 45%, #e5d2c0 100%);
  border-radius: 16px;
  padding: 18px 18px 16px;
  box-shadow: 0 10px 24px rgba(0,0,0,0.18);
  border: 1px solid rgba(195, 167, 139, 0.8);
  position: relative;
  overflow: hidden;
}

.card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(135deg, rgba(255,255,255,0.16), transparent 55%),
    radial-gradient(circle at bottom right, rgba(0,0,0,0.05), transparent 55%);
  opacity: 0.9;
}

.card > * {
  position: relative;
}

.card h3 {
  margin: 0 0 8px;
  color: #5c2322;
}

.card p {
  margin: 0 0 10px;
  font-size: 0.95rem;
}

.card-list {
  list-style: none;
  padding: 0;
  margin: 8px 0 0;
  font-size: 0.9rem;
}

.card-list li {
  margin: 0 0 6px;
  padding-left: 18px;
  position: relative;
  color: #4a3024;
}

.card-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  color: #c8965e;
}

/* Info-Box & Möblierungs-Beispiele */

.info-box {
  margin-top: 12px;
  padding: 12px 14px;
  border-radius: 14px;
  background: #f8eee4;
  border: 1px solid #e0c4a8;
  box-shadow: 0 8px 22px rgba(0,0,0,0.12);
}

.info-box h3 {
  margin: 0 0 6px;
  font-size: 0.95rem;
  color: #5c2d23;
}

.furnishing-examples {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin-top: 6px;
}

.furnishing-card {
  margin: 0;
}

.furnishing-placeholder {
  border-radius: 12px;
  padding: 14px 8px;
  background: linear-gradient(135deg, #f1cfaa, #fdf3e6);
  font-size: 0.8rem;
  text-align: center;
  color: #4a3024;
}

/* Formulare */

.calc-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.calc-row {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.calc-row label {
  font-size: 0.95rem;
  color: #4a3024;
}

.label-title {
  font-weight: 600;
  color: #4a3024;
}

.calc-row input[type="number"],
.calc-row input[type="text"],
.calc-row input[type="date"],
.calc-row input[type="time"],
.calc-row input[type="email"],
.calc-row select {
  margin-top: 4px;
  padding: 9px 11px;
  border-radius: 10px;
  border: 1px solid #d0b9aa;
  font-size: 0.96rem;
  max-width: 260px;
  background: #ffffff;
  color: #3a2417;
  box-shadow: 0 2px 6px rgba(0,0,0,0.06);
  font-family: "Nunito", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
}

.calc-row textarea {
  margin-top: 4px;
  padding: 11px 12px;
  border-radius: 10px;
  border: 1px solid #d0b9aa;
  font-size: 0.95rem;
  background: #ffffff;
  color: #3a2417;
  box-shadow: 0 2px 6px rgba(0,0,0,0.06);
  width: 100%;
  max-width: 100%;
  resize: vertical;
  font-family: "Nunito", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
}

.calc-row.full-width label {
  width: 100%;
  max-width: 100%;
}

.calc-row.full-width textarea {
  width: 100%;
  max-width: 100%;
}

.calc-row input:focus,
.calc-row select:focus,
.calc-row textarea:focus {
  outline: none;
  border-color: #c8965e;
  box-shadow: 0 0 0 2px rgba(200,150,94,0.35);
}

/* Optionen (Radio/Checkbox) */

.calc-options {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 10px;
  font-size: 0.9rem;
}

.calc-options label {
  background: #faf3eb;
  border-radius: 999px;
  padding: 5px 10px;
  border: 1px solid #e0c4a8;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #4a3024;
  transition: background 0.15s ease, transform 0.1s ease, box-shadow 0.1s ease, border-color 0.15s ease;
}

.calc-options label:hover {
  background: #f1cfaa;
  border-color: #c8965e;
  box-shadow: 0 4px 10px rgba(0,0,0,0.12);
  transform: translateY(-1px);
}

.calc-options input {
  accent-color: #c8965e;
}

.inline-checkbox {
  margin-top: 4px;
}

/* Hinweise */

.hint {
  font-size: 0.8rem;
  color: #836354;
}

/* Buttons */

.button {
  display: inline-block;
  padding: 9px 18px;      /* wieder kompakter */
  border-radius: 999px;
  border: none;
  background: linear-gradient(135deg, #b83734, #dd5b44);
  color: #fff;
  font-weight: 700;       /* wieder etwas leichter */
  cursor: pointer;
  text-decoration: none;
  font-size: 0.95rem;     /* wieder kleiner */
  letter-spacing: 0.02em;
  box-shadow: 0 6px 16px rgba(0,0,0,0.25);
  transition: background 0.2s ease, transform 0.1s ease, box-shadow 0.1s ease;
}


.button:hover {
  background: linear-gradient(135deg, #dd5b44, #f39a6c);
  box-shadow: 0 8px 18px rgba(0,0,0,0.35);
  transform: translateY(-1px);
}

.button.secondary {
  background: linear-gradient(135deg, #2b1816, #43302b);
}

.button.secondary:hover {
  background: linear-gradient(135deg, #43302b, #5a3d35);
}

.button.whatsapp {
  background: linear-gradient(135deg, #2f8a58, #4db373);
}

.button.whatsapp:hover {
  background: linear-gradient(135deg, #4db373, #6dcc8c);
}

.button.button-white {
  background: #f8f4ef;
  color: #4a3024;
  border: 1px solid rgba(0,0,0,0.1);
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

.button.button-white:hover {
  background: #ffffff;
  box-shadow: 0 6px 14px rgba(0,0,0,0.22);
}

.button.hero-link {
  background: transparent;
  border: 1px solid rgba(248, 230, 220, 0.6);
  color: #f8e6dc;
  box-shadow: none;
}

.button.hero-link:hover {
  background: rgba(248, 230, 220, 0.15);
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.button.full-width {
  width: 100%;
  text-align: center;
}

/* Ergebnisbox Kostenrechner */

.calc-result {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px dashed #d2b7a4;
}

.calc-result.hidden {
  display: none;
}

.calc-price {
  font-size: 1.5rem;      /* etwas kleiner */
  font-weight: 700;
  color: #5c2322;
  margin: 6px 0 4px;
}

.calc-hint {
  font-size: 0.9rem;
  color: #745446;
  margin-bottom: 10px;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

/* Steps (Ablauf) – Timeline-Optik */

.steps {
  list-style: none;
  padding: 0;
  margin: 18px 0 0;
  counter-reset: step-counter;
}

.steps li {
  position: relative;
  margin-bottom: 18px;
  padding-left: 42px;
}

.steps li::before {
  counter-increment: step-counter;
  content: counter(step-counter);
  position: absolute;
  left: 0;
  top: 2px;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #b83734;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 700;
  box-shadow: 0 3px 10px rgba(0,0,0,0.25);
}

.steps li::after {
  content: "";
  position: absolute;
  left: 12px;
  top: 30px;
  bottom: -10px;
  width: 2px;
  background: linear-gradient(180deg, #d2b7a4, rgba(210,183,164,0));
}

.steps li:last-child::after {
  display: none;
}

.steps h3 {
  margin: 0 0 4px;
  font-size: 1.05rem;
  color: #5c2322;
}

.steps p {
  margin: 0;
  font-size: 0.92rem;
  color: #4a3024;
}

/* Bilderbereich mit Vorher/Nachher */

.image-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 12px;
}

.image-card {
  margin: 0;
}

.before-after {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 26px rgba(0,0,0,0.25);
  border: 1px solid rgba(195, 167, 139, 0.9);
}

.before img,
.after img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.before,
.after {
  position: relative;
  overflow: hidden;
}

.ba-label {
  position: absolute;
  top: 8px;
  padding: 3px 8px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-radius: 999px;
  background: rgba(32, 24, 19, 0.82);
  color: #f7e7de;
}

.ba-label-left {
  left: 8px;
}

.ba-label-right {
  right: 8px;
}

.image-card figcaption {
  margin-top: 6px;
  font-size: 0.85rem;
  color: #5a4334;
  text-align: center;
}

/* =========================
   Mobile Kontaktleiste
   ========================= */

.mobile-contact-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  gap: 6px;
  padding: 8px 12px;
  background: rgba(26, 15, 14, 0.96); /* dunkle Navigationsfarbe */
  box-shadow: 0 -4px 14px rgba(0,0,0,0.5);
  z-index: 9999;
}

/* Buttons in der Leiste – identische Optik wie deine normalen Buttons */
.mobile-contact-link {
  flex: 1;
  text-align: center;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 800;
  padding: 11px 8px;
  border-radius: 999px;
  background: linear-gradient(135deg, #b83734, #dd5b44); /* exakt dein CTA-Button-Rot */
  color: #fff;
  letter-spacing: 0.02em;
  box-shadow: 0 6px 16px rgba(0,0,0,0.25);
  transition: background 0.2s ease, transform 0.1s ease, box-shadow 0.1s ease;
}

.mobile-contact-link:hover,
.mobile-contact-link:focus {
  background: linear-gradient(135deg, #dd5b44, #f39a6c);
  box-shadow: 0 8px 18px rgba(0,0,0,0.35);
  transform: translateY(-1px);
}

/* Nur mobil anzeigen */
@media (min-width: 768px) {
  .mobile-contact-bar {
    display: none;
  }
}

/* Platz nach unten schaffen, damit nichts verdeckt wird */
@media (max-width: 767px) {
  body {
    padding-bottom: 70px; /* etwas höher als vorher wegen 3 Buttons */
  }
}


/* Kontaktbereich */

.section-contact .layout-two {
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1.1fr);
  align-items: stretch;
}

.section-contact .card {
  height: 100%;
}

.section-contact a {
  color: inherit;
}

/* FAQ & Coverage */

.coverage-check {
  margin-top: 18px;
  padding: 14px 14px 12px;
  border-radius: 16px;
  background: radial-gradient(circle at top left, #f7eee5 0, #efe1d4 55%, #e3d4c4 100%);
  border: 1px solid rgba(195, 167, 139, 0.9);
  box-shadow: 0 8px 20px rgba(0,0,0,0.18);
}

.coverage-check h3 {
  margin: 0 0 6px;
  font-size: 1.1rem;
  color: #5c2322;
}

.coverage-check p {
  margin: 0 0 8px;
  font-size: 0.9rem;
}

.coverage-check form {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 4px;
}

.coverage-check input[type="text"] {
  flex: 1 1 220px;
  max-width: 320px;
}

.coverage-result {
  font-size: 0.9rem;
  font-weight: 600;
}

.coverage-result.ok {
  color: #2f8a58;
}

.coverage-result.no {
  color: #b83734;
}

/* FAQ-Columns */

.faq-columns {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 18px;
}

.faq-column {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.faq-q {
  width: 100%;
  text-align: left;
  padding: 9px 12px;
  border-radius: 12px;
  border: 1px solid #e0c4a8;
  background: #fdf5ec;
  font-weight: 600;
  font-size: 0.95rem;
  color: #5c2322;
  cursor: pointer;
  position: relative;
  box-shadow: 0 3px 10px rgba(0,0,0,0.08);
  transition: background 0.15s ease, box-shadow 0.15s ease, transform 0.1s ease, border-color 0.15s ease;
}

.faq-q::after {
  content: "+";
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  font-weight: 800;
  color: #c8965e;
}

.faq-q.open {
  background: #f3e0ce;
  border-color: #c8965e;
  box-shadow: 0 6px 16px rgba(0,0,0,0.14);
  transform: translateY(-1px);
}

.faq-q.open::after {
  content: "–";
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  padding: 0 12px;
  border-radius: 12px;
  border: 1px dashed #e0c4a8;
  background: #ffffff;
  transition: max-height 0.2s ease, opacity 0.2s ease, margin-top 0.2s ease, padding-top 0.2s ease, padding-bottom 0.2s ease;
  opacity: 0;
}

.faq-a.open {
  margin-top: 4px;
  padding-top: 6px;
  padding-bottom: 8px;
  opacity: 1;
}

.faq-a p {
  margin: 4px 0 4px;
  font-size: 0.9rem;
  color: #4a3024;
}

/* Mini-FAQ im Kostenrechner */

.mini-faq {
  margin-top: 10px;
}

/* Footer */

footer {
  padding: 16px 0 20px;
background: linear-gradient(135deg, #7b1623, #b83734);
  color: #f4f1e8;
  text-align: center;
  font-size: 0.9rem;
  box-shadow: 0 -6px 18px rgba(0,0,0,0.5);
  margin-top: 24px;
}

footer p {
  margin: 4px 0;
}

/* Reveal / Scroll-Animation */

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */

@media (max-width: 980px) {
  .hero-inner {
    grid-template-columns: minmax(0, 1.4fr) minmax(0, 1.1fr);
    gap: 22px;
  }

  .layout-two {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  }

  .grid-3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .image-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .faq-columns {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .nav-contacts {
    display: none;
  }
}

@media (max-width: 720px) {
  .contact-actions .button,
  .section-contact .button,
  .hero-actions .button {
    width: 100%;
    text-align: center;
  }

  .hero {
    padding: 70px 0 40px;
  }

  .hero-inner {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-panel {
    justify-content: flex-start;
  }

  .nav-toggle {
    display: flex;
  }

  .main-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    transform: translateY(-100%);
    transition: transform 0.25s ease;
  }

  .main-nav.open {
    transform: translateY(0);
  }

  .nav-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding-top: 44px;
  }

  .nav-links {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
  }

  .nav-links a {
    width: 100%;
  }

  .section {
    padding: 30px 0;
  }

  .grid-3,
  .layout-two,
  .image-grid,
  .furnishing-examples {
    grid-template-columns: minmax(0, 1fr);
  }

  .faq-columns {
    grid-template-columns: minmax(0, 1fr);
  }

  .coverage-check form {
    flex-direction: column;
    align-items: stretch;
  }

  .coverage-check input[type="text"] {
    max-width: 100%;
  }
}

/* Global: keine blauen/unterstrichenen Standard-Links */
a,
a:visited {
  color: inherit;
  text-decoration: none;
}

/* Optional: dezenter Hover statt Underline */
a:hover {
  opacity: 0.9;
}

/* Tastatur-Fokus sichtbar lassen (wichtig für Usability) */
a:focus-visible {
  outline: 2px solid rgba(184, 55, 52, 0.55);
  outline-offset: 2px;
  border-radius: 6px;
}

/* Sichtbare, hochwertige Hyperlinks (kein Blau, kein Standard-Underline) */
a {
  position: relative;
  font-weight: 600;
}

/* dezente Linie statt Unterstrich */
a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 1px;
  background: rgba(184, 55, 52, 0.6); /* dein Rot */
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
}

/* Hover: Linie fährt rein */
a:hover::after {
  transform: scaleX(1);
}

/* Farbe beim Hover minimal verstärken */
a:hover {
  color: #7b1623;
}

/* ===== CODE 3: Links auf dunklem Hintergrund ===== */

.hero a,
.main-nav a {
  color: #fff;
}

.hero a::after,
.main-nav a::after {
  background: rgba(255,255,255,0.7);
}

/* Buttons sollen KEINE Link-Linie haben */
.button::after {
  display: none !important;
}

.owner-img {
  width: 260px;
  height: auto;           /* kein Abschneiden */
  max-height: 360px;      /* kontrollierte Höhe */
  object-fit: contain;    /* GANZES Bild sichtbar */
  border-radius: 14px;
  background: #f4ede6;
  padding: 6px;
  box-shadow: 0 10px 22px rgba(0,0,0,0.18);
}


/* Optional: auf größeren Screens darf es etwas größer sein */
@media (min-width: 980px) {
  .owner-img {
    max-width: 520px;
  }
}

/* ===== Über uns: Inhaber-Layout (Bild links, Text rechts) ===== */

.owner-card {
  max-width: 920px;
  margin: 0 auto;
}

.owner-layout {
  display: grid;
  grid-template-columns: 260px 1fr; /* Bild-Spalte + Text */
  gap: 18px;
  align-items: start;
}

.owner-media {
  width: 260px;           /* <- HARTER Deckel gegen “zu groß” */
}

.owner-img {
  display: block;
  width: 260px;           /* <- HARTER Deckel */
  height: 320px;          /* <- feste Höhe für saubere Optik */
  object-fit: cover;
  border-radius: 14px;
  box-shadow: 0 10px 22px rgba(0,0,0,0.18);
}

/* Text etwas sauberer */
.owner-text h3 {
  margin: 0 0 8px;
}

.owner-text p {
  margin: 0 0 10px;
}

/* Responsive: auf Handy untereinander */
@media (max-width: 720px) {
  .owner-layout {
    grid-template-columns: 1fr;
  }

  .owner-media {
    width: 100%;
  }

  .owner-img {
    width: 100%;
    max-width: 360px;     /* <- auch mobil nicht riesig */
    height: auto;
    aspect-ratio: 4 / 5;  /* ähnliche Optik wie oben */
    margin: 0 auto;
  }
}

/* =========================
   STANDARD BUTTON (LESBAR)
   ========================= */

.button {
  background-color: #b83734;   /* kräftiges Rot (CI-Farbe) */
  color: #ffffff;              /* weiße Schrift → immer lesbar */
  border: none;
  border-radius: 999px;        /* rund wie gewünscht */
  padding: 14px 26px;
  font-weight: 600;
  text-align: center;
  display: inline-block;
  cursor: pointer;
}

/* Hover nur minimal dunkler – NICHT schwarz */
.button:hover {
  background-color: #9f2f2c;
  color: #ffffff;
}

/* =========================
   FIX: Button standard lesbar
   ========================= */

.button {
  background: linear-gradient(135deg, #b83734, #dd5b44); /* dein Rot */
  color: #ffffff !important;                             /* weiße Schrift */
}

/* =========================
   FIX: button-white korrekt darstellen
   ========================= */

.button.button-white {
  background: #f8f4ef;
  color: #4a3024 !important;
  border: 1px solid rgba(0,0,0,0.12);
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

.button.button-white:hover {
  background: #ffffff;
  color: #4a3024;
}

/* Kostenrechner – Möblierungs-Bilder */
.furnishing-img{
  width: 100%;
  height: 120px;        /* wenn du größer/kleiner willst: hier ändern */
  object-fit: cover;    /* schneidet sauber, ohne zu verzerren */
  border-radius: 12px;
  display: block;
  border: 1px solid rgba(195, 167, 139, 0.7);
  box-shadow: 0 6px 16px rgba(0,0,0,0.12);
}

.footer-legal {
  margin-top: 10px;
  font-size: 0.9rem;
  opacity: 0.9;
}

/* =========================
   Leistungen-Seite: Layout + Bilder sauber mittig
   ========================= */

/* Layout: Bild-Spalte mittig neben Text */
section[id] .layout-two {
  align-items: center; /* vertikal mittig */
}

/* Wenn du bestimmte Sections NICHT mittig willst, sag kurz – dann grenzen wir es ein. */

.service-image {
  margin: 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;  /* Bild/Caption horizontal mittig */
  justify-content: center;
}

/* Bild wirkt wie eine Card */
.service-image img {
  display: block;
  width: min(460px, 100%); /* nicht zu breit, bleibt neben Text “ruhig” */
  height: 280px;           /* einheitliche Höhe */
  object-fit: cover;
  border-radius: 16px;
  border: 1px solid rgba(195, 167, 139, 0.9);
  box-shadow: 0 10px 24px rgba(0,0,0,0.18);
  background: #f4ede6;
}

.service-image figcaption {
  margin-top: 10px;
  font-size: 0.85rem;
  color: #5a4334;
  text-align: center;
  max-width: min(460px, 100%);
}

/* Mobile: untereinander + Bild weniger hoch */
@media (max-width: 720px) {
  section[id] .layout-two {
    align-items: stretch;
  }

  .service-image img {
    width: 100%;
    height: 200px;
  }
}
