/* =====================================================================
   HMS Schlegel — Stylesheet (modernisiert)
   --------------------------------------------------------------------
   Klare, ruhige Linienführung mit handwerklichem Charakter:
   warme Erdtöne, feinere Borders, weichere Radien, geometrische
   Display-Typografie (Inter Tight) gepaart mit Inter als Body.
   ===================================================================== */

:root {
  /* Farbpalette */
  --c-clay:        #d6804c;   /* Akzent: Lehm/Rost */
  --c-clay-mid:    #b75c2c;
  --c-clay-dark:   #8e3f17;
  --c-clay-soft:   #f3ece1;   /* sehr heller Lehm */

  --c-iron:        #1f1c19;   /* Tiefes Schmiedeeisen */
  --c-iron-soft:   #2a2622;
  --c-iron-mid:    #4a423b;

  --c-bone:        #fbf8f1;   /* Hauptbackground */
  --c-cream:       #ffffff;
  --c-sand:        #f3ece1;
  --c-line:        #ebe2cd;
  --c-line-soft:   #f0e7d3;
  --c-text-soft:   #6b6258;
  --c-text-mute:   #8a7f70;

  --c-moss:        #5a6b3a;
  --c-warn:        #b54121;
  --c-success:     #5a6b3a;

  /* Typografie */
  --f-display: 'Inter Tight', 'Inter', -apple-system, system-ui, sans-serif;
  --f-sans:    'Inter', -apple-system, system-ui, sans-serif;
  --f-serif:   'Source Serif 4', 'Georgia', serif;

  /* Layout */
  --container: 1200px;
  --radius-sm: 6px;
  --radius:    8px;
  --radius-md: 10px;
  --radius-lg: 14px;
  --radius-xl: 20px;

  /* Effekte */
  --shadow-xs: 0 1px 2px rgba(31, 28, 25, 0.04);
  --shadow-sm: 0 2px 8px rgba(31, 28, 25, 0.06);
  --shadow-md: 0 8px 24px rgba(31, 28, 25, 0.08);
  --shadow-lg: 0 18px 48px rgba(31, 28, 25, 0.12);

  --t: 0.2s cubic-bezier(0.4, 0.0, 0.2, 1);
}

/* =====================================================================
   Reset & Basis
   ===================================================================== */

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

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

body {
  margin: 0;
  font-family: var(--f-sans);
  font-size: 16px;
  line-height: 1.65;
  color: var(--c-iron);
  background: var(--c-bone);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }

a {
  color: var(--c-clay-dark);
  text-decoration: none;
  transition: color var(--t);
}
a:hover { color: var(--c-clay-mid); text-decoration: underline; text-underline-offset: 3px; }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--f-display);
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--c-iron);
  line-height: 1.1;
  margin: 0 0 0.6em;
}

h1 { font-size: clamp(2rem, 5vw, 3.25rem); letter-spacing: -0.025em; }
h2 { font-size: clamp(1.625rem, 3.5vw, 2.25rem); }
h3 { font-size: 1.375rem; letter-spacing: -0.015em; }
h4 { font-size: 1.125rem; letter-spacing: -0.01em; }

p { margin: 0 0 1em; }

main { flex: 1 0 auto; }

.skip-link {
  position: absolute; left: -9999px; top: 0;
  padding: .5rem 1rem; background: var(--c-iron); color: var(--c-bone);
  text-decoration: none; z-index: 1000;
}
.skip-link:focus { left: 0; top: 0; }

::selection { background: var(--c-clay); color: var(--c-iron); }

/* =====================================================================
   Container & Sections
   ===================================================================== */

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section { padding: clamp(3.5rem, 7vw, 6rem) 0; }
.section--alt    { background: var(--c-cream); }
.section--sand   { background: var(--c-sand); }
.section--dark   { background: var(--c-iron); color: var(--c-bone); }
.section--dark h1, .section--dark h2, .section--dark h3 { color: var(--c-bone); }
.section--dark a { color: var(--c-clay); }

.section-head { margin-bottom: 2.5rem; max-width: 720px; }
.section-head .eyebrow {
  display: inline-block;
  font-family: var(--f-sans);
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--c-clay-dark);
  margin-bottom: 0.75rem;
}
.section-head .eyebrow::before { content: '— '; }
.section-head h2 { margin: 0 0 0.5rem; }
.section-head .lead {
  font-size: 1.0625rem;
  color: var(--c-text-soft);
  margin: 0;
  line-height: 1.65;
}

/* =====================================================================
   Header
   ===================================================================== */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(251, 248, 241, 0.92);
  backdrop-filter: saturate(180%) blur(10px);
  -webkit-backdrop-filter: saturate(180%) blur(10px);
  border-bottom: 1px solid var(--c-line);
}

.header-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.brand { display: flex; align-items: center; gap: 0.75rem; text-decoration: none; color: var(--c-iron); }
.brand:hover { text-decoration: none; color: var(--c-clay-dark); }

.brand-mark {
  display: grid;
  place-items: center;
  width: 40px; height: 40px;
  background: var(--c-iron);
  color: var(--c-clay);
  border-radius: var(--radius);
  flex-shrink: 0;
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 0.7rem;
  letter-spacing: 0.04em;
}

.brand-text { display: flex; flex-direction: column; line-height: 1.15; }
.brand-text strong {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: -0.01em;
}
.brand-tag { font-family: var(--f-sans); font-size: 0.7rem; color: var(--c-text-mute); margin-top: 1px; }

.primary-nav ul { list-style: none; margin: 0; padding: 0; display: flex; gap: 0.15rem; }
.primary-nav a, .primary-nav .nav-drop-toggle {
  display: block;
  padding: 0.55rem 0.85rem;
  color: var(--c-iron-mid);
  text-decoration: none;
  font-family: var(--f-sans);
  font-weight: 500;
  font-size: 0.875rem;
  border-radius: var(--radius-sm);
  transition: background var(--t), color var(--t);
  background: transparent;
  border: 0;
  cursor: pointer;
  font: inherit;
  font-weight: 500;
  font-size: 0.875rem;
}
.primary-nav a:hover, .primary-nav .nav-drop-toggle:hover { background: var(--c-line-soft); color: var(--c-iron); text-decoration: none; }
.primary-nav a[aria-current="page"], .primary-nav .nav-drop-toggle[aria-current="page"] { background: var(--c-iron); color: var(--c-bone); }

/* Dropdown-Menü */
.primary-nav .has-dropdown { position: relative; }
.primary-nav .nav-drop-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}
.primary-nav .caret { transition: transform var(--t); }
.primary-nav .has-dropdown[data-open="true"] .caret,
.primary-nav .has-dropdown:hover .caret { transform: rotate(180deg); }

.primary-nav .dropdown {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  min-width: 220px;
  flex-direction: column !important;
  gap: 0 !important;
  background: var(--c-bone);
  border: 1px solid var(--c-line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  padding: 0.4rem !important;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-4px);
  transition: opacity var(--t), transform var(--t), visibility 0s var(--t);
  z-index: 100;
}
.primary-nav .has-dropdown:hover .dropdown,
.primary-nav .has-dropdown[data-open="true"] .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  transition: opacity var(--t), transform var(--t), visibility 0s;
}
.primary-nav .dropdown a {
  display: block;
  padding: 0.55rem 0.85rem;
  font-size: 0.875rem;
  color: var(--c-iron-mid);
  border-radius: var(--radius-sm);
  white-space: nowrap;
}
.primary-nav .dropdown a:hover { background: var(--c-line-soft); color: var(--c-iron); }
.primary-nav .dropdown a[aria-current="page"] { background: var(--c-clay-soft); color: var(--c-clay-dark); }

.nav-toggle {
  display: none;
  width: 42px; height: 42px;
  padding: 0;
  background: transparent;
  border: 1px solid var(--c-line);
  border-radius: var(--radius-sm);
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 20px; height: 2px;
  margin: 4px auto;
  background: var(--c-iron);
  border-radius: 2px;
  transition: transform var(--t), opacity var(--t);
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

@media (max-width: 900px) {
  .nav-toggle { display: block; }
  .primary-nav {
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--c-bone);
    transform: translateY(-110%);
    transition: transform var(--t), visibility 0s var(--t);
    visibility: hidden;
    z-index: -1;
  }
  .primary-nav.open {
    transform: translateY(0);
    visibility: visible;
    transition: transform var(--t), visibility 0s;
    border-bottom: 1px solid var(--c-line);
    box-shadow: var(--shadow-md);
  }
  .primary-nav ul { flex-direction: column; padding: 0.5rem 1rem 1rem; }
  .primary-nav a, .primary-nav .nav-drop-toggle { padding: 0.85rem 1rem; width: 100%; text-align: left; }

  /* Dropdowns als Akkordeon */
  .primary-nav .has-dropdown { position: static; }
  .primary-nav .nav-drop-toggle {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .primary-nav .dropdown {
    position: static;
    box-shadow: none;
    border: 0;
    background: transparent;
    padding: 0 0 0.5rem 1rem !important;
    margin: 0;
    min-width: 0;
    opacity: 1;
    visibility: hidden;
    transform: none;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, visibility 0s 0.3s;
  }
  .primary-nav .has-dropdown[data-open="true"] .dropdown {
    visibility: visible;
    max-height: 500px;
    transition: max-height 0.3s ease, visibility 0s;
  }
  .primary-nav .dropdown a {
    padding: 0.65rem 0.85rem;
    border-left: 2px solid var(--c-line);
    border-radius: 0;
  }
  .primary-nav .dropdown a:hover { border-left-color: var(--c-clay); }
  .primary-nav .dropdown a[aria-current="page"] {
    border-left-color: var(--c-clay);
    background: transparent;
    color: var(--c-clay-dark);
  }
}

/* =====================================================================
   Hero
   ===================================================================== */

.hero {
  position: relative;
  background: var(--c-iron);
  color: var(--c-bone);
  overflow: hidden;
  padding: 4rem 0 2.5rem;
}

/* Diagonalstreifen-Akzent oben */
.hero-stripe {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 14px;
  background: var(--c-clay);
  z-index: 1;
}
.hero-stripe::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 0; right: 0;
  height: 60px;
  background-image: repeating-linear-gradient(
    -45deg,
    transparent 0,
    transparent 10px,
    rgba(214, 128, 76, 0.18) 10px,
    rgba(214, 128, 76, 0.18) 12px
  );
  pointer-events: none;
}

.hero::before {
  content: '';
  position: absolute;
  top: -160px; right: -100px;
  width: 480px; height: 480px;
  background: radial-gradient(circle, rgba(214, 128, 76, 0.18) 0%, transparent 65%);
  z-index: 0;
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: var(--container);
  margin: 0 auto;
  padding: 3rem 1.5rem 0;
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 2rem;
  align-items: center;
}
@media (max-width: 850px) {
  .hero-inner { grid-template-columns: 1fr; padding-top: 2rem; }
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0.75rem;
  background: rgba(214, 128, 76, 0.12);
  border: 1px solid rgba(214, 128, 76, 0.25);
  border-radius: 100px;
  font-family: var(--f-sans);
  font-size: 0.78rem;
  letter-spacing: 0.02em;
  color: var(--c-clay);
  font-weight: 500;
  margin-bottom: 1.25rem;
}
.hero-eyebrow::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--c-clay);
  border-radius: 50%;
}

.hero h1 {
  font-size: clamp(2.5rem, 6.5vw, 4.5rem);
  color: var(--c-bone);
  margin: 0 0 1.25rem;
  line-height: 1.0;
  letter-spacing: -0.03em;
  font-weight: 600;
}
.hero h1 em { font-style: normal; color: var(--c-clay); display: block; }

.hero-lead {
  font-size: 1.0625rem;
  font-family: var(--f-sans);
  color: #c9b88f;
  max-width: 520px;
  margin: 0 0 1.75rem;
  line-height: 1.65;
}

.hero-actions { display: flex; gap: 0.5rem; flex-wrap: wrap; }

.hero-mascot {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: end;
}
.hero-mascot img {
  max-width: 100%;
  width: auto;
  max-height: 460px;
  height: auto;
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.4));
}
.hero-mascot::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 70%;
  height: 24px;
  background: radial-gradient(ellipse, rgba(0, 0, 0, 0.4) 0%, transparent 70%);
  z-index: 1;
}
@media (max-width: 850px) { .hero-mascot { display: none; } }

/* Hero-Events (saisonale Banner / Slideshow) */
.hero-events {
  position: relative;
  width: 100%;
  max-width: 380px;
  margin: 0 auto;
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-event {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  padding: 1.75rem;
  background: rgba(251, 248, 241, 0.06);
  border: 1px solid rgba(214, 128, 76, 0.25);
  border-radius: var(--radius-lg);
  text-align: center;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.5s ease, transform 0.5s ease;
  pointer-events: none;
  backdrop-filter: blur(4px);
}
.hero-event.is-active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.hero-event-img {
  flex-shrink: 0;
}
.hero-event-img img {
  max-height: 180px;
  width: auto;
  filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.4));
}
.hero-event-text {
  margin: 0;
  font-family: var(--f-display);
  font-size: 1.0625rem;
  line-height: 1.4;
  color: var(--c-bone);
  font-weight: 500;
  letter-spacing: -0.01em;
  max-width: 320px;
}
.hero-event-dots {
  position: absolute;
  bottom: -2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.4rem;
  z-index: 5;
}
.hero-event-dot {
  width: 8px;
  height: 8px;
  padding: 0;
  border-radius: 50%;
  background: rgba(251, 248, 241, 0.25);
  border: 0;
  cursor: pointer;
  transition: background var(--t), transform var(--t);
}
.hero-event-dot:hover { background: rgba(251, 248, 241, 0.5); }
.hero-event-dot.is-active {
  background: var(--c-clay);
  transform: scale(1.3);
}
@media (max-width: 850px) {
  .hero-events { max-width: 100%; min-height: 260px; margin-top: 1.5rem; }
}

.hero-marks {
  position: relative;
  z-index: 2;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.5rem;
  margin-top: 2.25rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
  padding-top: 1.75rem;
  border-top: 1px solid rgba(251, 248, 241, 0.12);
}
.hero-mark { font-family: var(--f-sans); }
.hero-mark strong {
  display: block;
  font-family: var(--f-display);
  font-size: 1.875rem;
  color: var(--c-bone);
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.02em;
}
.hero-mark span { font-size: 0.8125rem; color: var(--c-text-mute); margin-top: 0.45rem; display: block; font-weight: 500; }

/* Trust-Bar */
.trust-bar {
  background: var(--c-iron-soft);
  border-bottom: 1px solid rgba(214, 128, 76, 0.15);
  position: relative;
  overflow: hidden;
  padding: 0.85rem 0;
  color: #c9b88f;
}
.trust-bar::before {
  content: '';
  position: absolute; inset: 0;
  background-image: repeating-linear-gradient(
    -45deg,
    transparent 0,
    transparent 14px,
    rgba(214, 128, 76, 0.05) 14px,
    rgba(214, 128, 76, 0.05) 16px
  );
  pointer-events: none;
}
.trust-bar-inner {
  position: relative;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  font-size: 0.85rem;
  font-weight: 500;
}
.trust-item { display: inline-flex; align-items: center; gap: 0.5rem; }
.trust-item svg { width: 16px; height: 16px; color: var(--c-clay); flex-shrink: 0; }

/* =====================================================================
   Buttons
   ===================================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--f-sans);
  font-size: 0.9375rem;
  font-weight: 500;
  padding: 0.75rem 1.25rem;
  border-radius: var(--radius);
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform var(--t), background var(--t), color var(--t), border-color var(--t), box-shadow var(--t);
  letter-spacing: -0.01em;
}
.btn:hover { transform: translateY(-1px); text-decoration: none; }
.btn svg { width: 16px; height: 16px; }

.btn--primary {
  background: var(--c-clay);
  color: var(--c-iron);
  border-color: var(--c-clay);
  box-shadow: var(--shadow-sm);
}
.btn--primary:hover { background: #e89860; border-color: #e89860; color: var(--c-iron); box-shadow: var(--shadow-md); }

.btn--ghost {
  background: rgba(251, 248, 241, 0.06);
  color: var(--c-bone);
  border-color: rgba(251, 248, 241, 0.18);
}
.btn--ghost:hover { background: rgba(251, 248, 241, 0.12); border-color: rgba(251, 248, 241, 0.3); color: var(--c-bone); }

.btn--dark {
  background: var(--c-iron);
  color: var(--c-bone);
  border-color: var(--c-iron);
}
.btn--dark:hover { background: var(--c-iron-mid); color: var(--c-bone); }

.btn--outline {
  background: transparent;
  color: var(--c-iron);
  border-color: var(--c-line);
}
.btn--outline:hover { background: var(--c-iron); color: var(--c-bone); border-color: var(--c-iron); }

.btn--sm { padding: 0.5rem 0.85rem; font-size: 0.8125rem; }

/* =====================================================================
   Service-Grid
   ===================================================================== */

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

.service-card {
  background: var(--c-cream);
  border: 1px solid var(--c-line);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  transition: transform var(--t), border-color var(--t), box-shadow var(--t);
  position: relative;
}
.service-card:hover {
  border-color: var(--c-clay);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.service-card.is-featured {
  background: var(--c-iron);
  border-color: var(--c-iron);
  color: var(--c-bone);
}
.service-card.is-featured h3 { color: var(--c-bone); }
.service-card.is-featured p { color: #c9b88f; }
.service-card.is-featured .service-icon { background: var(--c-clay); color: var(--c-iron); }
.service-card.is-featured .service-link {
  color: var(--c-clay);
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.85rem;
  font-weight: 500;
  text-decoration: none;
  margin-top: 0.75rem;
}
.service-card.is-featured .service-link:hover { color: #e89860; text-decoration: none; }

.service-icon {
  width: 42px; height: 42px;
  display: grid; place-items: center;
  background: var(--c-clay-soft);
  color: var(--c-clay-dark);
  border-radius: var(--radius);
  margin-bottom: 1rem;
}
.service-icon svg { width: 22px; height: 22px; }

.service-card h3 { font-size: 1.0625rem; margin: 0 0 0.4rem; letter-spacing: -0.01em; }
.service-card p { margin: 0; color: var(--c-text-soft); font-size: 0.875rem; line-height: 1.6; }

/* =====================================================================
   Leistungs-Liste
   ===================================================================== */

.feature-list {
  list-style: none; padding: 0; margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 0.5rem 2rem;
}
.feature-list li {
  position: relative;
  padding-left: 1.75rem;
  font-size: 0.9375rem;
  line-height: 1.55;
  border-bottom: 1px solid var(--c-line);
  padding-bottom: 0.85rem;
  padding-top: 0.5rem;
}
.feature-list li::before {
  content: '';
  position: absolute;
  left: 0; top: 0.85rem;
  width: 10px; height: 10px;
  background: var(--c-clay);
  border-radius: 2px;
  transform: rotate(45deg);
}
.feature-list strong { color: var(--c-iron); font-weight: 600; }

/* =====================================================================
   Verleih-Karten
   ===================================================================== */

.rental-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1rem;
}

.rental-card {
  background: var(--c-cream);
  border: 1px solid var(--c-line);
  border-radius: var(--radius-md);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform var(--t), box-shadow var(--t), border-color var(--t);
}
.rental-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-color: var(--c-clay);
}

.rental-card-img {
  aspect-ratio: 4/3;
  background: var(--c-line-soft);
  position: relative;
  overflow: hidden;
}
.rental-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.rental-card:hover .rental-card-img img { transform: scale(1.04); }
.rental-card-img.no-image {
  display: grid; place-items: center;
  color: var(--c-text-mute);
  font-family: var(--f-sans);
  font-size: 0.85rem;
  font-weight: 500;
}

.rental-card-cat {
  position: absolute;
  top: 0.85rem; left: 0.85rem;
  background: var(--c-iron);
  color: var(--c-bone);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  padding: 0.3rem 0.7rem;
  border-radius: 100px;
}

.rental-card-body { padding: 1.25rem 1.4rem 1.4rem; flex: 1; display: flex; flex-direction: column; }
.rental-card h3 { font-size: 1.25rem; margin: 0 0 0.15rem; letter-spacing: -0.015em; }
.rental-card .subtitle {
  font-family: var(--f-sans);
  font-size: 0.78rem;
  letter-spacing: 0.02em;
  color: var(--c-text-soft);
  margin-bottom: 0.85rem;
  font-weight: 500;
}
.rental-card-desc { font-size: 0.875rem; color: var(--c-text-soft); margin: 0 0 1rem; flex: 1; line-height: 1.6; }

.rental-specs {
  list-style: none;
  margin: 0 0 1.25rem;
  padding: 0.6rem 0;
  border-top: 1px solid var(--c-line);
  border-bottom: 1px solid var(--c-line);
  font-size: 0.8125rem;
  font-family: var(--f-sans);
}
.rental-specs li { display: flex; justify-content: space-between; padding: 0.25rem 0; gap: 1rem; }
.rental-specs .label { color: var(--c-text-soft); }
.rental-specs .value { font-weight: 600; color: var(--c-iron); text-align: right; }

.rental-price { display: flex; align-items: baseline; justify-content: space-between; gap: 1rem; margin-top: auto; }
.rental-price .price {
  font-family: var(--f-display);
  font-size: 1.625rem;
  font-weight: 600;
  color: var(--c-clay-dark);
  line-height: 1;
  letter-spacing: -0.015em;
}
.rental-price .per { font-family: var(--f-sans); font-size: 0.7rem; color: var(--c-text-soft); margin-top: 0.25rem; font-weight: 500; }
.rental-price .insurance { font-size: 0.72rem; color: var(--c-text-soft); margin-top: 0.15rem; }

.rental-card-actions { margin-top: 1.25rem; display: flex; gap: 0.5rem; }

/* =====================================================================
   Galerie
   ===================================================================== */

.gallery-filter { display: flex; gap: 0.4rem; flex-wrap: wrap; margin-bottom: 2rem; }
.gallery-filter button {
  font-family: var(--f-sans);
  font-size: 0.85rem;
  font-weight: 500;
  padding: 0.5rem 0.95rem;
  background: transparent;
  border: 1px solid var(--c-line);
  color: var(--c-iron-mid);
  border-radius: 100px;
  cursor: pointer;
  transition: all var(--t);
}
.gallery-filter button:hover { border-color: var(--c-clay); color: var(--c-iron); }
.gallery-filter button.active { background: var(--c-iron); border-color: var(--c-iron); color: var(--c-bone); }

.gallery-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 0.75rem; }
.gallery-item {
  position: relative;
  aspect-ratio: 1/1;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--c-line-soft);
  cursor: zoom-in;
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 0.75rem 1rem;
  background: linear-gradient(to top, rgba(31, 28, 25, 0.85) 0%, transparent 100%);
  color: var(--c-bone);
  font-family: var(--f-sans);
  font-size: 0.85rem;
  transform: translateY(100%);
  transition: transform var(--t);
}
.gallery-item:hover .gallery-item-caption { transform: translateY(0); }

/* Lightbox */
.lightbox {
  position: fixed; inset: 0;
  background: rgba(31, 28, 25, 0.96);
  display: none; align-items: center; justify-content: center;
  z-index: 1000;
  padding: 2rem;
}
.lightbox.open { display: flex; }
.lightbox img { max-width: 95vw; max-height: 90vh; object-fit: contain; border-radius: var(--radius); }
.lightbox-close {
  position: absolute;
  top: 1.5rem; right: 1.5rem;
  width: 44px; height: 44px;
  background: var(--c-clay);
  border: 0;
  color: var(--c-iron);
  font-size: 1.5rem;
  cursor: pointer;
  border-radius: 50%;
  display: grid; place-items: center;
}
.lightbox-caption {
  position: absolute;
  bottom: 1.5rem; left: 50%;
  transform: translateX(-50%);
  color: var(--c-bone);
  font-family: var(--f-sans);
  background: rgba(31, 28, 25, 0.7);
  padding: 0.5rem 1rem;
  border-radius: var(--radius);
}

/* =====================================================================
   Forms
   ===================================================================== */

.form { display: grid; gap: 1rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media (max-width: 600px) { .form-row { grid-template-columns: 1fr; } }

.form-group label {
  display: block;
  font-family: var(--f-sans);
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--c-iron-mid);
  margin-bottom: 0.4rem;
  letter-spacing: 0.01em;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 0.9rem;
  font-family: var(--f-sans);
  font-size: 0.9375rem;
  background: var(--c-cream);
  border: 1px solid var(--c-line);
  border-radius: var(--radius-sm);
  color: var(--c-iron);
  transition: border-color var(--t), box-shadow var(--t);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: 0;
  border-color: var(--c-clay);
  box-shadow: 0 0 0 3px rgba(214, 128, 76, 0.15);
}
.form-group textarea { min-height: 130px; resize: vertical; }
.form-group .hint { font-size: 0.78rem; color: var(--c-text-soft); margin-top: 0.3rem; font-family: var(--f-sans); }

.inquiry-box {
  background: var(--c-cream);
  border: 1px solid var(--c-line);
  border-radius: var(--radius-lg);
  padding: 2rem 2rem 2.25rem;
  position: relative;
  box-shadow: var(--shadow-sm);
}
.inquiry-box h3 { margin-top: 0; }

/* Highlight des vorausgewählten Geräts */
.form-group select.is-highlighted {
  animation: pulse-clay 1.5s ease;
}
@keyframes pulse-clay {
  0%   { box-shadow: 0 0 0 0 rgba(214, 128, 76, 0.45); border-color: var(--c-clay); }
  50%  { box-shadow: 0 0 0 8px rgba(214, 128, 76, 0); border-color: var(--c-clay); }
  100% { box-shadow: 0 0 0 0 rgba(214, 128, 76, 0); }
}

.flash {
  padding: 0.85rem 1rem;
  border-radius: var(--radius-sm);
  margin-bottom: 1rem;
  font-family: var(--f-sans);
  font-size: 0.9rem;
  border-left: 3px solid;
}
.flash--success { background: #ecf3e3; border-color: var(--c-moss); color: #3e4a26; }
.flash--error   { background: #f7e3df; border-color: var(--c-warn); color: #7a2814; }
.flash--info    { background: #e8e1cf; border-color: var(--c-iron); color: var(--c-iron); }
.flash--warning { background: #fbf0d8; border-color: #b58a1e; color: #6a4f0f; }

/* =====================================================================
   Page Hero (Subseiten)
   ===================================================================== */

.page-hero {
  background: var(--c-iron);
  color: var(--c-bone);
  padding: 4rem 0 3.5rem;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 8px;
  background: var(--c-clay);
}
.page-hero::after {
  content: '';
  position: absolute;
  top: 8px; left: 0; right: 0;
  height: 40px;
  background-image: repeating-linear-gradient(
    -45deg,
    transparent 0,
    transparent 10px,
    rgba(214, 128, 76, 0.12) 10px,
    rgba(214, 128, 76, 0.12) 12px
  );
}
.page-hero > .container { position: relative; z-index: 1; }
.page-hero h1 { color: var(--c-bone); margin: 0; }
.page-hero p { font-size: 1.0625rem; color: #c9b88f; margin: 0.75rem 0 0; max-width: 620px; }
.page-hero .breadcrumb {
  font-family: var(--f-sans);
  font-size: 0.8125rem;
  color: var(--c-clay);
  margin-bottom: 1rem;
  font-weight: 500;
}
.page-hero .breadcrumb a { color: #c9b88f; text-decoration: none; }
.page-hero .breadcrumb a:hover { color: var(--c-bone); }

/* =====================================================================
   Prose (CMS-Inhalte)
   ===================================================================== */

.prose { max-width: 760px; font-size: 1rem; line-height: 1.75; color: var(--c-iron-mid); }
.prose h2 { margin-top: 2.5rem; color: var(--c-iron); }
.prose h3 { margin-top: 2rem; color: var(--c-iron); }
.prose ul, .prose ol { padding-left: 1.5rem; margin: 0 0 1.25rem; }
.prose li { margin-bottom: 0.4rem; }
.prose strong { font-weight: 600; color: var(--c-iron); }
.prose a { font-weight: 500; }
.prose img { border-radius: var(--radius); margin: 1.5rem 0; }
.prose blockquote {
  border-left: 3px solid var(--c-clay);
  padding: 0.5rem 1.25rem;
  margin: 1.5rem 0;
  font-style: italic;
  color: var(--c-text-soft);
  background: var(--c-cream);
  border-radius: 0 var(--radius) var(--radius) 0;
}

/* =====================================================================
   Layouts
   ===================================================================== */

.two-col {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 3rem;
  align-items: start;
}
@media (max-width: 800px) { .two-col { grid-template-columns: 1fr; gap: 2rem; } }

.aside-card {
  background: var(--c-cream);
  border: 1px solid var(--c-line);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  position: sticky;
  top: 90px;
}
.aside-card h3 { margin-top: 0; padding-bottom: 0.85rem; border-bottom: 1px solid var(--c-line); font-size: 1rem; }
.aside-card ul { list-style: none; padding: 0; margin: 0; }
.aside-card li {
  padding: 0.55rem 0;
  border-bottom: 1px solid var(--c-line);
  font-size: 0.9rem;
  font-family: var(--f-sans);
}
.aside-card li:last-child { border-bottom: 0; }

/* =====================================================================
   Footer
   ===================================================================== */

.site-footer {
  background: var(--c-iron);
  color: #c9b88f;
  padding: 3.5rem 0 0;
  margin-top: 5rem;
  position: relative;
}
.site-footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--c-clay);
}

.footer-grid {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.5rem;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}
@media (max-width: 800px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 500px) { .footer-grid { grid-template-columns: 1fr; } }

.footer-title {
  font-family: var(--f-display);
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--c-bone);
  display: block;
  margin-bottom: 0.3rem;
  letter-spacing: -0.01em;
}
.footer-tag { color: var(--c-clay); margin: 0 0 0.5rem; font-size: 0.9rem; }
.footer-meta { color: var(--c-text-mute); font-size: 0.8125rem; margin: 0; }

.footer-col h4 {
  font-family: var(--f-sans);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--c-bone);
  margin: 0 0 1rem;
  letter-spacing: 0.01em;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li { margin-bottom: 0.5rem; font-size: 0.875rem; line-height: 1.6; }
.footer-col a { color: #c9b88f; text-decoration: none; }
.footer-col a:hover { color: var(--c-clay); }

.footer-bar {
  border-top: 1px solid rgba(251, 248, 241, 0.08);
  padding: 1.25rem 1.5rem;
  display: flex;
  justify-content: space-between;
  font-size: 0.78rem;
  color: var(--c-text-mute);
  font-family: var(--f-sans);
  max-width: var(--container);
  margin: 0 auto;
}

/* =====================================================================
   Utilities
   ===================================================================== */

.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.mt-2 { margin-top: 2rem; }
.mb-2 { margin-bottom: 2rem; }

.empty-state {
  padding: 3rem 1rem;
  text-align: center;
  color: var(--c-text-soft);
  background: var(--c-cream);
  border: 1px dashed var(--c-line);
  border-radius: var(--radius-md);
  font-family: var(--f-sans);
}

/* =====================================================================
   Cookie-Banner
   ===================================================================== */

.cookie-banner {
  position: fixed;
  bottom: 1rem;
  left: 1rem;
  right: 1rem;
  max-width: 720px;
  margin: 0 auto;
  background: var(--c-iron);
  color: var(--c-bone);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  z-index: 999;
  padding: 1.25rem 1.5rem;
  border: 1px solid rgba(214, 128, 76, 0.3);
  animation: cookie-slide-up 0.4s cubic-bezier(0.4, 0, 0.2, 1) both;
}
@keyframes cookie-slide-up {
  from { transform: translateY(120%); opacity: 0; }
  to   { transform: translateY(0); opacity: 1; }
}
.cookie-banner-inner {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.cookie-banner-text { flex: 1; min-width: 220px; }
.cookie-banner-text strong {
  display: block;
  font-family: var(--f-display);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.3rem;
  color: var(--c-bone);
  letter-spacing: -0.01em;
}
.cookie-banner-text p {
  margin: 0;
  font-size: 0.875rem;
  color: #c9b88f;
  line-height: 1.55;
}
.cookie-banner-text a { color: var(--c-clay); text-decoration: underline; }
.cookie-banner-text a:hover { color: #e89860; }
.cookie-banner-actions { flex-shrink: 0; }
@media (max-width: 600px) {
  .cookie-banner { left: 0.5rem; right: 0.5rem; bottom: 0.5rem; padding: 1rem; }
  .cookie-banner-inner { flex-direction: column; align-items: stretch; gap: 1rem; }
  .cookie-banner-actions { display: flex; }
  .cookie-banner-actions .btn { flex: 1; justify-content: center; }
}
