:root {
  --bg: #f3f2ef;
  --surface: #ffffff;
  --surface-alt: #fcfbf9;
  --ink: #17191c;
  --ink-muted: #5e646c;
  --line: #ddd6cf;
  --brand: #1F4E78;
  --brand-dark: #163a59;
  --brand-soft: #e7eff7;
  --header: #111214;
  --shadow-soft: 0 10px 30px rgba(17, 18, 20, 0.08);
  --shadow-strong: 0 20px 50px rgba(17, 18, 20, 0.18);
  --radius: 16px;
}

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

html {
  scroll-behavior: smooth;
  margin: 0;
  padding: 0;
  background: #ffffff;
}

body {
  margin: 0;
  padding: 0;
  font-family: "Trebuchet MS", "Segoe UI", Tahoma, sans-serif;
  color: var(--ink);
  line-height: 1.65;
  background: #ffffff;
  overflow-x: hidden;
}

section[id],
h2[id],
div[id] {
  scroll-margin-top: 100px;
}

a {
  color: var(--brand);
}

a:hover {
  color: var(--brand-dark);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 900;
  background: var(--brand);
  border-bottom: 2px solid var(--brand-dark);
  backdrop-filter: blur(8px);
  left: 0;
  right: 0;
}

.site-header__inner {
  max-width: 1180px;
  margin: 0 auto;
  height: 92px;
  padding: 0 20px;
  display: flex;
  align-items: center;
  gap: 18px;
}

.site-brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}

.site-brand img {
  display: block;
  height: 72px;
  width: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 2px;
  width: 100%;
}

.site-nav a {
  color: rgba(255, 255, 255, 0.82);
  text-decoration: none;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.02em;
  padding: 12px 14px;
  border-radius: 7px;
  border: 1px solid transparent;
  transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease;
  white-space: nowrap;
}

.site-nav a:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.2);
}

.site-nav a.active {
  color: #fff;
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.3);
}

.site-nav__spacer {
  flex: 1;
}

.site-nav__cta {
  display: inline-flex !important;
  align-items: center;
  gap: 8px;
  background: #fff !important;
  color: var(--brand) !important;
  border-color: transparent !important;
  border-radius: 9px !important;
  padding: 12px 16px !important;
  font-weight: 700 !important;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.15);
}

.site-nav__cta:hover {
  background: var(--brand-soft) !important;
}




.site-nav__burger {
  display: none;
  background: none;
  border: 0;
  padding: 7px;
  margin-left: auto;
  cursor: pointer;
  flex-shrink: 0;
  z-index: 810;
}

.site-nav__burger span {
  display: block;
  width: 24px;
  height: 2px;
  margin: 5px 0;
  border-radius: 99px;
  background: #fff;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.site-nav__burger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.site-nav__burger.open span:nth-child(2) {
  opacity: 0;
}

.site-nav__burger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.site-hero-wrap {
  max-width: 1180px;
  width: 100%;
  margin: 0 auto;
  overflow: hidden;
}

.site-hero {
  --hero-parallax: 0px;
  position: relative;
  min-height: 54vh;
  display: flex;
  align-items: center;
  padding: clamp(20px, 4vw, 40px) clamp(24px, 5vw, 72px);
  background: #2b3238;
  isolation: isolate;
  overflow: hidden;
}

.site-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: url('../images/fotos/zelt-innen.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: right calc(100% + var(--hero-parallax));
  transition: background-position 0.08s linear;
  filter: brightness(1.03) saturate(1.02);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

@media (max-width: 900px) {
  .site-hero__bg {
    background-size: cover;
    background-position: right calc(100% + var(--hero-parallax));
  }
}

.site-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.88) 0%, rgba(255, 255, 255, 0.74) 34%, rgba(255, 255, 255, 0.46) 56%, rgba(255, 255, 255, 0.16) 74%, rgba(255, 255, 255, 0) 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.04) 38%, rgba(17, 18, 20, 0.08) 100%);
}

.site-hero__inner {
  position: relative;
  z-index: 2;
  max-width: 670px;
}

.site-hero__logo {
  display: block;
  width: clamp(132px, 14vw, 210px);
  max-height: 138px;
  height: auto;
  margin: 0 0 8px;
  object-fit: contain;
  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.24));
}

 .site-hero__headline {
  margin: 0 0 10px;
  color: #111111 !important;
  font-size: clamp(24px, 4.6vw, 52px);
  line-height: 0.95;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  border: 0;
  padding: 0;
  text-shadow: 0 2px 8px rgba(255, 255, 255, 0.35);
}

.site-hero__headline-main {
  color: #111111 !important;
}

.site-hero__headline > span:not(.site-hero__headline-main) {
  color: #1F4E78;
}


.site-hero__sub {
  color: #2f363f;
  font-size: clamp(15px, 1.7vw, 16px);
  max-width: 620px;
  margin-bottom: 18px;
  text-shadow: 0 1px 2px rgba(255, 255, 255, 0.35);
}

.site-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.site-hero__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 10px;
  text-decoration: none !important;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  font-weight: 700;
  font-size: 14px;
  line-height: 1.15;
  padding: 12px 18px;
  border: 2px solid transparent;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.site-hero__btn--primary {
  background: #1F4E78;
  border-color: #1F4E78;
  color: #ffffff !important;
}

.site-hero__btn--primary:hover {
  background: #163a59;
  border-color: #163a59;
  transform: translateY(-2px);
}

.site-hero__btn--outline {
  border-color: rgba(34, 42, 51, 0.5);
  color: #1f2730 !important;
  background: rgba(255, 255, 255, 0.9);
}

.site-hero__btn--outline:hover {
  border-color: rgba(34, 42, 51, 0.85);
  background: #ffffff;
  transform: translateY(-2px);
}

.site-usp-bar {
  display: flex;
  align-items: stretch;
  justify-content: center;
  flex-wrap: nowrap;
  overflow: hidden;
  background: var(--brand);
  border-top: 1px solid rgba(255, 255, 255, 0.22);
}

.site-usp-bar::-webkit-scrollbar {
  display: none;
}

.site-usp-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  color: rgba(255, 255, 255, 0.92);
  padding: 12px clamp(8px, 1.6vw, 18px);
  flex: 1 1 0;
  min-width: 0;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.site-usp-item:last-child {
  border-right: 0;
}

.site-usp-item span {
  font-size: clamp(10px, 1vw, 12px);
  letter-spacing: 0.03em;
  text-transform: uppercase;
  font-weight: 700;
  white-space: nowrap;
}

main {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0;
}

main > section {
  position: relative;
  z-index: 0;
  padding: clamp(24px, 4vw, 38px) 20px;
  background: #f4f2ef;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

main > section::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 100vw;
  transform: translateX(-50%);
  z-index: -1;
  background: #f4f2ef;
}

main > section + section {
  margin-top: 0;
}

.section-alt,
.section-alt::before {
  background: #ffffff !important;
}

h2 {
  margin: 0 0 14px;
  font-size: clamp(24px, 3vw, 34px);
  letter-spacing: 0.01em;
  line-height: 1.2;
  border-bottom: 2px solid var(--line);
  padding-bottom: 8px;
}

h3 {
  margin: 18px 0 8px;
  font-size: 20px;
  line-height: 1.35;
}

p {
  margin: 0 0 14px;
  color: var(--ink-muted);
}

ul {
  margin: 0 0 14px;
  padding-left: 22px;
}

li {
  margin-bottom: 6px;
}

.section-sub {
  margin-top: -4px;
  margin-bottom: 20px;
  color: #6f7680;
}

#geruest ul {
  list-style: none;
  padding-left: 0;
}

#geruest ul li {
  position: relative;
  padding-left: 26px;
  margin-bottom: 10px;
}

#geruest ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--brand);
  box-shadow: 0 0 0 4px rgba(31, 78, 120, 0.16);
}

.content-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
  margin: 1.75rem 0 1.25rem;
}


.content-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  padding: 9px 13px;
  border-radius: 10px;
  border: 1px solid rgba(31, 78, 120, 0.25);
  background: var(--brand-soft);
  color: #163a59 !important;
  font-weight: 700;
  font-size: 14px;
}

.content-link:hover {
  background: #d7e3ef;
}

#yt-container {
  width: 100%;
  min-height: 240px;
  aspect-ratio: 16 / 9;
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  background: #e8e4de;
  border: 1px solid var(--line);
}

#map-container {
  width: 100%;
  height: 420px;
  position: relative;
}

#map-consent {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: #ede9e4;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 20px;
}

#map-consent svg {
  width: 58px;
  height: 58px;
  fill: #646c77;
}

#map {
  width: 100%;
  height: 100%;
  display: none;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--line);
}

.media-consent-btn {
  margin-top: 10px;
  padding: 10px 18px;
  border: 0;
  border-radius: 10px;
  background: var(--brand);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.media-consent-btn:hover {
  background: var(--brand-dark);
  transform: translateY(-1px);
}

.preis-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.preis-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 24px 20px;
  box-shadow: 0 8px 24px rgba(17, 18, 20, 0.06);
  text-align: center;
  position: relative;
}

.preis-card.featured {
  border: 2px solid var(--brand);
}

.featured-tag {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--brand);
  color: #fff;
  border-radius: 999px;
  padding: 4px 12px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.preis-dauer {
  font-size: 13px;
  color: #7a8088;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 700;
  margin-bottom: 8px;
}

.preis-betrag {
  color: #121417;
  font-size: clamp(36px, 5vw, 48px);
  line-height: 1;
  font-weight: 800;
  margin-bottom: 6px;
}

.preis-euro {
  font-size: 22px;
}

.preis-einheit {
  font-size: 14px;
  color: #757d87;
  margin-bottom: 14px;
}

.preis-features {
  list-style: none;
  text-align: left;
  padding-left: 0;
  margin: 0;
}

.preis-features li {
  position: relative;
  padding-left: 20px;
  color: #4d545d;
  font-size: 14px;
  margin-bottom: 8px;
}

.preis-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--brand);
  font-weight: 700;
}

.preis-note {
  margin-top: 20px;
  color: #737b84;
  font-size: 14px;
}

/* Pflichtkennzeichnung der Amazon-Partnerlinks: muss lesbar bleiben, soll aber optisch hinter den
   Mietkonditionen zurücktreten. */
.affiliate-note {
  margin-top: 10px;
  font-size: 12.5px;
  line-height: 1.55;
}

details {
  border: 1px solid #e8e1d8;
  border-radius: 12px;
  padding: 0 14px;
  margin-bottom: 10px;
  background: #fff;
}

summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  color: #22262b;
  padding: 14px 0;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  content: "+";
  margin-left: auto;
  font-size: 23px;
  line-height: 1;
  color: var(--brand);
  transition: transform 0.2s ease;
}

details[open] summary::after {
  transform: rotate(45deg);
}

details p {
  color: #525962;
  margin: 0 0 14px;
}

.kontakt-box {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: linear-gradient(180deg, #fff 0%, #fbfaf8 100%);
  padding: clamp(18px, 3.5vw, 28px);
}

.form-alert {
  border-radius: 12px;
  padding: 12px 14px;
  margin-bottom: 16px;
  font-size: 14px;
}

.form-alert ul {
  margin: 8px 0 0;
}

.form-alert--error {
  border: 1px solid #f1b1b1;
  background: #fff0f0;
  color: #832222;
}

.form-alert--success {
  border: 1px solid #a7d7b1;
  background: #edf8ef;
  color: #205b2d;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 18px;
}

.form-field--full {
  grid-column: 1 / -1;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.form-field[hidden] {
  display: none;
}

.form-field label {
  font-size: 13px;
  font-weight: 700;
  color: #2b3036;
  margin: 0;
}

.required {
  color: var(--brand);
}

.optional {
  font-weight: 500;
  color: #8d949d;
}

.form-field input,
.form-field textarea,
.form-field select {
  width: 100%;
  box-sizing: border-box;
  border: 1.5px solid #d6dce3;
  border-radius: 9px;
  padding: 10px 12px;
  font: inherit;
  line-height: 1.4;
  color: var(--ink);
  background: #fff;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-field input:not([type="checkbox"]):not([type="radio"]),
.form-field select {
  min-height: 48px;
}

.form-field select {
  -webkit-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23515861' stroke-width='2.5'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 34px;
}

.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
  outline: none;
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(31, 78, 120, 0.16);
}

.form-field input[type="date"] {
  max-width: 100%;
  box-sizing: border-box;
  /* iOS Safari rendert ausgefüllte Datumsfelder sonst mit eigenwilliger, größerer/zentrierter
     nativer Darstellung, die über die per CSS gesetzte Breite hinausragen kann. Mit appearance:none
     übernimmt unser eigenes Rahmen/Padding-Styling die Kontrolle über die Box – das Kalender-Icon
     (::-webkit-calendar-picker-indicator) bleibt davon unberührt und weiterhin klickbar. */
  -webkit-appearance: none;
  appearance: none;
  /* Hand-Cursor übers ganze Feld, nicht nur übers Kalender-Icon – das native Popup selbst
     (Tage-Grid) lässt sich per CSS nicht stylen, das übernimmt Browser/Betriebssystem. */
  cursor: pointer;
}

.form-field input[type="date"]::-webkit-calendar-picker-indicator {
  cursor: pointer;
}

/* Nur das Kalender-Icon im Feld größer (nicht der Text) – nur am Desktop, auf dem Handy
   verursacht die vergrößerte Darstellung Überbreite. */
@media (min-width: 761px) {
  .form-field input[type="date"]::-webkit-calendar-picker-indicator {
    padding: 7px;
    margin-left: 6px;
  }
}

.form-field textarea {
  resize: vertical;
  min-height: 100px;
}

.form-footer {
  grid-column: 1 / -1;
  display: flex;
  /* Mittig statt oben ausgerichtet: Die Zustimmung daneben bricht je nach Breite auf zwei
     Zeilen um - bei flex-start klebte der Knopf dann an der ersten Zeile statt auf Höhe
     des Textblocks zu sitzen. */
  align-items: center;
  justify-content: flex-end;
  gap: 14px;
  margin-top: 6px;
}

/* Handy: Zustimmung und Knopf untereinander, Knopf über die volle Breite. Nebeneinander
   bliebe für den Zustimmungstext eine zu schmale Spalte. */
@media (max-width: 560px) {
  .form-footer {
    flex-direction: column;
    align-items: stretch;
  }
  .form-footer .form-submit { width: 100%; }
}

.verfuegbarkeit-status {
  border-radius: 9px;
  padding: 10px 14px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.4;
}

.verfuegbarkeit-status--loading {
  background: #f1f3f5;
  color: #6b7280;
  font-weight: 500;
}

.verfuegbarkeit-status--frei {
  background: #e8f6ec;
  color: #1e7a3a;
  border: 1px solid #bfe6ca;
}

.verfuegbarkeit-status--belegt {
  background: #fdecec;
  color: #b63031;
  border: 1px solid #f3c6c6;
}

.verfuegbarkeit-headline {
  font-size: 15px;
}

.verfuegbarkeit-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 12px;
  font-weight: 500;
}

.verfuegbarkeit-table td {
  padding: 6px 0;
  border-top: 1px solid rgba(30, 122, 58, 0.15);
}

.verfuegbarkeit-table tr:first-child td {
  border-top: none;
}

.verfuegbarkeit-row__label {
  display: flex;
  align-items: center;
  gap: 8px;
}

.verfuegbarkeit-row__label svg {
  flex-shrink: 0;
  opacity: 0.75;
}

.verfuegbarkeit-row__value {
  text-align: right;
  white-space: nowrap;
  padding-left: 12px;
}

@media (max-width: 480px) {
  .verfuegbarkeit-row__label {
    font-size: 13px;
  }

  .verfuegbarkeit-row__value {
    font-size: 13px;
  }
}

.verfuegbarkeit-row--total td {
  border-top: none;
  box-shadow: inset 0 1.5px 0 rgba(30, 122, 58, 0.5);
  padding-top: 8px;
  font-weight: 700;
  font-size: 15px;
}

.verfuegbarkeit-row--subtle td {
  color: #6b9b7a;
  font-size: 12px;
  font-weight: 400;
  padding-top: 2px;
  padding-bottom: 8px;
}


.form-datenschutz {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  flex: 1;
  font-size: 13px;
  color: #515861;
}

.form-datenschutz input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--brand);
  flex-shrink: 0;
}

.form-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 0;
  border-radius: 10px;
  background: var(--brand);
  color: #fff;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  padding: 12px 20px;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
  flex-shrink: 0;
}

.form-submit:hover {
  background: var(--brand-dark);
  transform: translateY(-1px);
}

.site-footer {
  background: #ffffff;
  border-top: 2px solid var(--brand);
  color: var(--ink-muted);
}

.site-footer__inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 34px 20px 26px;
  display: grid;
  grid-template-columns: 1fr 1.45fr 1fr;
  gap: 22px;
  align-items: center;
}

.site-footer__brand img {
  width: auto;
  height: 88px;
  display: block;
}

.site-footer__contact {
  text-align: left;
}

.site-footer__contact > span {
  display: block;
  font-size: 16px;
  margin-bottom: 10px;
}

/* Zwei feste Spalten statt umbrechender Pillen – gleiche Darstellung wie im Footer des
   Gerüstverleihs. grid-auto-flow: column füllt erst die beiden Zeilen der linken Spalte, dann die
   rechte; die HTML-Reihenfolge ist deshalb "Zelt mieten", E-Mail, WhatsApp, Telefon und ergibt:

     Spalte 1: [Zelt mieten]  ->  [info@famwulf-zeuthen.de]
     Spalte 2: [WhatsApp]     ->  [0176 / 254 34 245]

   Jede Spalte paart also den Button mit dem Kanal, über den er läuft: schriftlich links,
   telefonisch/mobil rechts. Wer hier umsortiert, muss das Spaltenraster mitdenken. */
.cta-kontakt {
  display: grid;
  grid-auto-flow: column;
  /* Feste, gleich hohe Zeilen: sonst zieht der höhere CTA-Button die zweite Zeile auf und
     E-Mail/Telefon stehen weiter auseinander als WhatsApp/Button – der Block wirkt schief. */
  grid-template-rows: repeat(2, 42px);
  /* Feste 230px-Spalten statt 1fr/max-content: alle vier Chips sind dadurch gleich breit –
     230px reicht für den längsten Inhalt (die E-Mail-Adresse), ohne dass er umbricht. */
  grid-template-columns: repeat(2, 230px);
  align-items: center;
  column-gap: 24px;
  row-gap: 14px;
}

/* Alle vier Kontakt-Chips (Buttons wie Text-Links) tragen denselben Rahmen, dieselbe Höhe und
   denselben Radius, damit E-Mail und Telefon nicht wie schmucklose Links neben den farbigen
   Buttons stehen, sondern als gleichwertige Chips in derselben Reihe wirken. Die beiden CTA-Chips
   (.kontakt-chip--primary/--wa) überschreiben Rahmenfarbe und Hintergrund weiter unten. */
.kontakt-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none;
  color: var(--ink);
  background: var(--surface);
  font-size: 14px;
  white-space: nowrap;
  height: 38px;
  padding: 0 16px;
  box-sizing: border-box;
  border: 1.5px solid #d6dce3;
  border-radius: 8px;
  width: 100%;
  justify-self: stretch;
  transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

/* In den Kontaktzeilen (E-Mail, Telefon) trägt nur das Icon die Markenfarbe, der Text bleibt
   neutral – die beiden Buttons überschreiben das weiter unten mit Weiß. */
.kontakt-chip svg {
  color: var(--brand);
  flex-shrink: 0;
}

a.kontakt-chip:hover {
  color: var(--brand-dark);
  border-color: var(--brand);
}

.site-footer__links {
  justify-self: end;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}

.footer-promo-eyebrow {
  max-width: 1180px;
  margin: 0 auto;
  padding: 28px 20px 10px;
  margin-top: 12px;
  border-top: 1px solid var(--line);
  font-size: 10.5px;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--ink-muted);
  font-weight: 600;
}

.footer-promo-wrap {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px 20px;
}

.footer-promo-wrap--row {
  display: flex;
  gap: 16px;
}

.footer-promo-wrap--row .footer-promo {
  flex: 1;
}

.footer-promo {
  display: flex;
  align-items: center;
  gap: 16px;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 14px 16px;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.footer-promo:hover {
  border-color: var(--brand);
  background: var(--brand-soft);
}

.footer-promo img {
  height: 40px;
  width: auto;
  flex-shrink: 0;
}

.footer-promo__text {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.footer-promo__eyebrow {
  font-size: 10.5px;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--ink-muted);
}

.footer-promo__title {
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
}

.footer-promo__cta {
  flex-shrink: 0;
  font-size: 13px;
  font-weight: 600;
  color: var(--brand-dark);
  white-space: nowrap;
}

@media (max-width: 640px) {
  .footer-promo {
    flex-wrap: wrap;
  }

  .footer-promo-wrap--row {
    flex-direction: column;
  }
}

.site-footer__links a {
  color: var(--ink-muted);
  text-decoration: none;
  font-size: 14px;
  padding: 2px 0;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease, color 0.2s ease;
}

.site-footer__links a:hover {
  color: var(--brand);
  border-color: var(--brand);
}

.site-footer__copy {
  text-align: center;
  font-size: 12px;
  color: var(--ink-muted);
  padding: 12px 20px;
  border-top: 1px solid var(--line);
}

.site-footer__copy a {
	color: var(--ink-muted);
}

/* ──────────────────────────────────────────────────────
   iPad / Tablet (768px – 1024px)
   Gezielt für iPad Mini, iPad Air, iPad Pro 11"
   ────────────────────────────────────────────────────── */
@media (min-width: 768px) and (max-width: 1024px) {

  /* Header: etwas kompakter, Navigation bleibt sichtbar */
  .site-header__inner {
    height: 68px;
    padding: 0 16px;
    gap: 10px;
  }

  .site-brand img {
    height: 48px;
  }

  /* Nav-Links enger setzen damit alles passt */
  .site-nav {
    gap: 1px;
  }

  .site-nav a {
    font-size: 12px;
    padding: 7px 7px;
    letter-spacing: 0;
  }

  .site-nav__cta {
    font-size: 12px !important;
    padding: 9px 10px !important;
    gap: 5px !important;
  }

  .site-nav__cta svg {
    display: none;
  }

  /* Hero: angepasste Proportionen für Tablet */
  .site-hero {
    min-height: 50vh;
    padding: clamp(22px, 3.5vw, 38px) clamp(22px, 4vw, 48px);
  }

  .site-hero__inner {
    max-width: 60%;
  }

  .site-hero__headline {
    font-size: clamp(28px, 4.8vw, 52px) !important;
  }

  .site-hero__sub {
    font-size: clamp(15px, 1.8vw, 17px);
  }

  /* USP-Bar: alle Items in einer Zeile, kleiner */
  .site-usp-item span {
    font-size: 10px;
  }

  .site-usp-item {
    padding: 10px clamp(6px, 1.2vw, 14px);
  }

  /* Preise: 2 Spalten auf iPad */
  .preis-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }

  /* Kontaktformular: 2 Spalten bleiben, aber etwas mehr Luft */
  .form-grid {
    gap: 12px 16px;
  }

  /* Karte etwas kleiner */
  #map-container {
    height: 380px;
  }

  /* Footer: 2 Spalten statt 3 auf schmalem Tablet */
  .site-footer__inner {
    grid-template-columns: 1fr 1fr;
    gap: 18px 24px;
  }

  .site-footer__brand {
    grid-column: 1 / -1;
    display: flex;
    justify-content: center;
    align-items: center;
    justify-content: center;
  }

  .site-footer__contact {
    text-align: left;
  }

  .site-footer__links {
    justify-self: start;
  }

  /* Scroll-Margin für fixierten Header anpassen */
  section[id],
  h2[id],
  div[id] {
    scroll-margin-top: 88px;
  }
}

/* iPad im Querformat (Landscape): Navigation vollständig einblenden */
@media (min-width: 900px) and (max-width: 1024px) and (orientation: landscape) {
  .site-nav__burger {
    display: none !important;
  }

  .site-nav {
    display: flex !important;
  }
}

/* iPad Mini / kleines Tablet Hochformat: Burger-Menü einschalten */
@media (min-width: 768px) and (max-width: 860px) and (orientation: portrait) {
  .site-nav__burger {
    display: block;
  }

  .site-nav {
    display: none;
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    background: #131519;
    border-bottom: 2px solid var(--brand);
    padding: 12px 16px 16px;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    box-shadow: var(--shadow-strong);
  }

  .site-nav--open {
    display: flex;
  }

  .site-nav a {
    font-size: 15px;
    padding: 10px 12px;
  }

  .site-nav__spacer {
    display: none;
  }

  .site-nav__cta {
    margin-top: 8px;
    font-size: 14px !important;
    padding: 11px 14px !important;
  }

  .site-nav__cta svg {
    display: block;
  }
}

@media (max-width: 980px) {
  .site-brand img {
    height: 52px;
  }

  .site-nav a {
    padding: 8px;
    font-size: 13px;
  }

  .preis-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

}

@media (max-width: 860px) {
  .site-brand--header img {
    height: 46px;
  }



  .site-nav__burger {
    display: block;
  }

  .site-nav {
    display: none;
    position: absolute;
    top: 76px;
    left: 0;
    right: 0;
    background: #131519;
    border-bottom: 2px solid var(--brand);
    padding: 12px 16px 16px;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    box-shadow: var(--shadow-strong);
  }

  .site-nav--open {
    display: flex;
  }

  .site-nav a {
    font-size: 15px;
  }

  .site-nav__spacer {
    display: none;
  }

  .site-nav__cta {
    margin-top: 8px;
  }
}

@media (max-width: 760px) {
  .site-hero {
    min-height: 46vh;
  }

  .site-hero__actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .site-hero__btn {
    width: 100%;
    padding: 10px 12px;
    font-size: 12px;
  }

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

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

  .form-footer {
    flex-direction: column;
    align-items: stretch;
  }

  .form-submit {
    width: 100%;
  }

  #map-container {
    height: 360px;
  }

}
@media (max-width: 640px) {
  main {
    padding: 14px 0 42px;
  }

  .site-hero-wrap {
    max-width: 1180px;
    margin: 0;
    padding: 0;
    border-radius: 0;
  }

  .site-hero {
    min-height: 42vh;
    padding: 16px 18px 14px;
  }

  .site-hero__headline {
    text-shadow:
      0 0 12px rgba(255,255,255,0.95),
      0 0 24px rgba(255,255,255,0.85),
      0 2px 6px rgba(255,255,255,0.90);
  }

  .site-hero__sub {
    color: #1a1f26;
    font-weight: 600;
    text-shadow:
      0 0 10px rgba(255,255,255,1),
      0 0 20px rgba(255,255,255,0.95),
      0 1px 4px rgba(255,255,255,1);
  }

  .site-hero__logo {
    width: clamp(108px, 32vw, 148px);
    max-height: 98px;
    margin-bottom: 6px;
  }

  .site-usp-bar {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: stretch;
    justify-items: stretch;
  }

  .site-usp-item {
    width: 100%;
    padding: 10px 9px;
    gap: 6px;
    border-right: 1px solid rgba(255, 255, 255, 0.14);
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  }

  .site-usp-item:nth-child(2n) {
    border-right: 0;
  }

  .site-usp-item:nth-last-child(-n + 2) {
    border-bottom: 0;
  }

  .site-usp-item span {
    font-size: 10px;
  }

  .site-footer__inner {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .site-footer__contact {
    text-align: center;
  }

  /* Auf dem Handy ist für zwei Spalten kein Platz – alle vier Einträge untereinander.
     grid-template-rows muss zurückgesetzt werden, sonst landen Eintrag 3 und 4 in impliziten
     Zeilen und stehen enger als die ersten beiden. */
  .cta-kontakt {
    grid-auto-flow: row;
    grid-template-columns: 1fr;
    grid-template-rows: none;
    grid-auto-rows: 42px;
    row-gap: 10px;
    justify-content: center;
    justify-items: stretch;
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
  }

  .kontakt-chip {
    justify-self: stretch;
    width: 100%;
  }

  .site-footer__links {
    justify-self: center;
    align-items: center;
  }
}











/* â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€
   Design-Verbesserungen
   â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */

/* Hero-Headline: zweizeilig mit Gewichtskontrast */
.site-hero__headline {
  display: flex;
  flex-direction: column;
  gap: 0.05em;
}

.site-hero__headline-main {
  font-weight: 300;
  letter-spacing: 0.05em;
  opacity: 0.8;
}

.site-hero__headline-main--sub {
  font-size: 0.7em;
}

.site-hero__headline-accent {
  font-weight: 800;
  letter-spacing: -0.01em;
  color: #1F4E78;
}

/* Section-Titel: dezente Akzentlinie */
.section-title {
  position: relative;
  display: inline-block;
  padding-bottom: 0.45em;
  border-bottom: 0 !important; /* Ã¼berschreibt generischen h2-border */
}

.section-title::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 2.2rem;
  height: 3px;
  border-radius: 2px;
  background: var(--brand);
  opacity: 0.5;
}

/* FAQ: sanfter Einblend-Effekt */
details > p {
  animation: fadeSlideIn 0.18s ease;
}

@keyframes fadeSlideIn {
  from { opacity: 0; transform: translateY(-5px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Kontakt-Chip: etwas grÃ¶ÃŸerer Tap-Target auf Mobile */
.kontakt-chip {
  min-height: 2.2rem;
}

/* Preis-Card: leichter Hover-Lift */
.preis-card {
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.preis-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 34px rgba(17, 18, 20, 0.11);
}

/* Hero-Buttons: etwas stÃ¤rker abgerundet */
.site-hero__btn {
  border-radius: 12px;
}

/* Formular-Submit: aktiver State */
.form-submit:active {
  transform: translateY(0) scale(0.98);
}



/* Content-Links: kleiner Pfeil-Indikator */
.content-link::after {
  content: "\2197";
  font-size: 12px;
  color: currentColor;
  opacity: 0.8;
}



@media (max-width: 640px) {
  .site-hero {
    min-height: 54vh;
    padding: 20px 16px 18px;
  }

  .site-hero__inner {
    max-width: 100%;
  }

  .site-hero__headline {
    font-size: clamp(22px, 7.6vw, 32px) !important;
    line-height: 1.02;
    letter-spacing: 0;
    margin-bottom: 8px;
  }

  .site-hero__headline-accent {
    display: block;
    line-height: 1.02;
    overflow-wrap: anywhere;
  }
}




/* Hier stand der .legal-modal-Block: Impressum, Datenschutz und Cookie-Richtlinie oeffneten sich
   als Pop-up. Entfallen - die Texte liegen jetzt als eigene Seite in rechtliches.php und bringen
   ihre paar Zeilen Layout selbst mit. */


  .leistungen-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
  }

  @media (max-width: 860px) {
    .leistungen-grid {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }
  }

  @media (max-width: 560px) {
    .leistungen-grid {
      grid-template-columns: 1fr;
    }
  }

  .leistung-card {
    background: var(--surface-alt);
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 20px;
    transition: transform 0.2s, box-shadow 0.2s;
  }

  .leistung-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 32px rgba(0,0,0,0.08);
  }

  .leistung-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
  }

  .leistung-icon {
    width: 36px;
    height: 36px;
    flex-shrink: 0;
    background: var(--brand-soft);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .leistung-card h3 {
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.01em;
    color: var(--ink);
    margin: 0;
  }

  .leistung-card p {
    font-size: 14px;
    color: var(--ink-muted);
    line-height: 1.65;
    margin: 0;
  }
/* ── WhatsApp Hero-Button ── */
.site-hero__btn--whatsapp {
  background: #25d366;
  border-color: #25d366;
  color: #ffffff !important;
}

.site-hero__btn--whatsapp:hover {
  background: #1ebe5d;
  border-color: #1ebe5d;
  transform: translateY(-2px);
}

@media (max-width: 420px) {
  .site-hero__actions {
    grid-template-columns: 1fr 1fr;
  }
}

/* ── WhatsApp Footer-Chip (dezent, passend zu den anderen Chips) ── */
/* Die beiden CTA-Chips als vollflächige Buttons – wie im Footer des Gerüstverleihs. WhatsApp war
   hier vorher nur grüner Text auf hellem Grund und damit optisch ein Link, kein Button. */
.kontakt-chip--primary,
.kontakt-chip--wa {
  color: #fff !important;
  border-radius: 8px;
  border-color: transparent;
  /* Feste Höhe statt Padding: die Buttons müssen in die 42px-Rasterzeile passen, sonst sprengen
     sie sie wieder auf. */
  height: 38px;
  padding: 0 18px;
  gap: 8px;
  justify-self: stretch;
  transition: background 0.2s ease;
}

.kontakt-chip--primary svg,
.kontakt-chip--wa svg {
  color: #fff;
}

.kontakt-chip--primary {
  background: var(--brand);
}

.kontakt-chip--primary:hover {
  background: var(--brand-dark);
  color: #fff !important;
}

/* Gleiches Grün wie der WhatsApp-Button im Hero (.site-hero__btn--whatsapp) – wird es dort
   geändert, muss es hier mitgezogen werden. */
.kontakt-chip--wa {
  background: #25d366;
}

.kontakt-chip--wa:hover {
  background: #1ebe5d;
  color: #fff !important;
}

.zubehoer-list {
  display: flex;
  flex-direction: column;
  margin-top: 1.5rem;
  border: 1px solid var(--line);
  border-radius: 10px;
  overflow: hidden;
}

.zubehoer-item {
  background: var(--surface);
  padding: 14px 18px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: baseline;
  column-gap: 18px;
}

.zubehoer-item:not(:last-child) {
  border-bottom: 1px solid var(--line);
}

.zubehoer-item:nth-child(even) {
  background: var(--surface-alt);
}

.zubehoer-name {
  grid-column: 1;
}

.zubehoer-beschr {
  grid-column: 1;
  margin-bottom: 0;
}

.zubehoer-tipp {
  grid-column: 1;
  margin-bottom: 8px;
  justify-self: start;
}

.zubehoer-preis {
  grid-column: 2;
  grid-row: 1 / span 2;
  align-self: center;
  white-space: nowrap;
}

/* Zeilen mit Einkaufshilfe haben eine dritte Zeile in Spalte 1 – der Preis muss mitspannen, sonst
   rutscht er nach oben. Kein "1 / -1", weil das Raster keine expliziten Zeilen definiert und der
   Span dann auf eine Zeile zusammenfällt. */
.zubehoer-item--tipp .zubehoer-preis {
  grid-row: 1 / span 3;
}

.zubehoer-name {
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 4px;
}

.zubehoer-beschr {
  font-size: 13px;
  color: var(--ink-muted);
  line-height: 1.5;
  margin-bottom: 8px;
}

.zubehoer-preis {
  font-weight: 700;
  color: var(--brand);
}

.zubehoer-preis span {
  font-weight: 400;
  color: var(--ink-muted);
  font-size: 12px;
}

/* Einkaufshilfe für Verbrauchsmaterial (Amazon-Partnerlink). Nutzt bewusst denselben .content-link-
   Chip wie der Aufbauanleitungs-Button, damit weiterführende Links auf der Seite einheitlich
   aussehen – hier nur etwas kompakter, weil mehrere davon in der Katalogliste stehen können. Das
   Sternchen daneben verweist auf die Kennzeichnung unter der Liste. */
.zubehoer-tipp {
  display: flex;
  align-items: center;
  gap: 5px;
}

.zubehoer-tipp .content-link {
  padding: 6px 11px;
  font-size: 13px;
}

.zubehoer-tipp-mark {
  font-size: 12px;
  color: var(--ink-muted);
}

@media (max-width: 700px) {
  .zubehoer-item {
    grid-template-columns: 1fr;
  }

  .zubehoer-preis {
    grid-column: 1;
    grid-row: auto;
    margin-top: 6px;
  }

  /* Muss explizit zurückgesetzt werden: der Modifier oben ist spezifischer als die Regel darüber
     und würde den Preis sonst auch einspaltig über die anderen Zeilen legen. */
  .zubehoer-item--tipp .zubehoer-preis {
    grid-row: auto;
  }
}

.zelt-photo-wrap {
  margin: 2rem 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.zelt-photo-wrap img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 480px;
  object-fit: cover;
}


/* ---------------------------------------------------------------------------
   Adressvervollstaendigung im Anfrageformular (index.php)
   Datenherkunft: adress-vorschlag.php
   --------------------------------------------------------------------------- */
.adr-wrap {
  position: relative;
}

.adr-vorschlaege {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  right: 0;
  /* Ueber den Feldern darunter, aber unter der Kopfleiste (z-index 900). */
  z-index: 400;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  box-shadow: 0 10px 28px rgba(17, 18, 20, 0.12);
  overflow: hidden;
}

.adr-vorschlag {
  display: block;
  width: 100%;
  text-align: left;
  font: inherit;
  font-size: 14px;
  padding: 10px 12px;
  border: 0;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
}

.adr-vorschlag + .adr-vorschlag {
  border-top: 1px solid #f0ebe5;
}

.adr-vorschlag:hover,
.adr-vorschlag--aktiv {
  background: var(--brand-soft);
  color: var(--brand-dark);
}

/* ---------------------------------------------------------------------------
   Abgesetzter Block im Anfrageformular (Abholung/Lieferung, index.php)
   Fasst Lieferart und die beiden Wunschzeiten sichtbar zu einer Einheit
   zusammen. Farben aus den vorhandenen Variablen, damit der Kasten zum
   restlichen Formular passt und nicht wie ein Fremdkoerper wirkt.
   --------------------------------------------------------------------------- */
.form-block {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 14px 16px;
  gap: 12px;
}

/* Lieferart, Abholung und Rückgabe in einer Zeile.
   Die Lieferart bekommt mehr Platz - "Lieferung zum Veranstaltungsort (25 € + 0,50 €/km)"
   ist deutlich länger als eine Uhrzeit und würde in einem Drittel abgeschnitten.
   align-items: end hält die Auswahlfelder auf einer Linie, auch wenn eine Beschriftung
   umbricht - sonst stünden sie versetzt. */
.form-block__row {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 12px;
  align-items: end;
}

/* Mittlere Breiten: Lieferart über die volle Breite, die beiden Zeiten darunter nebeneinander. */
@media (max-width: 760px) {
  .form-block__row { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .form-block__row > .form-field:first-child { grid-column: 1 / -1; }
}

/* Handy: alles untereinander. */
@media (max-width: 560px) {
  .form-block__row { grid-template-columns: 1fr; }
  .form-block__row > .form-field:first-child { grid-column: auto; }
}

.form-block__hinweis {
  font-size: 13px;
  color: var(--ink-muted);
}

/* Solange kein Zeitraum gewaehlt ist, stehen die Zeitfelder deaktiviert da statt zu
   fehlen - so springt beim Aufklappen nichts. Sie sollen dabei erkennbar inaktiv
   wirken, ohne dass der Kasten unfertig aussieht. */
.form-block select:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}
