:root {
  --bg: #130b08;
  --bg-soft: #21120d;
  --panel: #2d1710;
  --panel-light: #fff8f2;
  --text: #f8eadf;
  --text-dark: #2b1810;
  --muted: #d9b9a8;
  --brand: #dd5841;
  --brand-dark: #a93624;
  --gold: #f4b45d;
  --line: rgba(255, 255, 255, 0.14);
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
  --radius: 18px;
  --max: 1160px;
  --font-sans: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", Arial, sans-serif;
}

* { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scrollbar-color: var(--brand) #120805;
}
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: #120805;
}
::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--brand), var(--brand-dark));
  border: 2px solid #120805;
  border-radius: 999px;
}
::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, #f06b50, var(--brand));
}
body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--text);
  background: radial-gradient(circle at top, #3a1b10 0, var(--bg) 45%, #090504 100%);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  width: 100%;
  box-sizing: border-box;
  padding-top: env(safe-area-inset-top, 0px);
  background: rgba(17, 9, 6, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  max-width: var(--max);
  margin: 0 auto;
  min-height: 76px;
  padding-left: max(22px, env(safe-area-inset-left, 0px));
  padding-right: max(22px, env(safe-area-inset-right, 0px));
  padding-top: 8px;
  padding-bottom: 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.logo {
  font-weight: 800;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  min-width: 0;
}
.logo span { display: block; color: var(--brand); font-size: 0.82rem; letter-spacing: 0.12em; }
.nav-menu { display: flex; align-items: center; gap: 6px; list-style: none; margin: 0; padding: 0; }
.nav-menu a { display: block; padding: 10px 13px; border-radius: 999px; color: #f8e8dd; font-weight: 700; font-size: 0.9rem; text-transform: uppercase; }
.nav-menu a:hover, .nav-menu a.active { background: var(--brand); color: #fff; }
.nav-toggle { display: none; border: 1px solid var(--line); background: transparent; color: #fff; border-radius: 10px; flex-shrink: 0; align-self: center; width: 44px; height: 44px; padding: 0; margin: 0; font-size: 1.4rem; line-height: 1; }

.hero {
  position: relative;
  width: 100%;
  margin: 0;
  padding: 0;
  line-height: 0;
  background: var(--bg);
}
.hero picture,
.hero-banner {
  display: block;
  width: 100%;
  height: auto;
  max-width: 100%;
}
.hero-banner {
  image-rendering: auto;
}
.hero-content { position: relative; max-width: var(--max); width: 100%; margin: 0 auto; padding: 0 22px 64px; }
.eyebrow { color: var(--gold); font-weight: 800; letter-spacing: 0.16em; text-transform: uppercase; }
h1, h2, h3 { line-height: 1.15; margin: 0 0 18px; }
h1 { max-width: 760px; font-size: clamp(2.7rem, 8vw, 6.3rem); text-transform: uppercase; color: #fff; text-shadow: 0 8px 28px rgba(0,0,0,.5); }
h2 { font-size: clamp(2rem, 5vw, 3.4rem); color: #fff; }
h3 { font-size: 1.45rem; color: #fff; }
.lead { max-width: 720px; font-size: clamp(1.15rem, 2vw, 1.55rem); color: #ffe4d4; }
.intro-strip { padding: 34px 22px 42px; background: linear-gradient(180deg, #140906, #24110c); border-top: 1px solid rgba(255, 255, 255, 0.08); border-bottom: 1px solid var(--line); }
.hero-lead { font-size: clamp(1.25rem, 2.3vw, 2rem); font-weight: 700; max-width: 900px; margin: 0; }
.actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }
.btn { display: inline-flex; align-items: center; justify-content: center; min-height: 48px; padding: 13px 22px; border-radius: 999px; font-weight: 800; border: 2px solid transparent; }
.btn-primary { background: var(--brand); color: #fff; box-shadow: 0 10px 25px rgba(221, 88, 65, .32); }
.btn-primary:hover { background: var(--brand-dark); }
.btn-outline { border-color: rgba(255,255,255,.45); color: #fff; }

.section {
  padding-top: 82px;
  padding-bottom: 82px;
  padding-left: max(22px, env(safe-area-inset-left, 0px));
  padding-right: max(22px, env(safe-area-inset-right, 0px));
}
.section.alt { background: rgba(255, 255, 255, 0.045); }
.container { max-width: var(--max); margin: 0 auto; }
.section-head { max-width: 780px; margin-bottom: 38px; }
.section-head p { color: var(--muted); font-size: 1.12rem; }
.divider { width: 92px; height: 3px; background: var(--brand); margin-top: 20px; }
.grid { display: grid; gap: 24px; }
.grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.card { background: linear-gradient(145deg, rgba(255,255,255,.08), rgba(255,255,255,.035)); border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; box-shadow: var(--shadow); }
.light { background: var(--panel-light); color: var(--text-dark); }
.light h2, .light h3 { color: var(--text-dark); }
.highlight { color: var(--gold); }
.image-card { overflow: hidden; padding: 0; }
.image-card img { width: 100%; height: 100%; min-height: 320px; object-fit: cover; }
.band { background: linear-gradient(rgba(20, 8, 4, .80), rgba(20, 8, 4, .82)), url("../media/images/luxa.org-opacity-changed-photo-shfqi_dggau-large-large.webp") center/cover fixed; }
.gallery-intro { max-width: 820px; margin-bottom: 34px; color: var(--muted); font-size: 1.12rem; }
.gallery-section + .gallery-section { margin-top: 64px; }
.gallery-title { display: flex; align-items: center; gap: 14px; margin-bottom: 22px; }
.gallery-title::after { content: ""; flex: 1; height: 1px; background: var(--line); }
.gallery { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
.gallery figure { position: relative; margin: 0; overflow: hidden; border-radius: 16px; background: #1a0d09; border: 1px solid var(--line); box-shadow: var(--shadow); transition: transform .28s ease; }
.gallery figure:hover { transform: translateY(-3px); }
.gallery img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; object-position: center; display: block; transition: transform .4s ease, filter .3s ease; }
.gallery figure:hover img { transform: scale(1.04); filter: saturate(1.12) brightness(1.04); }
.caption { padding: 12px 16px 14px; color: var(--muted); font-size: .95rem; font-weight: 600; letter-spacing: .01em; border-top: 1px solid var(--line); background: rgba(255, 255, 255, .025); }
.gallery figure img.gallery-zoom { cursor: zoom-in; }
body.lightbox-open { overflow: hidden; }
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1000;
  align-items: center;
  justify-content: center;
  padding: 56px 20px 32px;
  background: rgba(5, 2, 1, 0.92);
  backdrop-filter: blur(8px);
  cursor: zoom-out;
}
.lightbox.is-open { display: flex; }
.lightbox-inner {
  max-width: min(95vw, 1280px);
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  cursor: default;
}
.lightbox-img {
  max-width: 100%;
  max-height: calc(90vh - 72px);
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.55);
}
.lightbox-caption {
  margin: 0;
  color: var(--muted);
  font-weight: 600;
  text-align: center;
  max-width: 52ch;
  font-size: 0.98rem;
}
.lightbox-caption:empty,
.lightbox-caption[hidden] { display: none; }
.lightbox-close {
  position: absolute;
  top: 14px;
  right: 18px;
  width: 44px;
  height: 44px;
  border: 2px solid rgba(255, 255, 255, 0.35);
  border-radius: 50%;
  background: rgba(20, 10, 6, 0.92);
  color: #fff;
  font-size: 1.75rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  z-index: 1001;
}
.lightbox-close:hover { background: var(--brand); border-color: var(--brand); }
.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border: 2px solid rgba(255, 255, 255, 0.35);
  border-radius: 50%;
  background: rgba(20, 10, 6, 0.92);
  color: #fff;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  z-index: 1001;
}
.lightbox-prev { left: 18px; }
.lightbox-next { right: 18px; }
.lightbox-nav:hover { background: var(--brand); border-color: var(--brand); }
.contact-list { list-style: none; padding: 0; margin: 0; }
.contact-list li { margin-bottom: 10px; }
.form { display: grid; gap: 14px; }
.input, textarea { width: 100%; border: 1px solid rgba(45,23,16,.2); border-radius: 12px; padding: 13px 14px; font: inherit; }
textarea { min-height: 150px; resize: vertical; }
.footer {
  padding-top: 34px;
  padding-bottom: max(34px, env(safe-area-inset-bottom, 0px));
  padding-left: max(22px, env(safe-area-inset-left, 0px));
  padding-right: max(22px, env(safe-area-inset-right, 0px));
  background: #090504;
  border-top: 1px solid var(--line);
  color: var(--muted);
}
.footer-inner { max-width: var(--max); margin: 0 auto; display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; align-items: flex-start; }
.footer a { color: #fff; margin-right: 16px; }
.footer a:hover { text-decoration: underline; }
.cookie-notice {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 950;
  padding: 14px max(18px, env(safe-area-inset-right, 0px)) calc(14px + env(safe-area-inset-bottom, 0px)) max(18px, env(safe-area-inset-left, 0px));
  background: rgba(9, 5, 4, 0.98);
  border-top: 1px solid var(--line);
  box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.35);
}
.cookie-notice-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  justify-content: space-between;
}
.cookie-notice p {
  margin: 0;
  font-size: 0.92rem;
  color: var(--muted);
  flex: 1 1 260px;
  max-width: 720px;
  line-height: 1.55;
}
.cookie-notice a { color: var(--gold); text-decoration: underline; margin-right: 0; }
.cookie-notice a:hover { color: #fff; }
.cookie-notice-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  flex-shrink: 0;
  align-items: center;
  justify-content: flex-end;
}
.cookie-notice-actions .btn { flex: 0 0 auto; min-height: 44px; padding: 10px 18px; }
body.cookie-bar-visible { padding-bottom: 120px; }
.footer-consent-reset {
  display: inline;
  margin: 0;
  margin-right: 16px;
  padding: 0;
  border: 0;
  background: none;
  color: #fff;
  font: inherit;
  cursor: pointer;
  text-decoration: underline;
}
.footer-consent-reset:hover { color: var(--gold); }
@media (max-width: 520px) {
  .cookie-notice-inner { flex-direction: column; align-items: stretch; }
  .cookie-notice-actions { justify-content: stretch; }
  .cookie-notice-actions .btn { flex: 1 1 calc(50% - 5px); min-width: 120px; }
}
.map-consent { padding: 24px 26px; }
.map-consent-text { margin: 0 0 18px; color: var(--text-dark); font-size: 1rem; line-height: 1.6; max-width: 720px; }
.map-consent-text strong { color: var(--text-dark); }
.map-consent-text a { color: var(--brand-dark); text-decoration: underline; }
.map-consent-btn { min-height: 48px; }
.map-embed-wrap { width: 100%; margin-top: 8px; }
.map-embed-wrap iframe { display: block; width: 100%; height: min(50vh, 360px); border: 0; border-radius: var(--radius); }
.map-consent.is-map-active .map-consent-prompt { display: none; }
.map-consent.is-map-active .map-embed-wrap { margin-top: 0; }

/* Deutschland-Karte (OpenStreetMap / Leaflet) */
.journey-map-card { padding: 24px 26px; }
.journey-leaflet-host {
  width: 100%;
  min-height: 360px;
  height: min(55vh, 500px);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: #e8e0da;
  z-index: 1;
}
.journey-leaflet-host .leaflet-container {
  width: 100%;
  height: 100%;
  font: inherit;
}
.journey-map-foot {
  margin: 10px 0 0;
  color: var(--text-dark);
}
.journey-map-foot a {
  color: var(--brand-dark);
  text-decoration: underline;
}
.journey-map-foot .journey-foot-muted {
  color: #5c4a40;
  font-size: 0.88rem;
}

/* Unterwegs: Karte + Seitenleiste */
.journey-page-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 380px);
  gap: 22px;
  align-items: start;
}
.journey-map-inner {
  margin-top: 12px;
}
.journey-stack { min-width: 0; }
.journey-side-title { margin: 0 0 10px; font-size: 1.15rem; }
.journey-place-title { margin: 0 0 8px; font-size: 1.1rem; color: var(--brand-dark); }
.journey-place-detail { margin: 0 0 14px; font-size: 0.95rem; line-height: 1.55; }

.journey-place-admin-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 14px;
  margin: 0 0 14px;
  padding: 10px 12px;
  border-radius: 10px;
  background: rgba(183, 28, 28, 0.06);
  border: 1px solid rgba(183, 28, 28, 0.12);
}
.journey-place-admin-bar[hidden] {
  display: none !important;
}
.journey-place-del-hint { margin: 0 !important; flex: 1 1 8rem; line-height: 1.35 !important; min-width: 0; }
.journey-side-empty { margin: 0; }
.journey-reviews {
  display: grid;
  gap: 12px;
  margin-bottom: 18px;
  max-height: min(42vh, 340px);
  overflow-y: auto;
  padding-right: 4px;
}
.journey-review-card {
  padding: 10px 12px;
  border-radius: var(--radius);
  background: rgba(255,255,255,.72);
  border: 1px solid rgba(19,11,8,.08);
}
.journey-rev-meta { font-size: 0.82rem; color: #4a3f38; margin-bottom: 6px; }
.journey-rev-stars { letter-spacing: 0.06em; color: #b45309; font-weight: 700; }
.journey-rev-name { font-weight: 600; color: var(--text-dark); }
.journey-rev-text { margin: 6px 0 0; font-size: 0.9rem; line-height: 1.5; }
.journey-rev-imgs { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 8px; }
.journey-rev-img { max-height: 72px; width: auto; border-radius: 8px; display: block; }
.journey-form-box { border-top: 1px solid rgba(19,11,8,.1); padding-top: 14px; margin-top: 6px; }
.journey-form-heading { margin: 0 0 10px; font-size: 1rem; }
.journey-form .input { width: 100%; margin-bottom: 10px; }
.journey-stars-field { border: 0; margin: 0 0 12px; padding: 0; }
.journey-legend { font-size: 0.88rem; font-weight: 600; padding: 0; margin-bottom: 6px; }
.journey-stars-select { display: flex; flex-wrap: wrap; gap: 8px 14px; font-size: 0.9rem; }
.journey-stars-select label { font-weight: 500; cursor: pointer; }
.journey-dsgvo { display: block; font-size: 0.85rem; line-height: 1.45; margin: 10px 0 12px; }
.journey-dsgvo input { margin-right: 8px; vertical-align: text-top; }
.journey-hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.journey-form-msg { margin-top: 10px; min-height: 1.2em; color: var(--text-muted, #555); }
.journey-form-msg.journey-form-msg--pending {
  color: var(--accent-warm, #7a3818);
  font-weight: 500;
}

.journey-review-moderation-note {
  margin: 0 0 12px;
  padding: 8px 10px;
  line-height: 1.45;
  color: var(--text-muted, #555);
  background: rgba(139, 46, 26, 0.07);
  border-radius: 8px;
  border: 1px solid rgba(139, 46, 26, 0.15);
}
.text-danger { color: #b91c1c; }
.journey-owner-box { padding-bottom: 4px; position: relative; }
.journey-owner-heading { font-size: 1rem; margin-bottom: 6px !important; color: var(--brand-dark); }
.journey-owner-hint { margin: 0 0 10px; font-size: 0.82rem !important; line-height: 1.45; }
.journey-owner-form .input { margin-bottom: 8px; }
.journey-owner-sep { margin: 16px 0; border-color: rgba(19,11,8,.15); opacity: 1; }

.journey-mod-queue { margin-top: 14px; padding-top: 12px; border-top: 1px solid rgba(19,11,8,.12); }
.journey-mod-title { font-size: 0.95rem; margin: 0 0 6px; color: var(--brand-dark); }
.journey-mod-intro { margin: 0 0 8px; font-size: 0.8rem !important; line-height: 1.45; }
.journey-pending-wrap {
  max-height: 280px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.journey-pending-item {
  padding: 10px 12px;
  border-radius: var(--radius-card, 12px);
  background: rgba(19,11,8,.04);
  border: 1px solid rgba(19,11,8,.1);
  font-size: 0.82rem;
}
.journey-pending-item .journey-pending-head { font-weight: 600; color: var(--brand-dark); margin-bottom: 6px; line-height: 1.35; }
.journey-pending-item .journey-pending-meta { color: var(--text-muted, #555); font-size: 0.76rem; margin-bottom: 6px; }
.journey-pending-item .journey-pending-actions {
  margin-top: 8px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}
.journey-btn-danger-outline {
  color: #b71c1c !important;
  border-color: rgba(183, 28, 28, 0.55) !important;
}
.journey-btn-danger-outline:hover {
  background: rgba(183, 28, 28, 0.08) !important;
}
.journey-pending-item .journey-rev-imgs { margin-top: 8px; }
.journey-pending-item .journey-rev-img { max-height: 64px; border-radius: 6px; }

.journey-address-suggest-wrap { position: relative; margin-bottom: 8px; }
.journey-address-suggest-wrap > label { margin-top: 0; }
.journey-address-suggest {
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  z-index: 50;
  margin: 5px 0 0;
  padding: 0;
  list-style: none;
  max-height: 240px;
  overflow-y: auto;
  background: var(--card-bg, var(--cream, #f7f3ef));
  color: var(--brand-dark);
  border: 1px solid rgba(19, 11, 8, 0.18);
  border-radius: 10px;
  box-shadow: 0 10px 28px rgba(19, 11, 8, 0.12);
}
.journey-address-suggest li {
  padding: 9px 12px;
  cursor: pointer;
  font-size: 0.84rem;
  line-height: 1.38;
  border-bottom: 1px solid rgba(19, 11, 8, 0.08);
}
.journey-address-suggest li:last-child { border-bottom: none; }
.journey-address-suggest li:hover,
.journey-address-suggest li.is-highlight { background: rgba(139, 46, 26, 0.08); }
.leaflet-container .journey-pin-wrap { background: transparent; border: none; }

@media (max-width: 900px) {
  .journey-page-grid { grid-template-columns: 1fr; gap: 18px; }
  .journey-map-consent-wrap.map-consent.card,
  aside.journey-side.card {
    padding: 20px clamp(14px, 4.5vw, 22px);
  }
  .journey-reviews { max-height: none; }
  .journey-leaflet-host {
    min-height: min(280px, 42vh);
    height: min(48vh, 440px);
  }
  /* Größere Antipp-Ziele (Touch-Geräte) */
  .journey-owner-form .btn,
  .journey-form .btn,
  .journey-place-admin-bar .btn,
  .journey-mod-queue .btn,
  .journey-pending-actions .btn {
    min-height: 44px;
    padding-inline: 14px;
  }
  .journey-address-suggest li {
    padding: 12px 14px;
    min-height: 46px;
    display: flex;
    align-items: center;
    box-sizing: border-box;
  }
  /* Adressliste nicht von Tastatur/Viewport abgeschnitten */
  .journey-address-suggest {
    max-height: min(50vh, 320px);
  }
}
.page-hero {
  position: relative;
  isolation: isolate;
  padding-top: calc(100px + env(safe-area-inset-top, 0px));
  padding-bottom: 56px;
  padding-left: max(22px, env(safe-area-inset-left, 0px));
  padding-right: max(22px, env(safe-area-inset-right, 0px));
  overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background: var(--bg) url("../media/images/hero-banner.webp") center center / cover no-repeat;
}
.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(
    180deg,
    rgba(19, 11, 8, 0.55) 0%,
    rgba(19, 11, 8, 0.72) 45%,
    rgba(19, 11, 8, 0.94) 100%
  );
}
.page-hero .container {
  position: relative;
  max-width: var(--max);
  margin: 0 auto;
}
.page-hero h1 { margin-bottom: 12px; }
.page-hero .lead { margin: 0; }

.impression-band {
  padding-top: 28px;
  padding-bottom: 48px;
  padding-left: max(22px, env(safe-area-inset-left, 0px));
  padding-right: max(22px, env(safe-area-inset-right, 0px));
  background:
    radial-gradient(ellipse at 78% 42%, rgba(221, 88, 65, 0.16), transparent 52%),
    linear-gradient(180deg, #140906 0%, #1a0d09 100%);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.impression-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
}
.impression-copy h2 {
  max-width: 12ch;
  margin-bottom: 16px;
}
.impression-copy p {
  margin: 0;
  max-width: 38ch;
  color: var(--muted);
  font-size: 1.12rem;
}
.impression-reel {
  margin: 0;
  justify-self: end;
}
.impression-frame {
  position: relative;
  width: min(280px, 74vw);
  aspect-ratio: 9 / 16;
  border-radius: 28px;
  overflow: hidden;
  background: #0a0504;
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow:
    0 0 0 8px rgba(19, 11, 8, 0.55),
    0 28px 70px rgba(0, 0, 0, 0.55),
    0 0 80px rgba(221, 88, 65, 0.16);
}
.impression-video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.impression-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.08) 0%, transparent 22%, transparent 74%, rgba(10, 5, 4, 0.28) 100%);
}
.impression-controls {
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 10px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 40px;
  padding: 4px 10px 4px 4px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(10, 5, 4, 0.28);
  backdrop-filter: blur(6px);
}
.impression-sound {
  flex-shrink: 0;
  min-height: 32px;
  padding: 6px 10px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: #fff;
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
}
.impression-sound:hover,
.impression-sound:focus-visible {
  background: rgba(221, 88, 65, 0.9);
  outline: none;
}
.impression-vol {
  flex: 1;
  display: flex;
  align-items: center;
  min-width: 0;
  margin: 0;
}
.impression-volume {
  width: 100%;
  height: 28px;
  margin: 0;
  accent-color: var(--brand);
  cursor: pointer;
}
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.impression-caption {
  margin: 12px 4px 0;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
@media (max-width: 860px) {
  .impression-layout {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }
  .impression-copy h2,
  .impression-copy p {
    max-width: none;
  }
  .impression-reel {
    justify-self: center;
  }
  .impression-frame {
    width: min(260px, 78vw);
  }
}

@media (max-width: 860px) {
  .nav-inner {
    position: relative;
    min-height: 64px;
    gap: 12px;
  }
  .logo { flex: 1 1 auto; line-height: 1.2; }
  .nav-toggle { display: block; }
  .nav-menu {
    position: absolute;
    left: max(12px, env(safe-area-inset-left, 0px));
    right: max(12px, env(safe-area-inset-right, 0px));
    top: calc(100% + 8px);
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 14px;
    background: rgba(17, 9, 6, .98);
    border: 1px solid var(--line);
    border-radius: 16px;
    z-index: 30;
    box-sizing: border-box;
  }
  .nav-menu.is-open { display: flex; }
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 520px) {
  .gallery { grid-template-columns: 1fr; }
  .logo { font-size: 0.9rem; }
  .logo span { font-size: 0.68rem; }
}

/* --- SEO/content helpers --- */
.prose { max-width: 920px; }
.prose h2, .prose h3 { margin-top: 34px; }
.prose p, .prose li { color: inherit; }
.prose ul { padding-left: 22px; }
.prose code { font-size: 0.9em; background: rgba(0, 0, 0, 0.07); padding: 2px 7px; border-radius: 6px; }
.kicker-list { display: grid; gap: 12px; margin: 24px 0 0; padding: 0; list-style: none; }
.kicker-list li { padding-left: 24px; position: relative; }
.kicker-list li::before { content: ""; width: 9px; height: 9px; border-radius: 50%; background: var(--brand); position: absolute; left: 0; top: .7em; }
.message-card { text-align: center; margin-top: 70px; }
.legal-card { line-height: 1.75; }
.skip-link { position: absolute; left: -999px; top: 10px; background: #fff; color: #000; padding: 8px 12px; z-index: 999; }
.skip-link:focus { left: 10px; }

