:root{
  --white:#ffffff;
  --blue:#215e99;
  --blue-dark:#18476f;
  --blue-soft:#eaf3fb;
  --text:#0b1220;
  --muted:#5b667a;
  --border:rgba(11,18,32,.12);
  --shadow:0 10px 30px rgba(11,18,32,.10);
  --radius:18px;
}

*{box-sizing:border-box}
html,body{margin:0;padding:0}
body{
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background:var(--white);
  color:var(--text);
  line-height:1.55;
}

.container{width:min(1120px, calc(100% - 40px)); margin:0 auto;}

a{color:inherit;text-decoration:none}
.muted{color:var(--muted)}
.section{padding:72px 0}
.card{
  background:var(--white);
  border:1px solid var(--border);
  border-radius:var(--radius);
  box-shadow:var(--shadow);
  padding:24px;
}
.grid{display:grid; gap:22px}
.grid-2{grid-template-columns:repeat(2, minmax(0, 1fr))}
.grid-3{grid-template-columns:repeat(3, minmax(0, 1fr))}
@media (max-width: 900px){
  .grid-2,.grid-3{grid-template-columns:1fr}
  .section{padding:54px 0}
}

/* Header */
.site-header{
  position:fixed;
  top:0;
  z-index:50;
  width:100%;
  background:rgba(255,255,255,.86);
  backdrop-filter:blur(10px);
  border-bottom:1px solid var(--border);
}
.header-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  padding:14px 0;
}
.brand{display:flex; align-items:center; gap:10px}
.brand-logo{width:44px; height:44px; object-fit:contain}
.brand-name{font-weight:800; letter-spacing:.2px}
.nav{display:flex; align-items:center; gap:18px}
.nav-link{
  padding:10px 10px;
  border-radius:12px;
  color:var(--muted);
  font-weight:600;
}
.nav-link.active,
.nav-link:hover{
  background:var(--blue-soft);
  color:var(--blue);
}
.header-cta{margin-left:10px}
.nav-toggle{
  display:none;
  background:transparent;
  border:0;
  padding:10px;
  border-radius:12px;
}
.nav-toggle span{
  display:block;
  width:22px;
  height:2px;
  background:var(--text);
  margin:5px 0;
  border-radius:2px;
}

@media (max-width: 860px){
  .nav{display:none}
  .header-cta{display:none}
  .nav-toggle{display:block}

  body.menu-open .nav{
    display:flex;
    position:absolute;
    left:0;
    right:0;
    top:68px;
    background:var(--white);
    border-bottom:1px solid var(--border);
    padding:14px 20px;
    flex-direction:column;
    align-items:flex-start;
  }

  body.menu-open .header-cta{
    display:inline-flex;
    margin:10px 0 0 0;
  }

  body.menu-open .header-inner{position:relative}
}

/* Buttons */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:12px 16px;
  border-radius:14px;
  border:1px solid transparent;
  font-weight:700;
  cursor:pointer;
}
.btn-primary{
  background:var(--blue);
  color:var(--white);
}
.btn-primary:hover{background:var(--blue-dark)}
.btn-outline{
  background:transparent;
  border-color:rgba(33,94,153,.35);
  color:var(--blue);
}
.btn-outline:hover{background:var(--blue-soft)}
.btn-block{width:100%}

/* Hero (Video) */
.hero{
  position:relative;
  min-height:100vh;
  display:flex;
  align-items:center;
  overflow:hidden;
  border-bottom:1px solid var(--border);
}

.hero video{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  transform:scale(1.02);
}

.hero-overlay{
  position:absolute;
  inset:0;
  background:linear-gradient(
    90deg,
    rgba(11,18,32,.68) 0%,
    rgba(11,18,32,.34) 45%,
    rgba(11,18,32,.18) 100%
  );
  z-index:1;
}

.hero-inner{
  position:relative;
  z-index:2;
  color:var(--white);
  max-width:780px;
  padding-top:110px;
  padding-bottom:60px;
}

.hero-subtitle{
  display:inline-flex;
  gap:10px;
  align-items:center;
  padding:7px 12px;
  border-radius:999px;
  background:rgba(255,255,255,.12);
  border:1px solid rgba(255,255,255,.18);
  font-weight:700;
  font-size:13px;
  letter-spacing:.04em;
  text-transform:uppercase;
  margin-bottom:18px;
  backdrop-filter:blur(8px);
}

.kicker{
  display:inline-flex;
  gap:10px;
  align-items:center;
  padding:7px 12px;
  border-radius:999px;
  background:rgba(255,255,255,.12);
  border:1px solid rgba(255,255,255,.18);
  font-weight:700;
}

.hero h1{
  margin:0 0 14px;
  font-size:clamp(34px, 4.2vw, 56px);
  line-height:1.05;
  color:var(--white);
}

.hero p{
  margin:0 0 24px;
  font-size:clamp(16px, 1.2vw, 18px);
  max-width:640px;
  color:rgba(255,255,255,.92);
}

.hero-actions{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
}

/* Section headings */
.section-title{
  font-size:28px;
  margin:0 0 8px;
}
.section-lead{
  margin:0 0 22px;
  color:var(--muted);
}

/* Boats */
.boat-card img{
  width:100%;
  height:220px;
  object-fit:cover;
  border-radius:14px;
  border:1px solid var(--border);
  margin-bottom:14px;
}
.badge{
  display:inline-block;
  padding:6px 10px;
  border-radius:999px;
  background:var(--blue-soft);
  color:var(--blue);
  font-weight:800;
  font-size:12px;
}

/* Reviews */
.review{
  border-left:4px solid var(--blue);
  padding-left:14px;
}
.stars{letter-spacing:1px}

/* Forms */
.form{
  display:grid;
  gap:14px;
}
.field label{
  display:block;
  font-weight:700;
  margin-bottom:6px;
}
.field input,
.field textarea,
.field select{
  width:100%;
  padding:12px 12px;
  border-radius:14px;
  border:1px solid var(--border);
  outline:none;
  font:inherit;
}
.field input:focus,
.field textarea:focus,
.field select:focus{
  border-color:rgba(33,94,153,.55);
  box-shadow:0 0 0 4px rgba(33,94,153,.12);
}
.field textarea{
  min-height:140px;
  resize:vertical;
}
.note{
  background:var(--blue-soft);
  border:1px solid rgba(33,94,153,.25);
  border-radius:var(--radius);
  padding:14px;
}

/* FAQ */
.faq details{
  border:1px solid var(--border);
  border-radius:14px;
  padding:12px 14px;
  background:var(--white);
}
.faq summary{
  cursor:pointer;
  font-weight:800;
  color:var(--blue-dark);
}

/* Footer */
.site-footer{
  background:#071528;
  color:rgba(255,255,255,.92);
  padding:48px 0 20px;
  margin-top:40px;
}
.footer-inner{
  display:grid;
  grid-template-columns:1.6fr 1fr 1fr;
  gap:24px;
  align-items:start;
}
.footer-brand{
  font-weight:900;
  font-size:18px;
}
.footer-title{
  font-weight:900;
  margin-bottom:10px;
}
.footer-link{
  display:block;
  padding:6px 0;
  color:rgba(255,255,255,.82);
}
.footer-link:hover{color:var(--white)}
.footer-bottom{
  margin-top:22px;
  padding-top:16px;
  border-top:1px solid rgba(255,255,255,.12);
}
@media (max-width: 900px){
  .footer-inner{grid-template-columns:1fr}
}

/* ===== Reviews (FLEX layout, guaranteed 3 on desktop) ===== */
.wc-reviews-grid{
  --gap:26px;
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  align-items:stretch;
  gap:var(--gap);
  width:100%;
  margin:0 auto;
}

.wc-review-card{
  flex:0 1 calc((100% - (var(--gap) * 2)) / 3);
  min-width:300px;
  height:240px;
  background:#fff;
  border:1px solid var(--border);
  border-radius:18px;
  box-shadow:var(--shadow);
  padding:18px 18px 16px;
  display:flex;
  flex-direction:column;
  position:relative;
}

.wc-review-head{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:14px;
  margin-bottom:12px;
}

.wc-review-user{
  display:flex;
  align-items:center;
  gap:12px;
  min-width:0;
}

.wc-review-meta{min-width:0}

.wc-review-avatar{
  width:44px;
  height:44px;
  border-radius:999px;
  object-fit:cover;
  border:1px solid var(--border);
  background:#fff;
  flex:0 0 auto;
}

.wc-review-avatar-fallback{
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight:900;
  color:#fff;
  background:var(--blue);
}

.wc-review-name{
  font-weight:800;
  color:var(--text);
  line-height:1.2;
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
  max-width:210px;
}

.wc-review-time{
  font-size:13px;
  color:var(--muted);
  margin-top:2px;
}

.wc-review-stars{
  font-size:16px;
  letter-spacing:2px;
  color:#f5a623;
  white-space:nowrap;
  margin-top:2px;
  flex:0 0 auto;
}

.wc-review-text{
  color:var(--muted);
  font-size:14.5px;
  line-height:1.65;
  display:-webkit-box;
  -webkit-line-clamp:7;
  -webkit-box-orient:vertical;
  overflow:hidden;
}

.wc-review-card::after{
  content:"";
  position:absolute;
  left:18px;
  right:18px;
  bottom:14px;
  height:24px;
  pointer-events:none;
  background:linear-gradient(to bottom, rgba(255,255,255,0), rgba(255,255,255,1));
  border-radius:12px;
}

.wc-reviews-bottom{
  text-align:right;
  margin-top:20px;
}

@media (max-width: 980px){
  .wc-review-card{
    flex-basis:calc((100% - var(--gap)) / 2);
    height:240px;
  }
}

@media (max-width: 640px){
  .wc-review-card{
    flex-basis:100%;
    height:auto;
  }
  .wc-review-card::after{display:none}
  .wc-review-text{-webkit-line-clamp:10}
}

/* ===== Our Boats (Alternating Layout) ===== */
.wc-boats{
  padding:72px 0;
  background:#eef5fb;
}

.wc-boats-title{
  font-size:28px;
  font-weight:900;
  margin:0 0 6px;
}

.wc-boats-subtitle{
  color:var(--muted);
  margin:0 0 40px;
}

.wc-boats-list{
  display:flex;
  flex-direction:column;
  gap:56px;
}

.wc-boat-row{
  display:flex;
  align-items:center;
  gap:48px;
}

.wc-boat-row-reverse{
  flex-direction:row-reverse;
}

.wc-boat-media{
  flex:1 1 50%;
  height:320px;
  border-radius:20px;
  overflow:hidden;
  box-shadow:var(--shadow);
}

.wc-boat-media img{
  width:100%;
  height:100%;
  object-fit:cover;
}

.wc-boat-content{
  flex:1 1 50%;
  background:#fff;
  border-radius:20px;
  border:1px solid var(--border);
  padding:32px;
  box-shadow:var(--shadow);
  display:flex;
  flex-direction:column;
}

.wc-boat-badge{
  font-size:12px;
  font-weight:800;
  padding:6px 12px;
  border-radius:999px;
  background:var(--blue-soft);
  color:var(--blue);
  width:fit-content;
  margin-bottom:14px;
}

.wc-boat-badge-alt{
  background:rgba(33,94,153,.12);
  color:var(--blue-dark);
}

.wc-boat-name{
  font-size:22px;
  font-weight:900;
  margin:0 0 10px;
}

.wc-boat-desc{
  font-size:15px;
  line-height:1.65;
  color:var(--muted);
  margin-bottom:22px;
}

.wc-boat-link{
  margin-top:auto;
  align-self:flex-start;
  padding:12px 18px;
  border-radius:14px;
  border:1px solid rgba(33,94,153,.25);
  background:#fff;
  color:var(--blue);
  font-weight:800;
}

.wc-boat-link:hover{
  background:var(--blue-soft);
}

@media (max-width: 900px){
  .wc-boat-row,
  .wc-boat-row-reverse{
    flex-direction:column;
  }

  .wc-boat-media{
    width:100%;
    height:240px;
  }

  .wc-boat-content{
    width:100%;
    padding:24px;
  }
}

/* About Section */
.wc-about .wc-about-card p{
  margin:0;
}

.wc-about-heading{
  margin:0 0 12px;
  font-weight:900;
  color:var(--text);
}

.wc-about-list{
  margin:0;
  padding-left:18px;
  color:var(--muted);
  display:grid;
  gap:10px;
}

.wc-about-list strong{
  color:var(--text);
}

/* Hero responsive */
@media (max-width: 860px){
  .hero{
    min-height:88vh;
    align-items:flex-end;
  }

  .hero-inner{
    max-width:100%;
    padding-top:120px;
    padding-bottom:40px;
  }

  .hero h1{
    font-size:clamp(30px, 9vw, 42px);
  }

  .hero p{
    font-size:15px;
    max-width:100%;
  }
}

@media (max-width: 640px){
  .hero-actions{
    flex-direction:column;
    align-items:stretch;
  }

  .hero-actions .btn{
    width:100%;
  }
}

/* ===== Hero Content über Video ===== */
.hero{
  position: relative;
}

.hero video{
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-overlay{
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero-content{
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 120px 0 60px;
}

.hero-content .container{
  position: relative;
  z-index: 2;
}

.hero-box{
  max-width: 720px;
  color: var(--white);
}

.hero-subtitle{
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.18);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  margin-bottom: 18px;
  backdrop-filter: blur(8px);
}

.hero-content h1{
  margin: 0 0 14px;
  font-size: clamp(38px, 5vw, 64px);
  line-height: .98;
  color: var(--white);
}

.hero-content p{
  margin: 0 0 26px;
  max-width: 620px;
  font-size: 18px;
  line-height: 1.65;
  color: rgba(255,255,255,.92);
}

.hero-actions{
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

@media (max-width: 860px){
  .hero{
    min-height: 88vh;
    align-items: flex-end;
  }

  .hero-content{
    padding: 110px 0 40px;
  }

  .hero-content h1{
    font-size: clamp(30px, 9vw, 42px);
  }

  .hero-content p{
    font-size: 15px;
    max-width: 100%;
  }
}

@media (max-width: 640px){
  .hero-actions{
    flex-direction: column;
    align-items: stretch;
  }

  .hero-actions .btn{
    width: 100%;
  }
}