html[data-theme="dark"] {
  color-scheme: dark;
  --bg: #060606;
  --bg-soft: #101010;
  --gold: #d4af37;
  --gold-dim: #c4a028;
  --text: #f5f0e6;
  --text-soft: color-mix(in srgb, var(--text) 88%, transparent);
  --text-muted: color-mix(in srgb, var(--text) 55%, transparent);
  --border: rgba(212, 175, 55, 0.38);
  --header-bg: color-mix(in srgb, var(--bg) 92%, transparent);
  --btn-primary-fg: #0a0a0a;
  --focus-ring: var(--gold);
}

html[data-theme="light"] {
  color-scheme: light;
  --bg: #f4f2ec;
  --bg-soft: #ffffff;
  --gold: #6b5610;
  --gold-dim: #8a7020;
  --text: #141414;
  --text-soft: color-mix(in srgb, var(--text) 88%, transparent);
  --text-muted: color-mix(in srgb, var(--text) 52%, transparent);
  --border: rgba(107, 86, 16, 0.28);
  --header-bg: color-mix(in srgb, var(--bg) 88%, #fff 12%);
  --btn-primary-fg: #fff;
  --focus-ring: var(--gold);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, Ubuntu, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

a {
  color: var(--gold);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: var(--header-bg);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(10px);
}

.header-inner {
  position: relative;
  z-index: 1;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0.85rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  background: var(--header-bg);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.nav-toggle {
  display: none;
  flex-shrink: 0;
  width: 2.5rem;
  height: 2.5rem;
  padding: 0;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: var(--bg-soft);
  color: var(--gold);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, color 0.2s;
}

.nav-toggle:hover {
  background: color-mix(in srgb, var(--gold) 14%, var(--bg-soft));
}

.nav-toggle:focus-visible {
  outline: 2px solid var(--focus-ring);
  outline-offset: 2px;
}

.nav-toggle-box {
  display: block;
  width: 1.35rem;
  height: 1.05rem;
  position: relative;
}

.nav-toggle-bar {
  position: absolute;
  left: 0;
  right: 0;
  height: 2px;
  background: currentColor;
  border-radius: 1px;
  transition: transform 0.22s ease, opacity 0.15s ease, top 0.22s ease;
}

.nav-toggle-bar:nth-child(1) {
  top: 0;
}

.nav-toggle-bar:nth-child(2) {
  top: 7px;
}

.nav-toggle-bar:nth-child(3) {
  top: 14px;
}

.site-header.is-nav-open .nav-toggle-bar:nth-child(1) {
  top: 7px;
  transform: rotate(45deg);
}

.site-header.is-nav-open .nav-toggle-bar:nth-child(2) {
  opacity: 0;
}

.site-header.is-nav-open .nav-toggle-bar:nth-child(3) {
  top: 7px;
  transform: rotate(-45deg);
}

.nav-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 0;
  margin: 0;
  padding: 0;
  border: none;
  background: rgba(0, 0, 0, 0.42);
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

.nav-backdrop:not([hidden]) {
  display: block;
}

html.luan-nav-open,
html.luan-nav-open body {
  overflow: hidden;
}

.theme-toggle {
  flex-shrink: 0;
  width: 2.5rem;
  height: 2.5rem;
  padding: 0;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: var(--bg-soft);
  color: var(--gold);
  font-size: 1.15rem;
  line-height: 1;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, color 0.2s;
}

.theme-toggle:hover {
  background: color-mix(in srgb, var(--gold) 14%, var(--bg-soft));
}

.theme-toggle:focus-visible {
  outline: 2px solid var(--focus-ring);
  outline-offset: 2px;
}

.theme-toggle-icon {
  display: block;
}

.theme-toggle--floating {
  position: fixed;
  bottom: calc(1.1rem + env(safe-area-inset-bottom, 0px));
  right: calc(1.1rem + env(safe-area-inset-right, 0px));
  z-index: 100;
  border-radius: 50%;
  box-shadow: 0 2px 14px color-mix(in srgb, #000 18%, transparent);
}

.whatsapp-float {
  position: fixed;
  bottom: calc(1.1rem + env(safe-area-inset-bottom, 0px));
  left: calc(1.1rem + env(safe-area-inset-left, 0px));
  z-index: 100;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 14px color-mix(in srgb, #000 22%, transparent);
  text-decoration: none;
  transition: transform 0.15s ease, filter 0.15s ease;
}

.whatsapp-float:hover {
  transform: scale(1.06);
  filter: brightness(1.05);
  color: #fff;
  text-decoration: none;
}

.whatsapp-float:focus-visible {
  outline: 2px solid var(--focus-ring);
  outline-offset: 3px;
}

.whatsapp-float-svg {
  width: 1.45rem;
  height: 1.45rem;
  display: block;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  color: var(--gold);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.02em;
}

.brand img {
  width: 52px;
  height: 52px;
  object-fit: contain;
  border-radius: 50%;
  border: 1px solid var(--border);
}

.brand span {
  line-height: 1.2;
}

.nav {
  display: flex;
  gap: 1.5rem;
  font-size: 0.95rem;
  font-weight: 600;
}

.nav a {
  color: var(--text);
}

.nav a:hover {
  color: var(--gold);
}

main {
  max-width: 1100px;
  margin: 0 auto;
  padding: 2rem 1.25rem 4rem;
}

.hero {
  text-align: center;
  padding: 2.5rem 0 3rem;
}

.hero h1 {
  margin: 0 0 0.5rem;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  color: var(--gold);
  font-weight: 800;
  letter-spacing: 0.04em;
}

.hero .tagline {
  margin: 0;
  font-size: 1.15rem;
  color: var(--text-soft);
}

.hero .ch {
  margin-top: 1rem;
  font-size: 0.9rem;
  color: var(--gold-dim);
}

.section {
  margin-top: 2.75rem;
}

.section h2 {
  margin: 0 0 1rem;
  font-size: 1.35rem;
  color: var(--gold);
  font-weight: 700;
  border-left: 3px solid var(--gold);
  padding-left: 0.75rem;
}

.section p {
  margin: 0 0 1rem;
  color: var(--text-soft);
  max-width: 65ch;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
  justify-content: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.9rem 1.5rem;
  font-size: 1rem;
  font-weight: 700;
  border-radius: 6px;
  border: 2px solid var(--gold);
  transition: background 0.2s, color 0.2s;
}

.btn-primary {
  background: var(--gold);
  color: var(--btn-primary-fg);
}

.btn-primary:hover {
  filter: brightness(1.08);
  color: var(--btn-primary-fg);
  text-decoration: none;
}

.btn-outline {
  background: transparent;
  color: var(--gold);
}

.btn-outline:hover {
  background: rgba(212, 175, 55, 0.12);
  text-decoration: none;
}

.btn-whatsapp {
  background: #25d366;
  color: #fff;
  border: 1px solid color-mix(in srgb, #25d366 70%, #000);
}

.btn-whatsapp:hover {
  filter: brightness(1.08);
  color: #fff;
  text-decoration: none;
}

.icon {
  width: 1.15em;
  height: 1.15em;
  vertical-align: -0.15em;
}

.services {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  margin-top: 1rem;
}

.card {
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 1.25rem 1.35rem;
}

.card h3 {
  margin: 0 0 0.5rem;
  color: var(--gold);
  font-size: 1.1rem;
}

.card p {
  margin: 0;
  font-size: 0.95rem;
}

.site-footer {
  margin-top: auto;
  border-top: 1px solid var(--border);
  padding: 1.5rem 1.25rem;
  text-align: center;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.site-footer strong {
  color: var(--gold-dim);
}

.footer-line {
  margin: 0 0 0.35rem;
}

.footer-legal {
  margin: 0;
  font-size: 0.8rem;
}

.legal-impressum .legal-dl {
  margin: 0;
  display: grid;
  grid-template-columns: minmax(0, 10rem) 1fr;
  gap: 0.5rem 1.25rem;
  align-items: start;
}

@media (max-width: 520px) {
  .legal-impressum .legal-dl {
    grid-template-columns: 1fr;
  }

  .legal-impressum .legal-dl dt {
    margin-top: 0.75rem;
  }

  .legal-impressum .legal-dl dt:first-child {
    margin-top: 0;
  }
}

.legal-impressum .legal-dl dt {
  margin: 0;
  font-weight: 600;
  color: var(--gold-dim);
  font-size: 0.9rem;
}

.legal-impressum .legal-dl dd {
  margin: 0;
  color: color-mix(in srgb, var(--text) 92%, transparent);
}

.legal-source {
  margin-top: 2.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border);
  font-size: 0.85rem;
  color: var(--text-muted);
}

.footer-sep {
  margin: 0 0.4rem;
  color: color-mix(in srgb, var(--text) 35%, transparent);
}

.subsection-title {
  margin: 0 0 0.75rem;
  font-size: 1.2rem;
  color: var(--gold);
  font-weight: 700;
}

.section-intro {
  margin: 0 0 1rem;
  max-width: 65ch;
  color: color-mix(in srgb, var(--text) 90%, transparent);
}

.usp-list,
.process-list {
  margin: 0;
  padding-left: 1.25rem;
  max-width: 65ch;
  color: color-mix(in srgb, var(--text) 88%, transparent);
}

.usp-list li,
.process-list li {
  margin-bottom: 0.65rem;
}

.process-list li:last-child,
.usp-list li:last-child {
  margin-bottom: 0;
}

.contact-standort {
  margin-bottom: 2rem;
  padding-bottom: 0.5rem;
}

.contact-address {
  font-style: normal;
  margin: 0 0 0.75rem;
  line-height: 1.65;
  color: color-mix(in srgb, var(--text) 92%, transparent);
}

.contact-map-links {
  margin: 0 0 1rem;
  font-size: 0.95rem;
}

.map-embed-wrap {
  position: relative;
  width: 100%;
  max-width: 720px;
  aspect-ratio: 16 / 10;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--bg-soft);
}

.map-embed-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.map-osm-consent .luan-osm-frame-host {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.map-osm-consent .luan-osm-frame-host iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.map-osm-placeholder {
  position: absolute;
  inset: 0;
  z-index: 2;
  padding: 1.25rem 1rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0.85rem;
  text-align: center;
  background: color-mix(in srgb, var(--bg-soft) 92%, var(--text) 8%);
  overflow: auto;
}

.map-osm-placeholder[hidden] {
  display: none !important;
}

.map-osm-placeholder-text {
  margin: 0;
  max-width: 40ch;
  font-size: 0.88rem;
  line-height: 1.55;
  color: color-mix(in srgb, var(--text) 88%, transparent);
}

.map-osm-fallback {
  margin: 0;
  font-size: 0.82rem;
}

.admin-schritte {
  margin: 0.5rem 0 0;
  padding-left: 1.35rem;
  line-height: 1.55;
}

.admin-schritte li {
  margin-bottom: 0.6rem;
}

.admin-schritte code {
  font-size: 0.88em;
  background: rgba(212, 175, 55, 0.12);
  padding: 0.1em 0.35em;
  border-radius: 4px;
}

.admin-kurzinfo {
  margin: 0 0 1rem;
  font-size: 0.95rem;
  color: color-mix(in srgb, var(--text) 75%, transparent);
}

/* Kontakt */
.contact-grid {
  display: grid;
  gap: 2rem;
  margin-top: 1.5rem;
}

@media (min-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr 1.1fr;
    align-items: start;
  }
}

.contact-links {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1rem;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: 10px;
}

.contact-item svg {
  flex-shrink: 0;
  color: var(--gold);
  margin-top: 0.15rem;
}

.contact-item a {
  font-weight: 600;
  font-size: 1.05rem;
}

.form label {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--gold-dim);
}

.form input,
.form textarea {
  width: 100%;
  margin-bottom: 1rem;
  padding: 0.65rem 0.75rem;
  border-radius: 6px;
  border: 1px solid var(--border);
  background: var(--bg-soft);
  color: var(--text);
  font: inherit;
}

.form input:focus,
.form textarea:focus {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

.form textarea {
  min-height: 140px;
  resize: vertical;
}

.honeypot {
  position: absolute;
  left: -9999px;
  height: 0;
  overflow: hidden;
}

.alert {
  padding: 1rem 1.1rem;
  border-radius: 8px;
  margin-bottom: 1.25rem;
  font-weight: 600;
}

.alert-success {
  background: rgba(212, 175, 55, 0.15);
  border: 1px solid var(--gold);
  color: var(--gold);
}

.alert-error {
  background: rgba(180, 60, 60, 0.2);
  border: 1px solid #c44;
  color: #f8a8a8;
}

.page-title {
  margin: 0 0 0.5rem;
  font-size: 1.75rem;
  color: var(--gold);
}

.lead {
  margin: 0;
  color: color-mix(in srgb, var(--text) 80%, transparent);
}

/* Galerie */
.gallery-empty {
  margin-top: 1.5rem;
  color: color-mix(in srgb, var(--text) 65%, transparent);
}

.gallery-grid {
  list-style: none;
  margin: 2rem 0 0;
  padding: 0;
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
}

.gallery-card {
  scroll-margin-top: 5.5rem;
}

.gallery-card figure {
  margin: 0;
}

.gallery-card a {
  display: block;
}

.gallery-card img {
  width: 100%;
  height: auto;
  min-height: 200px;
  max-height: 320px;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 10px;
  border: 1px solid var(--border);
  vertical-align: middle;
}

@media (max-width: 480px) {
  .gallery-card img {
    min-height: 180px;
    max-height: 260px;
  }
}

.gallery-card figcaption {
  margin-top: 0.85rem;
}

.gallery-card figcaption strong {
  color: var(--gold);
  display: block;
  font-size: 1.05rem;
}

.gallery-desc {
  display: block;
  margin-top: 0.4rem;
  font-size: 0.92rem;
  color: color-mix(in srgb, var(--text) 75%, transparent);
  font-weight: 400;
}

/* Admin */
.admin-main .lead {
  margin-bottom: 1.5rem;
}

.admin-card {
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 1.35rem 1.5rem;
  margin-bottom: 1.75rem;
}

.admin-card h2 {
  margin: 0 0 1rem;
  font-size: 1.15rem;
  color: var(--gold);
}

.admin-hinweis {
  margin: 1rem 0 0;
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.admin-hinweis code {
  color: var(--gold-dim);
  font-size: 0.9em;
}

.admin-liste {
  list-style: none;
  margin: 0;
  padding: 0;
}

.admin-zeile {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--border);
}

.admin-zeile:last-child {
  border-bottom: none;
}

.admin-thumb img {
  display: block;
  width: 120px;
  height: 90px;
  object-fit: cover;
  border-radius: 6px;
  border: 1px solid var(--border);
}

.admin-text {
  flex: 1;
  min-width: 160px;
}

.admin-beschreibung {
  margin-top: 0.35rem;
  font-size: 0.9rem;
  color: color-mix(in srgb, var(--text) 70%, transparent);
}

.admin-aktionen {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
}

.admin-inline {
  display: inline;
  margin: 0;
}

.admin-abmelden {
  margin-top: 2rem;
}

.btn-sm {
  padding: 0.45rem 0.65rem;
  font-size: 0.85rem;
}

.btn-danger {
  border-color: #a44;
  color: #f0a0a0;
}

.btn-danger:hover {
  background: rgba(180, 60, 60, 0.25);
  color: #fcc;
  text-decoration: none;
}

.form input[type="file"] {
  padding: 0.5rem 0;
  border: none;
  background: transparent;
}

/* Startseite: Hero, Kennzahlen, Leistungsdetail, Transport */
.hero-brandline {
  margin: 0 0 0.75rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-dim);
}

.stats-band {
  margin: 0.5rem 0 2rem;
  padding: 1.5rem 1.25rem;
  background: linear-gradient(165deg, rgba(212, 175, 55, 0.08) 0%, var(--bg-soft) 45%, var(--bg-soft) 100%);
  border: 1px solid var(--border);
  border-radius: 12px;
}

.stats-inner {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  text-align: center;
}

.stat-item {
  padding: 0.35rem 0.5rem;
}

.stat-value {
  display: block;
  font-size: clamp(2rem, 5vw, 2.75rem);
  font-weight: 800;
  line-height: 1.1;
  color: var(--gold);
  letter-spacing: 0.02em;
}

.stat-value-text {
  font-size: clamp(1.65rem, 4vw, 2.35rem);
}

.stat-label {
  display: block;
  margin-top: 0.45rem;
  font-size: 0.88rem;
  line-height: 1.45;
  color: color-mix(in srgb, var(--text) 78%, transparent);
}

.prose-wide,
.section-outro {
  max-width: 72ch;
}

.section-outro {
  margin-top: 1.25rem;
}

.leistungen-detail-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  margin-top: 1rem;
}

.card-leistung h3 {
  font-size: 1.05rem;
  margin-bottom: 0.65rem;
}

.detail-list {
  margin: 0;
  padding-left: 1.15rem;
  font-size: 0.92rem;
  line-height: 1.55;
  color: color-mix(in srgb, var(--text) 88%, transparent);
}

.detail-list li {
  margin-bottom: 0.35rem;
}

.detail-list li:last-child {
  margin-bottom: 0;
}

.philosophy-box {
  margin: 0;
  padding: 1.35rem 1.5rem;
  border-left: 4px solid var(--gold);
  background: rgba(212, 175, 55, 0.06);
  border-radius: 0 10px 10px 0;
  max-width: 72ch;
}

.philosophy-box p {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.65;
  color: color-mix(in srgb, var(--text) 92%, transparent);
}

.philosophy-box p:last-child {
  margin-bottom: 0;
}

.check-list {
  list-style: none;
  margin: 0 0 1rem;
  padding: 0;
  display: grid;
  gap: 0.75rem;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  padding: 0.65rem 0.85rem;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 0.98rem;
  color: color-mix(in srgb, var(--text) 92%, transparent);
}

.check-mark {
  flex-shrink: 0;
  color: var(--gold);
  font-weight: 700;
  font-size: 1.1rem;
  line-height: 1.4;
}

.transport-strip {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  margin-top: 1.25rem;
}

.transport-card {
  margin: 0;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--bg-soft);
  aspect-ratio: 4 / 3;
}

.transport-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}

.transport-card:hover img {
  transform: scale(1.03);
}

.section-transport-highlight {
  margin-top: 2rem;
  padding: 2rem 1.25rem 3rem;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(212, 175, 55, 0.07) 0%, var(--bg-soft) 38%, var(--bg-soft) 100%);
  margin-bottom: 0.5rem;
}

.transport-section-intro {
  text-align: center;
  margin-bottom: 1.5rem;
}

.transport-section-intro .section-intro {
  margin-left: auto;
  margin-right: auto;
}

.transport-strip--featured {
  margin-top: 0;
}

.transport-card-link {
  display: block;
  color: inherit;
  text-decoration: none;
}

.transport-card-link:hover {
  text-decoration: none;
}

.transport-card-link:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 8px;
}

.transport-caption {
  margin: 0;
  padding: 0.65rem 0.5rem 0;
  text-align: center;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--gold-dim);
  letter-spacing: 0.03em;
}

.transport-strip-footer {
  margin: 2rem 0 0;
  padding: 0 0.5rem;
  text-align: center;
  clear: both;
}

.transport-strip-footer .btn-galerie-cta {
  display: inline-flex;
  max-width: 100%;
  flex-wrap: wrap;
  justify-content: center;
  text-align: center;
  line-height: 1.35;
  white-space: normal;
  padding: 0.85rem 1.25rem;
}

.transport-strip--featured .transport-card {
  aspect-ratio: auto;
  display: flex;
  flex-direction: column;
}

.transport-strip--featured .transport-card-link {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.transport-strip--featured .transport-card img {
  height: 100%;
}

.transport-strip--featured .transport-caption {
  flex-shrink: 0;
  padding: 0.75rem 0.5rem 0.85rem;
  background: var(--bg-soft);
}

/* Cookie-Banner & Footer Cookie-Link */
html.luan-cookie-dismissed #luan-cookie-banner {
  display: none !important;
}

.footer-link-btn {
  display: inline;
  padding: 0;
  margin: 0;
  font: inherit;
  font-size: 0.8rem;
  color: var(--gold);
  background: none;
  border: none;
  cursor: pointer;
  text-decoration: underline;
}

.footer-link-btn:hover {
  color: var(--text);
}

.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  padding: 0.75rem;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(6px);
}

.cookie-banner-inner {
  max-width: 720px;
  margin: 0 auto;
  padding: 1.35rem 1.5rem 1.25rem;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: 12px;
  box-shadow: 0 -8px 40px rgba(0, 0, 0, 0.45);
}

.cookie-banner-title {
  margin: 0 0 0.65rem;
  font-size: 1.15rem;
  color: var(--gold);
  font-weight: 700;
}

.cookie-banner-text {
  margin: 0 0 1rem;
  font-size: 0.9rem;
  line-height: 1.55;
  color: color-mix(in srgb, var(--text) 90%, transparent);
  max-width: none;
}

.cookie-details {
  margin-bottom: 1rem;
  padding: 1rem;
  background: rgba(0, 0, 0, 0.35);
  border-radius: 8px;
  border: 1px solid var(--border);
}

.cookie-fieldset {
  margin: 0 0 1rem;
  padding: 0;
  border: none;
}

.cookie-fieldset:last-of-type {
  margin-bottom: 0.75rem;
}

.cookie-legend {
  padding: 0;
  margin: 0 0 0.5rem;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--gold-dim);
}

.cookie-option {
  display: flex;
  gap: 0.65rem;
  align-items: flex-start;
  font-size: 0.88rem;
  line-height: 1.45;
  color: color-mix(in srgb, var(--text) 88%, transparent);
  cursor: pointer;
}

.cookie-option input {
  margin-top: 0.2rem;
  flex-shrink: 0;
  accent-color: var(--gold);
}

.cookie-option--disabled {
  cursor: default;
  opacity: 0.95;
}

.cookie-hint {
  margin: 0.75rem 0 0;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.btn-cookie-save {
  margin-top: 0.75rem;
  width: 100%;
}

.cookie-banner-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-bottom: 0.75rem;
}

.cookie-banner-actions .btn {
  flex: 1 1 auto;
  min-width: 8.5rem;
  padding: 0.65rem 0.9rem;
  font-size: 0.88rem;
}

.cookie-banner-links {
  margin: 0;
  font-size: 0.82rem;
}

.legal-bullet-list {
  margin: 0.5rem 0 1rem;
  padding-left: 1.25rem;
  max-width: 72ch;
  color: color-mix(in srgb, var(--text) 88%, transparent);
  line-height: 1.55;
}

.legal-bullet-list li {
  margin-bottom: 0.5rem;
}

/* Lightbox */
html.luan-lightbox-open {
  overflow: hidden;
  touch-action: none;
}

.luan-lightbox {
  position: fixed;
  inset: 0;
  z-index: 10050;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: env(safe-area-inset-top) env(safe-area-inset-right) env(safe-area-inset-bottom) env(safe-area-inset-left);
}

.luan-lightbox[hidden] {
  display: none !important;
}

.luan-lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: color-mix(in srgb, var(--bg) 40%, #000 60%);
  opacity: 0.92;
  cursor: pointer;
}

html[data-theme="light"] .luan-lightbox-backdrop {
  background: color-mix(in srgb, #000 55%, transparent);
}

.luan-lightbox-panel {
  position: relative;
  z-index: 1;
  width: min(96vw, 1200px);
  max-height: min(90vh, 920px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.65rem;
  padding-top: 2.5rem;
}

.luan-lightbox-body {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
}

.luan-lightbox-stage {
  position: relative;
  flex: 1;
  min-width: 0;
  max-height: min(76vh, 800px);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--bg-soft);
  box-shadow: 0 12px 48px color-mix(in srgb, #000 45%, transparent);
}

.luan-lightbox-img {
  max-width: 100%;
  max-height: min(78vh, 820px);
  width: auto;
  height: auto;
  object-fit: contain;
  vertical-align: middle;
}

.luan-lightbox-close {
  position: absolute;
  top: 0.25rem;
  right: 0.25rem;
  z-index: 3;
  width: 2.75rem;
  height: 2.75rem;
  border: none;
  border-radius: 8px;
  background: var(--bg-soft);
  color: var(--gold);
  font-size: 1.75rem;
  line-height: 1;
  cursor: pointer;
  border: 1px solid var(--border);
}

.luan-lightbox-close:hover {
  filter: brightness(1.1);
}

.luan-lightbox-nav {
  flex-shrink: 0;
  z-index: 2;
  width: 2.75rem;
  height: 3.25rem;
  border: 1px solid var(--border);
  border-radius: 6px;
  background: var(--bg-soft);
  color: var(--gold);
  font-size: 1.35rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  align-self: center;
}

.luan-lightbox-nav:hover {
  filter: brightness(1.08);
}

@media (max-width: 640px) {
  .luan-lightbox-body {
    flex-wrap: wrap;
    justify-content: center;
  }

  .luan-lightbox-nav {
    width: 2.35rem;
    height: 2.65rem;
    font-size: 1.1rem;
  }

  .luan-lightbox-stage {
    order: -1;
    flex: 1 1 100%;
    max-height: min(62vh, 560px);
  }
}

.luan-lightbox-counter {
  margin: 0;
  font-size: 0.85rem;
  color: var(--text-muted);
  text-align: center;
}

.gallery-zoom-link {
  cursor: zoom-in;
}

.gallery-zoom-link:focus-visible {
  outline: 2px solid var(--focus-ring);
  outline-offset: 3px;
  border-radius: 10px;
}

.gallery-figure {
  margin: 0;
}

.gallery-caption-title {
  color: var(--gold);
}

@media (max-width: 720px) {
  .header-inner {
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    gap: 0.65rem;
  }

  .brand {
    min-width: 0;
    flex: 1;
  }

  .brand span {
    display: inline-block;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .header-actions {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0.35rem 1.25rem 1rem;
    margin: 0;
    background: var(--header-bg);
    border-bottom: 1px solid var(--border);
    box-shadow: 0 14px 32px color-mix(in srgb, #000 14%, transparent);
  }

  .site-header.is-nav-open .header-actions {
    display: flex;
  }

  .nav {
    flex-direction: column;
    gap: 0;
    width: 100%;
    flex: none;
    justify-content: flex-start;
    flex-wrap: nowrap;
  }

  .nav a {
    padding: 0.85rem 0;
    border-bottom: 1px solid var(--border);
    text-decoration: none;
  }

  .nav a:last-child {
    border-bottom: none;
  }
}

@media (min-width: 721px) {
  .nav-toggle {
    display: none !important;
  }

  .nav-backdrop {
    display: none !important;
  }

  .header-actions {
    position: static !important;
    display: flex !important;
    width: auto !important;
    padding: 0 !important;
    margin: 0 !important;
    border: none !important;
    box-shadow: none !important;
    background: transparent !important;
    flex-direction: row !important;
    align-items: center !important;
  }

  .nav {
    flex-direction: row !important;
    gap: 1.5rem !important;
    width: auto !important;
  }

  .nav a {
    padding: 0 !important;
    border-bottom: none !important;
  }

  .brand span {
    display: inline;
    max-width: none;
    overflow: visible;
    text-overflow: clip;
    white-space: normal;
  }
}
