/* =====================================================================
   Heubacher Bootsfreunde Club e.V. — Design System
   Stil: Maritim-Blau (Navy & Azur) – am Vereinslogo orientiert
   ===================================================================== */

:root {
  /* Farben */
  --navy-950: #050F1D;
  --navy-900: #071A2E;
  --navy-800: #0A2540;
  --navy-700: #0E3355;
  --navy-600: #14456F;
  /* Maritim-blauer Akzent (statt Messing) – am Logo-Blau orientiert */
  --brass:    #2E86C1;   /* Akzent: maritim-azur */
  --brass-lt: #8FC6EC;   /* hell – auf dunklem Grund */
  --brass-dk: #235E8C;   /* dunkel – lesbar auf hellem Grund */
  --star:     #F4A825;   /* Gold – nur für Bewertungssterne (Google-Look) */
  --logo-blue:#395085;   /* Original-Blau aus dem Vereinslogo */
  --sand:     #F6F2E9;
  --sand-2:   #ECE5D6;
  --paper:    #FBFAF6;
  --white:    #FFFFFF;
  --slate:    #56687B;
  --slate-lt: #8496A6;
  --water:    #2E86A5;
  --ink:      #10202E;

  /* Typografie */
  --serif: "Cormorant Garamond", "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif;
  --sans:  "Manrope", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

  /* Maße */
  --container: 1200px;
  --radius: 18px;
  --radius-sm: 12px;
  --shadow-sm: 0 4px 18px rgba(7, 26, 46, .08);
  --shadow: 0 18px 50px rgba(7, 26, 46, .16);
  --shadow-lg: 0 34px 80px rgba(5, 15, 29, .30);
  --ease: cubic-bezier(.22, 1, .36, 1);
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.65;
  font-size: 17px;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: var(--water); text-decoration: none; transition: color .25s var(--ease); }
a:hover { color: var(--brass-dk); }

h1, h2, h3, h4 { font-family: var(--serif); font-weight: 600; line-height: 1.08; color: var(--navy-800); margin: 0 0 .5em; letter-spacing: .3px; }
h1 { font-size: clamp(2.6rem, 6vw, 4.6rem); }
h2 { font-size: clamp(2rem, 4.2vw, 3.1rem); }
h3 { font-size: clamp(1.35rem, 2.4vw, 1.8rem); }
p  { margin: 0 0 1.1em; }

.container { width: min(100% - 44px, var(--container)); margin-inline: auto; }
.narrow { width: min(100% - 44px, 860px); margin-inline: auto; }

.eyebrow {
  display: inline-flex; align-items: center; gap: .6rem;
  font-family: var(--sans); font-weight: 800; font-size: 1.02rem;
  letter-spacing: .11em; text-transform: uppercase; color: var(--brass-dk);
  margin-bottom: 1rem;
}
.hero .eyebrow, .page-hero .eyebrow { font-size: 1.08rem; }
.eyebrow::before { content: ""; width: 34px; height: 2px; background: var(--brass); display: inline-block; }
.eyebrow.center { justify-content: center; }
.eyebrow.light { color: var(--brass-lt); }

.lead { font-size: 1.22rem; color: var(--slate); line-height: 1.7; }

/* ---------- Buttons ---------- */
.btn {
  --bg: var(--brass); --fg: #ffffff;
  display: inline-flex; align-items: center; gap: .6rem;
  padding: .95rem 1.7rem; border-radius: 100px;
  font-family: var(--sans); font-weight: 700; font-size: .98rem;
  letter-spacing: .01em; background: var(--bg); color: var(--fg);
  border: 1.5px solid transparent; cursor: pointer;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), background .3s var(--ease), color .3s var(--ease);
  box-shadow: 0 10px 26px rgba(46, 134, 193, .32);
  position: relative; overflow: hidden;
}
.btn svg { width: 19px; height: 19px; }
.btn::after {
  content: ""; position: absolute; inset: 0; background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,.45) 50%, transparent 70%);
  transform: translateX(-120%); transition: transform .7s var(--ease);
}
.btn:hover { transform: translateY(-3px); box-shadow: 0 16px 34px rgba(46, 134, 193, .45); color: #ffffff; }
.btn:hover::after { transform: translateX(120%); }
.btn.ghost { background: transparent; color: var(--white); border-color: rgba(255,255,255,.5); box-shadow: none; }
.btn.ghost:hover { background: rgba(255,255,255,.1); border-color: var(--brass-lt); color: var(--white); transform: translateY(-3px); }
.btn.dark { background: var(--navy-800); color: var(--white); box-shadow: 0 10px 26px rgba(10,37,64,.28); }
.btn.dark:hover { background: var(--navy-700); color: var(--white); }
.btn.outline { background: transparent; color: var(--navy-800); border-color: var(--navy-800); box-shadow: none; }
.btn.outline:hover { background: var(--navy-800); color: var(--white); }
.btn.sm { padding: .7rem 1.25rem; font-size: .88rem; }

/* ---------- Header / Nav ---------- */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  transition: background .4s var(--ease), box-shadow .4s var(--ease), padding .4s var(--ease);
  padding: 18px 0;
}
.site-header.scrolled { background: rgba(251, 250, 246, .92); backdrop-filter: blur(14px); box-shadow: var(--shadow-sm); padding: 10px 0; }
.nav { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; }
.brand { display: flex; align-items: center; gap: .8rem; font-family: var(--serif); font-weight: 700; font-size: 1.28rem; color: var(--white); letter-spacing: .3px; line-height: 1.05; }
.site-header.scrolled .brand { color: var(--navy-800); }
.brand { gap: 0; }
.brand-logo { display: block; height: 58px; aspect-ratio: 1200/309; max-width: 66vw; background: url("img/logo-white.png") left center/contain no-repeat; transition: height .35s var(--ease); filter: drop-shadow(0 2px 8px rgba(0,0,0,.35)); }
.site-header.scrolled .brand-logo { height: 48px; background-image: url("img/logo-navy.png"); filter: none; }

.nav-links { display: flex; align-items: center; gap: .35rem; list-style: none; margin: 0; padding: 0; }
.nav-links a {
  font-family: var(--sans); font-weight: 700; font-size: .92rem; text-transform: uppercase;
  color: rgba(255,255,255,.9); padding: .6rem .9rem; border-radius: 8px; position: relative; letter-spacing: .12em;
}
.site-header.scrolled .nav-links a { color: var(--navy-700); }
.nav-links a::after { content: ""; position: absolute; left: .9rem; right: .9rem; bottom: .3rem; height: 2px; background: var(--brass); transform: scaleX(0); transform-origin: center; transition: transform .32s var(--ease); border-radius: 2px; }
.nav-links a:hover, .nav-links a[aria-current="page"] { color: var(--brass-lt); }
.site-header.scrolled .nav-links a:hover, .site-header.scrolled .nav-links a[aria-current="page"] { color: var(--brass-dk); }
.nav-links a:hover::after, .nav-links a[aria-current="page"]::after { transform: scaleX(1); }
.nav-cta { margin-left: .5rem; }

.nav-toggle { display: none; background: none; border: 0; cursor: pointer; padding: 8px; z-index: 120; }
.nav-toggle span { display: block; width: 26px; height: 2.5px; background: var(--white); border-radius: 3px; margin: 5px 0; transition: transform .35s var(--ease), opacity .3s var(--ease); }
.site-header.scrolled .nav-toggle span { background: var(--navy-800); }
.nav-toggle.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero { position: relative; min-height: 100svh; display: flex; align-items: center; color: var(--white); overflow: hidden; background: var(--navy-900); }
.hero__media { position: absolute; inset: 0; z-index: 0; }
.hero__media img, .hero__media video { width: 100%; height: 100%; object-fit: cover; }
.hero__media::after { content: ""; position: absolute; inset: 0; background:
  linear-gradient(180deg, rgba(5,15,29,.62) 0%, rgba(5,15,29,.45) 40%, rgba(5,15,29,.82) 100%),
  radial-gradient(1200px 600px at 78% 15%, rgba(46,134,165,.28), transparent 60%);
}
.hero__inner { position: relative; z-index: 2; padding: 140px 0 120px; }
.hero h1 { color: var(--white); max-width: 15ch; text-shadow: 0 4px 40px rgba(0,0,0,.35); }
.hero h1 .accent { color: var(--brass-lt); font-style: italic; }
.hero__sub { font-size: 1.28rem; max-width: 46ch; color: rgba(255,255,255,.9); margin-bottom: 2rem; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 1rem; }
.hero__badges { display: flex; flex-wrap: wrap; gap: 1.6rem; margin-top: 3rem; }
.hero__badge { display: flex; align-items: center; gap: .7rem; font-size: .92rem; color: rgba(255,255,255,.86); }
.hero__badge strong { font-family: var(--serif); font-size: 1.7rem; color: var(--brass-lt); line-height: 1; }
.hero__badge .stars { color: var(--star); letter-spacing: 2px; }

.scroll-cue { position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%); z-index: 3; color: rgba(255,255,255,.7); font-size: .7rem; letter-spacing: .25em; text-transform: uppercase; text-align: center; }
.scroll-cue .mouse { width: 24px; height: 40px; border: 2px solid rgba(255,255,255,.6); border-radius: 14px; margin: 0 auto 8px; position: relative; }
.scroll-cue .mouse::before { content: ""; position: absolute; top: 7px; left: 50%; transform: translateX(-50%); width: 4px; height: 8px; background: var(--brass-lt); border-radius: 3px; animation: wheel 1.8s infinite; }
@keyframes wheel { 0% { opacity: 0; transform: translate(-50%, 0); } 40% { opacity: 1; } 100% { opacity: 0; transform: translate(-50%, 12px); } }

/* Animated waves */
.wave-divider { position: relative; line-height: 0; }
.wave-divider svg { width: 100%; height: auto; display: block; }
.wave-top { margin-top: -1px; }

/* ---------- Sections ---------- */
.section { padding: clamp(70px, 9vw, 130px) 0; position: relative; }
.section.tight { padding: clamp(48px, 6vw, 84px) 0; }
.section.navy { background: var(--navy-800); color: var(--white); }
.section.navy h1, .section.navy h2, .section.navy h3 { color: var(--white); }
.section.navy .lead { color: rgba(255,255,255,.82); }
.section.sand { background: var(--sand); }
.section-head { max-width: 720px; margin-bottom: 3.2rem; }
.section-head.center { margin-inline: auto; text-align: center; }

/* ---------- Cards & grids ---------- */
.grid { display: grid; gap: 1.6rem; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: var(--white); border-radius: var(--radius); padding: 2rem 1.9rem;
  box-shadow: var(--shadow-sm); border: 1px solid rgba(10,37,64,.06);
  transition: transform .45s var(--ease), box-shadow .45s var(--ease), border-color .45s var(--ease);
  position: relative; overflow: hidden;
}
.card:hover { transform: translateY(-8px); box-shadow: var(--shadow); border-color: rgba(46,134,193,.35); }
.card .icon {
  width: 58px; height: 58px; border-radius: 15px; display: grid; place-items: center;
  background: linear-gradient(140deg, var(--navy-700), var(--navy-600)); color: var(--brass-lt);
  margin-bottom: 1.2rem; box-shadow: inset 0 0 0 1px rgba(46,134,193,.25);
}
.card .icon svg { width: 27px; height: 27px; }
.card h3 { margin-bottom: .45rem; }
.card p { color: var(--slate); margin: 0; font-size: .98rem; }

/* Feature list with checkmarks */
.tick-list { list-style: none; margin: 0; padding: 0; display: grid; gap: .85rem; }
.tick-list li { display: flex; gap: .8rem; align-items: flex-start; color: var(--slate); }
.tick-list li::before {
  content: ""; flex: 0 0 22px; height: 22px; margin-top: 2px; border-radius: 50%;
  background: var(--brass); position: relative;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='none' stroke='black' stroke-width='3' stroke-linecap='round' stroke-linejoin='round' d='M20 6L9 17l-5-5'/%3E%3C/svg%3E") center/62% no-repeat, linear-gradient(#000,#000);
          mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='none' stroke='black' stroke-width='3' stroke-linecap='round' stroke-linejoin='round' d='M20 6L9 17l-5-5'/%3E%3C/svg%3E") center/62% no-repeat;
}

/* Stats */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.4rem; }
.stat { text-align: center; padding: 1.4rem 1rem; border-radius: var(--radius-sm); background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1); }
.section.navy .stat { backdrop-filter: blur(4px); }
.stat .num { font-family: var(--serif); font-size: clamp(2.6rem, 5vw, 3.6rem); font-weight: 700; color: var(--brass-lt); line-height: 1; }
.stat .num .suf { font-size: .55em; }
.stat .lbl { font-size: .82rem; letter-spacing: .13em; text-transform: uppercase; color: rgba(255,255,255,.75); margin-top: .5rem; }
.section.sand .stat, body:not(.dark) .section:not(.navy) .stat { background: var(--white); border-color: rgba(10,37,64,.07); box-shadow: var(--shadow-sm); }
.section:not(.navy) .stat .lbl { color: var(--slate); }

/* Split media/text */
.split { display: grid; grid-template-columns: 1.05fr 1fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.split.rev { grid-template-columns: 1fr 1.05fr; }
.split.rev .split__media { order: 2; }
.split__media { position: relative; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.split__media img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4/3; transition: transform 1.1s var(--ease); }
.split__media:hover img { transform: scale(1.06); }
.split__media .frame-tag {
  position: absolute; left: 18px; bottom: 18px; background: rgba(10,37,64,.86); color: var(--white);
  padding: .6rem 1rem; border-radius: 100px; font-size: .8rem; font-weight: 600; letter-spacing: .04em;
  backdrop-filter: blur(6px); border: 1px solid rgba(46,134,193,.4);
}

/* Reviews */
.reviews { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.review {
  background: var(--white); border-radius: var(--radius); padding: 1.9rem; box-shadow: var(--shadow-sm);
  border: 1px solid rgba(10,37,64,.06); display: flex; flex-direction: column; gap: 1rem;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.review:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.review .stars { color: var(--star); letter-spacing: 2px; font-size: 1.05rem; }
.review p { color: var(--ink); font-size: 1rem; margin: 0; font-style: italic; }
.review .who { display: flex; align-items: center; gap: .8rem; margin-top: auto; }
.review .avatar { width: 44px; height: 44px; border-radius: 50%; display: grid; place-items: center; font-weight: 800; color: var(--white); font-family: var(--sans); background: linear-gradient(140deg, var(--navy-700), var(--water)); }
.review .who b { display: block; font-size: .95rem; color: var(--navy-800); }
.review .who span { font-size: .8rem; color: var(--slate-lt); }
.google-badge { display: inline-flex; align-items: center; gap: .8rem; background: var(--white); border-radius: 100px; padding: .7rem 1.3rem; box-shadow: var(--shadow-sm); border: 1px solid rgba(10,37,64,.08); font-weight: 600; }
.google-badge .g { font-weight: 800; font-size: 1.15rem; font-family: var(--sans); }
.google-badge .g b:nth-child(1){color:#4285F4}.google-badge .g b:nth-child(2){color:#EA4335}.google-badge .g b:nth-child(3){color:#FBBC05}.google-badge .g b:nth-child(4){color:#4285F4}.google-badge .g b:nth-child(5){color:#34A853}.google-badge .g b:nth-child(6){color:#EA4335}
.google-badge .score { color: var(--brass-dk); font-family: var(--serif); font-size: 1.4rem; }
.google-badge .stars { color: var(--star); }

/* Timeline (Termine) */
.timeline { position: relative; margin: 0 auto; max-width: 880px; }
.timeline::before { content: ""; position: absolute; left: 130px; top: 8px; bottom: 8px; width: 2px; background: linear-gradient(var(--brass), rgba(46,134,193,.15)); }
.tl-item { display: grid; grid-template-columns: 130px 1fr; gap: 1.6rem; padding: .55rem 0; position: relative; }
.tl-item .date { text-align: right; padding-right: 1.6rem; }
.tl-item .date .d { font-family: var(--serif); font-size: 1.5rem; font-weight: 700; color: var(--navy-800); line-height: 1; }
.tl-item .date .m { font-size: .74rem; letter-spacing: .18em; text-transform: uppercase; color: var(--brass-dk); }
.tl-item .body { background: var(--white); border-radius: var(--radius-sm); padding: 1rem 1.3rem; box-shadow: var(--shadow-sm); border: 1px solid rgba(10,37,64,.06); position: relative; transition: transform .35s var(--ease), box-shadow .35s var(--ease); }
.tl-item .body:hover { transform: translateX(6px); box-shadow: var(--shadow); }
.tl-item .body::before { content: ""; position: absolute; left: -30px; top: 22px; width: 14px; height: 14px; border-radius: 50%; background: var(--brass); box-shadow: 0 0 0 5px var(--sand), 0 0 0 6px rgba(46,134,193,.3); }
.tl-item .body h4 { font-family: var(--sans); font-weight: 700; margin: 0 0 .15rem; color: var(--navy-800); font-size: 1.02rem; }
.tl-item .body .tag { display: inline-block; font-size: .7rem; font-weight: 700; letter-spacing: .05em; text-transform: uppercase; padding: .2rem .6rem; border-radius: 100px; }
.tag.pflicht { background: #FBE9E7; color: #C0392B; }
.tag.fest { background: #EAF6EF; color: #1E8449; }
.tag.info { background: #EAF1F8; color: #2E6DA4; }

/* Gallery */
.gallery { columns: 4 220px; column-gap: 14px; }
.gallery a { display: block; margin-bottom: 14px; border-radius: 14px; overflow: hidden; position: relative; break-inside: avoid; box-shadow: var(--shadow-sm); cursor: zoom-in; }
.gallery img { width: 100%; transition: transform .8s var(--ease), filter .5s var(--ease); }
.gallery a::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 55%, rgba(7,26,46,.5)); opacity: 0; transition: opacity .4s var(--ease); }
.gallery a:hover img { transform: scale(1.08); }
.gallery a:hover::after { opacity: 1; }

/* Lightbox */
.lightbox { position: fixed; inset: 0; z-index: 200; background: rgba(5,15,29,.94); display: none; align-items: center; justify-content: center; padding: 30px; backdrop-filter: blur(6px); }
.lightbox.open { display: flex; animation: fade .3s var(--ease); }
.lightbox img { max-width: 90vw; max-height: 86vh; border-radius: 10px; box-shadow: var(--shadow-lg); }
.lightbox .lb-close, .lightbox .lb-nav { position: absolute; background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.25); color: #fff; width: 52px; height: 52px; border-radius: 50%; font-size: 1.5rem; cursor: pointer; display: grid; place-items: center; transition: background .25s; }
.lightbox .lb-close:hover, .lightbox .lb-nav:hover { background: var(--brass); color: var(--navy-950); }
.lightbox .lb-close { top: 24px; right: 24px; }
.lightbox .lb-prev { left: 24px; top: 50%; transform: translateY(-50%); }
.lightbox .lb-next { right: 24px; top: 50%; transform: translateY(-50%); }
@keyframes fade { from { opacity: 0; } to { opacity: 1; } }

/* Data table (Hafen) */
.data-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
.data-row { display: flex; justify-content: space-between; gap: 1rem; padding: 1rem 1.3rem; background: var(--white); border-radius: var(--radius-sm); box-shadow: var(--shadow-sm); border: 1px solid rgba(10,37,64,.06); }
.data-row .k { color: var(--slate); font-weight: 600; font-size: .92rem; }
.data-row .v { font-family: var(--serif); font-weight: 700; color: var(--navy-800); font-size: 1.15rem; text-align: right; }

/* Board / Vorstand */
.board { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.person { background: var(--white); border-radius: var(--radius); padding: 2rem 1.6rem; text-align: center; box-shadow: var(--shadow-sm); border: 1px solid rgba(10,37,64,.06); transition: transform .4s var(--ease), box-shadow .4s var(--ease); }
.person:hover { transform: translateY(-7px); box-shadow: var(--shadow); }
.person .ava { width: 92px; height: 92px; margin: 0 auto 1.1rem; border-radius: 50%; display: grid; place-items: center; font-family: var(--serif); font-weight: 700; font-size: 2rem; color: var(--navy-950); background: linear-gradient(140deg, var(--brass-lt), var(--brass)); box-shadow: inset 0 0 0 4px rgba(255,255,255,.5), var(--shadow-sm); }
.person h4 { font-family: var(--serif); font-size: 1.3rem; margin: 0 0 .2rem; }
.person .role { font-size: .78rem; letter-spacing: .16em; text-transform: uppercase; color: var(--brass-dk); font-weight: 700; }
.person .contact { margin-top: .7rem; font-size: .9rem; color: var(--slate); }

/* Contact / form */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 4vw, 3.5rem); align-items: start; }
.form { background: var(--white); border-radius: var(--radius); padding: clamp(1.8rem, 3vw, 2.6rem); box-shadow: var(--shadow); border: 1px solid rgba(10,37,64,.06); }
.field { margin-bottom: 1.15rem; }
.field label { display: block; font-weight: 700; font-size: .82rem; letter-spacing: .04em; color: var(--navy-800); margin-bottom: .4rem; }
.field input, .field select, .field textarea {
  width: 100%; padding: .85rem 1rem; border-radius: 12px; border: 1.5px solid rgba(10,37,64,.14);
  font-family: var(--sans); font-size: 1rem; background: var(--paper); color: var(--ink); transition: border-color .25s, box-shadow .25s;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--brass); box-shadow: 0 0 0 4px rgba(46,134,193,.16); background: #fff; }
.field textarea { resize: vertical; min-height: 120px; }
.form-note { font-size: .82rem; color: var(--slate-lt); margin-top: .3rem; }

.contact-line { display: flex; gap: 1rem; align-items: center; padding: 1.1rem 1.3rem; background: var(--white); border-radius: var(--radius-sm); box-shadow: var(--shadow-sm); border: 1px solid rgba(10,37,64,.06); margin-bottom: 1rem; transition: transform .35s var(--ease), border-color .35s; }
.contact-line:hover { transform: translateX(5px); border-color: rgba(46,134,193,.4); }
.contact-line .ic { flex: 0 0 46px; height: 46px; border-radius: 12px; display: grid; place-items: center; background: linear-gradient(140deg, var(--navy-700), var(--navy-600)); color: var(--brass-lt); }
.contact-line .ic svg { width: 22px; height: 22px; }
.contact-line .t small { display: block; font-size: .74rem; letter-spacing: .12em; text-transform: uppercase; color: var(--slate-lt); }
.contact-line .t a, .contact-line .t b { font-size: 1.05rem; color: var(--navy-800); font-weight: 700; }

/* Map */
.map-wrap { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); border: 6px solid var(--white); position: relative; }
.map-wrap iframe { width: 100%; height: 100%; min-height: 420px; border: 0; display: block; filter: saturate(1.05); }

/* CTA band */
.cta-band { position: relative; overflow: hidden; background: linear-gradient(130deg, var(--navy-900), var(--navy-700)); color: var(--white); border-radius: 28px; padding: clamp(2.6rem, 5vw, 4.2rem); text-align: center; box-shadow: var(--shadow-lg); }
.cta-band::before, .cta-band::after { content: ""; position: absolute; border-radius: 50%; filter: blur(2px); }
.cta-band::before { width: 340px; height: 340px; background: radial-gradient(circle, rgba(46,134,165,.4), transparent 65%); top: -120px; right: -80px; }
.cta-band::after { width: 300px; height: 300px; background: radial-gradient(circle, rgba(46,134,193,.35), transparent 65%); bottom: -120px; left: -70px; }
.cta-band h2, .cta-band p, .cta-band .actions { position: relative; z-index: 2; }
.cta-band h2 { color: #fff; }
.cta-band .actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin-top: 1.6rem; }

/* Page hero (subpages) */
.page-hero { position: relative; padding: 180px 0 90px; color: var(--white); background: var(--navy-900); overflow: hidden; }
.page-hero__media { position: absolute; inset: 0; z-index: 0; }
.page-hero__media img { width: 100%; height: 100%; object-fit: cover; }
.page-hero__media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(5,15,29,.72), rgba(5,15,29,.55) 55%, rgba(5,15,29,.85)); }
.page-hero__inner { position: relative; z-index: 2; }
.page-hero h1 { color: #fff; margin-bottom: .3rem; }
.page-hero .crumbs { font-size: .85rem; color: rgba(255,255,255,.72); letter-spacing: .04em; }
.page-hero .crumbs a { color: var(--brass-lt); }

/* Footer */
.site-footer { background: var(--navy-950); color: rgba(255,255,255,.72); padding: 72px 0 30px; position: relative; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 2.5rem; }
.site-footer h5 { font-family: var(--sans); font-weight: 700; letter-spacing: .14em; text-transform: uppercase; font-size: .78rem; color: var(--brass-lt); margin: 0 0 1.1rem; }
.site-footer a { color: rgba(255,255,255,.72); }
.site-footer a:hover { color: var(--brass-lt); }
.footer-links { list-style: none; padding: 0; margin: 0; display: grid; gap: .6rem; font-size: .95rem; }
.footer-brand { display: flex; align-items: center; gap: .8rem; margin-bottom: 1rem; }
.footer-brand .brand-logo { height: 58px; aspect-ratio: 1200/309; width: auto; max-width: 90%; background: url("img/logo-white.png") left center/contain no-repeat; }
.footer-brand b { font-family: var(--serif); font-size: 1.3rem; color: #fff; }
.footer-members { display: flex; gap: .8rem; margin-top: 1rem; align-items: center; }
.footer-members img { height: 46px; width: auto; background: #fff; border-radius: 8px; padding: 4px; }
.footer-bottom { margin-top: 44px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.1); display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; font-size: .84rem; color: rgba(255,255,255,.55); }

/* Floating actions */
.floaties { position: fixed; right: 20px; bottom: 22px; z-index: 90; display: flex; flex-direction: column; gap: 12px; }
.floaties a, .to-top { width: 56px; height: 56px; border-radius: 50%; display: grid; place-items: center; box-shadow: var(--shadow); transition: transform .3s var(--ease), box-shadow .3s var(--ease); position: relative; }
.floaties a svg { width: 27px; height: 27px; }
.fab-wa { background: #25D366; color: #fff; }
.fab-phone { background: var(--navy-800); color: var(--brass-lt); }
.floaties a:hover { transform: scale(1.1) translateY(-2px); }
.fab-wa::after { content: "WhatsApp"; position: absolute; right: 66px; top: 50%; transform: translateY(-50%); background: var(--navy-950); color: #fff; padding: .35rem .7rem; border-radius: 8px; font-size: .78rem; white-space: nowrap; opacity: 0; pointer-events: none; transition: opacity .25s; }
.fab-wa:hover::after { opacity: 1; }
.to-top { position: fixed; right: 20px; bottom: 92px; z-index: 89; background: var(--brass); color: var(--navy-950); border: 0; cursor: pointer; opacity: 0; pointer-events: none; transform: translateY(12px); }
.to-top.show { opacity: 1; pointer-events: auto; transform: translateY(0); }
.to-top svg { width: 22px; height: 22px; }

/* Reveal animation (only active when JS is available — progressive enhancement) */
.js [data-reveal] { opacity: 0; transform: translateY(34px); transition: opacity .8s var(--ease), transform .8s var(--ease); will-change: opacity, transform; }
.js [data-reveal].in { opacity: 1; transform: none; }
.js [data-reveal][data-delay="1"] { transition-delay: .1s; }
.js [data-reveal][data-delay="2"] { transition-delay: .2s; }
.js [data-reveal][data-delay="3"] { transition-delay: .3s; }
.js [data-reveal][data-delay="4"] { transition-delay: .4s; }
.js [data-reveal].left { transform: translateX(-40px); }
.js [data-reveal].right { transform: translateX(40px); }
.js [data-reveal].left.in, .js [data-reveal].right.in { transform: none; }

/* Floating boat / anchor accents */
.float-el { animation: floaty 6s ease-in-out infinite; }
@keyframes floaty { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-14px); } }

.chip-row { display: flex; flex-wrap: wrap; gap: .6rem; margin-top: 1.4rem; }
.chip { display: inline-flex; align-items: center; gap: .45rem; padding: .5rem 1rem; border-radius: 100px; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.16); font-size: .86rem; color: rgba(255,255,255,.9); }
.section:not(.navy) .chip { background: var(--white); border-color: rgba(10,37,64,.08); color: var(--slate); box-shadow: var(--shadow-sm); }
.chip svg { width: 16px; height: 16px; color: var(--brass); }

/* Prose (legal pages) */
.prose { max-width: 800px; }
.prose h2 { margin-top: 2.2rem; font-size: 1.7rem; }
.prose h3 { margin-top: 1.6rem; }
.prose p, .prose li { color: var(--slate); }
.prose strong { color: var(--navy-800); }

/* Toast */
.toast { position: fixed; left: 50%; bottom: 30px; transform: translate(-50%, 120%); background: var(--navy-800); color: #fff; padding: 1rem 1.5rem; border-radius: 100px; box-shadow: var(--shadow-lg); z-index: 300; font-weight: 600; font-size: .95rem; transition: transform .5s var(--ease); border: 1px solid rgba(46,134,193,.4); }
.toast.show { transform: translate(-50%, 0); }

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .grid-3, .grid-4, .reviews, .board { grid-template-columns: repeat(2, 1fr); }
  .split, .split.rev, .contact-grid { grid-template-columns: 1fr; }
  .split.rev .split__media { order: 0; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .data-grid { grid-template-columns: 1fr; }
}
@media (max-width: 820px) {
  .nav-links {
    position: fixed; inset: 0 0 0 auto; width: min(82vw, 340px); flex-direction: column; align-items: flex-start;
    background: var(--navy-900); padding: 100px 28px 40px; gap: .3rem; transform: translateX(100%);
    transition: transform .45s var(--ease); box-shadow: var(--shadow-lg); z-index: 110;
  }
  .nav-links.open { transform: translateX(0); }
  .nav-links a { color: rgba(255,255,255,.9); font-size: 1.1rem; padding: .7rem 0; width: 100%; }
  .site-header.scrolled .nav-links a { color: rgba(255,255,255,.9); }
  .nav-links a::after { display: none; }
  .nav-cta { margin: 1rem 0 0; }
  .nav-toggle { display: block; }
  .gallery { columns: 2 150px; }
  .timeline::before { left: 92px; }
  .tl-item { grid-template-columns: 92px 1fr; gap: 1rem; }
  .tl-item .date .d { font-size: 1.2rem; }
}
@media (max-width: 560px) {
  body { font-size: 16px; }
  .grid-3, .grid-4, .reviews, .board, .grid-2 { grid-template-columns: 1fr; }
  .hero__badges { gap: 1.1rem; }
  .footer-grid { grid-template-columns: 1fr; }
  .stats { grid-template-columns: 1fr 1fr; }
  .btn { width: 100%; justify-content: center; }
  .hero__actions .btn, .cta-band .btn { width: auto; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
  [data-reveal] { opacity: 1; transform: none; }
}

/* =====================================================================
   Erweiterungen (Runde 2): Hero-Highlights, Rezensions-Slider,
   Anker-Deko, größere Kleintexte
   ===================================================================== */

.hero__sub strong { color: var(--brass-lt); font-weight: 800; }
.hero__sub { font-size: 1.34rem; }

/* Etwas größere Kleintexte für bessere Lesbarkeit */
.crumbs { font-size: .95rem !important; }
.card p { font-size: 1.03rem; }
.stat .lbl { font-size: .9rem; }
.hero__badge { font-size: 1rem; }

/* --- Rezensions-Slider (Marquee) --- */
.review-marquee {
  overflow: hidden; position: relative; padding: 8px 0 20px;
  -webkit-mask: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
          mask: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}
.review-track {
  display: flex; gap: 1.5rem; width: max-content;
  animation: marquee 48s linear infinite;
}
.review-marquee:hover .review-track { animation-play-state: paused; }
.review-track .review {
  width: 370px; flex: 0 0 370px; margin: 0;
}
.review .quote-mark { font-family: var(--serif); font-size: 3.2rem; line-height: .5; color: var(--brass); opacity: .5; height: 22px; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(calc(-50% - .75rem)); } }
@media (max-width: 560px) { .review-track .review { width: 300px; flex-basis: 300px; } }
@media (prefers-reduced-motion: reduce) { .review-track { animation: none; flex-wrap: wrap; width: auto; justify-content: center; } }

/* --- Anker-Deko / maritime Trenner --- */
.anchor-divider { display: flex; align-items: center; gap: 1.2rem; justify-content: center; padding: 8px 0; color: var(--brass); }
.anchor-divider .rope { height: 2px; width: min(220px, 30vw); background: linear-gradient(90deg, transparent, var(--brass) 40%, var(--brass)); border-radius: 2px; opacity: .55; }
.anchor-divider .rope.rev { background: linear-gradient(270deg, transparent, var(--brass) 40%, var(--brass)); }
.anchor-divider svg { width: 44px; height: 44px; }
.anchor-divider .anchor-el { animation: floaty 6s ease-in-out infinite; }
.section.navy .anchor-divider { color: var(--brass-lt); }
.section.navy .anchor-divider .rope { opacity: .4; }

/* dezentes Anker-Wasserzeichen in Sektionen */
.watermark-anchor { position: absolute; right: -40px; top: 40px; width: 260px; height: 260px; color: var(--brass); opacity: .05; pointer-events: none; z-index: 0; }
.watermark-anchor svg { width: 100%; height: 100%; }
.section > .container { position: relative; z-index: 1; }

/* Footer-Brand nicht quetschen */
.footer-brand { align-items: center; }
.footer-brand b { line-height: 1.1; }

/* Highlight-Wörter in Fließtext */
.hl { color: var(--brass-dk); font-weight: 800; }
.section.navy .hl { color: var(--brass-lt); }

/* Weichzeichner-Variante für Hero-Hintergründe (kaschiert niedrige Auflösung) */
.page-hero__media.blur img { filter: blur(1.5px) saturate(1.08) brightness(.96); transform: scale(1.06); }
.hero__media.blur video, .hero__media.blur img { filter: saturate(1.05); }

/* =====================================================================
   PROBEWEISE (Runde 3) – Texte kräftiger & präsenter
   REVERSIBEL: Diesen kompletten Block löschen = zurück zum vorherigen Stand.
   Orientiert an Benchmark-Websites (kräftigere Headlines, dunklerer Fließtext).
   ===================================================================== */
h1, h2, h3, h4 { font-weight: 700; letter-spacing: .2px; }
.lead { color: #3C4C5B; font-weight: 500; }
.card p, .review p, .tick-list li, .person .contact, .data-row .k, .contact-line .t small { color: #45566A; }
.nav-links a { font-weight: 700; }
.eyebrow { font-weight: 800; }
.hero__sub { font-weight: 500; }
.section-head .lead, .narrow .lead { color: #384857; }
/* Fließtext in Rechtstexten etwas präsenter */
.prose p, .prose li { color: #41525F; }
