/* ==============================================
   SB Verleih – Stylesheet
   Gold & Warm · Inter · Plain HTML
   ============================================== */

/* Inter – lokal gehostet, damit keine Daten an Google Fonts fließen.
   Variable Font: eine Datei deckt alle Schnitte 100–900 ab. */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url('fonts/inter-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;
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url('fonts/inter-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;
}

:root {
  --gold: #C49A38;
  --gold-dark: #A37E2B;
  --gold-bg: rgba(196, 154, 56, 0.12);
  --warm: #FAF9F7;
  --stone-900: #1c1917;
  --stone-800: #292524;
  --stone-700: #44403c;
  --stone-600: #57534e;
  --stone-500: #78716c;
  --stone-400: #a8a29e;
  --stone-300: #d6d3d1;
  --stone-200: #e7e5e3;
  --stone-100: #f5f5f4;
  --stone-50:  #fafaf9;
  --radius: 12px;
  --radius-lg: 18px;
  --shadow-sm: 0 1px 3px rgba(0,0,0,.07), 0 4px 12px rgba(0,0,0,.05);
  --shadow-md: 0 4px 20px rgba(0,0,0,.10);
  --shadow-lg: 0 12px 40px rgba(0,0,0,.15);
  --t: .2s ease;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
/* hidden muss auch bei Elementen greifen, die per Klasse ein display bekommen */
[hidden] { display: none !important; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: var(--stone-900);
  background: #fff;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  /* Notbremse: überlange Wörter brechen um, statt seitlich aus der Seite zu laufen */
  overflow-wrap: break-word;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

/* ── Layout ── */
.wrap { max-width: 1120px; margin: 0 auto; padding: 0 24px; }

/* ── Eyebrow label ── */
.eyebrow {
  display: inline-block;
  color: var(--gold);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
}

/* ── Buttons ── */
.btn-gold {
  display: inline-block;
  background: var(--gold);
  color: #fff;
  font-weight: 600;
  font-size: 15px;
  padding: 12px 28px;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: background var(--t);
  font-family: inherit;
}
.btn-gold:hover { background: var(--gold-dark); }

.btn-ghost {
  display: inline-block;
  background: transparent;
  color: #fff;
  font-weight: 600;
  font-size: 15px;
  padding: 12px 28px;
  border-radius: var(--radius);
  border: 2px solid #fff;
  cursor: pointer;
  transition: background var(--t), color var(--t);
}
.btn-ghost:hover { background: #fff; color: var(--stone-900); }

.btn-outline {
  display: inline-block;
  background: transparent;
  color: var(--stone-900);
  font-weight: 600;
  font-size: 15px;
  padding: 12px 28px;
  border-radius: var(--radius);
  border: 2px solid var(--stone-900);
  transition: background var(--t), color var(--t);
}
.btn-outline:hover { background: var(--stone-900); color: #fff; }

.btn-dark {
  display: inline-block;
  background: var(--stone-900);
  color: #fff;
  font-weight: 600;
  font-size: 15px;
  padding: 12px 28px;
  border-radius: var(--radius);
  transition: background var(--t);
}
.btn-dark:hover { background: var(--stone-800); }
.btn-full { width: 100%; text-align: center; }

/* ── NAV ── */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--stone-100);
  box-shadow: var(--shadow-sm);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}
.nav-logo { height: 56px; width: auto; }
.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links a {
  padding: 8px 14px;
  font-size: 15px;
  font-weight: 500;
  border-radius: 8px;
  color: var(--stone-600);
  transition: color var(--t), background var(--t);
}
.nav-links a:hover { color: var(--stone-900); background: var(--stone-50); }
.nav-links a.active { color: var(--gold); font-weight: 600; }
.nav-cta {
  display: inline-block;
  background: var(--gold);
  color: #fff;
  font-weight: 600;
  font-size: 15px;
  padding: 10px 20px;
  border-radius: var(--radius);
  transition: background var(--t);
}
.nav-cta:hover { background: var(--gold-dark); color: #fff; }

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  border: none;
  background: none;
  cursor: pointer;
  border-radius: 6px;
}
.burger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--stone-700);
  border-radius: 2px;
  transition: transform var(--t), opacity var(--t);
}
.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu { display: none; padding-bottom: 16px; }
.mobile-menu.open { display: block; }
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-top: 12px;
  border-top: 1px solid var(--stone-100);
}
.mobile-nav a {
  padding: 10px 12px;
  font-size: 14px;
  font-weight: 500;
  border-radius: 8px;
  color: var(--stone-700);
  transition: color var(--t), background var(--t);
}
.mobile-nav a:hover { background: var(--stone-50); }
.mobile-nav a.active { color: var(--gold); font-weight: 600; background: rgba(196,154,56,.08); }
.mobile-nav .btn-gold { margin-top: 8px; text-align: center; }

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to right,
    rgba(28,25,23,.86) 0%,
    rgba(28,25,23,.60) 50%,
    rgba(28,25,23,.20) 100%);
}
/* Nur vertikal – sonst würde die Kurzschreibweise das seitliche Padding von .wrap überschreiben */
.hero-content { position: relative; padding-top: 96px; padding-bottom: 96px; }
.hero-copy { max-width: 580px; }
.hero-label {
  display: inline-block;
  color: var(--gold);
  font-size: 12px; font-weight: 600;
  letter-spacing: .12em; text-transform: uppercase;
  margin-bottom: 16px;
}
.hero h1 {
  font-size: clamp(34px, 5vw, 60px);
  font-weight: 700;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 24px;
}
.hero h1 .accent { color: var(--gold); }
/* Nicht mitten im Wort trennen – der Bindestrich am Zeilenende sah unschön aus */
.hero h1 .h1-line { white-space: nowrap; }
.hero-desc {
  font-size: 18px;
  color: rgba(255,255,255,.85);
  line-height: 1.65;
  max-width: 520px;
  margin-bottom: 32px;
}
.btn-row { display: flex; gap: 16px; flex-wrap: wrap; }

/* ── PAGE HEADER ── */
.page-header {
  background: var(--warm);
  padding: 64px 0;
  border-bottom: 1px solid var(--stone-200);
}
.page-header .eyebrow { margin-bottom: 8px; }
.page-header h1 {
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 700;
  margin-bottom: 16px;
  line-height: 1.15;
}
.page-header p { color: var(--stone-500); font-size: 18px; max-width: 600px; }

/* ── SECTIONS ── */
section { padding: 80px 0; }
section.bg-warm { background: var(--warm); }
.section-head { text-align: center; margin-bottom: 56px; }
.section-head h2 {
  font-size: clamp(24px, 3.5vw, 36px);
  font-weight: 700;
  margin-top: 8px;
  line-height: 1.2;
}
.section-head p { color: var(--stone-500); margin-top: 8px; font-size: 16px; }

/* ── GRID ── */
.grid { display: grid; gap: 32px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

/* ── ICON CARDS (Für wen) ── */
.icon-cards { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 1fr; gap: 24px; }
.icon-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 20px;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--stone-100);
}
.icon-card svg { color: var(--gold); width: 32px; height: 32px; flex-shrink: 0; }
.icon-card span {
  font-size: 13px; font-weight: 500; color: var(--stone-700);
  text-align: center; text-wrap: balance;
  min-height: 2.8em; /* auch einzeilige Labels reservieren zwei Zeilen */
}

/* ── PRODUCT CARDS (Startseite) ── */
.product-card {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--stone-100);
  transition: box-shadow var(--t);
}
.product-card:hover { box-shadow: var(--shadow-md); }
.product-card-img { height: 220px; overflow: hidden; flex-shrink: 0; }
.product-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.product-card:hover .product-card-img img { transform: scale(1.05); }
.product-card { display: flex; flex-direction: column; }
.product-card-body { padding: 24px; display: flex; flex-direction: column; flex: 1; }
.product-card-body h3 { font-size: 20px; font-weight: 700; margin-bottom: 4px; min-height: 1.4em; }
.product-card-body .sub { font-size: 13px; color: var(--stone-500); margin-bottom: 12px; min-height: 2.6em; }
.product-card-body p { font-size: 14px; color: var(--stone-600); line-height: 1.6; margin-bottom: 20px; }
/* Preis + Link immer bündig am Kartenfuß, egal wie lang der Text ist */
.product-card-footer { display: flex; align-items: center; justify-content: space-between; margin-top: auto; }
.price-tag .price-pre { font-size: 13px; font-weight: 600; color: var(--stone-400); margin-right: 1px; }
.price-tag .amount { font-size: 24px; font-weight: 700; }
.price-tag .unit { font-size: 13px; color: var(--stone-400); }
.link-gold { color: var(--gold); font-weight: 600; font-size: 14px; transition: color var(--t); }
.link-gold:hover { color: var(--gold-dark); }

/* ── STEPS ── */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; }
.step { display: flex; flex-direction: column; align-items: center; text-align: center; }
.step-num {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--gold);
  color: #fff;
  font-weight: 700; font-size: 18px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
  box-shadow: var(--shadow-sm);
}
.step h3 { font-size: 16px; font-weight: 700; margin-bottom: 8px; min-height: 1.5em; }
.step p {
  font-size: 14px;
  color: var(--stone-500);
  line-height: 1.6;
  text-wrap: balance;
  min-height: 3.2em; /* 2 Zeilen – hält alle vier Schritte auf einer Höhe */
}

/* ── CHECKLIST (Vorteile) ── */
.checklist { list-style: none; display: flex; flex-direction: column; gap: 20px; }
.checklist li { display: flex; gap: 16px; }
.check-icon {
  flex-shrink: 0;
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--gold-bg);
  display: flex; align-items: center; justify-content: center;
  margin-top: 2px;
}
.check-icon svg { width: 14px; height: 14px; color: var(--gold); }
.checklist h4 { font-weight: 600; margin-bottom: 2px; }
.checklist p { font-size: 14px; color: var(--stone-500); text-wrap: pretty; }

/* ── PRODUCT DETAIL (angebot.html) ── */
.product {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}
.product-media { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); }
.product-media img { width: 100%; height: auto; display: block; }
.product.reverse .product-media { order: 2; }

.badge {
  display: inline-block;
  background: var(--gold-bg); color: var(--gold);
  font-size: 11px; font-weight: 700;
  letter-spacing: .10em; text-transform: uppercase;
  padding: 4px 12px; border-radius: 100px;
  margin-bottom: 12px;
}
.product-body h2 { font-size: clamp(24px, 3vw, 32px); font-weight: 700; margin-bottom: 8px; line-height: 1.2; }
.product-body .sub { color: var(--stone-500); margin-bottom: 20px; }
.product-desc { color: var(--stone-600); line-height: 1.7; margin-bottom: 24px; }

/* ausklappbare technische Daten */
details.specs { background: var(--warm); border: 1px solid var(--stone-200); border-radius: var(--radius); margin-bottom: 24px; }
details.specs > summary {
  list-style: none;
  cursor: pointer;
  padding: 14px 18px;
  font-weight: 600; font-size: 12px;
  letter-spacing: .08em; text-transform: uppercase;
  color: var(--stone-700);
  display: flex; align-items: center; justify-content: space-between;
  transition: color var(--t);
}
details.specs > summary:hover { color: var(--gold); }
details.specs > summary::-webkit-details-marker { display: none; }
details.specs > summary .chev { width: 16px; height: 16px; color: var(--stone-400); transition: transform var(--t); }
details.specs[open] > summary .chev { transform: rotate(180deg); }
.specs-grid { display: grid; grid-template-columns: 1fr; padding: 2px 18px 14px; }
.specs-item { display: flex; justify-content: space-between; gap: 16px; padding: 8px 0; border-bottom: 1px solid var(--stone-200); font-size: 14px; }
.specs-item:last-child { border-bottom: none; }
.specs-item dt { color: var(--stone-500); flex-shrink: 0; }
.specs-item dd { font-weight: 500; text-align: right; }

.price-title { font-weight: 600; font-size: 16px; margin-bottom: 12px; }
.price-table { width: 100%; border-collapse: collapse; border: 1px solid var(--stone-200); border-radius: var(--radius); overflow: hidden; font-size: 14px; margin-bottom: 8px; }
.price-table thead { background: var(--stone-50); }
.price-table th { padding: 12px 16px; text-align: left; font-weight: 600; color: var(--stone-600); }
.price-table th:last-child, .price-table td:last-child { text-align: right; }
.price-table td { padding: 12px 16px; border-top: 1px solid var(--stone-100); }
.price-table td:last-child { font-weight: 700; }
.price-table tr:nth-child(2) td { background: rgba(0,0,0,.02); }
.price-gold { color: var(--gold); }
.price-note { font-size: 12px; color: var(--stone-400); margin-bottom: 24px; }

/* ── CALCULATOR (anfrage.html) ── */
.qty-block { background: var(--warm); border-radius: var(--radius); padding: 20px; margin-bottom: 16px; }
.qty-row { display: flex; align-items: flex-start; justify-content: space-between; gap: 16px; }
.qty-info h3 { font-weight: 600; font-size: 16px; margin-bottom: 4px; }
.qty-info p { font-size: 13px; color: var(--stone-500); }
.qty-controls { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.qty-btn {
  width: 32px; height: 32px;
  border-radius: 50%;
  border: 2px solid var(--stone-300);
  background: none;
  font-size: 20px; font-weight: 700;
  color: var(--stone-600);
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: border-color var(--t), color var(--t);
  line-height: 1;
  font-family: inherit;
}
.qty-btn:hover { border-color: var(--gold); color: var(--gold); }
.qty-val { font-size: 18px; font-weight: 700; width: 24px; text-align: center; }

/* ── Zeitraum-Block (Abholung / Rückgabe) ── */
.period {
  border: 1px solid var(--stone-200);
  border-radius: var(--radius);
  background: #fff;
  overflow: hidden;
}
.period-note {
  font-size: 13px;
  line-height: 1.6;
  color: var(--stone-600);
  background: var(--gold-bg);
  padding: 12px 16px;
  border-bottom: 1px solid var(--stone-200);
}
.period-note strong { font-weight: 600; color: var(--stone-900); }

/* Kalender */
.cal { padding: 16px 16px 14px; border-bottom: 1px solid var(--stone-200); }
.cal-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 14px; }
.cal-title { font-size: 16px; font-weight: 700; color: var(--stone-900); }
.cal-nav {
  width: 34px; height: 34px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--stone-200);
  border-radius: 9px;
  background: #fff;
  color: var(--stone-600);
  cursor: pointer;
  transition: background var(--t), border-color var(--t), color var(--t);
}
.cal-nav:hover:not(:disabled) { background: var(--stone-50); border-color: var(--stone-300); color: var(--stone-900); }
.cal-nav:disabled { opacity: .35; cursor: default; }
.cal-nav svg { width: 16px; height: 16px; }

.cal-dows, .cal-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 4px; }
.cal-dows {
  margin-bottom: 6px;
  font-size: 11px; font-weight: 600;
  letter-spacing: .05em; text-transform: uppercase;
  color: var(--stone-400);
  text-align: center;
}
.cal-day {
  aspect-ratio: 1 / 1;
  min-height: 38px;
  display: flex; align-items: center; justify-content: center;
  border: none;
  border-radius: 9px;
  background: transparent;
  font-family: inherit; font-size: 14px; font-weight: 500;
  color: var(--stone-700);
  cursor: pointer;
  transition: background var(--t), color var(--t);
}
.cal-day:hover:not(:disabled) { background: var(--stone-100); }
.cal-day:disabled { color: var(--stone-300); cursor: default; }
.cal-day.is-today { font-weight: 700; box-shadow: inset 0 0 0 1px var(--stone-300); }
.cal-day.is-range { background: var(--gold-bg); color: var(--gold-dark); font-weight: 600; }
.cal-day.is-start {
  background: var(--gold); color: #fff; font-weight: 700;
  box-shadow: none;
}
.cal-day.is-start:hover { background: var(--gold-dark); }
.cal-day.is-end {
  background: #fff; color: var(--gold-dark); font-weight: 700;
  box-shadow: inset 0 0 0 2px var(--gold);
}

/* Legende und Schritt-Hinweis stehen ÜBER dem Kalender – darunter gingen sie unter */
.cal-guide {
  padding-bottom: 14px; margin-bottom: 14px;
  border-bottom: 1px solid var(--stone-100);
}
.cal-hint { font-size: 13px; color: var(--stone-600); line-height: 1.5; margin-top: 8px; }
.cal-legend { display: flex; flex-wrap: wrap; gap: 6px 18px; }
.lg { display: flex; align-items: center; gap: 7px; font-size: 12px; font-weight: 500; color: var(--stone-500); }
.lg::before { content: ""; width: 12px; height: 12px; border-radius: 4px; flex-shrink: 0; }
.lg-miettag::before { background: var(--gold); }
.lg-rueck::before { background: #fff; box-shadow: inset 0 0 0 2px var(--gold); }

.slot-date {
  font-size: 15px; font-weight: 600;
  color: var(--stone-400);
  line-height: 1.4;
}
.slot-date.set { color: var(--stone-900); }

.period-slots { display: grid; grid-template-columns: 1fr 1fr; }
.slot { padding: 16px; display: flex; flex-direction: column; gap: 12px; }
.slot + .slot { border-left: 1px solid var(--stone-200); }
.slot-tag {
  display: flex; align-items: center; gap: 6px;
  font-size: 11px; font-weight: 700;
  letter-spacing: .09em; text-transform: uppercase;
  color: var(--gold);
}
.slot-tag svg { width: 13px; height: 13px; flex-shrink: 0; }
.slot-field { display: flex; flex-direction: column; gap: 5px; }
.slot-field > span { font-size: 12px; font-weight: 500; color: var(--stone-500); }
.slot-field select {
  width: 100%;
  padding: 10px 12px;
  font-family: inherit;
  font-size: 14px;
  color: var(--stone-900);
  background: #fff;
  border: 1px solid var(--stone-200);
  border-radius: 10px;
  transition: border-color var(--t), box-shadow var(--t);
}
.slot-field select:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(196,154,56,.15);
}
.slot-field select {
  appearance: none; -webkit-appearance: none;
  padding-right: 34px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23a8a29e' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 11px center;
  background-size: 15px;
  cursor: pointer;
}
.slot-field select:invalid { color: var(--stone-400); }

.period-hours {
  font-size: 12px;
  color: var(--stone-400);
  padding: 0 16px 14px;
}
.period-result {
  display: none;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  line-height: 1.5;
  padding: 11px 16px;
  border-top: 1px solid var(--stone-200);
}
.period-result.show { display: flex; }
.period-result svg { width: 15px; height: 15px; flex-shrink: 0; }
.period-result strong { font-weight: 600; }
.period-result.ok { background: var(--stone-50); color: var(--stone-600); }
.period-result.ok svg, .period-result.ok strong { color: var(--stone-900); }
.period-result.warn { background: #fffbeb; color: #b45309; }
.period-result.warn strong { color: #92400e; }

.price-result {
  background: var(--stone-900); color: #fff;
  border-radius: var(--radius-lg); padding: 24px;
}
.result-title { font-weight: 600; font-size: 12px; letter-spacing: .08em; text-transform: uppercase; color: var(--stone-300); margin-bottom: 12px; }
.breakdown { list-style: none; font-size: 14px; color: #fff; font-weight: 600; margin-bottom: 16px; }
.breakdown li { padding: 4px 0; }
.breakdown:empty { display: none; }
.breakdown-empty { font-size: 14px; color: var(--stone-500); margin-bottom: 16px; }
.result-divider { border-top: 1px solid #44403c; padding-top: 16px; display: flex; flex-direction: column; gap: 10px; }
.result-divider + .result-divider { margin-top: 16px; }
.result-row { display: flex; justify-content: space-between; align-items: center; gap: 12px; }
.result-row .rlabel { color: var(--stone-300); font-size: 14px; }
.result-row .ramount { font-size: 20px; font-weight: 700; white-space: nowrap; }
.result-row .rvalue { font-size: 14px; font-weight: 600; color: #fff; text-align: right; }
.result-row.pkg .ramount { color: var(--gold); }
.result-row.deposit { border-top: 1px solid #44403c; padding-top: 12px; margin-top: 2px; }
.result-row.deposit .ramount { font-weight: 600; font-size: 16px; color: var(--stone-200); }
.result-row.zeitraum .rvalue.offen { color: var(--stone-500); font-weight: 400; }
.result-disclaimer { font-size: 12px; color: #78716c; margin-top: 16px; }

/* ── ANFRAGE: ein Ablauf aus Auswahl, Zeitraum und Kontakt ── */
.anfrage-layout { display: grid; grid-template-columns: 1fr; gap: 32px; }

.af-step { scroll-margin-top: 100px; }
.af-head { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 20px; }
.af-num {
  flex-shrink: 0;
  width: 34px; height: 34px; border-radius: 50%;
  background: var(--gold); color: #fff;
  font-size: 15px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-sm);
}
.af-head h2 { font-size: 20px; font-weight: 700; line-height: 1.3; }
.af-sub { font-size: 14px; color: var(--stone-500); margin-top: 2px; }
.af-fields { display: flex; flex-direction: column; gap: 16px; }

.af-alert {
  display: none;
  align-items: center; gap: 9px;
  background: #fffbeb; border: 1px solid #fde68a;
  border-radius: var(--radius);
  padding: 12px 14px; margin-top: 4px;
  font-size: 14px; color: #b45309;
}
.af-alert.show { display: flex; }
.af-alert svg { width: 17px; height: 17px; flex-shrink: 0; }

@media (min-width: 980px) {
  .anfrage-layout { grid-template-columns: minmax(0, 1fr) 330px; column-gap: 44px; align-items: start; }
  .af-step:nth-of-type(1) { grid-area: 1 / 1; }
  .af-step:nth-of-type(2) { grid-area: 2 / 1; }
  .af-step:nth-of-type(3) { grid-area: 3 / 1; }
  .af-summary { grid-area: 1 / 2 / 4 / 3; position: sticky; top: 100px; align-self: start; }
}

/* ── FORM ── */
.form-group { margin-bottom: 16px; }
.form-label { display: block; font-size: 14px; font-weight: 600; color: var(--stone-700); margin-bottom: 6px; }
.form-label .optional { font-weight: 400; color: var(--stone-400); }
.form-input {
  width: 100%;
  border: 1px solid var(--stone-300);
  border-radius: var(--radius);
  padding: 10px 12px;
  font-size: 14px;
  color: var(--stone-900);
  font-family: inherit;
  background: #fff;
  transition: border-color var(--t), box-shadow var(--t);
}
.form-input::placeholder { color: var(--stone-400); }
.form-input:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(196,154,56,.15); }
textarea.form-input { resize: none; }

.form-check { display: flex; align-items: flex-start; gap: 10px; cursor: pointer; }
.form-check input { width: 16px; height: 16px; accent-color: var(--gold); margin-top: 2px; flex-shrink: 0; }
.form-check span { font-size: 13px; color: var(--stone-500); }
.form-check a { color: var(--gold); text-decoration: underline; }

.radio-group { display: flex; flex-direction: column; gap: 8px; }
.radio-label { display: flex; align-items: flex-start; gap: 10px; cursor: pointer; }
.radio-label input { accent-color: var(--gold); margin-top: 3px; flex-shrink: 0; }
.radio-text { font-size: 14px; color: var(--stone-700); }
.radio-sub { font-size: 12px; color: var(--stone-400); display: block; }
.radio-note { font-size: 12px; color: var(--stone-400); margin-top: 6px; }

.success-box {
  background: #f0fdf4; border: 1px solid #bbf7d0;
  border-radius: var(--radius); padding: 20px;
  margin-bottom: 24px; display: none;
  gap: 12px; align-items: flex-start;
}
.success-box.visible { display: flex; }
.success-box svg { color: #16a34a; flex-shrink: 0; width: 20px; height: 20px; }
.success-title { font-weight: 600; color: #166534; }
.success-desc { font-size: 14px; color: #15803d; margin-top: 2px; }

.error-box {
  background: #fffbeb; border: 1px solid #fde68a;
  border-radius: var(--radius); padding: 20px;
  margin-bottom: 24px; display: none;
  gap: 12px; align-items: flex-start;
}
.error-box.visible { display: flex; }
.error-box svg { color: #d97706; flex-shrink: 0; width: 20px; height: 20px; }
.error-title { font-weight: 600; color: #92400e; }
.error-desc { font-size: 14px; color: #b45309; margin-top: 2px; }
.error-desc a { color: #92400e; text-decoration: underline; }

.form-footer { font-size: 12px; color: var(--stone-400); text-align: center; margin-top: 4px; }

/* Dunkler Streifen vor dem Footer – geht optisch in den Footer über,
   damit unten kein weißer Block mehr am Footer-Logo klebt */
.dark-strip { background: var(--stone-900); padding: 48px 0 40px; text-align: center; }
.strip-lead {
  color: var(--stone-300);
  font-size: 16px;
  line-height: 1.6;
  max-width: 720px;
  margin: 0 auto;
  text-wrap: pretty;
}
.strip-lead span { color: #fff; font-weight: 600; }

/* Dezenter Rechtshinweis (Endpreise, Mietbedingungen) */
.legal-hint {
  font-size: 12px;
  line-height: 1.6;
  color: rgba(255, 255, 255, .42);
  text-align: center;
  max-width: 620px;
  margin: 0 auto;
  text-wrap: pretty;
}
.strip-lead + .legal-hint {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, .10);
}

/* ── CTA DARK ── */
.cta-dark { background: var(--stone-900); padding: 64px 0; text-align: center; }
.cta-dark h2 { font-size: clamp(24px, 3vw, 36px); font-weight: 700; color: #fff; margin-bottom: 16px; }
.cta-dark p { color: var(--stone-300); font-size: 18px; margin-bottom: 32px; }

/* ── CONTACT CARDS ── */
.contact-card {
  display: flex; align-items: center; gap: 20px;
  padding: 24px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--stone-200);
  transition: border-color var(--t), box-shadow var(--t);
}
a.contact-card:hover { border-color: var(--gold); box-shadow: var(--shadow-md); }
.contact-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: var(--gold-bg);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: background var(--t);
}
a.contact-card:hover .contact-icon { background: rgba(196,154,56,.22); }
.contact-icon svg { color: var(--gold); width: 24px; height: 24px; }
.contact-label { font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: .08em; color: var(--stone-400); margin-bottom: 2px; }
.contact-value { font-size: 18px; font-weight: 700; word-break: break-word; }

.info-box { background: var(--warm); border-radius: var(--radius); padding: 20px; }
.info-box h3 { font-weight: 600; margin-bottom: 8px; }
.info-box p { font-size: 14px; color: var(--stone-600); line-height: 1.7; }

/* ── CONTACT HERO (Kontakt: Anfrage im Vordergrund) ── */
.contact-hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  background: var(--stone-900);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-md);
  transition: box-shadow var(--t), transform var(--t);
}
.contact-hero:hover { box-shadow: var(--shadow-lg); transform: translateY(-2px); }
.ch-eyebrow {
  display: inline-block;
  color: var(--gold);
  font-size: 12px; font-weight: 600;
  letter-spacing: .12em; text-transform: uppercase;
  margin-bottom: 10px;
}
.contact-hero h2 { font-size: clamp(24px, 3vw, 32px); font-weight: 700; color: #fff; line-height: 1.2; }
.contact-hero .ch-copy > p {
  color: rgba(255,255,255,.72);
  font-size: 15px; line-height: 1.6;
  margin-top: 10px; max-width: 460px;
}
.ch-points { list-style: none; display: flex; flex-wrap: wrap; gap: 8px 20px; margin-top: 18px; }
.ch-points li {
  display: flex; align-items: center; gap: 7px;
  font-size: 13px; color: rgba(255,255,255,.72);
}
.ch-points li::before {
  content: "";
  width: 14px; height: 14px; flex-shrink: 0;
  border-radius: 50%;
  background: var(--gold-bg) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23C49A38' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 13l4 4L19 7'/%3E%3C/svg%3E") center / 9px no-repeat;
}
.ch-action {
  display: inline-flex; align-items: center; gap: 8px;
  flex-shrink: 0;
  background: var(--gold);
  color: #fff;
  font-weight: 600; font-size: 16px;
  padding: 14px 28px;
  border-radius: var(--radius);
  transition: background var(--t);
}
.contact-hero:hover .ch-action { background: var(--gold-dark); }
.ch-action svg { width: 20px; height: 20px; transition: transform var(--t); }
.contact-hero:hover .ch-action svg { transform: translateX(3px); }

.cta-link {
  display: flex; align-items: center; justify-content: space-between;
  padding: 24px;
  border-radius: var(--radius-lg);
  background: var(--stone-900); color: #fff;
  margin-bottom: 32px;
  transition: background var(--t);
}
.cta-link:hover { background: var(--stone-800); }
.cta-link .cl-title { font-weight: 700; font-size: 18px; }
.cta-link .cl-sub { font-size: 14px; color: var(--stone-400); margin-top: 2px; }
.cta-link svg { color: var(--gold); width: 24px; height: 24px; flex-shrink: 0; transition: transform var(--t); }
.cta-link:hover svg { transform: translateX(4px); }

.faq-box { border: 1px solid var(--stone-200); border-radius: var(--radius-lg); padding: 24px; }
.faq-box h3 { font-weight: 600; margin-bottom: 16px; }
.faq-item { margin-bottom: 16px; }
.faq-item p:first-child { font-weight: 500; color: var(--stone-800); margin-bottom: 4px; font-size: 14px; }
.faq-item p { font-size: 14px; color: var(--stone-600); }
.contact-stack { display: flex; flex-direction: column; gap: 20px; }
/* Beide Spalten gleich hoch: Karten füllen die Restfläche gleichmäßig */
.contact-col { display: flex; flex-direction: column; }
.contact-col .contact-stack { flex: 1; }
.contact-col .contact-card { flex: 1; }

/* ── ÜBER UNS ── */
.story-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.story-text h2 { font-size: clamp(24px, 3vw, 32px); font-weight: 700; margin-bottom: 24px; }
.story-text p { color: var(--stone-600); line-height: 1.75; margin-bottom: 16px; }
.story-img-wrap { position: relative; }
.story-img-wrap img { border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); width: 100%; height: 320px; object-fit: cover; }
.story-badge {
  position: absolute; bottom: -16px; left: -16px;
  background: var(--gold); color: #fff;
  border-radius: 12px; padding: 12px 20px;
  box-shadow: var(--shadow-md);
}
.story-badge p { font-size: 14px; font-weight: 600; }

.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.value-card { text-align: center; padding: 32px; background: #fff; border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); }
.value-icon {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--gold-bg);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
}
.value-icon svg { color: var(--gold); width: 28px; height: 28px; }
.value-card h3 { font-size: 20px; font-weight: 700; margin-bottom: 12px; }
.value-card p { font-size: 14px; color: var(--stone-500); line-height: 1.65; }

/* ── FOOTER ── */
footer { background: var(--stone-900); color: var(--stone-300); }
.footer-inner { padding-top: 56px; }
.footer-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; margin-bottom: 48px; }
.footer-logo-wrap { display: inline-block; background: #fff; border-radius: 12px; padding: 8px 12px; margin-bottom: 16px; }
.footer-logo { height: 36px; width: auto; }
.footer-brand p { font-size: 14px; color: var(--stone-400); line-height: 1.65; }
.footer-brand .location { margin-top: 16px; font-size: 14px; color: var(--stone-400); }
.footer-col h3 { color: #fff; font-weight: 600; font-size: 13px; letter-spacing: .08em; text-transform: uppercase; margin-bottom: 16px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.footer-col ul a { font-size: 14px; color: var(--stone-400); transition: color var(--t); }
.footer-col ul a:hover { color: #fff; }
.footer-contact { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer-contact li { display: flex; align-items: flex-start; gap: 8px; font-size: 14px; color: var(--stone-400); }
.footer-contact svg { width: 16px; height: 16px; flex-shrink: 0; color: var(--gold); margin-top: 2px; }
.footer-contact a { transition: color var(--t); }
.footer-contact a:hover { color: #fff; }
.addr-sub { color: var(--stone-500); font-size: 13px; }
.footer-bottom {
  padding: 24px 0;
  border-top: 1px solid var(--stone-800);
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; flex-wrap: wrap;
}
.footer-bottom p { font-size: 12px; color: var(--stone-500); }
.footer-links { display: flex; gap: 16px; }
.footer-links a { font-size: 12px; color: var(--stone-500); transition: color var(--t); }
.footer-links a:hover { color: var(--stone-300); }

/* ── LEGAL PAGES ── */
.legal-content { max-width: 720px; margin: 0 auto; }
.legal-intro { margin-bottom: 28px; }
.legal-intro h3 { font-size: 15px; font-weight: 600; color: var(--stone-900); margin-bottom: 8px; }
.legal-intro p { font-size: 14px; color: var(--stone-600); line-height: 1.75; }
.legal-section { border-top: 1px solid var(--stone-100); padding-top: 24px; margin-bottom: 24px; }
.legal-section h3 { font-size: 15px; font-weight: 600; margin-bottom: 8px; }
.legal-section p { font-size: 14px; color: var(--stone-600); line-height: 1.75; }
.legal-section a { color: var(--stone-700); text-decoration: underline; text-underline-offset: 2px; text-decoration-color: var(--stone-300); }
.legal-section a:hover { color: var(--stone-900); text-decoration-color: var(--stone-500); }
.legal-section ul { padding-left: 20px; display: flex; flex-direction: column; gap: 4px; font-size: 14px; color: var(--stone-600); margin-top: 8px; }
.legal-stamp { font-size: 12px; color: var(--stone-400); padding-top: 24px; border-top: 1px solid var(--stone-100); }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .product { grid-template-columns: 1fr; gap: 28px; }
  .product.reverse .product-media { order: 0; }
  .story-layout { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  section { padding: 56px 0; }
  .wrap { padding: 0 16px; }
  .nav-links, .nav-cta { display: none; }
  .burger { display: flex; }

  .icon-cards { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .contact-hero { flex-direction: column; align-items: flex-start; gap: 28px; padding: 28px; }
  .contact-hero .ch-action { width: 100%; justify-content: center; }
  .period-slots { grid-template-columns: 1fr; }
  .slot + .slot { border-left: none; border-top: 1px solid var(--stone-200); }
  .specs-grid { grid-template-columns: 1fr; }

  .hero-content { padding-top: 64px; padding-bottom: 64px; }
  /* Skaliert mit, damit "Euer Fest-Equipment" auch auf schmalen Handys in eine Zeile passt */
  .hero h1 { font-size: clamp(26px, 8vw, 34px); }
  /* Lange Einzelwörter wie "Datenschutzerklärung" müssen auf 320px noch passen */
  .page-header h1 { font-size: clamp(24px, 7vw, 36px); }
  .page-header { padding: 40px 0; }
  .story-img-wrap img { height: 240px; }
  .story-badge { bottom: -12px; left: -8px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }

  /* iOS Safari zoomt in jedes Feld hinein, das kleiner als 16px ist */
  .form-input, .slot-field select, textarea.form-input {
    font-size: 16px;
    padding-top: 12px;
    padding-bottom: 12px;
  }

  /* ── Fingerfreundliche Bedienelemente ── */
  .burger { width: 44px; height: 44px; align-items: center; justify-content: center; margin-right: -8px; }
  .qty-btn { width: 44px; height: 44px; font-size: 20px; }
  .qty-controls { gap: 14px; }
  .cal-nav { width: 44px; height: 44px; }
  /* Kein festes Mindestmaß: aspect-ratio hält die Felder quadratisch und sie
     schrumpfen auf sehr schmalen Displays mit, statt überzulaufen */
  .cal-day { min-height: 0; font-size: 15px; }
  .cal-dows { font-size: 12px; }

  /* Checkboxen und Radios größer, Zeilen mit Luft zum Tippen */
  .form-check { padding: 6px 0; }
  .form-check input { width: 22px; height: 22px; margin-top: 0; }
  .radio-label { padding: 8px 0; align-items: center; }
  .radio-label input { width: 22px; height: 22px; margin-top: 0; }

  /* Footer-Links bekommen eine antippbare Höhe */
  .footer-col ul { gap: 2px; }
  .footer-col ul a { display: block; padding: 9px 0; }
  .footer-contact { gap: 4px; }
  .footer-contact li { align-items: center; padding: 7px 0; }
  .footer-contact svg { margin-top: 0; }
  .footer-links { display: flex; gap: 24px; }
  .footer-links a { display: inline-block; padding: 8px 0; }
  .link-gold { display: inline-block; padding: 6px 0; }

  /* CTA unter jedem Produkt über die volle Breite – leichter zu treffen */
  .product-body .btn-gold { display: block; text-align: center; padding: 14px 28px; }
}

/* Sehr schmale Displays: etwas engere Innenabstände, damit nichts überläuft */
@media (max-width: 400px) {
  .qty-block { padding: 16px; }
  .qty-controls { gap: 10px; }
  .cal { padding: 14px 10px 12px; }
  .slot { padding: 14px; }
}

/* Ab hier passen Produktname und Mengenknöpfe nicht mehr nebeneinander */
@media (max-width: 360px) {
  .qty-row { flex-direction: column; align-items: stretch; gap: 14px; }
  .qty-controls { justify-content: space-between; }
}

@media (max-width: 480px) {
  .steps { grid-template-columns: 1fr; }
  .btn-row { flex-direction: column; }
  .btn-row .btn-gold, .btn-row .btn-ghost { text-align: center; width: 100%; }
}
