/* WakeCharter V3 – Light UI (angepasst an das Referenz-Design)
   - helles, cleanes Layout
   - Blau als Akzent
   - viel Weißraum
   - klare Cards + dezente Schatten
*/

:root{
  --bg:#ffffff;
  --bg-alt:#f5f7fb;
  --card:#ffffff;

  --text:#0f172a;      /* slate-900 */
  --muted:#475569;     /* slate-600 */
  --muted2:#64748b;    /* slate-500 */

  --line:#e5e7eb;      /* gray-200 */
  --shadow: 0 10px 30px rgba(2, 6, 23, .08);

  --primary:#1d4ed8;   /* blue-700 */
  --primary2:#2563eb;  /* blue-600 */
  --primary-soft: rgba(37, 99, 235, .10);

  --radius: 12px;
  --radius-lg: 16px;
}

*{box-sizing:border-box}
html,body{margin:0;padding:0}
body{
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";
  color:var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a{color:inherit;text-decoration:none}
img{max-width:100%;display:block}
video{width:100%;height:100%;object-fit:cover;border-radius:inherit}
code{font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace}

.container{width:min(1120px, 92vw);margin:0 auto}
.narrow{width:min(860px, 92vw)}
.section{padding:64px 0}
.section-alt{background: var(--bg-alt);}
.section-head{display:flex;align-items:flex-end;justify-content:space-between;gap:18px;margin-bottom:26px}
.section-head p{max-width:560px;margin:0;color:var(--muted2)}

.mt-24{margin-top:24px}
.center{text-align:center}

.muted{color:var(--muted2)}
.small{font-size:.92rem}
.lead{font-size:1.05rem;color:var(--muted);max-width:760px;line-height:1.55}

.skip{
  position:absolute;left:-999px;top:auto;width:1px;height:1px;overflow:hidden;
}
.skip:focus{
  left:16px;top:16px;width:auto;height:auto;
  background:#fff;
  padding:10px 12px;
  border-radius:10px;
  border:1px solid var(--line);
  z-index:9999
}

/* Header */
.site-header{
  position:sticky;top:0;z-index:50;
  background: rgba(255,255,255,.85);
  backdrop-filter: blur(10px);
  border-bottom:1px solid var(--line);
}
.site-header.elevated{box-shadow: 0 8px 22px rgba(2,6,23,.06); background: rgba(255,255,255,.92);}
.header-inner{display:flex;align-items:center;justify-content:space-between;gap:12px;padding:14px 0}

.brand{display:flex;align-items:center;gap:10px;font-weight:800;letter-spacing:.2px}
.brand-mark{
  width:34px;height:34px;border-radius:10px;
  display:grid;place-items:center;
  background: var(--primary);
  color:#fff;
  box-shadow: 0 10px 18px rgba(29,78,216,.22);
}
.brand-text{font-size:1.03rem}

.nav{display:flex;align-items:center;gap:18px}
.nav a{color:var(--muted)}
.nav a:hover{color:var(--text)}

.nav-toggle{
  display:none;background:none;border:0;cursor:pointer;padding:10px;border-radius:10px;
}
.nav-toggle span{
  display:block;width:22px;height:2px;background:var(--text);margin:4px 0;border-radius:2px;opacity:.9;
}

/* Buttons */
.btn{
  display:inline-flex;align-items:center;justify-content:center;
  padding:12px 16px;border-radius:10px;
  border:1px solid var(--line);
  background: #fff;
  color:var(--text);
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease, border-color .15s ease;
  font-weight:700;
}
.btn:hover{
  transform: translateY(-1px);
  box-shadow: 0 10px 18px rgba(2,6,23,.06);
  border-color: #d1d5db;
}
.btn:active{transform: translateY(0px);}
.btn-primary{
  background: var(--primary2);
  border-color: rgba(37,99,235,.65);
  color:#fff;
}
.btn-primary:hover{background: var(--primary);}
.btn-ghost{
  background: transparent;
  border-color: #dbe3f3;
  color: var(--primary);
}
.btn-ghost:hover{background: var(--primary-soft); border-color: rgba(37,99,235,.22); box-shadow:none}

/* Badges */
.badge{
  display:inline-flex;align-items:center;gap:8px;
  padding:8px 12px;border-radius:999px;border:1px solid #dbe3f3;
  color:var(--muted);background: #fff;
}

/* Hero */
.hero{position:relative;min-height:100vh;display:grid;align-items:end}
.hero-small{min-height:42vh}
.hero-media{position:absolute;inset:0;overflow:hidden}
.hero-video{border-radius:0}
.hero-overlay{
  position:absolute;inset:0;
  background: linear-gradient(180deg, rgba(255,255,255,.10), rgba(255,255,255,.30) 60%, rgba(255,255,255,.15));
}
.hero-content{position:relative;padding:88px 0 40px}
.hero h1{font-size: clamp(2.0rem, 4.1vw, 3.1rem);margin:0 0 10px}
.hero .lead{margin:0 0 16px}
.cta-row{display:flex;gap:12px;flex-wrap:wrap;margin-top:14px}
.hero-badges{display:flex;gap:10px;flex-wrap:wrap;margin-top:18px}

/* Layout helpers */
.two-col{display:grid;grid-template-columns: 1.15fr .85fr;gap:22px;align-items:start}
@media (max-width: 900px){
  .two-col{grid-template-columns:1fr}
}

/* Cards */
.card{
  background: var(--card);
  border:1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding:18px;
}
.card.soft{
  background: #fff;
  border-color: #e8eefc;
  box-shadow: 0 10px 30px rgba(2,6,23,.05);
}

.check{margin:12px 0 0;padding-left:18px}
.check li{margin:8px 0;color:var(--muted)}

/* Boat rows (wie im Screenshot: großes Bild links, Text rechts, darunter Thumbs) */
.boat-row{
  display:grid;
  grid-template-columns: 1.05fr .95fr;
  gap:28px;
  align-items:center;
  margin:30px 0;
}
.row-reverse .boat-media{order:2}
.row-reverse .boat-content{order:1}

.boat-content .kicker{
  color: var(--primary);
  font-weight:800;
  letter-spacing:.08em;
  text-transform:uppercase;
  font-size:.80rem
}
.boat-content h3{margin:10px 0 8px;font-size:1.9rem}
.boat-content p{line-height:1.6}

.facts{display:grid;gap:10px;margin:16px 0}
.fact{
  display:flex;justify-content:space-between;gap:12px;
  padding:10px 12px;border:1px solid var(--line);
  border-radius:12px;background: #fff;
}
.fact span{color:var(--muted2)}
.fact strong{color:var(--text)}

/* Slideshow – optisch wie Galerie/Thumbs */
.boat-media{
  border-radius: var(--radius-lg);
  overflow:hidden;
  border:1px solid var(--line);
  background: #fff;
  box-shadow: 0 10px 26px rgba(2,6,23,.06);
}
.slideshow{
  display:flex;gap:0;overflow:hidden;
  scroll-snap-type:x mandatory;
  scroll-behavior:smooth;
}
.slide{
  min-width:100%;
  padding:0;border:0;background:none;cursor:pointer;
  scroll-snap-align:start;
}
.slide img{width:100%;height:360px;object-fit:cover}
.slideshow-dots{
  display:flex;gap:8px;justify-content:center;
  padding:12px;background: #fff;border-top:1px solid var(--line);
}
.slideshow-dots button{
  width:8px;height:8px;border-radius:999px;border:0;
  background: #cbd5e1;cursor:pointer;
}
.slideshow-dots button[aria-current="true"]{background: var(--primary2)}

@media (max-width: 900px){
  .boat-row{grid-template-columns:1fr}
  .row-reverse .boat-media,.row-reverse .boat-content{order:unset}
  .slide img{height:320px}
}

/* Reviews – hell, clean */
.review-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:14px}
.review{
  border:1px solid var(--line);
  border-radius:var(--radius-lg);
  padding:16px;
  background: #fff;
  box-shadow: 0 8px 20px rgba(2,6,23,.05);
}
.stars{letter-spacing:2px;color:#f59e0b}
@media (max-width: 900px){.review-grid{grid-template-columns:1fr}}

/* Founders */
.founder-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:14px}
.avatar{
  width:54px;height:54px;border-radius:18px;
  display:grid;place-items:center;
  background: var(--primary-soft);
  border:1px solid rgba(37,99,235,.18);
  margin-bottom:10px
}
@media (max-width: 900px){.founder-grid{grid-template-columns:1fr}}

/* Forms */
.form{display:grid;gap:12px}
label{display:grid;gap:6px;font-weight:700}
input, textarea, select{
  padding:12px 12px;border-radius:12px;
  border:1px solid var(--line);
  background: #fff;
  color:var(--text);
  outline:none;
}
input::placeholder, textarea::placeholder{color:#94a3b8}
input:focus, textarea:focus, select:focus{
  border-color: rgba(37,99,235,.55);
  box-shadow: 0 0 0 4px rgba(37,99,235,.12);
}
.grid-2{display:grid;grid-template-columns:repeat(2,1fr);gap:12px}
@media (max-width: 700px){.grid-2{grid-template-columns:1fr}}

/* Media card */
.media-card{cursor:pointer}
.media-thumb{
  position:relative;border-radius:var(--radius-lg);
  overflow:hidden;border:1px solid var(--line);
  background: #fff; box-shadow: 0 10px 26px rgba(2,6,23,.06);
}
.media-thumb video{height:320px}
.play{
  position:absolute;inset:auto auto 12px 12px;
  width:48px;height:48px;border-radius:16px;
  display:grid;place-items:center;
  background: rgba(15,23,42,.65);
  color:#fff;
  border:1px solid rgba(255,255,255,.25);
}

/* Highlights */
.highlights{display:grid;gap:10px;margin-top:12px}
.highlight{
  display:grid;gap:4px;padding:12px;border-radius:12px;
  border:1px solid #e8eefc;background: #fff;
}
.highlight strong{font-size:1.02rem}

/* Gallery */
.gallery{display:grid;grid-template-columns:repeat(4,1fr);gap:10px}
.gallery-item{
  padding:0;border:0;background:none;cursor:pointer;
  border-radius:14px;overflow:hidden;border:1px solid var(--line);
  box-shadow: 0 6px 16px rgba(2,6,23,.05);
}
.gallery-item img{height:180px;object-fit:cover}
@media (max-width: 900px){.gallery{grid-template-columns:repeat(2,1fr)}}
@media (max-width: 520px){.gallery{grid-template-columns:1fr}.gallery-item img{height:220px}}

/* Accordion – wie in Screenshot: helle Leiste, dezente Lines */
.accordion{display:grid;gap:10px;margin-top:10px}
.accordion-item{
  border:1px solid var(--line);
  border-radius:12px;
  overflow:hidden;
  background: #fff;
  box-shadow: 0 6px 16px rgba(2,6,23,.04);
}
.accordion-header{
  width:100%;
  display:flex;align-items:center;justify-content:space-between;gap:12px;
  padding:14px 14px;
  border:0;background:#fff;color:var(--text);cursor:pointer;
  font-weight:800;text-align:left;
}
.accordion-icon{
  width:28px;height:28px;border-radius:10px;
  display:grid;place-items:center;
  border:1px solid #dbe3f3;
  color:var(--primary);
  background: var(--primary-soft);
}
.accordion-body{
  max-height:0;overflow:hidden;
  transition:max-height .18s ease;
  padding:0 14px;
  border-top:1px solid var(--line);
}
.accordion-item.active .accordion-body{padding:0 14px 14px}
.accordion-body p{margin:12px 0 0;color:var(--muted);line-height:1.6}

/* Footer */
.site-footer{border-top:1px solid var(--line);background: #fff}
.footer-grid{display:grid;grid-template-columns:1.2fr .8fr .8fr;gap:18px;padding:28px 0}
.footer-bottom{padding:14px 0;border-top:1px solid var(--line)}
.links{list-style:none;padding:0;margin:10px 0 0;display:grid;gap:8px}
.links a{color:var(--muted)}
.links a:hover{color:var(--text)}
@media (max-width: 900px){.footer-grid{grid-template-columns:1fr}}

/* Modal */
.modal[hidden]{display:none}
.modal{position:fixed;inset:0;z-index:100}
.modal-backdrop{position:absolute;inset:0;background: rgba(2,6,23,.55)}
.modal-panel{
  position:relative;z-index:1;
  width:min(960px, 92vw);
  margin:6vh auto 0;
  border-radius: 16px;
  border:1px solid rgba(148,163,184,.35);
  background: #fff;
  box-shadow: 0 18px 50px rgba(2,6,23,.18);
  overflow:hidden;
}
.modal-close{
  position:absolute;right:10px;top:10px;
  width:40px;height:40px;border-radius:12px;
  border:1px solid var(--line);
  background: #fff;color:var(--text);
  cursor:pointer;
}
.modal-content{padding:16px}
.modal-content img{width:100%;height:auto;border-radius:14px}
.modal-content video{width:100%;height:auto;border-radius:14px}

/* Sticky CTA – schlicht, weiß */
.sticky-cta{
  position:fixed;
  top:64px;
  z-index:40;
  width: 100%;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.sticky-cta-inner{display:flex;align-items:center;justify-content:space-between;gap:14px;padding:15px 0}
.sticky-cta-text{display:flex;flex-direction:column;gap:2px}
@media (max-width: 700px){
  .sticky-cta-text span{display:none}
}

/* Mobile nav */
@media (max-width: 980px){
  .nav-toggle{display:block}
  .nav{
    position:fixed;left:0;right:0;top:64px;
    display:none;flex-direction:column;gap:12px;
    padding:16px;
    background: rgba(255,255,255,.98);
    border-bottom:1px solid var(--line);
  }
  .nav.open{display:flex}
}
