/* =====================================================
   FAHRZEUGTECHNIK POULWEY – Stylesheet
   ===================================================== */

/* =====================================================
   LOCAL FONTS – Oswald + Nunito (latin + latin-ext)
   Datenschutzkonform: keine Datenübertragung an Google
   ===================================================== */

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

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

/* === CSS Custom Properties === */
:root {
  --brand:        #663333;
  --brand-light:  #8b4444;
  --brand-dark:   #4a2323;
  --creme:        #f7f7d4;
  --creme-dark:   #efefb8;
  --gray-light:   #f5f5f5;
  --gray:         #c1c1c1;
  --gray-dark:    #777777;
  --text:         #1e1e1e;
  --white:        #ffffff;
  --dark:         #181818;
  --dark-2:       #242424;

  --font-h: 'Oswald', sans-serif;
  --font-b: 'Nunito', sans-serif;

  --shadow-sm:  0 2px 8px rgba(0,0,0,0.07);
  --shadow:     0 4px 20px rgba(0,0,0,0.11);
  --shadow-lg:  0 8px 40px rgba(0,0,0,0.16);
  --radius:     8px;
  --radius-lg:  16px;
  --transition: 0.3s ease;
}

/* === Reset === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-b);
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
address { font-style: normal; }

/* === Layout === */
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.section        { padding: 5rem 0; }
.section--gray  { background: var(--gray-light); }
.section--dark  { background: var(--dark); color: var(--white); }
.section--creme { background: var(--creme); }

/* === Typography Utilities === */
h1, h2, h3, h4 {
  font-family: var(--font-h);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: 0.02em;
}
.section-label {
  display: block;
  font-family: var(--font-h);
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 0.6rem;
}
.section-label--light { color: var(--creme); opacity: 0.75; }

.section-title {
  font-size: clamp(1.75rem, 3vw, 2.75rem);
  color: var(--text);
  margin-bottom: 0.75rem;
}
.section-title--white { color: var(--white); }

.section-sub {
  font-size: 1.05rem;
  color: var(--gray-dark);
  max-width: 580px;
  margin-bottom: 2.75rem;
  line-height: 1.75;
}
.section-sub--white { color: rgba(255,255,255,0.7); }

/* === Buttons === */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.8rem 1.875rem;
  border-radius: var(--radius);
  font-family: var(--font-h);
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; flex-shrink: 0; }

.btn--primary { background: var(--brand); color: var(--white); border-color: var(--brand); }
.btn--primary:hover { background: var(--brand-dark); border-color: var(--brand-dark); transform: translateY(-2px); box-shadow: var(--shadow); }

.btn--outline { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.6); }
.btn--outline:hover { background: var(--white); color: var(--brand); border-color: var(--white); transform: translateY(-2px); }

.btn--outline-brand { background: transparent; color: var(--brand); border-color: var(--brand); }
.btn--outline-brand:hover { background: var(--brand); color: var(--white); transform: translateY(-2px); }

.btn--ghost { background: rgba(255,255,255,0.12); color: var(--white); border-color: transparent; }
.btn--ghost:hover { background: rgba(255,255,255,0.22); transform: translateY(-2px); }

/* === HEADER / NAV === */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition);
}
.header.scrolled { box-shadow: var(--shadow); }

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}
.nav__logo img { height: 46px; width: auto; }

.nav__links {
  display: flex;
  align-items: center;
  gap: 0.125rem;
}
.nav__links a {
  font-family: var(--font-h);
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.45rem 0.875rem;
  border-radius: var(--radius);
  color: var(--text);
  transition: all var(--transition);
}
.nav__links a:hover,
.nav__links a.active { color: var(--brand); background: rgba(102,51,51,0.07); }
.nav__links .btn--primary {
  font-size: 0.88rem;
  padding: 0.55rem 1.125rem;
  margin-left: 0.5rem;
  color: var(--white);
}
.nav__links .btn--primary:hover { transform: none; }

/* Hamburger */
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  border: none;
  background: none;
  cursor: pointer;
}
.nav__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all var(--transition);
}
.nav__hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav__hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Nav */
.nav__mobile {
  display: none;
  position: fixed;
  top: 68px; left: 0; right: 0;
  background: var(--white);
  padding: 0.75rem 1.5rem 1.75rem;
  box-shadow: var(--shadow);
  flex-direction: column;
  gap: 0.25rem;
  z-index: 999;
  border-top: 1px solid var(--gray-light);
}
.nav__mobile.open { display: flex; }
.nav__mobile a {
  font-family: var(--font-h);
  font-size: 1.05rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.875rem 0.75rem;
  border-radius: var(--radius);
  color: var(--text);
  transition: all var(--transition);
  border-bottom: 1px solid var(--gray-light);
}
.nav__mobile a:last-child { border-bottom: none; }
.nav__mobile a:hover,
.nav__mobile a.active { color: var(--brand); background: rgba(102,51,51,0.05); }
.nav__mobile .btn--primary,
.nav__mobile .btn--primary:hover,
.nav__mobile .btn--primary.active { margin-top: 0.5rem; color: var(--white); background: var(--brand); border-color: var(--brand); }

.page-offset { padding-top: 68px; }

/* === HERO === */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--dark);
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 65% 45%, rgba(102,51,51,0.35) 0%, transparent 55%),
    linear-gradient(160deg, #1a1a1a 0%, #0e0505 60%, #1a1010 100%);
}
.hero__pattern {
  position: absolute;
  inset: 0;
  opacity: 0.03;
  background-image: repeating-linear-gradient(
    -45deg,
    var(--white) 0,
    var(--white) 1px,
    transparent 0,
    transparent 50%
  );
  background-size: 12px 12px;
}
.hero__photo-placeholder {
  position: absolute;
  right: 0; top: 0; bottom: 0;
  width: 50%;
  background: linear-gradient(135deg, rgba(102,51,51,0.15) 0%, rgba(26,10,10,0.5) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  border-left: 1px solid rgba(247,247,212,0.05);
}
.hero__photo-placeholder span {
  font-family: var(--font-h);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.12);
  writing-mode: vertical-rl;
  text-orientation: mixed;
}
.hero__content {
  position: relative;
  z-index: 1;
  max-width: 640px;
  padding: 2rem 0;
}
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(102,51,51,0.55);
  border: 1px solid rgba(247,247,212,0.25);
  color: var(--creme);
  font-family: var(--font-h);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.375rem 1rem;
  border-radius: 2rem;
  margin-bottom: 1.5rem;
}
.hero__badge-dot {
  width: 6px;
  height: 6px;
  background: var(--creme);
  border-radius: 50%;
  opacity: 0.7;
}
.hero__title {
  font-size: clamp(2.4rem, 5vw, 4.25rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1.125rem;
  line-height: 1.08;
}
.hero__title em {
  font-style: normal;
  color: var(--creme);
}
.hero__sub {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.68);
  margin-bottom: 2.5rem;
  max-width: 500px;
  line-height: 1.75;
}
.hero__actions { display: flex; gap: 1rem; flex-wrap: wrap; }

.hero__scroll {
  position: absolute;
  bottom: 2.25rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  color: rgba(255,255,255,0.3);
  font-family: var(--font-h);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.hero__scroll-arrow {
  width: 22px;
  height: 22px;
  border-right: 2px solid rgba(255,255,255,0.25);
  border-bottom: 2px solid rgba(255,255,255,0.25);
  transform: rotate(45deg);
  animation: scrollBounce 1.6s infinite ease-in-out;
}
@keyframes scrollBounce {
  0%, 100% { transform: rotate(45deg) translateY(0); opacity: 0.3; }
  50%       { transform: rotate(45deg) translateY(7px); opacity: 0.8; }
}

/* === USP STRIP === */
.usp-strip { background: var(--brand); padding: 1.375rem 0; }
.usp-strip__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  align-items: center;
}
.usp-item {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  color: var(--white);
}
.usp-item + .usp-item {
  border-left: 1px solid rgba(255,255,255,0.18);
  padding-left: 1rem;
}
.usp-item__icon {
  width: 42px; height: 42px;
  min-width: 42px;
  background: rgba(255,255,255,0.14);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
}
.usp-item__icon svg { width: 20px; height: 20px; }
.usp-item__title {
  font-family: var(--font-h);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}
.usp-item__text { font-size: 0.82rem; opacity: 0.78; margin-top: 0.1rem; }

/* === SERVICE CARDS === */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(310px, 1fr));
  gap: 1.5rem;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.875rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0,0,0,0.055);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
  cursor: default;
}
.service-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--brand);
  transform: scaleX(0);
  transition: transform var(--transition);
  transform-origin: left;
}
.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.service-card:hover::after { transform: scaleX(1); }

.service-card__icon {
  width: 52px; height: 52px;
  background: rgba(102,51,51,0.08);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.25rem;
  transition: background var(--transition);
}
.service-card:hover .service-card__icon { background: rgba(102,51,51,0.14); }
.service-card__icon svg { width: 26px; height: 26px; color: var(--brand); }

.service-card__title {
  font-size: 1.15rem;
  margin-bottom: 0.625rem;
  color: var(--text);
}
.service-card__text {
  font-size: 0.93rem;
  color: var(--gray-dark);
  line-height: 1.75;
}
.service-card__badge {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.2rem 0.65rem;
  background: var(--creme);
  color: var(--brand);
  font-size: 0.72rem;
  font-family: var(--font-h);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 4px;
  font-weight: 600;
}

/* === EMERGENCY / PANNE === */
.emergency {
  background: linear-gradient(135deg, var(--brand-dark) 0%, var(--brand) 100%);
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
}
.emergency::before {
  content: '';
  position: absolute;
  right: -80px; top: -80px;
  width: 350px; height: 350px;
  background: rgba(255,255,255,0.04);
  border-radius: 50%;
}
.emergency::after {
  content: '';
  position: absolute;
  left: -50px; bottom: -50px;
  width: 200px; height: 200px;
  background: rgba(255,255,255,0.03);
  border-radius: 50%;
}
.emergency__inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 2.5rem;
  flex-wrap: wrap;
}
.emergency__icon-wrap {
  width: 80px; height: 80px;
  min-width: 80px;
  background: rgba(255,255,255,0.12);
  border-radius: var(--radius-lg);
  display: flex; align-items: center; justify-content: center;
}
.emergency__icon-wrap svg { width: 40px; height: 40px; color: var(--white); }
.emergency__text { flex: 1; }
.emergency__text h2 {
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  color: var(--white);
  margin-bottom: 0.4rem;
}
.emergency__text p { color: rgba(255,255,255,0.78); font-size: 1rem; }
.emergency__actions { display: flex; gap: 0.875rem; flex-wrap: wrap; }

/* === CONTACT TEASER (Homepage) === */
.contact-teaser__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.contact-info { display: flex; flex-direction: column; gap: 1.25rem; }
.contact-info__item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.contact-info__icon {
  width: 42px; height: 42px;
  min-width: 42px;
  background: rgba(102,51,51,0.08);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  margin-top: 2px;
}
.contact-info__icon svg { width: 20px; height: 20px; color: var(--brand); }
.contact-info__label {
  font-family: var(--font-h);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray-dark);
  margin-bottom: 0.2rem;
}
.contact-info__value { font-size: 1rem; font-weight: 600; color: var(--text); }
.contact-info__value a { transition: color var(--transition); }
.contact-info__value a:hover { color: var(--brand); }

.hours-box {
  background: var(--gray-light);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  border: 1px solid rgba(0,0,0,0.05);
}
.hours-box h3 {
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 1rem;
}
.hours-table { width: 100%; border-collapse: collapse; }
.hours-table tr { border-bottom: 1px solid var(--gray); }
.hours-table tr:last-child { border-bottom: none; }
.hours-table td { padding: 0.55rem 0; font-size: 0.95rem; }
.hours-table td:last-child { text-align: right; font-weight: 700; color: var(--brand); }

.contact-teaser__visual {
  background: linear-gradient(135deg, var(--dark) 0%, #2d1010 100%);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  color: var(--white);
  position: relative;
  overflow: hidden;
  min-height: 380px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.contact-teaser__visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 80% 20%, rgba(102,51,51,0.4) 0%, transparent 65%);
}
.contact-teaser__visual-placeholder {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -60%);
  font-family: var(--font-h);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.1);
  text-align: center;
  pointer-events: none;
}
.contact-teaser__visual-content { position: relative; z-index: 1; }
.contact-teaser__visual-content h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}
.contact-teaser__visual-content p { opacity: 0.72; font-size: 0.95rem; margin-bottom: 1.25rem; }

/* === CONTACT PAGE === */
.contact-page__grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 3rem;
  align-items: start;
}
.contact-sidebar { display: flex; flex-direction: column; gap: 1.5rem; }
.contact-card {
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.07);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
}
.contact-card__title {
  font-family: var(--font-h);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--creme);
}

/* === FORM === */
.form-card {
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.07);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
}
.form-section-title {
  font-family: var(--font-h);
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brand);
  margin: 1.75rem 0 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--creme);
}
.form-section-title:first-child { margin-top: 0; }

.form-group { margin-bottom: 1.125rem; }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
label {
  display: block;
  font-family: var(--font-h);
  font-size: 0.8rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--gray-dark);
  margin-bottom: 0.4rem;
}
label .req { color: var(--brand); }

input[type="text"],
input[type="email"],
input[type="tel"],
textarea,
select {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 2px solid var(--gray);
  border-radius: var(--radius);
  font-family: var(--font-b);
  font-size: 0.975rem;
  color: var(--text);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  -webkit-appearance: none;
}
input:focus, textarea:focus, select:focus {
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(102,51,51,0.1);
}
input::placeholder, textarea::placeholder { color: var(--gray); }
textarea { resize: vertical; min-height: 120px; }
.form-hint { font-size: 0.78rem; color: var(--gray-dark); margin-top: 0.3rem; }

/* Honeypot - hidden from humans */
.hp-field { display: none !important; }

.checkbox-row {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-top: 1.25rem;
}
.checkbox-row input[type="checkbox"] {
  width: 18px; height: 18px;
  min-width: 18px;
  margin-top: 3px;
  accent-color: var(--brand);
  cursor: pointer;
  border: none;
  padding: 0;
  box-shadow: none;
}
.checkbox-row input[type="checkbox"]:focus { box-shadow: none; }
.checkbox-row label {
  text-transform: none;
  letter-spacing: 0;
  font-family: var(--font-b);
  font-size: 0.9rem;
  color: var(--text);
  cursor: pointer;
  font-weight: 400;
}
.checkbox-row label a { color: var(--brand); text-decoration: underline; }

.form-submit { margin-top: 1.5rem; }

.form-feedback {
  display: none;
  padding: 0.9rem 1.125rem;
  border-radius: var(--radius);
  margin-top: 1rem;
  font-size: 0.95rem;
  font-weight: 600;
}
.form-feedback.success { display: block; background: #d4edda; color: #155724; border: 1px solid #c3e6cb; }
.form-feedback.error   { display: block; background: #f8d7da; color: #721c24; border: 1px solid #f5c6cb; }

/* === MAP === */
.map-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid rgba(0,0,0,0.06);
}
.map-wrap iframe { width: 100%; height: 360px; border: none; display: block; }

/* === TERMIN PAGE === */
.termin-wrapper {
  background: var(--gray-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.06);
  min-height: 1600px;
}
.termin-wrapper iframe { width: 100%; height: 1600px; border: none; display: block; }
.termin-placeholder {
  min-height: 680px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  color: var(--gray-dark);
  text-align: center;
  padding: 2rem;
}
.termin-placeholder svg { width: 48px; height: 48px; color: var(--gray); }
.termin-placeholder h3 { font-size: 1.2rem; color: var(--text); }
.termin-placeholder p { font-size: 0.9rem; max-width: 400px; }

/* === PAGE HERO (Subpages) === */
.page-hero {
  background: linear-gradient(150deg, var(--dark) 0%, #260c0c 100%);
  padding: 5.5rem 0 3.25rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(102,51,51,0.35) 0%, transparent 68%);
}
.page-hero__inner { position: relative; z-index: 1; }
.page-hero__label {
  font-family: var(--font-h);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--creme);
  opacity: 0.65;
  margin-bottom: 0.5rem;
}
.page-hero__title { font-size: clamp(1.9rem, 4vw, 3rem); color: var(--white); }
.page-hero__sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.6);
  margin-top: 0.625rem;
}

/* === IMPRESSUM === */
.impressum-body { max-width: 780px; }
.impressum-body h2 { font-size: 1.3rem; color: var(--brand); margin: 2.25rem 0 0.6rem; }
.impressum-body h2:first-child { margin-top: 0; }
.impressum-body p, .impressum-body address { line-height: 1.8; color: var(--gray-dark); margin-bottom: 0.5rem; }
.impressum-body a { color: var(--brand); }
.impressum-body a:hover { text-decoration: underline; }

/* === FOOTER === */
.footer { background: var(--dark); color: rgba(255,255,255,0.65); padding: 3.5rem 0 1.5rem; }
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 2.75rem;
}
.footer__brand { max-width: 320px; }
.footer__logo { height: 56px; width: auto; border-radius: 6px; opacity: 0.9; margin-bottom: 1rem; }
.footer__tagline { font-size: 0.9rem; line-height: 1.75; margin-bottom: 1.25rem; }
.footer__social { display: flex; gap: 0.625rem; }
.footer__social a {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.09);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  transition: background var(--transition);
}
.footer__social a:hover { background: var(--brand); }
.footer__social svg { width: 17px; height: 17px; }

.footer__col-title {
  font-family: var(--font-h);
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 1rem;
}
.footer__links { display: flex; flex-direction: column; gap: 0.45rem; }
.footer__links a { font-size: 0.9rem; transition: color var(--transition); }
.footer__links a:hover { color: var(--white); }

.footer__contact-list { display: flex; flex-direction: column; gap: 0.6rem; }
.footer__contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.88rem;
  line-height: 1.5;
}
.footer__contact-item svg { width: 15px; height: 15px; min-width: 15px; margin-top: 3px; color: var(--brand-light); }
.footer__contact-item a { transition: color var(--transition); }
.footer__contact-item a:hover { color: var(--white); }

.footer__divider { border: none; border-top: 1px solid rgba(255,255,255,0.07); margin-bottom: 1.5rem; }
.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: 0.82rem;
}
.footer__bottom a { transition: color var(--transition); }
.footer__bottom a:hover { color: var(--white); }

/* === WHATSAPP FLOAT === */
.wa-float {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 500;
  width: 54px; height: 54px;
  background: #25d366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 18px rgba(37,211,102,0.42);
  transition: all var(--transition);
}
.wa-float:hover { transform: scale(1.08); box-shadow: 0 6px 26px rgba(37,211,102,0.55); }
.wa-float svg { width: 27px; height: 27px; }

/* === DIVIDER ACCENT === */
.accent-line {
  display: block;
  width: 48px;
  height: 4px;
  background: var(--brand);
  border-radius: 2px;
  margin: 1rem 0 2rem;
}

/* === PARTNER & MITGLIEDSCHAFTEN === */
.partner-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.partner-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.07);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  text-decoration: none;
  color: inherit;
}
.partner-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: rgba(102,51,51,0.2);
}
.partner-card__badge {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  font-family: var(--font-h);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.2rem 0.55rem;
  border-radius: 4px;
  background: var(--brand);
  color: var(--white);
}
.partner-card__badge--partner {
  background: var(--dark-2);
}
.partner-card__logo {
  position: relative;
  height: 130px;
  background: var(--white);
  border-bottom: 1px solid rgba(0,0,0,0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem 2rem;
}
.partner-card__logo img {
  max-height: 80px;
  max-width: 100%;
  width: auto;
  object-fit: contain;
  filter: grayscale(20%);
  transition: filter var(--transition);
}
.partner-card:hover .partner-card__logo img { filter: grayscale(0%); }
.partner-card__logo-fallback {
  font-family: var(--font-h);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--brand);
  text-align: center;
  line-height: 1.3;
  align-items: center;
  justify-content: center;
}
.partner-card__body {
  padding: 1.25rem 1.5rem 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.partner-card__name {
  font-family: var(--font-h);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text);
}
.partner-card__desc {
  font-size: 0.88rem;
  color: var(--gray-dark);
  line-height: 1.65;
  flex: 1;
}
.partner-card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-family: var(--font-h);
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--brand);
  margin-top: 0.25rem;
  transition: gap var(--transition);
}
.partner-card__link svg { width: 13px; height: 13px; }
.partner-card:hover .partner-card__link { gap: 0.5rem; }

/* === GOOGLE MAPS CONSENT OVERLAY === */
.map-consent {
  background: var(--creme-dark);
  display: flex;
  align-items: center;
  justify-content: center;
}
.map-consent__overlay {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.75rem;
  padding: 2.5rem 2rem;
  max-width: 480px;
}
.map-consent__overlay svg {
  width: 48px;
  height: 48px;
  color: var(--brand);
  opacity: 0.6;
}
.map-consent__overlay p {
  font-size: 0.9rem;
  color: var(--gray-dark);
  line-height: 1.65;
  margin: 0;
}
.map-consent__overlay .btn { margin-top: 0.5rem; }

/* === ÜBER UNS === */
.ueber-uns__intro {
  display: block;
  max-width: 720px;
}
.ueber-uns__photo-wrap {
  position: relative;
}
.ueber-uns__photo-placeholder {
  width: 100%;
  aspect-ratio: 3/4;
  background: var(--creme-dark);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  color: var(--gray-dark);
  font-size: 0.875rem;
  font-family: var(--font-h);
  letter-spacing: 0.05em;
}
.ueber-uns__photo-placeholder svg {
  width: 64px;
  height: 64px;
  opacity: 0.35;
}

/* Team */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 2.5rem;
}
.team-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  transition: transform var(--transition), box-shadow var(--transition);
}
.team-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 28px rgba(0,0,0,0.1);
}
.team-card__photo {
  width: 100%;
  aspect-ratio: 1/1;
  background: var(--creme-dark);
  display: flex;
  align-items: center;
  justify-content: center;
}
.team-card__photo svg {
  width: 72px;
  height: 72px;
  opacity: 0.3;
  color: var(--brand);
}
.team-card__body {
  padding: 1.25rem 1.5rem 1.5rem;
  text-align: center;
}
.team-card__name {
  font-family: var(--font-h);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.3rem;
}
.team-card__role {
  font-size: 0.875rem;
  color: var(--brand);
  font-family: var(--font-h);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* Zertifikate */
.cert-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.5rem;
}
.cert-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  text-align: center;
  border: none;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition);
}
.cert-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 28px rgba(0,0,0,0.1);
}
.cert-card__img-wrap {
  width: 100%;
  aspect-ratio: 3/4;
  overflow: hidden;
  background: var(--creme-dark);
}
.cert-card__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  display: block;
}
.cert-card__body {
  padding: 1rem 1.25rem 1.25rem;
}
.cert-card__title {
  font-family: var(--font-h);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text);
}

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(0,0,0,0.85);
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}
.lightbox.open {
  display: flex;
}
.lightbox__inner {
  position: relative;
  max-width: 720px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
.lightbox__inner img {
  width: 100%;
  max-height: 85vh;
  object-fit: contain;
  border-radius: var(--radius-lg);
  box-shadow: 0 16px 48px rgba(0,0,0,0.5);
}
.lightbox__caption {
  color: #fff;
  font-family: var(--font-h);
  font-size: 1rem;
  letter-spacing: 0.04em;
}
.lightbox__close {
  position: absolute;
  top: -1rem;
  right: -1rem;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--brand);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.25rem;
  line-height: 1;
  transition: background var(--transition);
}
.lightbox__close:hover { background: var(--brand-dark, #4a2222); }

/* Ausbildung */
.ueber-uns__ausbildung {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 2.5rem;
  align-items: start;
}
.ueber-uns__ausbildung-icon {
  width: 80px;
  height: 80px;
  background: var(--brand);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.ueber-uns__ausbildung-icon svg {
  width: 40px;
  height: 40px;
  color: var(--white);
}

/* === RESPONSIVE === */
@media (max-width: 1024px) {
  .contact-teaser__grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .contact-page__grid   { grid-template-columns: 1fr; }
  .footer__grid         { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .footer__brand        { grid-column: 1 / -1; max-width: 100%; }
  .hero__photo-placeholder { display: none; }
  .cert-grid            { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 600px) {
  .cert-grid            { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .nav__links     { display: none; }
  .nav__hamburger { display: flex; }

  .section { padding: 3.5rem 0; }

  .usp-strip__grid  { grid-template-columns: 1fr; }
  .usp-item + .usp-item { border-left: none; padding-left: 0; border-top: 1px solid rgba(255,255,255,0.15); padding-top: 1rem; }

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

  .ueber-uns__ausbildung { grid-template-columns: 1fr; }
  .ueber-uns__ausbildung-icon { margin: 0 auto; }
  .form-row      { grid-template-columns: 1fr; }
  .footer__grid  { grid-template-columns: 1fr; gap: 2rem; }
  .footer__bottom { flex-direction: column; text-align: center; }

  .emergency__inner { flex-direction: column; text-align: center; }
  .emergency__actions { justify-content: center; }

  .hero__actions { flex-direction: column; align-items: flex-start; }
  .hero__actions .btn { width: 100%; }

  .contact-teaser__grid { gap: 2rem; }
}

/* === SPINNER (Kontaktformular Ladezustand) === */
@keyframes spin { to { transform: rotate(360deg); } }

@media (max-width: 480px) {
  .hero { min-height: 88vh; }
  .hero__title { font-size: 2.25rem; }
  .container { padding: 0 1.125rem; }
}
