/* ────────────────────────────────────────────────────────────────────────────
   Ibiza Urlaubs Shooting · Main CSS
   Design: Mediterranean Blue + Warm Sand + Amber Accent
   Mobile-first
──────────────────────────────────────────────────────────────────────────── */

/* ── Variables ────────────────────────────────────────────────────────────── */
:root {
  /* Colors */
  --bg:           #ffffff;
  --bg-alt:       #f6f1ea;
  --bg-dark:      #0b1d2e;
  --bg-dark-2:    #132840;
  --text:         #17120e;
  --text-muted:   #6e6258;
  --text-light:   #a8998c;
  --accent:       #c97d3e;
  --accent-h:     #b36c30;
  --accent-light: #f5e8d8;
  --sea:          #1a5276;
  --sea-light:    #d0e8f2;
  --white:        #ffffff;
  --border:       #e7ddd4;
  --border-dark:  rgba(255,255,255,.12);

  /* Typography */
  --font-serif: Georgia, 'Times New Roman', serif;
  --font-sans:  system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;

  /* Layout */
  --max-w:     1160px;
  --nav-h:     72px;
  --radius:    14px;
  --radius-sm: 8px;
  --shadow:    0 4px 28px rgba(0,0,0,.08);
  --shadow-md: 0 8px 40px rgba(0,0,0,.12);

  /* Transitions */
  --t: .25s ease;
}

/* ── Reset ────────────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
.image-missing { display: none !important; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }

/* ── Utility ──────────────────────────────────────────────────────────────── */
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
.container {
  width: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: 20px;
}
.eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--accent);
}
.section-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--text-light);
}
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .55s ease, transform .55s ease;
}
.fade-in.visible { opacity: 1; transform: none; }

/* ── Buttons ──────────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 600;
  transition: background var(--t), color var(--t), transform var(--t), box-shadow var(--t);
  text-align: center;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: var(--accent);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(201,125,62,.35);
}
.btn-primary:hover { background: var(--accent-h); box-shadow: 0 6px 24px rgba(201,125,62,.45); }

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,.55);
}
.btn-outline:hover { border-color: var(--white); background: rgba(255,255,255,.08); }

.btn-dark {
  background: var(--bg-dark);
  color: var(--white);
}
.btn-dark:hover { background: var(--bg-dark-2); }

.btn-ghost {
  background: transparent;
  color: var(--accent);
  border: 2px solid var(--accent);
}
.btn-ghost:hover { background: var(--accent); color: var(--white); }

/* ── Navigation ───────────────────────────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: transparent;
  transition: background var(--t), box-shadow var(--t);
}
.site-header.scrolled {
  background: rgba(11, 29, 46, .96);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(0,0,0,.2);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-h);
  width: 100%;
  padding-inline: 24px;
  max-width: calc(var(--max-w) + 48px);
  margin-inline: auto;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 2;
}
.logo-main {
  font-family: var(--font-serif);
  font-size: 18px;
  color: var(--white);
  letter-spacing: .01em;
  line-height: 1.2;
}
.logo-main strong { font-weight: 700; color: var(--accent); }

.main-nav > ul {
  display: none;
  gap: 4px;
}
.main-nav a {
  display: inline-block;
  padding: 8px 14px;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,.82);
  border-radius: 50px;
  transition: color var(--t), background var(--t);
}
.main-nav a:hover, .main-nav a.active { color: var(--white); background: rgba(255,255,255,.1); }
.main-nav a.nav-cta {
  background: var(--accent);
  color: var(--white);
  padding: 8px 18px;
  margin-left: 6px;
}
.main-nav a.nav-cta:hover { background: var(--accent-h); }

.header-actions { display: flex; align-items: center; gap: 12px; }

.lang-switch {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .1em;
  color: rgba(255,255,255,.65);
  padding: 10px 12px;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  border-radius: 4px;
  border: 1px solid rgba(255,255,255,.25);
  transition: color var(--t), border-color var(--t);
}
.lang-switch:hover { color: var(--white); border-color: var(--white); }

.mobile-menu-btn {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  min-width: 44px;
  min-height: 44px;
  padding: 10px 8px;
}
.mobile-menu-btn span {
  display: block;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform var(--t), opacity var(--t);
  transform-origin: center;
}
.mobile-menu-btn.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.mobile-menu-btn.open span:nth-child(2) { opacity: 0; }
.mobile-menu-btn.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Nav */
.mobile-nav {
  display: none;
  flex-direction: column;
  background: var(--bg-dark);
  border-top: 1px solid var(--border-dark);
  overflow: hidden;
  max-height: 0;
  transition: max-height .35s ease;
}
.mobile-nav.open { max-height: 1100px; }
.mobile-nav > ul { padding: 16px 24px 24px; display: flex; flex-direction: column; gap: 4px; }
.mobile-nav a {
  display: block;
  padding: 11px 0;
  font-size: 16px;
  font-weight: 500;
  color: rgba(255,255,255,.85);
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.mobile-nav a.nav-cta {
  display: inline-block;
  margin-top: 8px;
  padding: 12px 24px;
  background: var(--accent);
  color: var(--white);
  border-radius: 50px;
  border: none;
  text-align: center;
}
.mobile-nav a.lang-link {
  font-size: 13px;
  color: rgba(255,255,255,.5);
  border: none;
  margin-top: 4px;
}

/* Dropdown nav */
.main-nav .has-dropdown { position: relative; }
.nav-arrow { font-size: 10px; opacity: .6; margin-left: 2px; display: inline-block; transition: transform var(--t); }
.has-dropdown:hover .nav-arrow { transform: rotate(180deg); }

.nav-dropdown {
  display: block;
  position: absolute;
  top: calc(100% + 6px);
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  background: rgba(11,29,46,.97);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 12px;
  min-width: 210px;
  padding: 6px 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity .2s, transform .2s, visibility 0s .2s;
  z-index: 200;
  box-shadow: 0 12px 40px rgba(0,0,0,.35);
  list-style: none;
}
.has-dropdown:hover .nav-dropdown,
.has-dropdown:focus-within .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
  transition: opacity .2s, transform .2s, visibility 0s;
}
.nav-dropdown li a {
  display: block;
  padding: 9px 20px;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,.78);
  border-radius: 0;
  white-space: nowrap;
  transition: color var(--t), background var(--t);
}
.nav-dropdown li a:hover { color: var(--accent); background: rgba(255,255,255,.06); }

/* Mobile sub-menus */
.mobile-has-sub > a { display: flex; align-items: center; justify-content: space-between; }
.mobile-sub {
  display: none;
  padding: 4px 0 4px 16px;
  list-style: none;
}
.mobile-sub.open { display: block; }
.mobile-sub a {
  font-size: 14px !important;
  color: rgba(255,255,255,.6) !important;
  border-bottom: none !important;
  padding: 7px 0 !important;
}

@media (min-width: 768px) {
  .mobile-menu-btn { display: none; }
  .main-nav > ul { display: flex; }
  .mobile-nav { display: none !important; }
}

@media (max-width: 420px) {
  .header-inner { padding-inline: 16px; }
  .logo-main { font-size: 16px; }
  .header-actions { gap: 8px; }
  .lang-switch {
    min-height: 40px;
    padding: 8px 10px;
  }
  .mobile-menu-btn {
    min-width: 40px;
    min-height: 40px;
  }
}

/* ── Hero ─────────────────────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  background: var(--bg-dark);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(11,29,46,.4) 0%, rgba(11,29,46,.75) 100%);
  z-index: 1;
}
.hero-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  z-index: 0;
  transition: opacity .6s ease;
}
.hero-bg-img.fade { opacity: 0; }

.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 24px 80px;
  max-width: calc(var(--max-w) + 48px);
  margin-inline: auto;
  width: 100%;
}
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}
.hero-tag::before {
  content: '';
  display: block;
  width: 28px;
  height: 2px;
  background: var(--accent);
}
.hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(36px, 7vw, 76px);
  font-weight: 400;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 24px;
  max-width: 700px;
}
.hero h1 em { font-style: italic; color: var(--accent); }
.hero-sub {
  font-size: clamp(16px, 2vw, 18px);
  color: rgba(255,255,255,.78);
  max-width: 520px;
  margin-bottom: 36px;
  line-height: 1.6;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}
.hero-trust {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255,255,255,.65);
  margin-top: 28px;
}
.hero-trust-stars { color: #f5c842; font-size: 14px; }

.hero-scroll {
  position: absolute;
  bottom: 32px;
  right: 36px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  font-size: 10px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.45);
}
.hero-scroll-line {
  width: 1px;
  height: 42px;
  background: linear-gradient(to bottom, rgba(255,255,255,.5), transparent);
  animation: scrollline 1.8s ease-in-out infinite;
}
@keyframes scrollline {
  0%, 100% { transform: scaleY(0); transform-origin: top; }
  50%  { transform: scaleY(1); transform-origin: top; }
}

/* ── Stats Bar ────────────────────────────────────────────────────────────── */
.stats-bar {
  background: var(--bg-dark);
  border-top: 1px solid rgba(255,255,255,.08);
}
.stats-bar-inner {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  width: 100%;
  max-width: calc(var(--max-w) + 48px);
  margin-inline: auto;
  padding-inline: 24px;
}
.stat-item {
  padding: 28px 24px;
  border-right: 1px solid rgba(255,255,255,.08);
  border-bottom: 1px solid rgba(255,255,255,.08);
  text-align: center;
}
.stat-item:nth-child(2n) { border-right: none; }
.stat-item:nth-last-child(-n+2) { border-bottom: none; }
.stat-num {
  font-family: var(--font-serif);
  font-size: 36px;
  font-weight: 400;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 4px;
}
.stat-label {
  font-size: 12px;
  color: rgba(255,255,255,.5);
  letter-spacing: .06em;
}

@media (max-width: 420px) {
  .stats-bar-inner { padding-inline: 16px; }
  .stat-item {
    min-width: 0;
    padding: 24px 12px;
  }
  .stat-label { overflow-wrap: anywhere; }
}

@media (min-width: 640px) {
  .stats-bar-inner { grid-template-columns: repeat(4, 1fr); }
  .stat-item { border-bottom: none; }
  .stat-item:nth-child(2n) { border-right: 1px solid rgba(255,255,255,.08); }
  .stat-item:last-child { border-right: none; }
}

/* ── Section Common ───────────────────────────────────────────────────────── */
.section { padding: 80px 0; }
.section-alt { background: var(--bg-alt); }
.section-dark { background: var(--bg-dark); color: var(--white); }

.section-header {
  margin-bottom: 52px;
}
.section-header h2 {
  font-family: var(--font-serif);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 400;
  line-height: 1.2;
  margin-top: 12px;
  color: inherit;
}
.section-header p {
  margin-top: 16px;
  font-size: 17px;
  color: var(--text-muted);
  max-width: 600px;
  line-height: 1.7;
}
.section-dark .section-header p { color: rgba(255,255,255,.65); }

@media (min-width: 768px) { .section { padding: 108px 0; } }

/* ── Topics / Themen ──────────────────────────────────────────────────────── */
.topics-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.topic-card {
  position: relative;
  aspect-ratio: 3/4;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg-dark-2);
  cursor: pointer;
  border: 1px solid rgba(255,255,255,.08);
  color: inherit;
  text-decoration: none;
  transition: transform .25s ease, border-color .25s ease, background .25s ease;
}
.topic-card:hover {
  transform: translateY(-3px);
  border-color: rgba(201,125,62,.42);
  background: #12304a;
}
.topic-card picture {
  position: absolute;
  inset: 0;
}
.topic-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  color: transparent;
  font-size: 0;
  background: var(--bg-dark-2);
  transition: transform .45s ease;
}
.topic-card:hover .topic-card-img { transform: scale(1.04); }
.topic-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(6,18,29,.9) 0%,
    rgba(6,18,29,.72) 34%,
    rgba(6,18,29,.32) 62%,
    rgba(6,18,29,.06) 100%
  );
}
.topic-card-body {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 18px 18px 20px;
  color: var(--white);
  background: linear-gradient(to top, rgba(6,18,29,.86), rgba(6,18,29,.5));
  text-shadow: 0 1px 8px rgba(0,0,0,.45);
  backdrop-filter: blur(1px);
  z-index: 1;
}
.topic-tag {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 4px;
}
.topic-card-body h3 {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 400;
  color: var(--white);
  line-height: 1.2;
}
.topic-desc {
  margin-top: 8px;
  color: rgba(255,255,255,.9);
  font-size: 14px;
  line-height: 1.45;
}
.topic-card.wide,
.topic-card.featured {
  grid-column: auto;
  aspect-ratio: 3/4;
}

@media (min-width: 640px) {
  .topics-grid { grid-template-columns: repeat(3, 1fr); }
  .topic-card.wide,
  .topic-card.featured {
    grid-column: auto;
    aspect-ratio: 3/4;
  }
}
@media (min-width: 900px) {
  .topics-grid { grid-template-columns: repeat(4, 1fr); }
  .topic-card.wide,
  .topic-card.featured {
    grid-column: auto;
    aspect-ratio: 3/4;
  }
}

/* ── Benefits ─────────────────────────────────────────────────────────────── */
.benefits-grid {
  display: grid;
  gap: 28px;
  grid-template-columns: 1fr;
}
.benefit-item {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 18px;
  align-items: start;
}
.benefit-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-sm);
  background: var(--accent-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.benefit-icon svg { width: 24px; height: 24px; stroke: var(--accent); fill: none; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.benefit-item h3 { font-size: 16px; font-weight: 700; margin-bottom: 6px; }
.benefit-item p { font-size: 15px; color: var(--text-muted); line-height: 1.6; }

@media (min-width: 640px)  { .benefits-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .benefits-grid { grid-template-columns: repeat(4, 1fr); } }

/* ── Pricing ──────────────────────────────────────────────────────────────── */
.pricing-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr;
}
.pricing-card {
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  background: var(--white);
  position: relative;
  transition: box-shadow var(--t), border-color var(--t), transform var(--t);
}
.pricing-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.pricing-card.featured {
  border-color: var(--accent);
  box-shadow: 0 0 0 1px var(--accent), var(--shadow-md);
}
.pricing-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 50px;
  white-space: nowrap;
}
.pricing-card-name {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 8px;
}
.pricing-price {
  font-family: var(--font-serif);
  font-size: 52px;
  font-weight: 400;
  color: var(--text);
  line-height: 1;
  margin-bottom: 4px;
}
.pricing-price sup {
  font-size: 22px;
  vertical-align: super;
  font-family: var(--font-sans);
  font-weight: 500;
}
.pricing-price-note {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 28px;
}
.pricing-divider {
  height: 1px;
  background: var(--border);
  margin: 24px 0;
}
.pricing-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}
.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 15px;
  color: var(--text);
  line-height: 1.4;
}
.pricing-features li::before {
  content: '';
  display: block;
  width: 18px;
  height: 18px;
  min-width: 18px;
  border-radius: 50%;
  background: var(--accent-light);
  position: relative;
  top: 1px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 18 18' fill='none' stroke='%23c97d3e' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 9l3.5 3.5L14 6'/%3E%3C/svg%3E");
  background-size: 12px;
  background-repeat: no-repeat;
  background-position: center;
}
.pricing-card .btn { width: 100%; justify-content: center; }

@media (min-width: 768px) {
  .pricing-grid { grid-template-columns: repeat(3, 1fr); }
  .pricing-card.featured { margin-top: -12px; padding-top: 44px; }
}

/* ── Comparison Table ─────────────────────────────────────────────────────── */
.pricing-compare-wrap {
  margin-top: 52px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.pricing-compare {
  width: 100%;
  min-width: 520px;
  border-collapse: collapse;
  font-size: 14px;
}
.pricing-compare th, .pricing-compare td {
  padding: 13px 18px;
  text-align: center;
  border-bottom: 1px solid var(--border);
}
.pricing-compare th { font-weight: 700; color: var(--text-muted); font-size: 13px; background: var(--bg-alt); }
.pricing-compare td:first-child { text-align: left; font-weight: 500; color: var(--text); }
.pricing-compare .yes { color: var(--accent); font-weight: 700; font-size: 16px; }
.pricing-compare .no  { color: #c0b8b0; font-size: 16px; }
.pricing-compare .featured-col { background: #fff8f2; }

@media (max-width: 520px) {
  .pricing-compare {
    min-width: 0;
    table-layout: fixed;
    font-size: 12px;
  }
  .pricing-compare th,
  .pricing-compare td {
    padding: 10px 6px;
    overflow-wrap: anywhere;
  }
  .pricing-compare th:first-child,
  .pricing-compare td:first-child {
    width: 34%;
  }
}

/* ── Locations / Orte ─────────────────────────────────────────────────────── */
#orte.section {
  padding-bottom: 72px;
}
.locations-grid {
  display: grid;
  gap: 28px;
  grid-template-columns: 1fr;
}
.location-card {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg-dark-2);
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 2;
  text-decoration: none;
  color: inherit;
  border: 1px solid rgba(255,255,255,.08);
  transition: transform .25s ease, border-color .25s ease, background .25s ease;
}
.location-card:hover {
  transform: translateY(-3px);
  border-color: rgba(201,125,62,.42);
  background: #12304a;
}
.location-card picture {
  position: absolute;
  inset: 0;
}
.location-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .45s ease;
}
.location-card:hover .location-img { transform: scale(1.04); }
.location-body {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 22px 24px;
  background: rgba(10, 29, 45, .6);
  backdrop-filter: blur(2px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  z-index: 1;
}
.location-name {
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 8px;
}
.location-desc { font-size: 15px; color: rgba(255,255,255,.9); line-height: 1.55; }

@media (min-width: 680px)  { .locations-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 980px) {
  #orte.section {
    padding-bottom: 84px;
  }
  .locations-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 36px 32px;
  }
  .location-card {
    flex: 0 1 calc((100% - 64px) / 3);
  }
}

/* ── Gallery ──────────────────────────────────────────────────────────────── */
.gallery-masonry {
  columns: 2;
  column-gap: 12px;
}
.gallery-item {
  break-inside: avoid;
  margin-bottom: 12px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  cursor: pointer;
}
.gallery-item img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform .45s ease;
}
.gallery-item:hover img { transform: scale(1.04); }

.gallery-cta-wrap { text-align: center; margin-top: 40px; }

@media (min-width: 640px)  { .gallery-masonry { columns: 3; } }
@media (min-width: 1000px) { .gallery-masonry { columns: 4; } }

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(0,0,0,.92);
  align-items: center;
  justify-content: center;
}
.lightbox.open { display: flex; }
.lightbox-img {
  max-width: 90vw;
  max-height: 88vh;
  border-radius: var(--radius-sm);
  object-fit: contain;
}
.lightbox-close {
  position: absolute;
  top: 20px; right: 24px;
  font-size: 32px;
  color: var(--white);
  opacity: .7;
  padding: 8px;
  transition: opacity var(--t);
}
.lightbox-close:hover { opacity: 1; }

/* ── About / Ueber uns ────────────────────────────────────────────────────── */
.about-grid {
  display: grid;
  gap: 48px;
  align-items: center;
}
.about-img-wrap { position: relative; }
.about-img {
  border-radius: var(--radius);
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
}
.about-img-badge {
  position: absolute;
  bottom: -20px;
  right: -16px;
  background: var(--accent);
  color: var(--white);
  border-radius: var(--radius);
  padding: 18px 20px;
  font-size: 13px;
  font-weight: 700;
  text-align: center;
  box-shadow: var(--shadow);
  line-height: 1.4;
}
.about-img-badge strong { display: block; font-family: var(--font-serif); font-size: 28px; font-weight: 400; margin-bottom: 2px; }

.about-text h2 {
  font-family: var(--font-serif);
  font-size: clamp(26px, 3.5vw, 40px);
  font-weight: 400;
  line-height: 1.2;
  margin-top: 12px;
  margin-bottom: 20px;
}
.about-text p { font-size: 16px; color: var(--text-muted); line-height: 1.75; margin-bottom: 16px; }
.about-text p:last-of-type { margin-bottom: 32px; }

@media (min-width: 900px) {
  .about-grid {
    grid-template-columns: 400px 1fr;
  }
  .about-img-wrap { padding-bottom: 20px; }
}

/* ── Testimonials ─────────────────────────────────────────────────────────── */
.reviews-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr;
}
.review-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
  position: relative;
}
.review-stars { color: #f5c842; font-size: 14px; margin-bottom: 14px; }
.review-text {
  font-size: 15px;
  color: var(--text);
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}
.review-author-name { font-weight: 700; font-size: 14px; }
.review-author-who { font-size: 13px; color: var(--text-muted); margin-top: 2px; }
.review-quote-icon {
  position: absolute;
  top: 20px; right: 24px;
  font-size: 56px;
  line-height: 1;
  color: var(--accent-light);
  font-family: var(--font-serif);
  pointer-events: none;
}
.reviews-cta { text-align: center; margin-top: 40px; }

@media (min-width: 640px)  { .reviews-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .reviews-grid { grid-template-columns: repeat(3, 1fr); } }

/* ── FAQ ──────────────────────────────────────────────────────────────────── */
.faq-list {
  max-width: 760px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item:last-child { border-bottom: none; }
.faq-question {
  width: 100%;
  text-align: left;
  padding: 20px 24px;
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: var(--white);
  transition: color var(--t), background var(--t);
}
.faq-question:hover { background: var(--bg-alt); }
.faq-question.open { color: var(--accent); }
.faq-icon {
  width: 22px;
  height: 22px;
  min-width: 22px;
  border-radius: 50%;
  border: 1.5px solid currentColor;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--t);
  font-size: 14px;
  font-weight: 300;
  color: var(--text-muted);
}
.faq-question.open .faq-icon { transform: rotate(45deg); color: var(--accent); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease, padding var(--t);
  background: var(--white);
}
.faq-answer p {
  padding: 0 24px 20px;
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ── Booking Form ─────────────────────────────────────────────────────────── */
.booking-section {
  background: linear-gradient(135deg, var(--bg-dark) 0%, var(--bg-dark-2) 100%);
  position: relative;
  overflow: hidden;
}
.booking-section::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -10%;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,125,62,.12) 0%, transparent 70%);
  pointer-events: none;
}
.booking-inner {
  display: grid;
  gap: 52px;
}
.booking-text h2 {
  font-family: var(--font-serif);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 400;
  color: var(--white);
  line-height: 1.2;
  margin-top: 12px;
  margin-bottom: 18px;
}
.booking-text p { font-size: 16px; color: rgba(255,255,255,.7); line-height: 1.7; margin-bottom: 24px; }
.booking-perks { display: flex; flex-direction: column; gap: 12px; margin-top: 28px; }
.booking-perk {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: rgba(255,255,255,.75);
}
.booking-perk::before {
  content: '✓';
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  flex-shrink: 0;
}

.booking-form {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 28px;
  box-shadow: var(--shadow-md);
}
.form-row { display: grid; gap: 16px; margin-bottom: 16px; }
.form-row-2 { grid-template-columns: 1fr 1fr; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: 13px; font-weight: 600; color: var(--text); letter-spacing: .03em; }
.form-group label span { color: var(--accent); margin-left: 2px; }
.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font: inherit;
  font-size: 15px;
  color: var(--text);
  background: var(--white);
  transition: border-color var(--t), box-shadow var(--t);
  outline: none;
  width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(201,125,62,.12);
}
.form-group input.error,
.form-group select.error,
.form-group textarea.error {
  border-color: #e05555;
}
.form-group textarea { min-height: 110px; resize: vertical; }
.form-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 20px 0;
}
.form-check input[type="checkbox"] {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--accent);
  cursor: pointer;
}
.form-check label {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
  cursor: pointer;
}
.form-check label a { color: var(--accent); }
.form-check .form-error-msg { display: none; font-size: 12px; color: #c0392b; margin-top: 4px; }
.form-check .form-error-msg.visible { display: block; }
.form-submit { width: 100%; justify-content: center; font-size: 16px; padding: 16px; }
.form-response-hint {
  text-align: center;
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 12px;
}
.hp-field { opacity: 0; position: absolute; top: 0; left: 0; height: 0; width: 0; z-index: -1; pointer-events: none; overflow: hidden; }
.form-success {
  display: none;
  text-align: center;
  padding: 32px 0;
}
.form-success-icon { font-size: 40px; margin-bottom: 12px; }
.form-success h3 { font-size: 22px; font-weight: 700; margin-bottom: 10px; }
.form-success p { color: var(--text-muted); font-size: 15px; }
.form-error-msg { color: #e05555; font-size: 12px; margin-top: 4px; display: none; }
.form-error-msg.visible { display: block; }

@media (min-width: 900px) {
  .booking-inner { grid-template-columns: 1fr 1fr; align-items: start; }
}
@media (max-width: 480px) {
  .form-row-2 { grid-template-columns: 1fr; }
}

/* ── Footer ───────────────────────────────────────────────────────────────── */
.site-footer {
  background: var(--bg-dark);
  padding: 72px 0 0;
  color: rgba(255,255,255,.75);
}
.footer-inner {
  display: grid;
  gap: 40px;
  grid-template-columns: 1fr;
  max-width: calc(var(--max-w) + 48px);
  margin-inline: auto;
  padding-inline: 24px;
  padding-bottom: 52px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-brand .logo-main { font-size: 20px; display: block; margin-bottom: 14px; }
.footer-brand p { font-size: 14px; color: rgba(255,255,255,.5); line-height: 1.65; max-width: 280px; }
.footer-nav h3, .footer-contact h3, .footer-legal-links h3 {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255,255,255,.4);
  margin-bottom: 16px;
}
.footer-nav ul li,
.footer-contact ul li,
.footer-legal-links ul li {
  margin-bottom: 4px;
  font-size: 14px;
}
.footer-nav a,
.footer-contact a,
.footer-legal-links a {
  display: inline-block;
  padding: 6px 0;
  min-height: 44px;
  line-height: 32px;
}
.footer-nav a:hover,
.footer-contact a:hover,
.footer-legal-links a:hover { color: var(--white); }
.footer-contact small { font-size: 12px; color: rgba(255,255,255,.4); }

.footer-bottom {
  max-width: calc(var(--max-w) + 48px);
  margin-inline: auto;
  padding: 20px 24px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 13px;
  color: rgba(255,255,255,.35);
}

@media (min-width: 640px)  { .footer-inner { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px)  { .footer-inner { grid-template-columns: 2fr 1fr 1fr 1fr; } }
@media (min-width: 900px)  { .footer-bottom { flex-direction: row; justify-content: space-between; } }

/* ── Legal Pages ──────────────────────────────────────────────────────────── */
.legal-hero {
  background: var(--bg-dark);
  padding: calc(var(--nav-h) + 52px) 0 52px;
  color: var(--white);
}
.legal-hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(26px, 4vw, 40px);
  font-weight: 400;
  margin-top: 12px;
}
.legal-content {
  padding: 64px 0 100px;
}
.legal-body { max-width: 760px; }
.legal-body h2 {
  font-size: 20px;
  font-weight: 700;
  margin: 36px 0 12px;
  color: var(--text);
}
.legal-body h3 { font-size: 17px; font-weight: 700; margin: 24px 0 8px; }
.legal-body p, .legal-body li {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 12px;
}
.legal-body ul { list-style: disc; padding-left: 24px; margin-bottom: 16px; }
.legal-body a { color: var(--accent); }

/* ── 404 ──────────────────────────────────────────────────────────────────── */
.not-found {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: var(--bg-dark);
  color: var(--white);
  padding: 40px 24px;
}
.not-found h1 { font-family: var(--font-serif); font-size: 120px; font-weight: 400; color: var(--accent); line-height: 1; }
.not-found h2 { font-size: 24px; font-weight: 600; margin: 12px 0 16px; }
.not-found p  { color: rgba(255,255,255,.6); margin-bottom: 32px; }

/* ── Scroll-to-top ────────────────────────────────────────────────────────── */
.scroll-top {
  position: fixed;
  bottom: 28px; right: 24px;
  z-index: 50;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--white);
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity var(--t), transform var(--t);
  font-size: 18px;
}
.scroll-top.visible { opacity: 1; pointer-events: auto; transform: none; }
.scroll-top:hover { background: var(--accent-h); }

/* ── LP (Unterseiten) ─────────────────────────────────────────────────────── */

/* LP Hero - Bild links, Text rechts überlagert */
.lp-hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--bg-dark);
}
.lp-hero-media {
  position: absolute;
  inset: 0;
}
.lp-hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
}
.lp-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(11,29,46,.25) 0%,
    rgba(11,29,46,.55) 50%,
    rgba(11,29,46,.85) 100%
  );
}
.lp-hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding-bottom: 72px;
}
.lp-hero-text { max-width: 680px; }
.lp-hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(34px, 6.5vw, 70px);
  font-weight: 400;
  color: #ffffff;
  line-height: 1.1;
  margin-bottom: 24px;
}
.lp-hero .hero-sub { color: rgba(255,255,255,.82); }
.lp-hero .hero-tag { color: var(--accent); }
.lp-hero .hero-trust { color: rgba(255,255,255,.65); }
.lp-breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: rgba(255,255,255,.55);
  margin-bottom: 24px;
  transition: color var(--t);
}
.lp-breadcrumb:hover { color: rgba(255,255,255,.9); }

/* LP Intro Grid */
.lp-intro-grid {
  display: grid;
  gap: 52px;
  align-items: center;
}
@media (min-width: 900px) {
  .lp-intro-grid { grid-template-columns: 1fr 440px; }
}
.lp-intro-highlights {
  display: flex;
  gap: 32px;
  margin-top: 36px;
  flex-wrap: wrap;
}
.lp-highlight {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.lp-highlight-num {
  font-family: var(--font-serif);
  font-size: 36px;
  font-weight: 400;
  color: var(--accent);
  line-height: 1;
}
.lp-highlight-label {
  font-size: 13px;
  color: var(--text-muted);
}

/* LP Steps */
.lp-steps {
  display: grid;
  gap: 0;
  max-width: 860px;
  margin-inline: auto;
}
.lp-step {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 24px;
  padding: 32px 0;
  border-bottom: 1px solid var(--border);
}
.lp-step:last-child { border-bottom: none; }
.lp-step-num {
  font-family: var(--font-serif);
  font-size: 32px;
  font-weight: 400;
  color: var(--accent);
  opacity: .5;
  line-height: 1.1;
  padding-top: 4px;
}
.lp-step-body h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text);
}
.lp-step-body p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.7;
}
.section-dark .lp-step { border-bottom-color: var(--border-dark); }
.section-dark .lp-step-body h3 { color: var(--white); }
.section-dark .lp-step-body p { color: rgba(255,255,255,.75); }

/* LP Locations (Unterseite) */
.lp-locations {
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr;
}
.lp-location-item {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 0;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg-dark-2);
}
.lp-location-visual {
  min-height: 130px;
  display: flex;
  align-items: flex-end;
  padding: 12px;
  position: relative;
}
.lp-location-visual-label {
  font-family: var(--font-serif);
  font-size: 13px;
  color: rgba(255,255,255,.5);
  font-style: italic;
}
.lp-location-info {
  padding: 20px 22px;
}
.lp-location-info h3 {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 8px;
}
.lp-location-info p {
  font-size: 14px;
  color: rgba(255,255,255,.6);
  line-height: 1.6;
  margin-bottom: 12px;
}
.lp-location-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid rgba(201,125,62,.4);
  padding: 4px 10px;
  border-radius: 50px;
}
@media (min-width: 640px) {
  .lp-locations { grid-template-columns: repeat(2, 1fr); }
  .lp-location-item { grid-template-columns: 1fr; }
  .lp-location-visual { min-height: 160px; align-items: flex-end; }
}
@media (min-width: 900px) {
  .lp-locations { grid-template-columns: repeat(4, 1fr); }
}

/* LP SEO Text */
.lp-seo-text {
  max-width: 760px;
}
.lp-seo-text h2 {
  font-family: var(--font-serif);
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 400;
  margin-bottom: 20px;
  line-height: 1.3;
}
.lp-seo-text p {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 16px;
}
.lp-seo-text strong { color: var(--text); }

/* ── Ort-Navigation (Anker-Sprungleiste) ─────────────────────────────────── */
.lp-ort-nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.lp-ort-nav-label { margin-right: 4px; }
.lp-ort-nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.lp-ort-nav-btn {
  display: inline-block;
  padding: 8px 18px;
  border-radius: 50px;
  border: 2px solid var(--accent);
  color: var(--accent);
  font-size: 14px;
  font-weight: 600;
  transition: background var(--t), color var(--t);
}
.lp-ort-nav-btn:hover {
  background: var(--accent);
  color: var(--white);
}

/* ── Ort-Abschnitte ─────────────────────────────────────────────────────── */
.lp-ort-section { display: flex; flex-direction: column; gap: 2rem; }
.lp-ort-header { max-width: 800px; }
.lp-ort-header h2 {
  font-family: var(--font-serif);
  font-size: clamp(24px, 3.5vw, 40px);
  font-weight: 400;
  line-height: 1.2;
  margin-block: 10px 14px;
  color: var(--white);
}
.section-dark .lp-ort-header h2 { color: var(--white); }
.section:not(.section-dark):not(.section-alt) .lp-ort-header h2 { color: var(--text); }
.section-alt .lp-ort-header h2 { color: var(--text); }
.lp-ort-sub {
  font-size: 16px;
  line-height: 1.75;
  opacity: .85;
}
.section-dark .lp-ort-sub { color: rgba(255,255,255,.8); }

.lp-ort-body { margin-top: 1rem; }
.lp-ort-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.lp-ort-text h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
}
.section-dark .lp-ort-text h3 { color: var(--white); }
.lp-ort-text p {
  font-size: 15px;
  line-height: 1.75;
  margin-bottom: 14px;
}
.section-dark .lp-ort-text p { color: rgba(255,255,255,.8); }
.section:not(.section-dark) .lp-ort-text p { color: var(--text-muted); }
.section-alt .lp-ort-text p { color: var(--text-muted); }

.lp-ort-features {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 16px;
}
.lp-ort-features li {
  font-size: 14px;
  padding-left: 20px;
  position: relative;
}
.lp-ort-features li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}
.section-dark .lp-ort-features li { color: rgba(255,255,255,.8); }

/* Ort-Karte */
.lp-ort-card {
  border-radius: var(--radius);
  padding: 28px;
  color: var(--white);
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.lp-ort-card-name {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 400;
  letter-spacing: .01em;
}
.lp-ort-card-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--accent);
}
.lp-ort-card-facts {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-top: 6px;
  border-top: 1px solid rgba(255,255,255,.15);
  padding-top: 14px;
}
.lp-ort-card-facts li {
  font-size: 13px;
  color: rgba(255,255,255,.8);
  padding-left: 16px;
  position: relative;
}
.lp-ort-card-facts li::before {
  content: '·';
  position: absolute;
  left: 4px;
  color: var(--accent);
}

@media (min-width: 860px) {
  .lp-ort-content {
    flex-direction: row;
    align-items: flex-start;
    gap: 3rem;
  }
  .lp-ort-content-reverse { flex-direction: row-reverse; }
  .lp-ort-text { flex: 1 1 0; }
  .lp-ort-aside { flex: 0 0 300px; }
}

/* ── Verwandte Seiten ────────────────────────────────────────────────────── */
.lp-related-links {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
.lp-related-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--bg);
  border: 2px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 24px;
  transition: border-color var(--t), box-shadow var(--t);
}
.lp-related-card:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow);
}
.lp-related-card-icon { font-size: 28px; line-height: 1; flex-shrink: 0; }
.lp-related-card strong { display: block; font-size: 15px; margin-bottom: 4px; color: var(--text); }
.lp-related-card p { font-size: 13px; color: var(--text-muted); margin: 0; }
@media (min-width: 600px) {
  .lp-related-links { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 900px) {
  .lp-related-links { grid-template-columns: repeat(3, 1fr); }
}

/* ── Fotografen-Landingpage ─────────────────────────────────────────────── */
.photographer-hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--bg-dark);
}
.photographer-hero-media {
  position: absolute;
  inset: 0;
}
.photographer-hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 42%;
}
.photographer-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(11,29,46,.92) 0%, rgba(11,29,46,.58) 52%, rgba(11,29,46,.24) 100%),
    linear-gradient(0deg, rgba(11,29,46,.72) 0%, rgba(11,29,46,.08) 52%);
}
.photographer-hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding-block: 150px 72px;
}
.photographer-hero-text { max-width: 720px; }
.photographer-hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(36px, 6.5vw, 72px);
  font-weight: 400;
  line-height: 1.08;
  color: var(--white);
  margin-bottom: 24px;
}
.photographer-hero .hero-sub {
  color: rgba(255,255,255,.82);
  max-width: 680px;
}

.photographer-intro,
.photographer-values-grid {
  display: grid;
  gap: 44px;
  align-items: center;
}
.photographer-copy h2 {
  font-family: var(--font-serif);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 400;
  line-height: 1.18;
  margin: 10px 0 18px;
}
.photographer-copy p {
  color: var(--text-muted);
  margin-bottom: 16px;
}
.photographer-image-card {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  background: var(--bg-alt);
}
.photographer-image-card img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.photographer-role-grid {
  display: grid;
  gap: 20px;
}
.photographer-role-card,
.photographer-checklist,
.photographer-mini-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
}
.photographer-role-card-muted {
  background: var(--bg-dark);
  color: var(--white);
  border-color: var(--bg-dark);
}
.photographer-role-card h3,
.photographer-checklist h3 {
  font-family: var(--font-serif);
  font-size: 26px;
  font-weight: 400;
  margin-bottom: 18px;
}
.photographer-role-card ul,
.photographer-checklist ul {
  display: grid;
  gap: 12px;
}
.photographer-role-card li,
.photographer-checklist li {
  position: relative;
  padding-left: 24px;
  color: var(--text-muted);
}
.photographer-role-card li::before,
.photographer-checklist li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}
.photographer-role-card-muted li { color: rgba(255,255,255,.72); }

.photographer-shooting-grid {
  display: grid;
  gap: 18px;
}
.photographer-shooting-card {
  position: relative;
  min-height: 320px;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg-dark);
}
.photographer-shooting-card picture,
.photographer-shooting-card img {
  width: 100%;
  height: 100%;
}
.photographer-shooting-card img {
  object-fit: cover;
  transition: transform .45s ease;
}
.photographer-shooting-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11,29,46,.06) 30%, rgba(11,29,46,.82) 100%);
}
.photographer-shooting-card:hover img { transform: scale(1.04); }
.photographer-shooting-card h3 {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 20px;
  z-index: 1;
  font-family: var(--font-serif);
  font-size: 25px;
  font-weight: 400;
  color: var(--white);
}

.photographer-checklist { align-self: stretch; }
.photographer-mini-grid {
  display: grid;
  gap: 18px;
}
.photographer-mini-card {
  display: grid;
  gap: 8px;
}
.photographer-mini-card strong { font-size: 18px; }
.photographer-mini-card span {
  color: var(--text-muted);
  line-height: 1.6;
}

@media (min-width: 720px) {
  .photographer-role-grid { grid-template-columns: repeat(2, 1fr); }
  .photographer-mini-grid { grid-template-columns: repeat(2, 1fr); }
  .photographer-shooting-grid { grid-template-columns: repeat(4, 1fr); }
}
@media (min-width: 900px) {
  .photographer-intro { grid-template-columns: minmax(0, 1fr) 420px; }
  .photographer-values-grid { grid-template-columns: minmax(0, 1fr) 460px; }
  .photographer-mini-grid { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 640px) {
  .photographer-hero-overlay {
    background: linear-gradient(0deg, rgba(11,29,46,.9) 0%, rgba(11,29,46,.46) 70%);
  }
  .photographer-hero-content { padding-block: 128px 54px; }
  .photographer-shooting-card { min-height: 260px; }
}

/* ── Focus styles (accessibility) ────────────────────────────────────────── */
:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 3px;
  border-radius: 4px;
}
