/* ==============================
   TOKENS & RESET
============================== */

:root {
  --ink:       #1c2b28;
  --ink-muted: #4a5e59;
  --ink-light: #8a9e9a;
  --cream:     #f7f2ea;
  --cream-alt: #efe9de;
  --canvas:    #fdfaf5;
  --copper:    #b85c2a;
  --copper-lt: #d4763c;
  --copper-dk: #8a3e18;
  --sage:      #3d6b5e;
  --sage-lt:   #edf2ef;
  --teal:      #1f4a42;
  --teal-dk:   #132e28;
  --gold:      #c9953a;
  --gold-lt:   #f5e8cc;
  --white:     #ffffff;

  --serif: 'Playfair Display', Georgia, serif;
  --sans:  'Outfit', system-ui, sans-serif;

  --r-sm: 8px;
  --r-md: 16px;
  --r-lg: 24px;
  --r-xl: 40px;

  --shadow-sm: 0 2px 12px rgba(28,43,40,0.08);
  --shadow-md: 0 8px 40px rgba(28,43,40,0.12);
  --shadow-lg: 0 20px 60px rgba(28,43,40,0.16);

  --max: 1240px;
  --gutter: clamp(1rem, 5vw, 3rem);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { font-size: 16px; scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  background: var(--canvas);
  color: var(--ink);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img { display: block; width: 100%; height: 100%; object-fit: cover; }

a { text-decoration: none; color: inherit; }

ul { list-style: none; }

.container {
  width: 100%;
  max-width: var(--max);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

/* ==============================
   TYPOGRAPHY HELPERS
============================== */

.eyebrow {
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--copper);
}

.display-xl {
  font-family: var(--serif);
  font-size: clamp(2.4rem, 6vw, 5.2rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.02em;
}

.display-lg {
  font-family: var(--serif);
  font-size: clamp(1.9rem, 4vw, 3.4rem);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.01em;
}

.display-md {
  font-family: var(--serif);
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 600;
  line-height: 1.2;
}

.body-lg { font-size: 1.1rem; line-height: 1.7; color: var(--ink-muted); }

.body-md { font-size: 0.95rem; line-height: 1.65; color: var(--ink-muted); }

/* ==============================
   BUTTONS
============================== */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--sans);
  font-weight: 500;
  font-size: 0.9rem;
  padding: 14px 28px;
  border-radius: var(--r-sm);
  cursor: pointer;
  transition: all 0.22s ease;
  border: none;
  white-space: nowrap;
}

.btn-primary {
  background: var(--copper);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--copper-dk);
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(184,92,42,0.3);
}

.btn-ghost {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.4);
}

.btn-ghost:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.7);
}

.btn-outline-dark {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--ink);
}

.btn-outline-dark:hover {
  background: var(--ink);
  color: var(--white);
}

.btn-sm { padding: 10px 20px; font-size: 0.82rem; }

/* ==============================
   NAV
============================== */

.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1.2rem var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.3s, box-shadow 0.3s;
}

.site-nav.scrolled {
  background: rgba(19, 46, 40, 0.97);
  box-shadow: 0 2px 20px rgba(0,0,0,0.2);
  backdrop-filter: blur(10px);
}

.nav-logo {
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-logo-icon {
  width: 36px; height: 36px;
  background: var(--copper);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}

.nav-logo-icon svg { width: 18px; height: 18px; fill: white; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-links a {
  color: rgba(255,255,255,0.8);
  font-size: 0.875rem;
  font-weight: 400;
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--white); }

/* ==============================
   HERO
============================== */

.hero {
  min-height: 100vh;
  background: var(--teal-dk);
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
}

/* Water-like animated background */

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 65% 40%, rgba(63,107,94,0.45) 0%, transparent 60%),
    radial-gradient(ellipse 60% 80% at 20% 70%, rgba(31,74,66,0.65) 0%, transparent 55%),
    linear-gradient(160deg, rgba(14,40,32,0.82) 0%, rgba(31,74,66,0.65) 40%, rgba(19,46,40,0.85) 100%),
    url('https://images.unsplash.com/photo-1476514525535-07fb3b4ae5f1?w=1800&q=80&auto=format&fit=crop') center/cover no-repeat;
}

.hero-wave {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 160px;
  background: var(--cream);
  clip-path: ellipse(120% 100% at 50% 100%);
}

/* Floating deco shapes */

.hero-circle-lg {
  position: absolute;
  width: 600px; height: 600px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.06);
  top: -150px; right: -100px;
}

.hero-circle-sm {
  position: absolute;
  width: 300px; height: 300px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.08);
  bottom: 200px; right: 80px;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 var(--gutter) max(220px, 18vh);
  max-width: var(--max);
  margin-inline: auto;
  width: 100%;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: 100px;
  background: rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.75);
  font-size: 0.78rem;
  font-weight: 400;
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,0.15);
}

.hero-tag svg { width: 13px; height: 13px; opacity: 0.8; }

.hero-headline em {
  font-style: italic;
  color: rgba(255,255,255,0.65);
}

/* Hero stats bar */

.hero-stat-num {
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}

.hero-stat-label {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.5);
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* Hero visual card (right) */

.hero-card-wrap {
  position: absolute;
  right: var(--gutter);
  top: 50%;
  transform: translateY(-50%);
  width: min(380px, 30vw);
  z-index: 3;
}

.hero-visual-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: var(--r-lg);
  backdrop-filter: blur(12px);
  overflow: hidden;
}

.hero-card-img {
  height: 220px;
  background:
    linear-gradient(to bottom, rgba(14,40,32,0.3) 0%, rgba(14,40,32,0.55) 100%),
    url('https://images.unsplash.com/photo-1476514525535-07fb3b4ae5f1?w=600&q=80&auto=format&fit=crop') center/cover no-repeat;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-card-img-deco {
  width: 100px; height: 60px;
  background: rgba(255,255,255,0.07);
  border-radius: 12px;
  position: relative;
}

.hero-card-img-deco::before {
  content: '';
  position: absolute;
  bottom: 0; left: 50%; transform: translateX(-50%);
  width: 120px; height: 20px;
  background: rgba(255,255,255,0.05);
  border-radius: 50%;
}

.hero-card-body {
  padding: 1.25rem 1.5rem;
}

.hero-card-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.4);
  margin-bottom: 6px;
}

.hero-card-title {
  font-family: var(--serif);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 4px;
}

.hero-card-loc {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.5);
  display: flex;
  align-items: center;
  gap: 4px;
}

.hero-card-loc svg { width: 10px; height: 10px; }

/* ==============================
   INTRO STRIP
============================== */

.intro-strip {
  background: var(--cream);
  padding: 5rem var(--gutter);
}

.intro-strip-inner {
  max-width: var(--max);
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1fr 2px 1fr;
  gap: 0 4rem;
  align-items: center;
}

.intro-divider {
  width: 2px;
  height: 100%;
  background: var(--cream-alt);
}

.intro-quote {
  font-family: var(--serif);
  font-size: clamp(1.35rem, 2.5vw, 1.9rem);
  font-weight: 400;
  line-height: 1.35;
  color: var(--ink);
  font-style: italic;
}

.intro-desc {
  font-size: 1rem;
  color: var(--ink-muted);
  line-height: 1.75;
}

.intro-desc strong { color: var(--ink); font-weight: 500; }

/* ==============================
   BENEFITS
============================== */

.benefits {
  background: var(--canvas);
  padding: 6rem var(--gutter);
}

.benefits-header {
  max-width: var(--max);
  margin-inline: auto;
  margin-bottom: 3.5rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 2rem;
  flex-wrap: wrap;
}

.benefits-grid {
  max-width: var(--max);
  margin-inline: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.benefit-card {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 2.5rem 2rem;
  border: 1px solid rgba(28,43,40,0.07);
  transition: transform 0.25s, box-shadow 0.25s;
  position: relative;
  overflow: hidden;
}

.benefit-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.benefit-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--copper);
  opacity: 0;
  transition: opacity 0.25s;
}

.benefit-card:hover::before { opacity: 1; }

.benefit-num {
  font-family: var(--serif);
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--cream-alt);
  line-height: 1;
  margin-bottom: 1rem;
}

.benefit-title {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 0.75rem;
}

.benefit-text { font-size: 0.9rem; color: var(--ink-muted); line-height: 1.7; }

/* ==============================
   EDITORIAL EXPERIENCE
============================== */

.editorial {
  background: var(--teal-dk);
  padding: 7rem var(--gutter);
  position: relative;
  overflow: hidden;
}

.editorial::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 80% at 80% 50%, rgba(63,107,94,0.3) 0%, transparent 65%);
}

.editorial-inner {
  max-width: var(--max);
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.editorial-eyebrow { color: var(--gold); }

.editorial-title {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
  margin: 1rem 0 1.5rem;
}

.editorial-text {
  color: rgba(255,255,255,0.65);
  font-size: 0.95rem;
  line-height: 1.75;
  margin-bottom: 1rem;
}

.editorial-features {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin: 2rem 0;
}

.editorial-feature {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.1rem 1.25rem;
  background: rgba(255,255,255,0.06);
  border-radius: var(--r-md);
  border: 1px solid rgba(255,255,255,0.1);
}

.editorial-feature-icon {
  width: 36px; height: 36px;
  background: rgba(201,149,58,0.2);
  border-radius: var(--r-sm);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

.editorial-feature-icon svg { width: 18px; height: 18px; fill: var(--gold); }

.editorial-feature-title {
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--white);
  margin-bottom: 3px;
}

.editorial-feature-text { font-size: 0.8rem; color: rgba(255,255,255,0.5); }

/* Right panel */

.editorial-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 1.25rem;
}

.editorial-panel-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--r-md);
  padding: 1.75rem;
  transition: background 0.25s;
}

.editorial-panel-card:hover { background: rgba(255,255,255,0.1); }

.editorial-panel-card.span2 { grid-column: span 2; }

.panel-card-icon {
  width: 42px; height: 42px;
  background: rgba(201,149,58,0.15);
  border-radius: var(--r-sm);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1rem;
}

.panel-card-icon svg { width: 20px; height: 20px; fill: var(--gold); }

.panel-card-title {
  font-family: var(--serif);
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.4rem;
}

.panel-card-text { font-size: 0.8rem; color: rgba(255,255,255,0.5); line-height: 1.6; }

/* ==============================
   REVIERE (DESTINATIONS)
============================== */

.reviere {
  background: var(--cream);
  padding: 7rem var(--gutter);
}

.reviere-header {
  max-width: var(--max);
  margin-inline: auto;
  margin-bottom: 3.5rem;
}

.reviere-grid {
  max-width: var(--max);
  margin-inline: auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 1.25rem;
}

.revier-card {
  border-radius: var(--r-lg);
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

.revier-card:hover .revier-img { transform: scale(1.04); }

.revier-img-wrap { overflow: hidden; }

.revier-img {
  height: 100%;
  min-height: 220px;
  transition: transform 0.45s ease;
  position: relative;
}

/* CSS gradient stand-ins for images */

.revier-img-spree {
  background: linear-gradient(155deg, #1f4a42 0%, #2d6b5a 40%, #1a3530 100%);
  background-image: url('https://images.unsplash.com/photo-1476514525535-07fb3b4ae5f1?w=900&q=80&auto=format&fit=crop');
  background-size: cover;
  background-position: center;
}

.revier-img-havel {
  background: linear-gradient(145deg, #1b3a5c 0%, #2a5a7a 50%, #152d47 100%);
  background-image: url('https://images.unsplash.com/photo-1476514525535-07fb3b4ae5f1?w=700&q=80&auto=format&fit=crop');
  background-size: cover;
  background-position: center;
}

.revier-img-mecklenburg {
  background: linear-gradient(160deg, #2a4a2a 0%, #3d6b3d 50%, #1a3a1a 100%);
  background-image: url('https://images.unsplash.com/photo-1476514525535-07fb3b4ae5f1?w=700&q=80&auto=format&fit=crop');
  background-size: cover;
  background-position: center;
}

.revier-img-brandenburg {
  background: linear-gradient(150deg, #4a3a20 0%, #6b5530 50%, #3a2a14 100%);
  background-image: url('https://images.unsplash.com/photo-1476514525535-07fb3b4ae5f1?w=600&q=80&auto=format&fit=crop');
  background-size: cover;
  background-position: center;
}

.revier-img-seen {
  background: linear-gradient(155deg, #1a3a4a 0%, #2a5a6b 50%, #102530 100%);
  background-image: url('https://images.unsplash.com/photo-1476514525535-07fb3b4ae5f1?w=600&q=80&auto=format&fit=crop');
  background-size: cover;
  background-position: center;
}

.revier-card.large .revier-img { min-height: 420px; }

.revier-card.medium .revier-img { min-height: 200px; }

.revier-card.small .revier-img { min-height: 180px; }

.revier-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.1) 60%, transparent 100%);
}

.revier-content {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 1.5rem;
}

.revier-badge {
  display: inline-block;
  padding: 3px 10px;
  background: rgba(255,255,255,0.15);
  border-radius: 100px;
  font-size: 0.68rem;
  color: rgba(255,255,255,0.8);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
  border: 1px solid rgba(255,255,255,0.2);
}

.revier-name {
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
}

.revier-card.large .revier-name { font-size: 2rem; }

.revier-sub {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.6);
  margin-top: 4px;
}

/* Grid layout */

.revier-card:nth-child(1) { grid-row: span 2; }

.revier-card:nth-child(1) .revier-img { min-height: 100%; height: 460px; }

/* ==============================
   BOOTSTYPEN / CATEGORIES
============================== */

.categories {
  background: var(--canvas);
  padding: 7rem var(--gutter);
}

.categories-header {
  max-width: var(--max);
  margin-inline: auto;
  margin-bottom: 3.5rem;
}

.categories-grid {
  max-width: var(--max);
  margin-inline: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.25rem;
}

.cat-card {
  background: var(--white);
  border-radius: var(--r-lg);
  border: 1px solid rgba(28,43,40,0.07);
  overflow: hidden;
  transition: transform 0.25s, box-shadow 0.25s;
}

.cat-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }

.cat-card-head {
  height: 160px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cat-card-head-hausboot { background: linear-gradient(135deg, #1f4a42, #3d7a68); }

.cat-card-head-party    { background: linear-gradient(135deg, #4a1f3a, #7a3d60); }

.cat-card-head-motor    { background: linear-gradient(135deg, #1a2f4a, #3d5f7a); }

.cat-card-head-frei     { background: linear-gradient(135deg, #2a3a1a, #5a6a3a); }

.cat-card-head-icon {
  width: 60px; height: 60px;
  background: rgba(255,255,255,0.15);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}

.cat-card-head-icon svg { width: 28px; height: 28px; fill: white; }

.cat-card-body { padding: 1.5rem; }

.cat-card-title {
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 0.5rem;
}

.cat-card-text { font-size: 0.85rem; color: var(--ink-muted); line-height: 1.65; margin-bottom: 1.25rem; }

.cat-tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 10px;
  background: var(--sage-lt);
  border-radius: 100px;
  font-size: 0.72rem;
  color: var(--sage);
  font-weight: 500;
}

/* ==============================
   HAUSBOOT HIGHLIGHT
============================== */

.highlight {
  background: var(--cream);
  padding: 7rem var(--gutter);
}

.highlight-inner {
  max-width: var(--max);
  margin-inline: auto;
  display: grid;
  grid-template-columns: 5fr 4fr;
  gap: 5rem;
  align-items: center;
}

.highlight-visual {
  position: relative;
}

.highlight-visual-main {
  height: 500px;
  background:
    linear-gradient(to bottom, rgba(14,40,32,0.25) 0%, rgba(14,40,32,0.5) 100%),
    url('https://images.unsplash.com/photo-1476514525535-07fb3b4ae5f1?w=800&q=80&auto=format&fit=crop') center/cover no-repeat;
  border-radius: var(--r-xl);
  overflow: hidden;
  position: relative;
}

.highlight-visual-deco {
  position: absolute;
  bottom: -30px; right: -30px;
  width: 200px; height: 200px;
  background: var(--cream-alt);
  border-radius: var(--r-xl);
  z-index: -1;
}

.highlight-floating-card {
  position: absolute;
  bottom: 2rem; left: -2rem;
  background: var(--white);
  border-radius: var(--r-md);
  padding: 1.25rem 1.5rem;
  box-shadow: var(--shadow-lg);
  min-width: 200px;
}

.hf-label { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--ink-light); }

.hf-val { font-family: var(--serif); font-size: 1.5rem; font-weight: 700; color: var(--ink); margin: 4px 0; }

.hf-note { font-size: 0.75rem; color: var(--copper); }

.highlight-eyebrow { color: var(--copper); margin-bottom: 1rem; }

.highlight-title {
  font-family: var(--serif);
  font-size: clamp(1.7rem, 3vw, 2.6rem);
  font-weight: 700;
  color: var(--ink);
  line-height: 1.15;
  margin-bottom: 1.5rem;
}

.highlight-text { color: var(--ink-muted); line-height: 1.75; margin-bottom: 1rem; }

.highlight-checklist {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin: 1.75rem 0;
}

.highlight-check {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: var(--ink-muted);
}

.check-icon {
  width: 22px; height: 22px;
  background: var(--sage-lt);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}

.check-icon svg { width: 12px; height: 12px; stroke: var(--sage); fill: none; stroke-width: 2.5; }

/* ==============================
   FAQ
============================== */

.faq {
  background: var(--canvas);
  padding: 7rem var(--gutter);
}

.faq-inner {
  max-width: var(--max);
  margin-inline: auto;
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 5rem;
  align-items: start;
}

.faq-sidebar-title {
  font-family: var(--serif);
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  font-weight: 700;
  color: var(--ink);
  line-height: 1.2;
  margin: 1rem 0 1.25rem;
}

.faq-sidebar-text { color: var(--ink-muted); font-size: 0.9rem; line-height: 1.7; margin-bottom: 2rem; }

.faq-list { display: flex; flex-direction: column; gap: 1px; }

.faq-item {
  border-bottom: 1px solid rgba(28,43,40,0.09);
}

.faq-q {
  width: 100%;
  background: none;
  border: none;
  padding: 1.25rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  cursor: pointer;
  font-family: var(--sans);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--ink);
  text-align: left;
}

.faq-q:hover { color: var(--copper); }

.faq-arrow {
  width: 24px; height: 24px;
  background: var(--cream);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: transform 0.25s, background 0.2s;
}

.faq-arrow svg { width: 12px; height: 12px; stroke: var(--ink-muted); fill: none; stroke-width: 2; }

.faq-item.open .faq-arrow { transform: rotate(180deg); background: var(--copper); }

.faq-item.open .faq-arrow svg { stroke: white; }

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s;
}

.faq-a-inner {
  padding-bottom: 1.25rem;
  font-size: 0.875rem;
  color: var(--ink-muted);
  line-height: 1.75;
}

.faq-item.open .faq-a { max-height: 300px; }

/* ==============================
   CTA FINAL
============================== */

.cta-final {
  background: var(--teal-dk);
  padding: 7rem var(--gutter);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.cta-final::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 30% 50%, rgba(63,107,94,0.35) 0%, transparent 60%),
    radial-gradient(ellipse 50% 70% at 75% 40%, rgba(31,74,66,0.4) 0%, transparent 60%);
}

.cta-final-inner {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin-inline: auto;
}

.cta-eyebrow { color: var(--gold); margin-bottom: 1.5rem; }

.cta-title {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.cta-title em { font-style: italic; color: rgba(255,255,255,0.6); }

.cta-text {
  color: rgba(255,255,255,0.6);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 2.5rem;
  max-width: 52ch;
  margin-inline: auto;
  margin-bottom: 2.5rem;
}

.cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ==============================
   FOOTER
============================== */

.site-footer {
  background: var(--ink);
  padding: 4rem var(--gutter) 2rem;
}

.footer-inner {
  max-width: var(--max);
  margin-inline: auto;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 2rem;
}

.footer-brand-name {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.75rem;
}

.footer-brand-text { font-size: 0.85rem; color: rgba(255,255,255,0.45); line-height: 1.7; max-width: 30ch; }

.footer-col-title {
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.35);
  margin-bottom: 1rem;
}

.footer-links { display: flex; flex-direction: column; gap: 0.6rem; }

.footer-links a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
  transition: color 0.2s;
}

.footer-links a:hover { color: var(--white); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.3);
}

.footer-network a { color: rgba(255,255,255,0.5); transition: color 0.2s; }

.footer-network a:hover { color: var(--white); }

/* ==============================
   WATER DECO (SVG inline)
============================== */

.hero-boat-deco {
  position: absolute;
  bottom: 260px; right: calc(var(--gutter) + min(380px, 30vw) + 2rem);
  opacity: 0.12;
  font-family: var(--serif);
  font-size: clamp(5rem, 10vw, 9rem);
  color: white;
  font-style: italic;
  pointer-events: none;
  user-select: none;
}

/* ==============================
   RESPONSIVE
============================== */

@media (max-width: 1024px) {
  .hero-card-wrap { display: none; }
  .intro-strip-inner { grid-template-columns: 1fr; gap: 2rem; }
  .intro-divider { display: none; }
  .editorial-inner { grid-template-columns: 1fr; gap: 3rem; }
  .highlight-inner { grid-template-columns: 1fr; }
  .highlight-visual { display: none; }
  .faq-inner { grid-template-columns: 1fr; gap: 3rem; }
  .footer-top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .reviere-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  .revier-card:nth-child(1) { grid-column: span 2; grid-row: span 1; }
  .revier-card:nth-child(1) .revier-img { height: 260px; }
  .nav-links { display: none; }
  .footer-top { grid-template-columns: 1fr; gap: 2rem; }
}

@media (max-width: 520px) {
  .reviere-grid { grid-template-columns: 1fr; }
  .revier-card:nth-child(1) { grid-column: span 1; }
  .hero-actions { flex-direction: column; }
}

/* Animations */

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-tag-row {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
  animation: fadeUp 0.6s ease both;
}

.hero-headline {
  font-family: var(--serif);
  font-size: clamp(2.8rem, 7vw, 6rem);
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: -0.025em;
  color: var(--white);
  max-width: 14ch;
  margin-bottom: 1.5rem;
  animation: fadeUp 0.7s 0.1s ease both;
}

.hero-sub {
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  color: rgba(255,255,255,0.65);
  max-width: 52ch;
  margin-bottom: 2.5rem;
  font-weight: 300;
  line-height: 1.6;
  animation: fadeUp 0.7s 0.2s ease both;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 4rem;
  animation: fadeUp 0.7s 0.3s ease both;
}

.hero-stats {
  display: flex;
  gap: clamp(1.5rem, 4vw, 3rem);
  padding-top: 2.5rem;
  border-top: 1px solid rgba(255,255,255,0.12);
  flex-wrap: wrap;
  animation: fadeUp 0.7s 0.4s ease both;
}

/* Sub-hero (smaller than full-page hero) */

.page-hero {
  background:
    linear-gradient(160deg, rgba(14,40,32,0.78) 0%, rgba(31,74,66,0.6) 40%, rgba(19,46,40,0.82) 100%),
    url('https://images.unsplash.com/photo-1476514525535-07fb3b4ae5f1?w=1800&q=80&auto=format&fit=crop') center/cover no-repeat;
  min-height: 56vh;
  display: flex;
  align-items: flex-end;
  position: relative;
  overflow: hidden;
  padding-top: 100px;
}

.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 120px;
  background: var(--canvas);
  clip-path: ellipse(110% 100% at 50% 100%);
}

.page-hero-circle {
  position: absolute;
  width: 500px; height: 500px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.05);
  top: -120px; right: -80px;
}

.page-hero-content {
  position: relative;
  z-index: 1;
  max-width: var(--max);
  margin-inline: auto;
  width: 100%;
  padding: 0 var(--gutter) max(140px, 12vh);
}

.page-hero-kicker {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}

.page-hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 14px;
  border-radius: 100px;
  background: rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.7);
  font-size: 0.75rem;
  border: 1px solid rgba(255,255,255,0.15);
}

.page-hero-title {
  font-family: var(--serif);
  font-size: clamp(2rem, 5vw, 3.8rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.05;
  letter-spacing: -0.02em;
  max-width: 20ch;
  margin-bottom: 1rem;
}

.page-hero-title em { font-style: italic; color: rgba(255,255,255,0.6); }

.page-hero-sub {
  color: rgba(255,255,255,0.6);
  font-size: 1rem;
  line-height: 1.65;
  max-width: 52ch;
  margin-bottom: 2rem;
  font-weight: 300;
}

/* Breadcrumb */

.breadcrumb-bar {
  background: var(--canvas);
  padding: 0.85rem var(--gutter);
  border-bottom: 1px solid rgba(28,43,40,0.07);
}

.breadcrumb-inner {
  max-width: var(--max);
  margin-inline: auto;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  color: var(--ink-light);
}

.breadcrumb-inner a { color: var(--ink-muted); transition: color 0.2s; }

.breadcrumb-inner a:hover { color: var(--copper); }

.breadcrumb-sep { opacity: 0.4; }

/* Yacht listing section */

.yacht-listing {
  background: var(--canvas);
  padding: 4rem var(--gutter) 6rem;
}

.yacht-listing-header {
  max-width: var(--max);
  margin-inline: auto;
  margin-bottom: 2.5rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.yacht-listing-count {
  font-size: 0.82rem;
  color: var(--ink-light);
  font-weight: 400;
}

/* Yacht cards grid */

.yacht-grid {
  max-width: var(--max);
  margin-inline: auto;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 1.5rem;
}

.yacht-card-link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.yacht-card {
  background: var(--white);
  border-radius: var(--r-lg);
  border: 1px solid rgba(28,43,40,0.07);
  overflow: hidden;
  transition: transform 0.25s, box-shadow 0.25s;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.yacht-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.yacht-card-img {
  position: relative;
  height: 220px;
  overflow: hidden;
  background: linear-gradient(155deg, #1a4035 0%, #2d6b5a 100%);
}

.yacht-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.yacht-card:hover .yacht-card-img img { transform: scale(1.04); }

.yacht-badge {
  position: absolute;
  bottom: 0.75rem; right: 0.75rem;
  background: var(--copper);
  color: white;
  font-size: 0.68rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 4px 10px;
  border-radius: var(--r-sm);
}

.yacht-card-body {
  padding: 1.25rem 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.yacht-card-name {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 2px;
  line-height: 1.2;
}

.yacht-card-location {
  font-size: 0.78rem;
  color: var(--ink-light);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 4px;
}

.yacht-card-location svg { width: 11px; height: 11px; flex-shrink: 0; }

.yacht-card-pricing {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 0.75rem 0;
  border-top: 1px solid rgba(28,43,40,0.07);
  border-bottom: 1px solid rgba(28,43,40,0.07);
  margin-bottom: 1rem;
}

.yacht-card-duration {
  font-size: 0.78rem;
  color: var(--ink-muted);
  font-weight: 400;
}

.yacht-card-price {
  font-size: 0.78rem;
  color: var(--ink-muted);
}

.yacht-card-price strong {
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--ink);
}

.yacht-card-meta {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1.25rem;
  flex: 1;
}

.yacht-meta-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: var(--ink-muted);
}

.yacht-meta-icon {
  width: 20px; height: 20px;
  background: var(--sage-lt);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

.yacht-meta-icon svg { width: 10px; height: 10px; stroke: var(--sage); fill: none; stroke-width: 2; }

.yacht-card-footer {
  margin-top: auto;
}

.yacht-card-footer .btn {
  width: 100%;
  justify-content: center;
}

/* Yacht editorial */

.yacht-editorial {
  background: var(--cream);
  padding: 6rem var(--gutter);
}

.yacht-editorial-inner {
  max-width: var(--max);
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.yacht-editorial-img {
  height: 460px;
  background:
    linear-gradient(to bottom, rgba(14,40,32,0.2) 0%, rgba(14,40,32,0.45) 100%),
    url('https://images.unsplash.com/photo-1476514525535-07fb3b4ae5f1?w=800&q=80&auto=format&fit=crop') center/cover no-repeat;
  border-radius: var(--r-xl);
  position: relative;
}

.yacht-editorial-img-badge {
  position: absolute;
  bottom: 1.5rem; left: 1.5rem;
  background: rgba(255,255,255,0.95);
  border-radius: var(--r-md);
  padding: 1rem 1.25rem;
  box-shadow: var(--shadow-md);
}

.yib-label { font-size: 0.68rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--ink-light); margin-bottom: 3px; }

.yib-val { font-family: var(--serif); font-size: 1.3rem; font-weight: 700; color: var(--ink); line-height: 1; }

.yib-note { font-size: 0.72rem; color: var(--copper); margin-top: 2px; }

/* Info strip */

.yacht-infostrip {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin: 2rem 0;
}

.yacht-info-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1rem 1.25rem;
  background: var(--white);
  border-radius: var(--r-md);
  border: 1px solid rgba(28,43,40,0.07);
}

.yacht-info-icon {
  width: 36px; height: 36px;
  background: var(--sage-lt);
  border-radius: var(--r-sm);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

.yacht-info-icon svg { width: 16px; height: 16px; stroke: var(--sage); fill: none; stroke-width: 1.8; }

.yacht-info-title { font-weight: 500; font-size: 0.88rem; color: var(--ink); margin-bottom: 2px; }

.yacht-info-text { font-size: 0.78rem; color: var(--ink-muted); line-height: 1.5; }

/* FAQ yacht */

.yacht-faq {
  background: var(--canvas);
  padding: 6rem var(--gutter);
}

.yacht-faq-inner {
  max-width: var(--max);
  margin-inline: auto;
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 5rem;
  align-items: start;
}

/* CTA yacht */

.yacht-cta {
  background: var(--teal-dk);
  padding: 6rem var(--gutter);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.yacht-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 25% 50%, rgba(63,107,94,0.3) 0%, transparent 60%),
    radial-gradient(ellipse 50% 70% at 80% 40%, rgba(31,74,66,0.4) 0%, transparent 60%);
}

.yacht-cta-inner { position: relative; z-index: 1; max-width: 680px; margin-inline: auto; }

@media (max-width: 1024px) {
  .yacht-editorial-inner { grid-template-columns: 1fr; }
  .yacht-editorial-img { display: none; }
  .yacht-faq-inner { grid-template-columns: 1fr; gap: 3rem; }
}

@media (max-width: 768px) {
  .yacht-grid { grid-template-columns: 1fr; }
}

/* Breadcrumb */

/* Filter bar */

.filter-bar {
  background: var(--white);
  border-bottom: 1px solid rgba(28,43,40,0.07);
  padding: 1rem var(--gutter);
  position: sticky;
  top: 0;
  z-index: 50;
}

.filter-bar-inner {
  max-width: var(--max);
  margin-inline: auto;
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  align-items: center;
}

.filter-chip {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 6px 14px;
  border-radius: 100px;
  background: var(--sage-lt);
  color: var(--sage);
  font-size: 0.75rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.18s;
}

.filter-chip:hover, .filter-chip.active { background: var(--sage); color: white; }

.filter-label { font-size: 0.75rem; color: var(--ink-light); margin-right: 0.25rem; }

/* Listing section */

.hausboot-listing {
  background: var(--canvas);
  padding: 4rem var(--gutter) 6rem;
}

.hausboot-listing-header {
  max-width: var(--max);
  margin-inline: auto;
  margin-bottom: 2.5rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.listing-count { font-size: 0.82rem; color: var(--ink-light); }

/* Cards grid */

.hausboot-grid {
  max-width: var(--max);
  margin-inline: auto;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 1.5rem;
}

.hb-card-link { display: block; text-decoration: none; color: inherit; }

.hb-card {
  background: var(--white);
  border-radius: var(--r-lg);
  border: 1px solid rgba(28,43,40,0.07);
  overflow: hidden;
  transition: transform 0.25s, box-shadow 0.25s;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.hb-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }

.hb-card-img {
  position: relative;
  height: 210px;
  overflow: hidden;
  flex-shrink: 0;
}

.hb-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.hb-card:hover .hb-card-img img { transform: scale(1.04); }

.hb-badge {
  position: absolute;
  bottom: 0.75rem; right: 0.75rem;
  background: var(--copper);
  color: white;
  font-size: 0.68rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 4px 10px;
  border-radius: var(--r-sm);
}

.hb-badge-frei {
  position: absolute;
  top: 0.75rem; left: 0.75rem;
  background: var(--sage);
  color: white;
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  padding: 3px 9px;
  border-radius: 100px;
}

.hb-card-body {
  padding: 1.25rem 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.hb-card-name {
  font-family: var(--serif);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 2px;
  line-height: 1.25;
}

.hb-card-location {
  font-size: 0.76rem;
  color: var(--ink-light);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 4px;
}

.hb-card-location svg { width: 10px; height: 10px; flex-shrink: 0; }

.hb-card-pricing {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 0.7rem 0;
  border-top: 1px solid rgba(28,43,40,0.07);
  border-bottom: 1px solid rgba(28,43,40,0.07);
  margin-bottom: 1rem;
}

.hb-duration { font-size: 0.76rem; color: var(--ink-muted); }

.hb-price { font-size: 0.76rem; color: var(--ink-muted); }

.hb-price strong {
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--ink);
}

.hb-meta {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  margin-bottom: 1.25rem;
  flex: 1;
}

.hb-meta-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.79rem;
  color: var(--ink-muted);
}

.hb-meta-icon {
  width: 20px; height: 20px;
  background: var(--sage-lt);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

.hb-meta-icon svg { width: 10px; height: 10px; stroke: var(--sage); fill: none; stroke-width: 2; }

.hb-card-footer { margin-top: auto; }

.hb-card-footer .btn { width: 100%; justify-content: center; }

/* Editorial */

.hb-editorial {
  background: var(--teal-dk);
  padding: 6rem var(--gutter);
  position: relative;
  overflow: hidden;
}

.hb-editorial::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 80% at 80% 50%, rgba(63,107,94,0.25) 0%, transparent 65%);
}

.hb-editorial-inner {
  max-width: var(--max);
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

/* Stats panel */

.hb-stats-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.hb-stat-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--r-md);
  padding: 1.5rem;
  transition: background 0.2s;
}

.hb-stat-card:hover { background: rgba(255,255,255,0.1); }

.hb-stat-card.wide { grid-column: span 2; }

.hb-stat-num {
  font-family: var(--serif);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  margin-bottom: 4px;
}

.hb-stat-label {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.5;
}

/* Checklist editorial */

.hb-checklist {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  margin: 2rem 0;
}

.hb-check {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
}

.hb-check-icon {
  width: 22px; height: 22px;
  background: rgba(201,149,58,0.2);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}

.hb-check-icon svg { width: 11px; height: 11px; stroke: var(--gold); fill: none; stroke-width: 2.5; }

/* Reviere strip */

.hb-reviere {
  background: var(--cream);
  padding: 5rem var(--gutter);
}

.hb-reviere-inner {
  max-width: var(--max);
  margin-inline: auto;
}

.hb-reviere-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin-top: 2.5rem;
}

.hb-revier-item {
  background: var(--white);
  border-radius: var(--r-md);
  padding: 1.25rem;
  border: 1px solid rgba(28,43,40,0.07);
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.hb-revier-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--copper);
  flex-shrink: 0;
  margin-top: 4px;
}

.hb-revier-name { font-weight: 500; font-size: 0.9rem; color: var(--ink); margin-bottom: 2px; }

.hb-revier-note { font-size: 0.75rem; color: var(--ink-muted); }

/* FAQ */

.hb-faq {
  background: var(--canvas);
  padding: 6rem var(--gutter);
}

.hb-faq-inner {
  max-width: var(--max);
  margin-inline: auto;
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 5rem;
  align-items: start;
}

/* CTA */

.hb-cta {
  background: var(--teal-dk);
  padding: 6rem var(--gutter);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hb-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 25% 50%, rgba(63,107,94,0.3) 0%, transparent 60%),
    radial-gradient(ellipse 50% 70% at 80% 40%, rgba(31,74,66,0.4) 0%, transparent 60%);
}

.hb-cta-inner { position: relative; z-index: 1; max-width: 680px; margin-inline: auto; }

@media (max-width: 1024px) {
  .hb-editorial-inner { grid-template-columns: 1fr; gap: 3rem; }
  .hb-stats-panel { grid-template-columns: 1fr 1fr; }
  .hb-faq-inner { grid-template-columns: 1fr; gap: 3rem; }
}

@media (max-width: 768px) {
  .hausboot-grid { grid-template-columns: 1fr; }
  .hb-stats-panel { grid-template-columns: 1fr 1fr; }
  .filter-bar { display: none; }
}

/* Breadcrumb */

/* Size filter bar */

/* Listing */

.party-listing {
  background: var(--canvas);
  padding: 4rem var(--gutter) 6rem;
}

.party-listing-header {
  max-width: var(--max);
  margin-inline: auto;
  margin-bottom: 2.5rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 1.5rem;
  flex-wrap: wrap;
}

/* Cards */

.party-grid {
  max-width: var(--max);
  margin-inline: auto;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 1.5rem;
}

.pb-card-link { display: block; text-decoration: none; color: inherit; }

.pb-card {
  background: var(--white);
  border-radius: var(--r-lg);
  border: 1px solid rgba(28,43,40,0.07);
  overflow: hidden;
  transition: transform 0.25s, box-shadow 0.25s;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.pb-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }

.pb-card-img {
  position: relative;
  height: 210px;
  overflow: hidden;
  background: linear-gradient(155deg, #1a4035 0%, #2d6b5a 100%);
  flex-shrink: 0;
}

.pb-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.pb-card:hover .pb-card-img img { transform: scale(1.04); }

/* Group size badge – top left */

.pb-size-badge {
  position: absolute;
  top: 0.75rem; left: 0.75rem;
  background: rgba(19,46,40,0.88);
  color: rgba(255,255,255,0.9);
  font-size: 0.7rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 100px;
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  gap: 5px;
}

.pb-size-badge svg { width: 11px; height: 11px; stroke: currentColor; fill: none; stroke-width: 2; }

/* Grill badge – top right */

.pb-grill-badge {
  position: absolute;
  top: 0.75rem; right: 0.75rem;
  background: var(--copper);
  color: white;
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  padding: 4px 9px;
  border-radius: var(--r-sm);
}

.pb-card-body {
  padding: 1.25rem 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.pb-card-name {
  font-family: var(--serif);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 2px;
  line-height: 1.25;
}

.pb-card-location {
  font-size: 0.76rem;
  color: var(--ink-light);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 4px;
}

.pb-card-location svg { width: 10px; height: 10px; flex-shrink: 0; }

.pb-card-desc {
  font-size: 0.82rem;
  color: var(--ink-muted);
  line-height: 1.65;
  margin-bottom: 1rem;
  flex: 1;
}

.pb-tags {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 1.25rem;
}

.pb-tag {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 3px 10px;
  background: var(--sage-lt);
  border-radius: 100px;
  font-size: 0.7rem;
  color: var(--sage);
  font-weight: 500;
}

.pb-tag-event {
  background: var(--gold-lt);
  color: var(--gold);
}

.pb-card-footer { margin-top: auto; }

.pb-card-footer .btn { width: 100%; justify-content: center; }

/* Anlass-section */

.party-anlaesse {
  background: var(--cream);
  padding: 6rem var(--gutter);
}

.party-anlaesse-inner {
  max-width: var(--max);
  margin-inline: auto;
}

.anlass-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.25rem;
  margin-top: 2.5rem;
}

.anlass-card {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 1.75rem;
  border: 1px solid rgba(28,43,40,0.07);
  transition: transform 0.22s, box-shadow 0.22s;
  text-align: center;
}

.anlass-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-sm); }

.anlass-icon {
  width: 52px; height: 52px;
  background: var(--sage-lt);
  border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1rem;
}

.anlass-icon svg { width: 24px; height: 24px; stroke: var(--sage); fill: none; stroke-width: 1.8; }

.anlass-title { font-family: var(--serif); font-size: 1rem; font-weight: 600; color: var(--ink); margin-bottom: 0.4rem; }

.anlass-text { font-size: 0.78rem; color: var(--ink-muted); line-height: 1.6; }

/* Editorial dark */

.party-editorial {
  background: var(--teal-dk);
  padding: 6rem var(--gutter);
  position: relative;
  overflow: hidden;
}

.party-editorial::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 80% at 80% 50%, rgba(63,107,94,0.25) 0%, transparent 65%);
}

.party-editorial-inner {
  max-width: var(--max);
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.party-fact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.party-fact-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--r-md);
  padding: 1.5rem;
}

.party-fact-card.wide { grid-column: span 2; }

.party-fact-num {
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  margin-bottom: 4px;
}

.party-fact-label { font-size: 0.78rem; color: rgba(255,255,255,0.5); line-height: 1.5; }

/* FAQ */

.party-faq {
  background: var(--canvas);
  padding: 6rem var(--gutter);
}

.party-faq-inner {
  max-width: var(--max);
  margin-inline: auto;
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 5rem;
  align-items: start;
}

/* CTA */

.party-cta {
  background: var(--teal-dk);
  padding: 6rem var(--gutter);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.party-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 25% 50%, rgba(63,107,94,0.3) 0%, transparent 60%),
    radial-gradient(ellipse 50% 70% at 80% 40%, rgba(31,74,66,0.4) 0%, transparent 60%);
}

.party-cta-inner { position: relative; z-index: 1; max-width: 680px; margin-inline: auto; }

@media (max-width: 1024px) {
  .party-editorial-inner { grid-template-columns: 1fr; gap: 3rem; }
  .party-faq-inner { grid-template-columns: 1fr; gap: 3rem; }
}

@media (max-width: 768px) {
  .party-grid { grid-template-columns: 1fr; }
  .filter-bar { display: none; }
}