:root {
  --bg-dark: #1a1a1c;
  --bg-asphalt: #252528;
  --bg-card: #2e2e32;
  --red: #c41e3a;
  --red-dark: #a01830;
  --gold: #d4af37;
  --gold-light: #e8c547;
  --white: #ffffff;
  --gray: #b0b0b0;
  --gray-dark: #6b6b6e;
  --font-head: 'Oswald', sans-serif;
  --font-body: 'Roboto', sans-serif;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* Skip-Link für Tastatur/Screenreader – sichtbar beim Fokus */
.skip-link {
  position: absolute;
  top: -100px;
  left: 1rem;
  z-index: 200;
  padding: 0.75rem 1.25rem;
  background: var(--gold);
  color: var(--bg-dark);
  font-family: var(--font-head);
  font-weight: 600;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: 4px;
  transition: top 0.2s;
}

.skip-link:focus {
  top: 1rem;
  outline: 2px solid var(--white);
  outline-offset: 2px;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  background: var(--bg-dark);
  color: var(--white);
  line-height: 1.5;
  min-height: 100vh;
  overflow-x: hidden;
}

.container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ===== Header ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(26, 26, 28, 0.95);
  border-bottom: 2px solid var(--gold);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
  transition: background 0.25s, box-shadow 0.25s;
}

.header.scrolled {
  background: rgba(26, 26, 28, 0.98);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.55);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

.logo-wrap {
  text-decoration: none;
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.logo-main {
  font-family: var(--font-head);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.02em;
  transform: skewX(-3deg);
}

.logo-city {
  font-family: var(--font-head);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--red);
  letter-spacing: 0.15em;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.5rem;
  justify-content: flex-end;
  align-items: center;
}

.nav a {
  font-family: var(--font-head);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--gray);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  white-space: nowrap;
  transition: color 0.2s;
}

.nav a:hover {
  color: var(--gold);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.5rem;
  cursor: pointer;
}

/* Header Banner (Leistungen) */
.header-banner {
  background: #0d0d0e;
  border-top: 1px solid var(--gold);
  border-bottom: 1px solid var(--gold);
  padding: 0.6rem 1.5rem;
  text-align: center;
  font-family: var(--font-head);
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
}

.banner-dot {
  color: var(--gold);
  margin: 0 0.5rem;
  font-weight: 700;
}

/* ===== Hero ===== */
.hero {
  position: relative;
  min-height: 75vh;
  display: flex;
  align-items: center;
  padding: 120px 0 4rem;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--bg-asphalt) 0%, var(--bg-dark) 50%, #1e1e22 100%);
}

.hero-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.85;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    linear-gradient(180deg, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.3) 40%, transparent 70%),
    linear-gradient(90deg, rgba(26,26,28,0.9) 0%, transparent 50%);
  pointer-events: none;
}

.hero-bg::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 50%;
  background: linear-gradient(to top, var(--bg-dark), transparent);
  pointer-events: none;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-slogan {
  font-family: 'Bebas Neue', var(--font-head);
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  font-weight: 400;
  letter-spacing: 0.12em;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.gold-dot {
  margin: 0 0.25rem;
  opacity: 0.9;
}

.hero h1 {
  font-family: 'Bebas Neue', var(--font-head);
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 400;
  letter-spacing: 0.03em;
  color: var(--white);
  margin-bottom: 0.75rem;
  text-transform: uppercase;
  line-height: 1.15;
}

.hero-text {
  color: var(--gray);
  font-size: 1.05rem;
  margin-bottom: 0.75rem;
  max-width: 480px;
}

.hero-conversion {
  font-family: var(--font-head);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.05em;
  margin-bottom: 1.5rem;
}

.btn {
  display: inline-block;
  padding: 0.85rem 1.75rem;
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border: 2px solid var(--gold);
  transition: all 0.2s;
  cursor: pointer;
}

.btn-gold {
  background: transparent;
  color: var(--gold);
}

.btn-gold:hover {
  background: var(--gold);
  color: var(--bg-dark);
}

/* Hero: Telefon & WhatsApp Buttons */
.hero-content .btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.hero-content .btn .btn-icon {
  flex-shrink: 0;
}

.hero-content .btn-gold {
  background: var(--gold);
  color: var(--bg-dark);
  padding: 1rem 2rem;
  font-size: 1.2rem;
}

.hero-content .btn-gold:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  color: var(--bg-dark);
}

.btn-hero-whatsapp {
  margin-left: 0.75rem;
  background: #25D366;
  color: var(--bg-dark);
  border-color: #25D366;
  font-size: 1rem;
  padding: 1rem 2rem;
}

.btn-hero-whatsapp:hover {
  background: #2ee66d;
  border-color: #2ee66d;
  color: var(--bg-dark);
}

/* tel:-Links überall in Goldton */
a[href^="tel:"] {
  color: var(--gold);
  text-decoration: underline;
}
a[href^="tel:"]:hover {
  color: var(--gold-light);
}

/* Tastatur-Fokus sichtbar (Barrierefreiheit) */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

/* ===== Preise ===== */
.preise-section {
  padding: 4rem 0;
  background: var(--bg-asphalt);
}

.preise-container {
  max-width: 640px;
  margin: 0 auto;
}

.preise-heading {
  margin-bottom: 0.75rem;
}

.prices-incl {
  text-align: center;
  color: var(--gray);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}

.preise-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-bottom: 1rem;
}

.price-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1.5rem 1rem;
  background: var(--bg-card);
  border: 2px solid rgba(212, 175, 55, 0.35);
  border-radius: 12px;
  text-decoration: none;
  color: inherit;
  min-height: 140px;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
  position: relative;
}

.price-card:hover {
  border-color: var(--gold);
  box-shadow: 0 6px 24px rgba(212, 175, 55, 0.25);
  transform: translateY(-2px);
}

.price-card:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

.price-card .price-size {
  font-family: var(--font-head);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
}

.price-card .price-value {
  font-family: var(--font-head);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--gold) !important;
  margin-bottom: 0.5rem;
}

.price-card-hint {
  font-size: 0.75rem;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: auto;
}

.price-card-popular {
  border-color: var(--gold);
  background: rgba(212, 175, 55, 0.1);
  box-shadow: 0 0 16px rgba(212, 175, 55, 0.2);
}

.price-card-popular:hover {
  box-shadow: 0 6px 28px rgba(212, 175, 55, 0.35);
}

.price-card .price-badge {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  padding: 0.2rem 0.5rem;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--bg-dark);
  background: var(--gold);
  border-radius: 6px;
  white-space: nowrap;
}

.price-card-repair {
  grid-column: 1 / -1;
  max-width: 320px;
  margin: 0 auto;
}

.preise-text {
  max-width: 640px;
  margin: 1.5rem auto 0;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.preise-text p {
  margin: 0;
  color: var(--gray);
  font-size: 1rem;
  line-height: 1.7;
  text-align: center;
}

/* ===== Saison-Hinweis ===== */
.saison-hinweis {
  background: rgba(212, 175, 55, 0.15);
  border-bottom: 1px solid rgba(212, 175, 55, 0.35);
  padding: 0.6rem 0;
}

.saison-hinweis p {
  margin: 0;
  text-align: center;
  font-size: 0.95rem;
  color: var(--white);
  font-weight: 500;
}

/* ===== Kundenstimmen ===== */
.kundenstimmen-section {
  padding: 4rem 0;
  background: var(--bg-dark);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.testimonial-card {
  background: var(--bg-card);
  border: 1px solid rgba(212, 175, 55, 0.25);
  border-radius: 10px;
  padding: 1.5rem;
  margin: 0;
}

.testimonial-text {
  font-size: 1rem;
  color: var(--gray);
  line-height: 1.6;
  margin: 0 0 1rem;
  font-style: italic;
}

.testimonial-author {
  font-size: 0.9rem;
  color: var(--gold);
  margin: 0;
}

.testimonials-google {
  text-align: center;
  margin: 0;
}

.btn-google {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  color: var(--gold);
  border-color: var(--gold);
}

.btn-google:hover {
  background: var(--gold);
  color: var(--bg-dark);
}

/* ===== Über uns ===== */
.ueber-section {
  padding: 4rem 0;
  background: var(--bg-dark);
}

.ueber-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
  max-width: 1000px;
}

.ueber-content {
  max-width: 100%;
}

.ueber-content .section-title {
  text-align: left;
  margin-bottom: 1.25rem;
}

.ueber-img-wrap {
  border: 2px solid rgba(212, 175, 55, 0.3);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

.ueber-img {
  width: 100%;
  height: auto;
  display: block;
  vertical-align: middle;
}

.ueber-content p {
  color: var(--gray);
  font-size: 1.05rem;
  margin-bottom: 1rem;
}

.ueber-content strong {
  color: var(--gold);
}

/* ===== Vorteile ===== */
.vorteile-section {
  padding: 4rem 0;
  background: var(--bg-asphalt);
}

.vorteile-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.vorteil-item {
  background: var(--bg-card);
  border: 1px solid rgba(212, 175, 55, 0.25);
  padding: 1.5rem;
  text-align: center;
}

.vorteil-icon {
  display: inline-block;
  width: 2.25rem;
  height: 2.25rem;
  line-height: 2.25rem;
  background: var(--gold);
  color: var(--bg-dark);
  font-weight: 700;
  font-size: 1.1rem;
  border-radius: 50%;
  margin-bottom: 0.75rem;
}

.vorteil-item h3 {
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.4rem;
}

.vorteil-item p {
  color: var(--gray);
  font-size: 0.9rem;
  margin: 0;
}

/* ===== Leistungen ===== */
.leistungen-section {
  padding: 4rem 0;
  background: var(--bg-dark);
}

.section-title {
  font-family: var(--font-head);
  font-size: clamp(1.5rem, 3vw, 1.9rem);
  font-weight: 600;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 2rem;
  text-align: center;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.25rem;
}

.card-dark {
  background: var(--bg-card);
  border: 1px solid rgba(212, 175, 55, 0.25);
  padding: 1.75rem;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.card-dark:hover {
  border-color: var(--gold);
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.15);
}

.card-dark h3 {
  font-family: var(--font-head);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.5rem;
}

.card-dark p {
  color: var(--gray);
  font-size: 0.95rem;
}

.leistungen-intro {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 2rem;
  align-items: center;
  margin-bottom: 2rem;
  padding: 1.5rem;
  background: var(--bg-card);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 8px;
}

.leistungen-intro-img {
  width: 100%;
  height: auto;
  border-radius: 6px;
  display: block;
}

.leistungen-intro-text {
  color: var(--gray);
  font-size: 1.05rem;
  line-height: 1.6;
  margin: 0;
}

.services-grid-more {
  margin-top: 1.25rem;
}

/* ===== Galerie ===== */
.galerie-section {
  padding: 4rem 0;
  background: var(--bg-asphalt);
}

.galerie-intro {
  text-align: center;
  color: var(--gray);
  max-width: 560px;
  margin: -0.5rem auto 2rem;
  font-size: 1.05rem;
}

.galerie-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
}

.galerie-item {
  border: 2px solid rgba(212, 175, 55, 0.25);
  border-radius: 8px;
  overflow: hidden;
  background: var(--bg-card);
  aspect-ratio: 1;
}

.galerie-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s;
}

.galerie-item:hover img {
  transform: scale(1.05);
}

.galerie-item:hover {
  border-color: var(--gold);
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.2);
}

.galerie-item {
  cursor: pointer;
}

/* ===== Lightbox ===== */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.9);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s, visibility 0.25s;
}

.lightbox.is-open {
  opacity: 1;
  visibility: visible;
}

.lightbox-inner {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
}

.lightbox-img {
  max-width: 100%;
  max-height: 90vh;
  width: auto;
  height: auto;
  display: block;
  border: 2px solid var(--gold);
  border-radius: 8px;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.6);
}

.lightbox-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 1001;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-card);
  border: 2px solid var(--gold);
  color: var(--white);
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  border-radius: 8px;
  transition: background 0.2s, color 0.2s;
}

.lightbox-close:hover {
  background: var(--gold);
  color: var(--bg-dark);
}

/* ===== Öffnungszeiten ===== */
.oeffnungszeiten-section {
  padding: 4rem 0;
  background: var(--bg-asphalt);
}

.oeffnungszeiten-box {
  max-width: 440px;
  margin: 0 auto;
  background: var(--bg-card);
  border: 1px solid rgba(212, 175, 55, 0.25);
  padding: 1.75rem;
}

.oeff-row {
  display: flex;
  justify-content: space-between;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  font-family: var(--font-head);
  font-size: 1.05rem;
}

.oeff-row:last-of-type {
  border-bottom: none;
}

.oeff-row span:last-child {
  color: var(--gold);
  font-weight: 500;
}

.oeff-hinweis {
  margin-top: 1.25rem;
  font-size: 0.9rem;
  color: var(--gray);
}

/* ===== FAQ ===== */
.faq-section {
  padding: 4rem 0;
  background: var(--bg-dark);
}

.faq-list {
  max-width: 640px;
  margin: 0 auto;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid rgba(212, 175, 55, 0.2);
  margin-bottom: 0.5rem;
  border-radius: 4px;
  overflow: hidden;
}

.faq-item summary {
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--white);
  padding: 1rem 1.25rem;
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::before {
  content: '+';
  color: var(--gold);
  font-weight: 700;
  font-size: 1.2rem;
}

.faq-item[open] summary::before {
  content: '−';
}

.faq-item p {
  padding: 0 1.25rem 1.25rem;
  margin: 0;
  color: var(--gray);
  font-size: 0.95rem;
  line-height: 1.6;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 0.75rem;
  margin-top: 0;
  margin-left: 1.25rem;
  margin-right: 1.25rem;
  margin-bottom: 1rem;
}

/* ===== Hinweise ===== */
.hinweise-section {
  padding: 4rem 0;
  background: var(--bg-asphalt);
}

.hinweise-list {
  max-width: 640px;
  margin: 0 auto;
  padding-left: 1.5rem;
  color: var(--gray);
}

.hinweise-list li {
  margin-bottom: 0.75rem;
  line-height: 1.6;
}

.hinweise-list a {
  color: var(--gold);
  text-decoration: none;
}

.hinweise-list a:hover {
  text-decoration: underline;
}

/* ===== Kontakt ===== */
.contact-section {
  padding: 4rem 0;
  background: var(--bg-asphalt);
}

.contact-block {
  text-align: center;
  margin-bottom: 1.5rem;
}

.contact-label {
  font-size: 0.95rem;
  color: var(--gray);
  margin-bottom: 0.25rem;
}

.contact-phone {
  font-family: var(--font-head);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--gold);
  text-decoration: none;
  letter-spacing: 0.05em;
  display: inline-block;
  transition: color 0.2s;
}

.contact-phone:hover {
  color: var(--gold-light);
}

.contact-email {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--gold);
  text-decoration: none;
  word-break: break-all;
}

.contact-email:hover {
  color: var(--gold-light);
  text-decoration: underline;
}

.whatsapp-block {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.whatsapp-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--white);
  font-size: 1rem;
  text-decoration: none;
  padding: 0.5rem 0;
}

.whatsapp-link:hover {
  color: var(--gold-light);
}

.whatsapp-link span {
  color: inherit;
}

.whatsapp-icon {
  flex-shrink: 0;
}

.address-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

.address-text {
  text-align: center;
  margin-bottom: 1rem;
}

.pin-icon {
  font-size: 1.25rem;
  filter: sepia(1) saturate(4) hue-rotate(-45deg);
}

.address-block p {
  color: var(--white);
  font-size: 1.05rem;
  margin: 0.25rem 0;
}

.link-maps {
  display: inline-block;
  margin-top: 0.5rem;
  font-size: 0.95rem;
  color: var(--gold);
  text-decoration: none;
}

.link-maps:hover {
  text-decoration: underline;
  color: var(--gold-light);
}

.link-maps-sep {
  margin: 0 0.5rem;
  color: var(--gray);
  font-weight: 700;
}

.map-wrap {
  position: relative;
  width: 100%;
  max-width: 640px;
  margin: 0 auto;
  background: var(--bg-card);
  border-radius: 12px;
  overflow: hidden;
  border-left: 4px solid var(--red);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

.map-placeholder {
  min-height: 320px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 2rem;
  text-align: center;
  color: var(--gray);
  font-size: 0.95rem;
}

.map-placeholder p {
  margin: 0;
}

.map-wrap iframe {
  display: block;
  width: 100%;
  height: 320px;
  border: none;
}

.map-link-overlay {
  display: block;
  text-align: center;
  padding: 0.6rem 1rem;
  font-family: var(--font-head);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(0, 0, 0, 0.6);
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}

.map-link-overlay:hover {
  background: var(--red);
  color: var(--white);
}

.contact-form-wrap {
  max-width: 480px;
  margin: 2.5rem auto 0;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.form-title {
  font-family: var(--font-head);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1.25rem;
  text-align: center;
}

.contact-form label {
  display: block;
  font-size: 0.9rem;
  color: var(--gray);
  margin-bottom: 0.35rem;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  margin-bottom: 1rem;
  font-family: var(--font-body);
  font-size: 1rem;
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--white);
  border-radius: 4px;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: var(--gray-dark);
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--gold);
}

.contact-form button {
  margin-top: 0.25rem;
  width: 100%;
}

.contact-form input.invalid,
.contact-form textarea.invalid {
  border-color: var(--red);
  box-shadow: 0 0 0 2px rgba(196, 30, 58, 0.3);
}

.field-error {
  display: block;
  font-size: 0.85rem;
  color: var(--red);
  margin-top: -0.5rem;
  margin-bottom: 0.75rem;
  min-height: 1.25rem;
}

.form-hinweis {
  margin-top: 0.75rem;
  font-size: 0.85rem;
  color: var(--gray-dark);
  font-style: italic;
}

/* ===== CTA-Strip ===== */
.cta-strip {
  padding: 2rem 0;
  background: var(--red);
  border-top: 2px solid var(--gold);
  border-bottom: 2px solid var(--gold);
}

.cta-strip-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.cta-text {
  font-family: var(--font-head);
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin: 0;
  width: 100%;
  text-align: center;
}

.cta-strip .btn {
  margin: 0 0.25rem;
}

.cta-strip .btn-gold {
  background: var(--gold);
  color: var(--bg-dark);
  border-color: var(--gold);
}
.cta-strip .btn-gold:hover {
  background: var(--gold-light);
  color: var(--bg-dark);
  border-color: var(--gold-light);
}

.btn-whatsapp {
  background: #25D366;
  color: var(--bg-dark);
  border-color: #25D366;
}

.btn-whatsapp:hover {
  background: #2ee66d;
  border-color: #2ee66d;
  color: var(--bg-dark);
}

/* ===== Footer ===== */
.footer {
  padding: 1.5rem;
  background: #0d0d0e;
  border-top: 1px solid rgba(212, 175, 55, 0.3);
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.footer-copy {
  font-size: 0.9rem;
  color: var(--gray-dark);
  margin: 0;
}

.footer-legal {
  margin: 0;
  font-size: 0.9rem;
}

.footer-legal a {
  color: var(--gold);
  text-decoration: none;
}

.footer-legal a:hover {
  text-decoration: underline;
  color: var(--gold-light);
}

.footer-sep {
  color: var(--gray-dark);
  margin: 0 0.35rem;
}

.footer-impressum,
.footer-datenschutz {
  padding: 2rem 0;
  background: #0a0a0b;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-impressum h2,
.footer-datenschutz h2 {
  font-family: var(--font-head);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1rem;
}

.footer-impressum p,
.footer-datenschutz p {
  color: var(--gray);
  font-size: 0.95rem;
  margin-bottom: 0.75rem;
  line-height: 1.6;
}

.footer-impressum a,
.footer-datenschutz a {
  color: var(--gold);
  text-decoration: none;
}

.footer-impressum a:hover,
.footer-datenschutz a:hover {
  text-decoration: underline;
}

.impressum-hinweis {
  font-size: 0.85rem;
  color: var(--gray-dark);
  font-style: italic;
  margin-top: 1rem;
}

/* ===== Aus der Umgebung / Stadtteile ===== */
.umgebung-section {
  padding: 4rem 0;
  background: var(--bg-dark);
}

.umgebung-text {
  text-align: center;
  color: var(--gray);
  max-width: 640px;
  margin: -0.5rem auto 1.5rem;
  font-size: 1.05rem;
  line-height: 1.6;
}

.stadtteile-wrap {
  overflow: hidden;
  border: 2px solid rgba(37, 211, 102, 0.5);
  border-radius: 12px;
  background: var(--bg-card);
  padding: 0.75rem 0;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.3);
}

.stadtteile-track {
  display: flex;
  flex-wrap: nowrap;
  gap: 0.75rem;
  width: max-content;
  animation: stadtteile-scroll 120s linear infinite;
}

.stadtteile-track:hover {
  animation-play-state: paused;
}

.stadtteil {
  flex-shrink: 0;
  padding: 0.5rem 1rem;
  font-family: var(--font-head);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--bg-dark);
  background: #25D366;
  border: 1px solid #25D366;
  border-radius: 8px;
  white-space: nowrap;
}

.stadtteil:hover {
  background: #2ee66d;
  border-color: #2ee66d;
  color: var(--bg-dark);
}

@keyframes stadtteile-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
  .stadtteile-track {
    animation: none;
    flex-wrap: wrap;
    width: auto;
    padding: 0.5rem 1rem;
    justify-content: center;
  }
}


/* ===== Cookie-Hinweis ===== */
.cookie-hinweis {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 1rem 1.5rem;
  background: var(--bg-asphalt);
  border-top: 2px solid var(--gold);
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s, opacity 0.3s;
}

.cookie-hinweis.is-hidden {
  transform: translateY(100%);
  opacity: 0;
  pointer-events: none;
}

.cookie-hinweis p {
  margin: 0;
  color: var(--white);
  font-size: 0.95rem;
}

.cookie-hinweis a {
  color: var(--gold);
  text-decoration: underline;
}

.cookie-hinweis a:hover {
  color: var(--gold-light);
}

.cookie-ok {
  padding: 0.6rem 1.25rem;
  font-family: var(--font-head);
  font-size: 0.95rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  background: var(--gold);
  color: var(--bg-dark);
  border: 2px solid var(--gold);
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}

.cookie-ok:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  color: var(--bg-dark);
}

/* Sticky Anruf/WhatsApp-Leiste – nur auf Mobil sichtbar */
.sticky-mobile-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 99;
  padding: 0.5rem;
  background: rgba(26, 26, 28, 0.98);
  border-top: 2px solid var(--gold);
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.4);
  gap: 0.5rem;
  justify-content: center;
  align-items: center;
}

.sticky-btn {
  flex: 1;
  max-width: 160px;
  padding: 0.75rem 1rem;
  font-family: var(--font-head);
  font-size: 0.95rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  text-align: center;
  text-decoration: none;
  border-radius: 8px;
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.2s;
}

.sticky-btn:hover {
  opacity: 0.9;
}

.sticky-tel {
  background: var(--gold);
  color: var(--bg-dark) !important;
  border: 2px solid var(--gold);
  text-decoration: none !important;
}
.sticky-tel:hover {
  color: var(--bg-dark) !important;
}

.sticky-wa {
  background: #25D366;
  color: var(--bg-dark);
  border: 2px solid #25D366;
}

/* ===== Mobile / Handy ===== */
@media (max-width: 768px) {
  .sticky-mobile-bar {
    display: flex;
  }

  main {
    padding-bottom: 5rem;
  }

  .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  /* Header */
  .header-inner {
    height: 64px;
    padding: 0 0.25rem;
  }

  .nav {
    display: none;
    gap: 0;
  }

  .nav-toggle {
    display: block;
    padding: 0.5rem;
    min-width: 44px;
    min-height: 44px;
  }

  .nav.open {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.25rem;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: var(--bg-asphalt);
    padding: 1rem;
    border-bottom: 1px solid var(--gold);
  }

  .nav.open a {
    font-size: 0.9rem;
    padding: 0.75rem 1rem;
    min-height: 44px;
    display: flex;
    align-items: center;
    border-radius: 4px;
  }

  .nav.open a:hover {
    background: rgba(255,255,255,0.06);
  }

  .header-banner {
    font-size: 0.75rem;
    letter-spacing: 0.04em;
    padding: 0.5rem 1rem;
  }

  .logo-main {
    font-size: 1.25rem;
  }

  .logo-city {
    font-size: 0.95rem;
    letter-spacing: 0.08em;
  }

  /* Hero */
  .hero {
    min-height: 60vh;
    padding: 100px 0 2.5rem;
    align-items: center;
  }

  .hero h1 {
    font-size: clamp(1.4rem, 6.5vw, 1.95rem);
    line-height: 1.2;
    margin-bottom: 0.6rem;
  }

  .hero-slogan {
    font-size: clamp(1rem, 4vw, 1.2rem);
    margin-bottom: 0.5rem;
  }

  .hero-text {
    font-size: 1rem;
    margin-bottom: 1.25rem;
  }

  .hero-content .btn {
    margin-bottom: 0.5rem;
  }

  .hero-content .btn-gold {
    padding: 0.95rem 1.75rem;
    font-size: 1.1rem;
  }

  .hero-content .btn-hero-whatsapp {
    margin-left: 0;
    padding: 0.7rem 1.1rem;
    font-size: 0.9rem;
  }

  .btn {
    padding: 0.9rem 1.5rem;
    font-size: 1rem;
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  /* Sections allgemein */
  .section {
    padding: 2.5rem 0;
  }

  .section-title {
    font-size: 1.4rem;
    margin-bottom: 1.25rem;
    letter-spacing: 0.06em;
  }

  /* Über uns */
  .ueber-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .ueber-img-wrap {
    max-width: 100%;
    margin: 0 auto;
  }

  .ueber-content .section-title {
    text-align: center;
  }

  .ueber-content p {
    font-size: 1rem;
  }

  /* Vorteile */
  .vorteile-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .vorteil-item {
    padding: 1.25rem;
  }

  .vorteil-item h3 {
    font-size: 1rem;
  }

  .saison-hinweis p {
    font-size: 0.9rem;
    padding: 0 0.5rem;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .testimonial-card {
    padding: 1.25rem;
  }

  /* Preise */
  .preise-container {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .preise-cards {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .price-card {
    min-height: 120px;
    padding: 1.25rem 1rem;
  }

  .price-card .price-size {
    font-size: 1.1rem;
  }

  .price-card .price-value {
    font-size: 1.5rem;
  }

  /* Leistungen */
  .leistungen-intro {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 1.25rem;
    margin-bottom: 1.5rem;
  }

  .leistungen-intro-img {
    max-width: 100%;
    margin: 0 auto;
  }

  .leistungen-intro-text {
    font-size: 1rem;
  }

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

  .card-dark {
    padding: 1.5rem;
  }

  /* Galerie */
  .galerie-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
  }

  .galerie-item {
    aspect-ratio: 1;
  }

  .galerie-intro {
    font-size: 0.95rem;
    margin-bottom: 1.25rem;
  }

  /* Öffnungszeiten */
  .oeffnungszeiten-box {
    padding: 1.25rem;
  }

  .oeff-row {
    font-size: 0.95rem;
    flex-wrap: wrap;
    gap: 0.25rem;
  }

  /* FAQ */
  .faq-item summary {
    padding: 0.9rem 1rem;
    font-size: 0.95rem;
  }

  .faq-item p {
    padding: 0 1rem 1rem;
    margin-left: 1rem;
    margin-right: 1rem;
    font-size: 0.9rem;
  }

  /* Hinweise */
  .hinweise-list {
    padding-left: 1.25rem;
    font-size: 0.95rem;
  }

  /* Kontakt */
  .contact-block {
    margin-bottom: 1.25rem;
  }

  .contact-phone {
    font-size: 1.25rem;
    word-break: break-all;
  }

  .address-text {
    margin-bottom: 0.75rem;
  }

  .link-maps-sep {
    display: block;
    margin: 0.5rem 0;
    text-align: center;
  }

  .map-wrap {
    border-radius: 8px;
    margin-top: 1rem;
  }

  .map-wrap iframe {
    height: 260px;
  }

  .map-link-overlay {
    padding: 0.75rem;
    font-size: 0.8rem;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .contact-form-wrap {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
  }

  .contact-form input,
  .contact-form textarea {
    padding: 0.85rem 1rem;
    font-size: 16px; /* verhindert Zoom auf iOS */
  }

  .contact-form button {
    min-height: 48px;
  }

  /* CTA-Strip */
  .cta-strip {
    padding: 1.5rem 0;
  }

  .cta-strip-inner {
    flex-direction: column;
    gap: 0.75rem;
  }

  .cta-text {
    font-size: 1rem;
    margin-bottom: 0.25rem;
  }

  .cta-strip .btn {
    width: 100%;
    max-width: 280px;
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  /* Umgebung / Stadtteile */
  .umgebung-section {
    padding: 2.5rem 0;
  }

  .umgebung-text {
    font-size: 0.95rem;
    margin-bottom: 1rem;
  }

  .stadtteile-wrap {
    padding: 0.5rem 0;
    border-radius: 8px;
  }

  .stadtteil {
    font-size: 0.8rem;
    padding: 0.4rem 0.75rem;
  }

  /* Footer */
  .footer-inner {
    flex-direction: column;
    text-align: center;
    padding: 1rem;
  }

  .footer-impressum,
  .footer-datenschutz {
    padding: 1.5rem 0;
  }

  .footer-impressum h2,
  .footer-datenschutz h2 {
    font-size: 1.1rem;
  }

  .footer-impressum p,
  .footer-datenschutz p {
    font-size: 0.9rem;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .galerie-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
