:root {
  --bg: #f7f9f8;
  --surface: #ffffff;
  --surface-alt: #eef4f2;
  --ink: #172322;
  --muted: #536260;
  --line: #d8e2df;
  --primary: #00696b;
  --primary-strong: #004f51;
  --accent: #c5523f;
  --gold: #a67825;
  --white: #ffffff;
  --shadow: 0 10px 30px rgba(23, 35, 34, 0.09);
  --radius: 8px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.6;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
svg { flex: 0 0 auto; }

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

.skip-link {
  position: absolute;
  left: 16px;
  top: -80px;
  background: var(--ink);
  color: var(--white);
  padding: 8px 12px;
  z-index: 30;
}
.skip-link:focus { top: 12px; }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  color: var(--white);
  transition: background .18s ease, box-shadow .18s ease, color .18s ease;
}
.site-header.is-scrolled {
  background: rgba(255, 255, 255, .96);
  color: var(--ink);
  box-shadow: 0 1px 12px rgba(23, 35, 34, .08);
}
.header-inner {
  width: min(1180px, calc(100% - 24px));
  min-height: 72px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.brand {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
}
.brand img {
  width: auto;
  height: 40px;
  object-fit: contain;
  transition: filter .18s ease;
}
.is-scrolled .brand img {
  filter: brightness(0) saturate(100%) invert(27%) sepia(48%) saturate(879%) hue-rotate(133deg) brightness(88%) contrast(101%);
}
.desktop-nav { display: none; gap: 18px; align-items: center; }
.desktop-nav a {
  padding: 8px 10px;
  border-radius: 999px;
  font-weight: 700;
  font-size: .92rem;
}
.desktop-nav a:hover { background: rgba(255,255,255,.16); }
.is-scrolled .desktop-nav a:hover { background: var(--surface-alt); color: var(--primary); }
.header-actions { display: flex; align-items: center; gap: 8px; }
.header-languages {
  display: none;
  align-items: center;
  gap: 2px;
  padding: 3px;
  border: 1px solid rgba(255,255,255,.28);
  border-radius: 999px;
  background: rgba(255,255,255,.1);
}
.header-languages a {
  min-width: 34px;
  padding: 5px 7px;
  border-radius: 999px;
  text-align: center;
  font-size: .72rem;
  font-weight: 800;
}
.header-languages a.active {
  background: var(--white);
  color: var(--primary);
}
.is-scrolled .header-languages {
  border-color: var(--line);
  background: var(--surface-alt);
}
.is-scrolled .header-languages a.active {
  background: var(--primary);
  color: var(--white);
}
.icon-link, .menu-button {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255,255,255,.32);
  border-radius: 999px;
  color: currentColor;
  background: rgba(255,255,255,.12);
  display: inline-grid;
  place-items: center;
}
.is-scrolled .icon-link, .is-scrolled .menu-button { border-color: var(--line); background: var(--surface); }
.menu-button { padding: 0; cursor: pointer; }
.menu-button span {
  width: 18px;
  height: 2px;
  background: currentColor;
  display: block;
  margin: 2px 0;
}
.mobile-nav {
  display: none;
  background: var(--surface);
  color: var(--ink);
  padding: 12px 16px 20px;
  border-top: 1px solid var(--line);
}
.mobile-nav.open { display: grid; }
.mobile-nav a { padding: 12px 4px; font-weight: 700; }
.language-switch { display: flex; gap: 8px; flex-wrap: wrap; padding-top: 8px; }
.language-switch a {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 6px 10px;
}
.language-switch a.active {
  border-color: var(--primary);
  background: var(--primary);
  color: var(--white);
}

.hero {
  min-height: 720px;
  position: relative;
  display: flex;
  align-items: end;
  overflow: hidden;
  color: var(--white);
}
.hero-image, .hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.hero-image { object-fit: cover; }
.hero-shade {
  background: linear-gradient(to top, rgba(9, 18, 18, .88), rgba(9, 18, 18, .34) 55%, rgba(9, 18, 18, .08));
}
.hero-content {
  position: relative;
  padding: 144px 0 72px;
}
.eyebrow {
  margin: 0 0 14px;
  color: #d9f6f1;
  font-size: .78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.eyebrow.muted { color: var(--primary); }
h1, h2, h3, h4 { margin: 0; line-height: 1.14; letter-spacing: 0; }
h1 {
  max-width: 760px;
  font-size: clamp(2.4rem, 8vw, 4.9rem);
}
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: 1.35rem; }
h4 { font-size: 1.05rem; }
.hero-text {
  max-width: 660px;
  margin: 18px 0 0;
  font-size: 1.08rem;
  color: rgba(255,255,255,.9);
}
.hero-actions, .inline-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 26px;
}
.hero-badges {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 22px;
}
.hero-badges span {
  background: rgba(255,255,255,.15);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 999px;
  padding: 7px 10px;
  font-size: .88rem;
  font-weight: 700;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 46px;
  padding: 11px 16px;
  border-radius: var(--radius);
  border: 1px solid transparent;
  font-weight: 800;
  text-align: center;
}
.button-primary { background: var(--accent); color: var(--white); }
.button-secondary { border-color: rgba(255,255,255,.6); color: var(--white); background: rgba(255,255,255,.08); }
.button-ghost { border-color: var(--line); background: var(--surface); color: var(--ink); }
.button-inverse { background: var(--white); color: var(--primary); }
.button.full { width: 100%; }
.button:hover { transform: translateY(-1px); box-shadow: var(--shadow); }

.stats {
  background: var(--surface);
  border-bottom: 1px solid var(--line);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--line);
}
.stat {
  min-height: 128px;
  background: var(--surface);
  padding: 20px 14px;
  display: grid;
  align-content: center;
  justify-items: center;
  text-align: center;
}
.stat-icon { color: var(--primary); margin-bottom: 8px; }
.stat strong { font-size: 1.35rem; }
.stat span:last-child { color: var(--muted); font-size: .92rem; }

.section { padding: 72px 0; }
.band { background: var(--surface-alt); }
.split {
  display: grid;
  gap: 32px;
  align-items: center;
}
.lead {
  color: var(--muted);
  font-size: 1.05rem;
  margin: 18px 0 0;
}
.booking-panel {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 22px;
}
.booking-panel p { color: var(--muted); }
.section-subtitle {
  margin: 56px 0 18px;
}
.section-heading {
  text-align: center;
  margin-bottom: 28px;
}
.section-heading p {
  max-width: 680px;
  margin: 12px auto 0;
  color: var(--muted);
}
.cards {
  display: grid;
  gap: 16px;
}
.card, .image-card, .contact-card, .lead-form {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.card {
  padding: 20px;
}
.card-icon {
  color: var(--primary);
  display: inline-flex;
  margin-bottom: 14px;
}
.card p, .image-card p { color: var(--muted); margin-bottom: 0; }
.boat-gallery {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}
.boat-gallery img, .pension-grid img, .wide-image, .gallery-grid img, .image-card img {
  border-radius: var(--radius);
  width: 100%;
  object-fit: cover;
}
.boat-gallery img { height: 240px; }
.service-row { margin-top: 38px; }
.check-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}
.check-list li {
  display: flex;
  gap: 10px;
  align-items: center;
  color: var(--muted);
}
.check-list svg { color: var(--primary); }
.image-card { overflow: hidden; }
.image-card img { height: 210px; border-radius: 0; }
.image-card div { padding: 18px; }
.feature-list {
  display: grid;
  gap: 14px;
  margin-top: 22px;
}
.feature-list div {
  border-left: 3px solid var(--gold);
  padding-left: 14px;
}
.feature-list p { color: var(--muted); margin: 6px 0 0; }
.pension-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.pension-grid img:first-child { grid-column: 1 / -1; height: 260px; }
.pension-grid img:not(:first-child) { height: 150px; }
.wide-image { height: 320px; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
.gallery-grid img { height: 160px; }
.center { text-align: center; margin-top: 24px; }
.cta-strip {
  background: var(--primary);
  color: var(--white);
  padding: 58px 0;
  text-align: center;
}
.cta-strip p {
  max-width: 680px;
  margin: 12px auto 22px;
  color: rgba(255,255,255,.84);
}
.faq-list {
  display: grid;
  gap: 10px;
  max-width: 850px;
}
details {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 16px;
}
summary {
  cursor: pointer;
  font-weight: 800;
}
details p { color: var(--muted); margin-bottom: 0; }
.contact-layout {
  display: grid;
  gap: 20px;
}
.contact-cards {
  display: grid;
  gap: 10px;
}
.contact-card {
  display: flex;
  gap: 14px;
  align-items: center;
  padding: 16px;
}
.contact-card svg { color: var(--primary); }
.contact-card small {
  color: var(--muted);
  display: block;
}
.lead-form {
  padding: 16px;
  display: grid;
  gap: 9px;
}
.lead-form h3 { font-size: 1.2rem; }
.lead-form label {
  display: grid;
  gap: 4px;
  font-weight: 700;
  font-size: .94rem;
}
.lead-form input, .lead-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 9px 10px;
  background: #fff;
  color: var(--ink);
  font-size: .95rem;
}
.lead-form textarea {
  height: 88px;
  min-height: 88px;
  resize: vertical;
}
.lead-form .button {
  min-height: 42px;
  padding: 9px 14px;
}
.form-row { display: grid; gap: 9px; }
.consent {
  display: flex !important;
  grid-template-columns: auto 1fr;
  align-items: start;
  font-weight: 500 !important;
  color: var(--muted);
  line-height: 1.4;
}
.consent input { width: auto; margin-top: 4px; }
.hp { display: none; }
.footer {
  background: #172322;
  color: rgba(255,255,255,.82);
  padding: 52px 0 24px;
}
.footer-grid {
  display: grid;
  gap: 28px;
}
.footer-grid > div { align-self: start; }
.footer-brand {
  display: block;
  color: var(--white);
  font-size: 1.25rem;
  line-height: 1.14;
  margin-bottom: 5px;
}
.footer h2 {
  color: var(--white);
  font-size: 1rem;
  margin: 0 0 10px;
}
.footer p { margin: 0; }
.footer a { display: block; padding: 0 0 4px; color: rgba(255,255,255,.78); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.12);
  margin-top: 28px;
  padding-top: 18px;
  font-size: .9rem;
}
.floating-actions {
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: 12px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  z-index: 16;
}
.floating-actions a {
  background: var(--primary);
  color: var(--white);
  border-radius: var(--radius);
  padding: 12px;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: var(--shadow);
}
.floating-actions a:first-child { background: #1f8f4d; }
.simple-main { padding-top: 72px; }
.legal {
  max-width: 820px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
}
.legal p { color: var(--muted); }

@media (min-width: 760px) {
  .hero { min-height: 760px; }
  .hero-content { padding-bottom: 96px; }
  .stats-grid { grid-template-columns: repeat(4, 1fr); }
  .split { grid-template-columns: minmax(0, 1.25fr) minmax(300px, .75fr); }
  .cards.four { grid-template-columns: repeat(4, 1fr); }
  .cards.three { grid-template-columns: repeat(3, 1fr); }
  .boat-gallery { grid-template-columns: 1.2fr .9fr .9fr; }
  .boat-gallery img { height: 310px; }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .gallery-grid img { height: 230px; }
  .contact-layout { grid-template-columns: 1fr minmax(0, .92fr); align-items: start; }
  .form-row { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1.5fr 1fr 1fr 1.2fr; }
  .floating-actions {
    left: auto;
    right: 18px;
    bottom: 18px;
    grid-template-columns: 1fr;
    width: 178px;
  }
}

@media (min-width: 1080px) {
  .desktop-nav { display: flex; }
  .header-languages { display: flex; }
  .menu-button { display: none; }
  .mobile-nav { display: none !important; }
  .hero-content { width: min(1200px, calc(100% - 32px)); }
  .hero-text { max-width: 540px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
}
