/* ================================================================
   HOTZ Leistungen · Subpage Style (shared)
   Mirrors index.html token system. Compact 1-scroll layout.
================================================================ */
:root {
  --bg:           oklch(0.992 0.003 250);
  --bg-soft:      oklch(0.972 0.006 248);
  --bg-mute:      oklch(0.948 0.010 248);

  --text:         oklch(0.22 0.020 252);
  --text-mid:     oklch(0.44 0.020 252);
  --text-dim:     oklch(0.60 0.018 252);
  --text-faint:   oklch(0.78 0.012 252);

  --border:       oklch(0.90 0.012 248);
  --border-soft:  oklch(0.945 0.010 248);
  --border-strong:oklch(0.82 0.018 250);

  --ink:          oklch(0.36 0.13 252);
  --ink-hover:    oklch(0.30 0.135 252);
  --ink-deep:     oklch(0.24 0.13 252);

  --accent:       oklch(0.56 0.13 245);
  --accent-hover: oklch(0.48 0.14 245);
  --accent-soft:  oklch(0.945 0.022 245);

  --warm:         oklch(0.71 0.175 50);
  --warm-hover:   oklch(0.66 0.185 48);

  --font:        'Archivo', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --font-display:'Archivo', system-ui, -apple-system, 'Segoe UI', sans-serif;

  --container: 1200px;
  --header-h: 68px;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --t-fast: 200ms;
  --t-base: 360ms;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  scroll-padding-top: calc(var(--header-h) + 12px);
}
body {
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  letter-spacing: -0.005em;
}
img, svg { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
button { font-family: inherit; background: none; border: 0; cursor: pointer; color: inherit; }

:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; border-radius: 4px; }

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

/* ─── Header (compact, same look as index.html) ─── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--header-h);
  z-index: 100;
  background: color-mix(in oklch, var(--bg) 80%, transparent);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  height: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
.site-logo { display: flex; align-items: center; }
.site-logo img { height: 36px; width: auto; }
.header-right { display: flex; align-items: center; gap: 0.75rem; }
.back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--ink);
  padding: 0.5rem 0.75rem;
  border-radius: 4px;
  transition: background var(--t-fast) var(--ease);
}
.back-link:hover { background: var(--accent-soft); color: var(--accent); }
.back-link svg { width: 14px; height: 14px; }

/* ─── Buttons (mirror index.html) ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  font-size: 0.9rem;
  font-weight: 500;
  line-height: 1;
  border-radius: 2px;
  border: 1px solid transparent;
  padding: 1rem 1.625rem;
  cursor: pointer;
  transition: background var(--t-base) var(--ease), color var(--t-base) var(--ease), border-color var(--t-base) var(--ease);
  white-space: nowrap;
}
.btn svg { width: 14px; height: 14px; transition: transform var(--t-base) var(--ease); }
.btn:hover svg { transform: translateX(3px); }
.btn-fill {
  background: var(--warm);
  color: #fff;
  border-color: var(--warm);
  font-weight: 600;
}
.btn-fill:hover { background: var(--warm-hover); border-color: var(--warm-hover); }
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.btn-ghost:hover { background: var(--ink); color: #fff; }
.btn-outline {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.btn-outline:hover { background: var(--accent); border-color: var(--accent); color: #fff; }

/* ─── Page-Hero ─── */
.page {
  padding-top: calc(var(--header-h) + 1.5rem);
}

.breadcrumb {
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-dim);
  font-weight: 500;
  margin: 1.25rem 0 2rem;
  display: flex;
  align-items: center;
  gap: 0.625rem;
  flex-wrap: wrap;
}
.breadcrumb a { color: var(--text-dim); transition: color var(--t-fast) var(--ease); }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb .sep { color: var(--text-faint); }
.breadcrumb .current { color: var(--warm); font-weight: 600; text-transform: none; letter-spacing: -0.005em; font-size: 0.9375rem; }

.page-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: clamp(2.5rem, 5vw, 5rem);
  align-items: center;
  padding-bottom: clamp(3rem, 6vw, 5rem);
  border-bottom: 1px solid var(--border);
}
.page-kicker {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.5rem;
}
.page-kicker::before { content: ''; width: 32px; height: 2px; background: var(--warm); }
.page-title {
  font-size: clamp(2.25rem, 4.5vw, 3.75rem);
  font-weight: 800;
  font-stretch: 116%;
  color: var(--ink);
  letter-spacing: -0.025em;
  line-height: 1.0;
  margin-bottom: 1.5rem;
  max-width: 16ch;
}
.page-title em {
  font-style: normal;
  color: var(--warm);
  font-weight: 800;
}
.page-lead {
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--text-mid);
  max-width: 42ch;
  margin-bottom: 2rem;
}
.page-hero-ctas { display: flex; gap: 0.75rem; flex-wrap: wrap; }

/* Visual stage right of hero */
.page-visual {
  position: relative;
  aspect-ratio: 4 / 5;
  background: var(--ink);
  border-radius: 2px;
  overflow: hidden;
  isolation: isolate;
  box-shadow:
    0 1px 2px oklch(0.36 0.13 252 / 0.10),
    0 40px 80px -24px oklch(0.36 0.13 252 / 0.30);
}
.page-visual::before {
  /* Removed for photo backgrounds — overlay handled by ::after below */
  content: none;
}
.page-visual-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
  transition: transform 1.2s var(--ease);
}
.page-visual:hover .page-visual-photo { transform: scale(1.025); }
.page-visual::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to top, oklch(0.24 0.13 252 / 0.62) 0%, oklch(0.24 0.13 252 / 0.20) 40%, transparent 70%);
  pointer-events: none;
}
.page-visual-art {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  z-index: 1;
}
.page-visual-art svg {
  width: 62%;
  height: 62%;
  stroke: oklch(1 0 0 / 0.55);
  stroke-width: 1.2;
  fill: none;
}
.page-visual-art svg .accent { stroke: var(--warm); stroke-width: 1.6; }
.page-visual-caption {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  right: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  z-index: 2;
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: oklch(1 0 0 / 0.7);
}
.page-visual-caption strong {
  color: var(--warm);
  font-weight: 700;
  letter-spacing: 0.01em;
  text-transform: none;
  font-size: 0.875rem;
}

/* ─── Sections ─── */
.section {
  padding: clamp(3rem, 5vw, 4.5rem) 0;
  border-bottom: 1px solid var(--border);
}
.section-eyebrow {
  font-size: 0.7rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 500;
  margin-bottom: 0.875rem;
}
.section h2 {
  font-size: clamp(1.625rem, 2.6vw, 2.25rem);
  font-weight: 700;
  font-stretch: 110%;
  color: var(--ink);
  letter-spacing: -0.022em;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  max-width: 22ch;
}
.section h2 em { font-style: normal; color: var(--warm); font-weight: 700; }

/* Benefits grid */
.benefits {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.25rem 2rem;
  list-style: none;
}
.benefits li {
  display: flex;
  gap: 0.875rem;
  padding: 1.125rem 0;
  border-top: 1px solid var(--border);
  font-size: 0.9375rem;
  line-height: 1.5;
  color: var(--text);
}
.benefits li::before {
  content: '';
  flex-shrink: 0;
  width: 8px;
  height: 8px;
  margin-top: 0.5rem;
  background: var(--warm);
  border-radius: 50%;
}
.benefits li strong {
  display: block;
  font-weight: 700;
  font-size: 1.0625rem;
  color: var(--ink);
  margin-bottom: 0.25rem;
  letter-spacing: -0.01em;
}

/* Specs table */
.specs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--border);
  border-left: 1px solid var(--border);
}
.specs > div {
  padding: 1.25rem 1.5rem;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 96px;
}
.specs dt {
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-dim);
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.specs dd {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.015em;
  line-height: 1.25;
}
.specs dd em {
  font-style: normal;
  color: var(--warm);
  font-weight: 700;
}

/* Brand band */
.brands {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 0.625rem;
}
.brand-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.625rem 1rem;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: 2px;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: 0.02em;
}
.brand-chip::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--warm);
  border-radius: 50%;
  flex-shrink: 0;
}

/* Gallery strip — extra reference photos */
.page-gallery {
  margin-top: clamp(2.5rem, 5vw, 4rem);
  padding-top: clamp(2.5rem, 5vw, 4rem);
  border-top: 1px solid var(--border);
}
.page-gallery .section-eyebrow { margin-bottom: 0.5rem; }
.page-gallery > h2 {
  font-weight: 700;
  font-stretch: 110%;
  font-size: clamp(1.5rem, 2.4vw, 2rem);
  color: var(--ink);
  letter-spacing: -0.022em;
  line-height: 1.1;
  margin-bottom: clamp(1.5rem, 3vw, 2.25rem);
  max-width: 36ch;
}
.page-gallery > h2 em { color: var(--warm); font-style: normal; font-weight: 700; }
.gallery-grid {
  display: grid;
  gap: clamp(1rem, 1.6vw, 1.5rem);
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}
.gallery-grid.one { grid-template-columns: 1fr; }
.gallery-grid.two { grid-template-columns: 1.15fr 0.85fr; }
.gallery-grid.three { grid-template-columns: repeat(3, 1fr); }
.gallery-grid.five {
  grid-template-columns: 1.4fr 1fr 1fr;
  grid-template-rows: auto auto;
  grid-template-areas:
    'big mid1 mid2'
    'big small1 small2';
}
.gallery-grid.five > :nth-child(1) { grid-area: big; }
.gallery-grid.five > :nth-child(1) img { aspect-ratio: 3/4; }
.gallery-grid.five > :nth-child(2) { grid-area: mid1; }
.gallery-grid.five > :nth-child(3) { grid-area: mid2; }
.gallery-grid.five > :nth-child(4) { grid-area: small1; }
.gallery-grid.five > :nth-child(5) { grid-area: small2; }
@media (max-width: 880px) {
  .gallery-grid.three { grid-template-columns: 1fr 1fr; }
  .gallery-grid.three > :nth-child(3) { grid-column: 1 / -1; }
  .gallery-grid.three > :nth-child(3) img { aspect-ratio: 21/9; }
  .gallery-grid.five {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
    grid-template-areas: none;
  }
  .gallery-grid.five > * { grid-area: auto !important; }
  .gallery-grid.five > :nth-child(1) img { aspect-ratio: 4/3; }
}
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 2px;
  background: var(--bg-mute);
  box-shadow: 0 18px 40px -28px oklch(0.36 0.13 252 / 0.35);
}
.gallery-item img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  aspect-ratio: 4/3;
  transition: transform 1.2s var(--ease);
}
.gallery-item.tall img { aspect-ratio: 3/4; }
.gallery-item.wide img { aspect-ratio: 16/10; }
.gallery-item:hover img { transform: scale(1.025); }
.gallery-item::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to top, oklch(0.24 0.13 252 / 0.35), transparent 40%);
  pointer-events: none;
}
.gallery-caption {
  position: absolute;
  left: clamp(0.875rem, 1.6vw, 1.25rem);
  bottom: clamp(0.875rem, 1.6vw, 1.25rem);
  z-index: 1;
  color: #fff;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-shadow: 0 1px 12px oklch(0 0 0 / 0.5);
}
.gallery-caption em {
  display: block;
  font-style: normal;
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: -0.005em;
  text-transform: none;
  color: oklch(0.95 0.04 50);
  margin-top: 0.15rem;
}
@media (max-width: 720px) {
  .gallery-grid.two { grid-template-columns: 1fr; }
}

/* Recommendations — thematisch passende weitere Leistungen */
.recommend {
  margin-top: clamp(3rem, 6vw, 5rem);
  padding-top: clamp(2.5rem, 5vw, 4rem);
  border-top: 1px solid var(--border);
}
.recommend-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: clamp(1.5rem, 3vw, 2.25rem);
  flex-wrap: wrap;
}
.recommend-head h2 {
  font-weight: 700;
  font-stretch: 110%;
  font-size: clamp(1.5rem, 2.4vw, 2rem);
  color: var(--ink);
  letter-spacing: -0.022em;
  line-height: 1.1;
  max-width: 32ch;
}
.recommend-head h2 em { color: var(--warm); font-style: normal; font-weight: 700; }
.recommend-head p {
  color: var(--text-mid);
  font-size: 0.95rem;
  max-width: 36ch;
}
.recommend-grid {
  display: grid;
  gap: clamp(1rem, 1.6vw, 1.5rem);
  grid-template-columns: repeat(3, 1fr);
}
.recommend-card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 2px;
  overflow: hidden;
  transition: transform var(--t-base) var(--ease),
              border-color var(--t-fast) var(--ease),
              box-shadow var(--t-base) var(--ease);
}
.recommend-card:hover {
  transform: translateY(-4px);
  border-color: var(--accent);
  box-shadow: 0 24px 48px -28px oklch(0.36 0.13 252 / 0.35);
}
.recommend-card-media {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--bg-mute);
}
.recommend-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 1.2s var(--ease);
}
.recommend-card:hover .recommend-card-media img { transform: scale(1.04); }
.recommend-card-num {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  font-weight: 700;
  font-size: 0.78rem;
  color: #fff;
  background: oklch(0.24 0.13 252 / 0.85);
  padding: 0.25rem 0.6rem;
  border-radius: 2px;
  letter-spacing: 0.08em;
}
.recommend-card-body {
  padding: clamp(1rem, 1.6vw, 1.25rem);
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  flex: 1;
}
.recommend-card-title {
  font-weight: 700;
  font-stretch: 105%;
  font-size: 1.2rem;
  color: var(--ink);
  letter-spacing: -0.018em;
  line-height: 1.2;
}
.recommend-card:hover .recommend-card-title { color: var(--accent); }
.recommend-card-text {
  color: var(--text-mid);
  font-size: 0.88rem;
  line-height: 1.5;
  flex: 1;
}
.recommend-card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 0.5rem;
  color: var(--warm);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.015em;
}
.recommend-card-link svg {
  width: 12px;
  height: 12px;
  transition: transform var(--t-fast) var(--ease);
}
.recommend-card:hover .recommend-card-link svg { transform: translateX(3px); }
@media (max-width: 880px) {
  .recommend-grid { grid-template-columns: 1fr 1fr; }
  .recommend-grid > :nth-child(3) { grid-column: 1 / -1; }
  .recommend-grid > :nth-child(3) .recommend-card-media { aspect-ratio: 21/9; }
}
@media (max-width: 540px) {
  .recommend-grid { grid-template-columns: 1fr; }
  .recommend-grid > :nth-child(3) { grid-column: auto; }
}

/* Bottom CTA band */
.cta-band {
  background: var(--ink-deep);
  color: oklch(1 0 0 / 0.92);
  padding: clamp(3rem, 6vw, 5rem) 0;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, oklch(1 0 0 / 0.03) 1px, transparent 1px),
    linear-gradient(to bottom, oklch(1 0 0 / 0.03) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
  pointer-events: none;
}
.cta-band .container { position: relative; z-index: 1; }
.cta-band-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}
.cta-band-eyebrow {
  font-size: 0.7rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: oklch(1 0 0 / 0.55);
  font-weight: 500;
  margin-bottom: 1rem;
}
.cta-band h2 {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 800;
  font-stretch: 110%;
  color: #fff;
  letter-spacing: -0.025em;
  line-height: 1.05;
  margin-bottom: 1.25rem;
  max-width: 18ch;
}
.cta-band h2 em { color: var(--warm); font-style: normal; font-weight: 800; }
.cta-band p {
  font-size: 1rem;
  line-height: 1.65;
  color: oklch(1 0 0 / 0.72);
  max-width: 44ch;
}
.cta-band-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.cta-band .btn-fill { background: var(--warm); border-color: var(--warm); color: #fff; }
.cta-band .btn-fill:hover { background: var(--warm-hover); border-color: var(--warm-hover); }
.cta-band .btn-outline { color: #fff; border-color: oklch(1 0 0 / 0.4); }
.cta-band .btn-outline:hover { background: #fff; color: var(--ink); border-color: #fff; }
.cta-band-tel {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  padding: 0.875rem 0;
  border-top: 1px solid oklch(1 0 0 / 0.15);
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: oklch(1 0 0 / 0.55);
}
.cta-band-tel strong {
  font-weight: 700;
  font-size: 1.125rem;
  color: var(--warm);
  letter-spacing: 0;
  text-transform: none;
}

/* ─── Footer (mini) ─── */
.site-footer {
  background: var(--ink-deep);
  color: oklch(1 0 0 / 0.55);
  padding: 2rem 0;
  text-align: center;
  font-size: 0.8125rem;
}
.site-footer a { color: oklch(1 0 0 / 0.78); transition: color var(--t-fast) var(--ease); }
.site-footer a:hover { color: var(--warm); }
.site-footer-inner {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.site-footer-inner .sep { color: oklch(1 0 0 / 0.25); }

/* ─── Responsive ─── */
@media (max-width: 880px) {
  :root { --header-h: 60px; }
  .container, .header-inner { padding-left: 1.25rem; padding-right: 1.25rem; }
  .page-hero {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .page-visual { aspect-ratio: 16/10; order: -1; }
  .page-title { font-size: clamp(1.875rem, 7vw, 2.5rem); }
  .cta-band-inner { grid-template-columns: 1fr; }
  .header-right .back-link span { display: none; }
}

/* ─── Mobile-Feintuning ≤ 640px ─── */
@media (max-width: 640px) {
  .container, .header-inner { padding-left: 1rem; padding-right: 1rem; }
  .page { padding-top: 1rem; }

  /* Hero kompakter */
  .page { padding-top: 0.5rem; }
  .breadcrumb { font-size: 0.78rem; margin-bottom: 1.5rem; flex-wrap: wrap; }
  .page-hero { gap: 1.75rem; }
  .page-kicker { font-size: 0.7rem; margin-bottom: 0.75rem; }
  .page-title { font-size: clamp(1.625rem, 8vw, 2.125rem); line-height: 1.1; }
  .page-lead { font-size: 0.98rem; line-height: 1.6; }
  .page-hero-ctas { flex-direction: column; align-items: stretch; gap: 0.6rem; }
  .page-hero-ctas .btn { width: 100%; justify-content: center; }
  .page-visual { aspect-ratio: 4/3; border-radius: 2px; }
  .page-visual-caption { left: 1rem; bottom: 1rem; font-size: 0.75rem; padding: 0.5rem 0.75rem; }
  .page-visual-caption strong { font-size: 1rem; }

  /* Sections kompakter */
  .section { padding: 2.25rem 0; }
  .section-eyebrow { font-size: 0.7rem; }
  .section h2 { font-size: clamp(1.5rem, 6vw, 1.875rem); line-height: 1.15; margin-bottom: 1.25rem; }

  /* Benefits: 1 Spalte, kompakter */
  .benefits { grid-template-columns: 1fr; gap: 0.875rem; }
  .benefits li { padding: 0.875rem 0 0.875rem 1.5rem; }
  .benefits li strong { font-size: 0.95rem; }
  .benefits li span { font-size: 0.88rem; line-height: 1.55; }

  /* Specs: 2 Spalten statt 1 */
  .specs { grid-template-columns: 1fr 1fr; }
  .specs > div { padding: 0.875rem 1rem; min-height: 80px; }
  .specs dt { font-size: 0.68rem; }
  .specs dd { font-size: 0.95rem; }

  /* Brand-Chips: scrollbar */
  .brands { gap: 0.5rem; }
  .brand-chip { font-size: 0.78rem; padding: 0.4rem 0.75rem; }

  /* Gallery */
  .page-gallery { margin-top: 2rem; padding-top: 2rem; }
  .page-gallery > h2 { font-size: clamp(1.375rem, 5.5vw, 1.625rem); margin-bottom: 1.25rem; }
  .gallery-grid.two { grid-template-columns: 1fr; }
  .gallery-caption { left: 0.875rem; bottom: 0.875rem; font-size: 0.72rem; }
  .gallery-caption em { font-size: 0.95rem; }

  /* Recommend */
  .recommend { margin-top: 2.5rem; padding-top: 2.25rem; }
  .recommend-head { gap: 0.75rem; margin-bottom: 1.25rem; }
  .recommend-head h2 { font-size: clamp(1.375rem, 5.5vw, 1.625rem); }
  .recommend-head p { font-size: 0.88rem; }
  .recommend-grid { grid-template-columns: 1fr; gap: 1rem; }
  .recommend-grid > :nth-child(3) { grid-column: auto; }
  .recommend-grid > :nth-child(3) .recommend-card-media { aspect-ratio: 4/3; }
  .recommend-card-media { aspect-ratio: 16/10; }
  .recommend-card-body { padding: 1rem; }
  .recommend-card-title { font-size: 1.1rem; }
  .recommend-card-text { font-size: 0.85rem; }

  /* CTA-Band */
  .cta-band { padding: 2.5rem 0; }
  .cta-band-inner { gap: 1.5rem; }
  .cta-band h2 { font-size: clamp(1.5rem, 6vw, 1.875rem); line-height: 1.15; }
  .cta-band p { font-size: 0.95rem; }
  .cta-band-actions { gap: 0.75rem; }
  .cta-band-actions .btn { width: 100%; justify-content: center; }
  .cta-band-tel { width: 100%; padding-top: 0.875rem; border-top: 1px solid oklch(1 0 0 / 0.15); }

  /* Footer */
  .site-footer-inner { flex-wrap: wrap; gap: 0.5rem 0.75rem; font-size: 0.78rem; }
}

/* ─── Sehr klein ≤ 380px ─── */
@media (max-width: 380px) {
  .container, .header-inner { padding-left: 0.875rem; padding-right: 0.875rem; }
  .specs { grid-template-columns: 1fr; }
  .page-title { font-size: clamp(1.5rem, 9vw, 2rem); }
  .page-visual-caption strong { font-size: 0.95rem; }
}
