/* Moto Rumpf GmbH — static preview, 2026
   Night black, photos, red type. Wolf stays in the header. */

:root {
  --red: #db241c;
  --red-hot: #f13a30;
  --bg: #0b0a09;
  --bg-2: #12110f;
  --bg-3: #1a1815;
  --steel: #2a2622;
  --line: #3c3732;
  --line-2: #524a43;
  --text: #f3efe8;
  --muted: #a39a90;
  --dim: #746c64;
  --paper: #e8e0d2;
  --font: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --display: system-ui, -apple-system, "Segoe UI", "Arial Narrow", "Helvetica Neue", Arial, sans-serif;
  --mono: ui-monospace, "SFMono-Regular", Menlo, Consolas, "Liberation Mono", monospace;
  --max: 72rem;
  --gutter: clamp(1.15rem, 3.6vw, 2.4rem);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: auto; color-scheme: dark; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--font);
  font-size: 1.0625rem;
  line-height: 1.55;
  color: var(--text);
  background: var(--bg);
  min-height: 100dvh;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--text); text-underline-offset: 0.18em; }
a:hover { color: #fff; }
:focus-visible { outline: 2px solid var(--red); outline-offset: 3px; }
.skip {
  position: absolute;
  left: -999px;
  top: 0;
}
.skip:focus {
  left: var(--gutter);
  top: 0.5rem;
  z-index: 50;
  background: var(--red);
  color: #fff;
  padding: 0.4rem 0.7rem;
}

/* Header — wolf + wordmark stay small */
.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.65rem var(--gutter);
  background: color-mix(in srgb, var(--bg) 82%, transparent);
  border-bottom: 1px solid color-mix(in srgb, var(--steel) 70%, transparent);
  backdrop-filter: blur(10px);
}
.brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  color: inherit;
  min-width: 0;
}
.brand-wolf {
  width: 2.35rem;
  height: 2.35rem;
  object-fit: contain;
  flex: 0 0 auto;
}
.brand-type {
  display: flex;
  flex-direction: column;
  line-height: 0.85;
}
.brand-moto {
  font-family: var(--display);
  font-style: italic;
  font-weight: 800;
  font-size: 0.54rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--red);
}
.brand-rumpf {
  font-family: var(--display);
  font-style: italic;
  font-weight: 800;
  font-size: 1.18rem;
  letter-spacing: -0.045em;
  text-transform: uppercase;
  color: var(--red);
}
.nav-toggle {
  font: inherit;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text);
  background: transparent;
  border: 1px solid var(--line);
  padding: 0.45rem 0.7rem;
  cursor: pointer;
}
.nav-toggle:hover { border-color: var(--text); }
.site-nav {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--bg-2);
  border-bottom: 1px solid var(--steel);
  padding: 0.5rem var(--gutter) 1rem;
}
.site-nav.is-open { display: block; }
.site-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.site-nav a {
  display: block;
  padding: 0.7rem 0;
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.8rem;
  border-bottom: 1px solid var(--steel);
}
.site-nav a[aria-current="page"] { color: var(--red); }

@media (min-width: 820px) {
  .nav-toggle { display: none; }
  .site-nav {
    display: block;
    position: static;
    background: transparent;
    border: 0;
    padding: 0;
  }
  .site-nav ul {
    flex-direction: row;
    gap: 1.2rem;
    align-items: center;
  }
  .site-nav a {
    padding: 0.2rem 0;
    border: 0;
    position: relative;
  }
  .site-nav a[aria-current="page"]::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -0.42rem;
    height: 2px;
    background: var(--red);
  }
}

/* Layout */
.wrap {
  width: min(100% - 2 * var(--gutter), var(--max));
  margin-inline: auto;
}
.wrap.wide { --max: 86rem; }
main { display: block; }

.kicker {
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 0.85rem;
}
.kicker span { color: var(--red); }
.kicker span.as-written {
  text-transform: none;
  letter-spacing: 0.08em;
  color: inherit;
}

h1, h2, h3 {
  font-family: var(--display);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 0.92;
  margin: 0;
  text-wrap: balance;
}
h1 {
  font-style: italic;
  font-size: clamp(2.5rem, 8.4vw, 5.6rem);
  text-transform: uppercase;
}
h2 {
  font-size: clamp(1.5rem, 3.2vw, 2.15rem);
  text-transform: uppercase;
  font-style: italic;
}
h3 { font-size: 1.15rem; letter-spacing: -0.02em; }
.lede {
  font-size: clamp(1.05rem, 1.9vw, 1.22rem);
  color: var(--paper);
  max-width: 36rem;
  margin: 1.05rem 0 0;
  text-shadow: 0 1px 18px rgba(0,0,0,.45);
}
.muted { color: var(--muted); }
.dim { color: var(--dim); }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  background: var(--red);
  color: #fff;
  text-decoration: none;
  font-weight: 800;
  font-style: italic;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  padding: 0.82rem 1.12rem;
  border: 1px solid var(--red);
  font-size: 0.92rem;
}
.btn:hover { background: var(--red-hot); color: #fff; }
.btn-ghost {
  background: color-mix(in srgb, var(--bg) 35%, transparent);
  color: var(--text);
  border-color: color-mix(in srgb, #fff 28%, transparent);
}
.btn-ghost:hover { border-color: #fff; color: #fff; }

/* Full-bleed photo hero */
.hero-photo {
  position: relative;
  min-height: min(88vh, 50rem);
  display: grid;
  align-items: end;
  overflow: hidden;
  background: #050504;
  isolation: isolate;
}
.hero-photo.compact { min-height: min(64vh, 36rem); }
.hero-photo > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}
.hero-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(11,10,9,.62) 0%, rgba(11,10,9,.18) 52%, rgba(11,10,9,.08) 100%),
    linear-gradient(180deg, rgba(11,10,9,.42) 0%, rgba(11,10,9,.08) 38%, rgba(11,10,9,.78) 100%);
  pointer-events: none;
}
.hero-photo .wrap {
  position: relative;
  z-index: 2;
  padding: 5rem 0 3.1rem;
}
.hero-photo.bikes .kicker {
  color: var(--paper);
  text-shadow: 0 1px 16px rgba(0,0,0,.75);
}
.hero-photo.bikes .kicker span { color: var(--red); }
.hero-photo h1 em,
.hero h1 em {
  font-style: italic;
  color: var(--red);
}
.hero-photo h1 {
  line-height: 1.1;
  letter-spacing: -0.012em;
  max-width: 11.5ch;
}
.hero-photo .wrap {
  padding: 5.5rem 0 3.6rem;
}
.hero-photo .hero-actions {
  margin-top: 2.35rem;
}
.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.05rem;
  margin-top: 1.25rem;
  font-family: var(--mono);
  font-size: 0.74rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: color-mix(in srgb, var(--paper) 80%, var(--muted));
}
.hero-actions { margin-top: 1.5rem; display: flex; flex-wrap: wrap; gap: 0.7rem; }

.photo-tag {
  position: absolute;
  right: var(--gutter);
  bottom: 0.85rem;
  z-index: 2;
  margin: 0;
  font-family: var(--mono);
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: color-mix(in srgb, var(--paper) 70%, transparent);
}

/* Thin red accent — no hazard tape */
.rule {
  height: 2px;
  background: var(--red);
}

/* Sections */
.section { padding: 4.1rem 0; }
.section + .section { border-top: 1px solid var(--steel); }
.section-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  margin-bottom: 1.55rem;
}
.num {
  font-family: var(--mono);
  color: var(--dim);
  font-size: 0.75rem;
  letter-spacing: 0.14em;
}

/* Neutralize old equal-tile plates — stacked type, not a card deck */
.plates,
.plates.four {
  display: block;
  gap: 0;
}
.plate {
  background: transparent;
  border: 0;
  border-top: 1px solid var(--steel);
  padding: 1.35rem 0 1.45rem;
}
.plate:last-child { border-bottom: 1px solid var(--steel); }
.plate h3 {
  text-transform: uppercase;
  font-style: italic;
  margin: 0.2rem 0 0.5rem;
}
.plate p { margin: 0; color: var(--muted); max-width: 38rem; }
.plate .idx {
  font-family: var(--mono);
  font-size: 0.7rem;
  color: var(--red);
  letter-spacing: 0.14em;
}

.stack {
  display: grid;
  gap: 0;
}
.stack-item {
  padding: 1.4rem 0 1.5rem;
  border-top: 1px solid var(--steel);
}
.stack-item:last-child { border-bottom: 1px solid var(--steel); }
.stack-item .idx {
  font-family: var(--mono);
  font-size: 0.7rem;
  color: var(--red);
  letter-spacing: 0.14em;
}
.stack-item h3 {
  text-transform: uppercase;
  font-style: italic;
  margin: 0.22rem 0 0.5rem;
  font-size: clamp(1.2rem, 2.2vw, 1.65rem);
}
.stack-item p {
  margin: 0;
  color: var(--muted);
  max-width: 38rem;
}

address.nap {
  font-style: normal;
  color: var(--paper);
  margin: 1.15rem 0 0;
  line-height: 1.5;
  max-width: 28rem;
}
address.nap a { color: var(--paper); }

.who {
  display: grid;
  gap: 2rem;
}
.quote {
  border-left: 2px solid var(--red);
  padding: 0.15rem 0 0.15rem 1.05rem;
  font-style: italic;
  font-weight: 700;
  font-size: 1.32rem;
  line-height: 1.28;
  letter-spacing: -0.03em;
  max-width: 22rem;
}

.years {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--steel);
  border-bottom: 1px solid var(--steel);
}
.year {
  display: grid;
  grid-template-columns: 8.2rem 1fr;
  gap: 0.8rem;
  padding: 1.05rem 0;
  border-bottom: 1px solid var(--steel);
}
.year:last-child { border-bottom: 0; }
.year dt {
  font-family: var(--mono);
  font-size: 0.78rem;
  color: var(--red);
  letter-spacing: 0.04em;
  margin: 0;
}
.year dd { margin: 0; }
.year strong { font-style: italic; text-transform: uppercase; letter-spacing: -0.02em; }

.note {
  margin: 1.15rem 0 0;
  color: var(--muted);
  max-width: 40rem;
}

/* In-page photos */
.photo-block { margin: 0; }
.photo-block img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: var(--bg-3);
}
.photo-block.wide img { aspect-ratio: 16 / 9; }
.photo-block figcaption,
.wall figcaption {
  font-family: var(--mono);
  font-size: 0.66rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--dim);
  margin-top: 0.55rem;
}

.split-photo {
  display: grid;
  gap: 2rem;
  align-items: start;
}

/* Geschichte masonry */
.intro-geschichte {
  padding: 3.2rem 0 1.4rem;
}
.wall {
  columns: 1;
  column-gap: 0.9rem;
}
.wall figure {
  break-inside: avoid;
  margin: 0 0 0.9rem;
}
.wall img {
  width: 100%;
  height: auto;
  background: var(--bg-3);
}

.album-head { margin: 3rem 0 1.2rem; }
.history-album {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.4rem 0.9rem;
}
.history-album figure {
  margin: 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
}
.history-album .album-open {
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  margin: 0;
  background: transparent;
  cursor: zoom-in;
  color: inherit;
  border-radius: 0;
}
.history-album .album-open:focus-visible {
  outline: 2px solid var(--red);
  outline-offset: 3px;
}
.history-album img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1600 / 1068;
  object-fit: cover;
  background: var(--bg-3);
}
.history-album figcaption {
  font-family: var(--mono);
  font-size: 0.66rem;
  line-height: 1.45;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--dim);
  margin-top: 0.55rem;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

/* Album lightbox — no CDN */
.album-lb {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: none;
  place-items: center;
  padding: 1rem;
  background: color-mix(in srgb, #000 78%, transparent);
}
.album-lb.is-open { display: grid; }
.album-lb__dialog {
  position: relative;
  width: min(96vw, 68rem);
  max-height: min(92vh, 56rem);
  background: var(--bg-2);
  border: 1px solid var(--steel);
  padding: 0.85rem 0.85rem 1rem;
  display: grid;
  gap: 0.75rem;
  outline: none;
}
.album-lb__stage {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 0;
  background: var(--bg-3);
}
.album-lb__img {
  max-width: 100%;
  max-height: min(78vh, 48rem);
  width: auto;
  height: auto;
  object-fit: contain;
  background: var(--bg-3);
}
.album-lb__cap {
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0;
  line-height: 1.45;
}
.album-lb__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  flex-wrap: wrap;
}
.album-lb__count {
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--dim);
}
.album-lb__close,
.album-lb__nav {
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--paper);
  background: var(--bg-3);
  border: 1px solid var(--steel);
  padding: 0.45rem 0.7rem;
  cursor: pointer;
}
.album-lb__close:hover,
.album-lb__nav:hover,
.album-lb__close:focus-visible,
.album-lb__nav:focus-visible {
  border-color: var(--red);
  color: #fff;
}
.album-lb__toolbar {
  display: flex;
  gap: 0.45rem;
  flex-wrap: wrap;
}
.album-lb__nav[disabled] {
  opacity: 0.35;
  cursor: default;
}

/* Maschinen empty */
.listings {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
}
.listings th,
.listings td {
  text-align: left;
  padding: 0.9rem 0.55rem;
  border-bottom: 1px solid var(--steel);
  vertical-align: top;
}
.listings th {
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--dim);
  font-weight: 600;
}
.listings td { color: var(--muted); }
.listings .status {
  color: var(--red);
  font-style: italic;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 0.85rem;
}
.empty-flag {
  display: inline-block;
  border: 1px solid var(--red);
  color: var(--red);
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 0.25rem 0.5rem;
  margin-bottom: 1rem;
}

/* Kontakt */
.contact-grid {
  display: grid;
  gap: 1.15rem;
}
.vcard, .hours, .anfahrt {
  background: var(--bg-2);
  border: 1px solid var(--steel);
  padding: 1.35rem 1.3rem;
}
.vcard p, .hours p, .anfahrt p { margin: 0.2rem 0; }
.vcard a, .anfahrt a { color: var(--paper); }
.hours table { width: 100%; border-collapse: collapse; font-size: 0.95rem; }
.hours td { padding: 0.4rem 0; border-bottom: 1px solid var(--steel); }
.hours td:last-child { text-align: right; font-family: var(--mono); font-size: 0.85rem; }
.hours tr:last-child td { border: 0; }

.legal {
  padding: 3rem 0 1rem;
  border-top: 1px solid var(--steel);
}
.legal h2 { margin-bottom: 1rem; }
.legal h3 {
  margin: 1.45rem 0 0.5rem;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.legal p, .legal address {
  color: var(--muted);
  max-width: 42rem;
  font-style: normal;
}
.legal address { line-height: 1.5; margin: 0 0 1rem; color: var(--paper); }

/* Footer */
.site-footer {
  margin-top: 1.5rem;
  border-top: 1px solid var(--steel);
  padding: 1.45rem var(--gutter) 2.2rem;
  display: grid;
  gap: 0.7rem;
  color: var(--dim);
  font-size: 0.85rem;
}
.site-footer a { color: var(--muted); text-decoration: none; }
.site-footer a:hover { color: #fff; }
.foot-brand {
  font-style: italic;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--red);
  letter-spacing: -0.03em;
  font-size: 0.95rem;
}
.foot-links { display: flex; flex-wrap: wrap; gap: 0.4rem 1.1rem; }

@media (min-width: 760px) {
  .who { grid-template-columns: 1.15fr 0.85fr; align-items: start; }
  .split-photo { grid-template-columns: 1fr 1.05fr; gap: 2.6rem; }
  .contact-grid { grid-template-columns: 1.1fr 0.9fr; }
  .wall { columns: 2; }
  .history-album { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .stack-item {
    display: grid;
    grid-template-columns: 3.4rem 1fr;
    column-gap: 1.1rem;
    align-items: start;
  }
  .stack-item .idx { padding-top: 0.35rem; }
  .stack-item h3, .stack-item p { grid-column: 2; }
  .site-footer {
    grid-template-columns: 1fr auto;
    align-items: end;
  }
}
@media (min-width: 980px) {
  .year { grid-template-columns: 11rem 1fr; }
  .wall { columns: 3; }
  .hero-photo .wrap { padding: 6.2rem 0 3.6rem; }
}

@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; transition: none !important; }
}



/* Compact process list — same steel lines as .years, no new layout */
.checks {
  list-style: none;
  margin: 1.15rem 0 0;
  padding: 0;
  display: grid;
  gap: 0;
}
.checks li {
  padding: 0.7rem 0;
  border-bottom: 1px solid var(--steel);
  color: var(--muted);
}
.checks li:first-child { border-top: 1px solid var(--steel); }
.checks strong {
  display: block;
  color: var(--text);
  font-style: italic;
  text-transform: uppercase;
  letter-spacing: -0.02em;
}
@media (min-width: 760px) {
  .checks { grid-template-columns: 1fr 1fr; column-gap: 2.2rem; }
}

.hero-photo.bikes > img { object-position: 62% 58%; }
/* Consent bar — Mock B: bottom edge, thin red rule, page stays readable */
.consent-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 80;
  background: var(--bg);
  border-top: 2px solid var(--red);
  padding: 0.7rem var(--gutter) calc(0.75rem + env(safe-area-inset-bottom, 0px));
  box-shadow: 0 -10px 28px color-mix(in srgb, #000 28%, transparent);
}
.consent-bar-inner {
  max-width: 72rem;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 1.25rem;
  align-items: center;
  justify-content: space-between;
}
.consent-line {
  margin: 0;
  flex: 1 1 16rem;
  font-size: 0.8rem;
  line-height: 1.35;
  color: var(--muted);
}
.consent-line strong {
  color: var(--paper);
  font-weight: 600;
  font-style: italic;
}
.consent-line a {
  color: var(--paper);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.consent-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin: 0;
}
.consent-actions button {
  font: inherit;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-size: 0.65rem;
  padding: 0.5rem 0.85rem;
  cursor: pointer;
  border: 1px solid color-mix(in srgb, #fff 28%, transparent);
  background: transparent;
  color: var(--paper);
}
.consent-actions button:hover,
.consent-actions button:focus-visible {
  border-color: #fff;
  color: #fff;
}
.consent-actions button.consent-ok {
  border-color: var(--red);
  color: var(--red);
}
.consent-actions button.consent-ok:hover,
.consent-actions button.consent-ok:focus-visible {
  background: var(--red);
  color: #fff;
}
.consent-panel {
  display: none;
  max-width: 72rem;
  margin: 0.65rem auto 0;
  padding-top: 0.35rem;
  border-top: 1px solid var(--line);
}
.consent-panel.is-open { display: block; }
.consent-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.75rem;
  align-items: start;
  padding: 0.55rem 0;
  border-top: 1px solid var(--line);
}
.consent-row:first-child { border-top: 0; }
.consent-row h3 {
  margin: 0 0 0.15rem;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.consent-row p { margin: 0; font-size: 0.78rem; color: var(--muted); }
.consent-row input { width: 1.1rem; height: 1.1rem; accent-color: var(--red); }
.consent-row input:disabled { opacity: 0.55; }
.consent[hidden] { display: none !important; }
/* Lift sticky mobile CTA above consent bar when both show */
@media (max-width: 759px) {
  .sticky-cta { bottom: 4.75rem; }
  body.consent-open { padding-bottom: 9.5rem; }
}

.hero-photo.short { min-height: min(30vh, 16.5rem); }
.hero-photo.short .wrap { padding: 2.1rem 0 1.35rem; }
.hero-photo.short .photo-tag { bottom: 0.5rem; }

.section.contact-block { padding: 1.45rem 0 2.2rem; }

.map-wrap {
  margin-top: 0.7rem;
  background: var(--bg-3);
  border: 1px solid var(--steel);
  min-height: 12.5rem;
}
.map-wrap iframe {
  display: block;
  width: 100%;
  height: 16rem;
  border: 0;
  background: var(--bg-3);
}
.map-placeholder { padding: 1.25rem 1.2rem 1.35rem; }
.map-placeholder p { margin: 0 0 0.55rem; }
.map-placeholder .btn { margin-top: 0.35rem; cursor: pointer; }

.gebraucht-item {
  padding: 1.45rem 0 1.7rem;
  border-top: 1px solid var(--steel);
}
.gebraucht-item:last-child { border-bottom: 1px solid var(--steel); }
.gebraucht-item h3 {
  text-transform: uppercase;
  font-style: italic;
  margin: 0.2rem 0 0.5rem;
}
.gebraucht-item .lead { margin: 0 0 1rem; color: var(--muted); max-width: 40rem; }
.gebraucht-gallery {
  display: grid;
  gap: 0.65rem;
  margin-top: 0.7rem;
}
@media (min-width: 760px) {
  .gebraucht-gallery { grid-template-columns: repeat(2, 1fr); }
}

#betriebshinweis:not([hidden]) {
  margin: 1rem 0 0;
  color: var(--paper);
  border-left: 2px solid var(--red);
  padding-left: 0.85rem;
}

.vcard address.nap { margin-top: 0; }
.gebraucht-item .idx {
  font-family: var(--mono);
  font-size: 0.7rem;
  color: var(--red);
  letter-spacing: 0.14em;
}


.team-page { padding-top: 1.6rem; padding-bottom: 2.4rem; }
.team-page h1 { margin-bottom: 1.2rem; }
.team-list {
  list-style: none;
  margin: 0;
  padding: 0;
  max-width: 36rem;
}
.team-list li {
  display: grid;
  grid-template-columns: 4.5rem 1fr;
  gap: 0.85rem 1rem;
  align-items: start;
  padding: 0.85rem 0;
  border-top: 1px solid var(--steel);
}
.team-list li:last-child { border-bottom: 1px solid var(--steel); }
.team-list img {
  width: 4.5rem;
  height: 4.5rem;
  object-fit: cover;
  background: var(--bg-3);
}
.team-list h2 {
  margin: 0 0 0.2rem;
  font-size: 1rem;
  text-transform: uppercase;
  font-style: italic;
}
.team-list p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  max-width: 28rem;
}

.team-list p + p { margin-top: 0.45rem; }

/* Contact form */
.form-heading {
  margin: 0.35rem 0 0.55rem;
  font-size: clamp(1.45rem, 3vw, 1.9rem);
}
.form-lede {
  max-width: 36rem;
  color: var(--muted);
  margin: 0 0 1.25rem;
}
.form-lede a { color: var(--paper); }
.contact-form {
  display: grid;
  gap: 0.85rem;
  max-width: 28rem;
  background: var(--bg-2);
  border: 1px solid var(--steel);
  padding: 1.35rem 1.3rem;
}
.contact-form label {
  display: grid;
  gap: 0.35rem;
  font-size: 0.8rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted);
}
.contact-form input,
.contact-form textarea {
  font: inherit;
  text-transform: none;
  letter-spacing: normal;
  color: var(--paper);
  background: #0b0b0b;
  border: 1px solid var(--steel);
  padding: 0.7rem 0.75rem;
  width: 100%;
  box-sizing: border-box;
}
.contact-form textarea { resize: vertical; min-height: 8rem; }
.contact-form input:focus,
.contact-form textarea:focus {
  outline: 2px solid var(--red);
  outline-offset: 1px;
}
.contact-form .btn {
  justify-self: start;
  margin-top: 0.25rem;
  cursor: pointer;
  border: 0;
}
.contact-form .form-note {
  margin: 0.2rem 0 0;
  font-size: 0.8rem;
  line-height: 1.4;
}
.contact-form .form-note a { color: var(--muted); }
.contact-form .hp {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.form-status {
  max-width: 28rem;
  margin: 0 0 1rem;
  padding: 0.75rem 0.9rem;
  border: 1px solid var(--steel);
  font-size: 0.95rem;
}
.form-status.ok { border-color: #3d7a4a; color: #cfe8d4; }
.form-status.err { border-color: var(--red); color: #f0c8c8; }


/* Sticky mobile CTA — launch checklist */
.sticky-cta {
  display: none;
}
@media (max-width: 759px) {
  .sticky-cta {
    display: block;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 40;
    padding: 0.65rem var(--gutter) calc(0.65rem + env(safe-area-inset-bottom, 0px));
    background: color-mix(in srgb, var(--bg) 92%, transparent);
    border-top: 1px solid color-mix(in srgb, var(--steel) 70%, transparent);
    backdrop-filter: blur(10px);
  }
  .sticky-cta .btn {
    display: block;
    width: 100%;
    text-align: center;
  }
  body { padding-bottom: 4.5rem; }
}
.contact-form .btn:disabled {
  opacity: 0.65;
  cursor: wait;
}


/* —— Soft mid-page vacation card (Mock B / Llafranch) —— */
.urlaub-card-wrap {
  padding: 1.75rem 0 0.5rem;
}
.urlaub-card-shell {
  position: relative;
  max-width: 42rem;
}
.urlaub-card {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border: 1px solid var(--steel);
  background: var(--bg-2);
  overflow: hidden;
  max-width: 42rem;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.15s ease;
}
.urlaub-card:hover {
  color: inherit;
  border-color: color-mix(in srgb, var(--red) 45%, var(--steel));
}
.urlaub-card__media {
  position: relative;
  min-height: 9.5rem;
  isolation: isolate;
  overflow: hidden;
  background: #050504;
}
.urlaub-card__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: 35% 50%;
  filter: brightness(0.62) saturate(0.75) contrast(1.06);
}
.urlaub-card__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(11,10,9,.15) 0%, rgba(11,10,9,.72) 100%),
    linear-gradient(90deg, rgba(11,10,9,.45) 0%, transparent 55%);
  pointer-events: none;
}
.urlaub-card__body {
  padding: 1.15rem 1.25rem 1.3rem;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  border-top: 1px solid var(--steel);
}
.urlaub-card__kicker {
  margin: 0;
  font-family: var(--mono, ui-monospace, Menlo, Consolas, monospace);
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}
.urlaub-card__kicker span { color: var(--red); }
.urlaub-card__title {
  margin: 0;
  font-size: clamp(1.05rem, 2.2vw, 1.2rem);
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.3;
  color: var(--paper);
}
.urlaub-card__meta {
  margin: 0.15rem 0 0;
  font-size: 0.88rem;
  color: var(--muted);
}
.urlaub-card__cta {
  margin-top: 0.55rem;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}
.urlaub-card:hover .urlaub-card__cta { color: #fff; }

.urlaub-card__dismiss {
  position: absolute;
  top: 0.45rem;
  right: 0.45rem;
  z-index: 3;
  width: 2rem;
  height: 2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 0;
  border: 1px solid color-mix(in srgb, var(--steel) 80%, transparent);
  border-radius: 0;
  background: color-mix(in srgb, var(--bg) 78%, transparent);
  color: var(--muted);
  font: inherit;
  font-size: 1.15rem;
  line-height: 1;
  cursor: pointer;
  backdrop-filter: blur(6px);
}
.urlaub-card__dismiss:hover {
  color: #fff;
  border-color: color-mix(in srgb, var(--red) 40%, var(--steel));
}
.urlaub-card__dismiss:focus-visible {
  outline: 2px solid var(--red);
  outline-offset: 2px;
}

@media (min-width: 640px) {
  .urlaub-card-shell,
  .urlaub-card {
    max-width: 48rem;
  }
  .urlaub-card {
    grid-template-columns: minmax(11rem, 38%) 1fr;
    align-items: stretch;
  }
  .urlaub-card__media {
    min-height: 100%;
    min-height: 8.5rem;
  }
  .urlaub-card__media::after {
    background:
      linear-gradient(90deg, transparent 40%, rgba(11,10,9,.55) 100%),
      linear-gradient(180deg, rgba(11,10,9,.2) 0%, rgba(11,10,9,.55) 100%);
  }
  .urlaub-card__body {
    border-top: 0;
    border-left: 1px solid var(--steel);
    justify-content: center;
    padding: 1.25rem 1.45rem;
  }
}
