/* ═══════════════════════════════════════════════════════════
   DARSENA SANTA MARIA — Nautical / Northern Adriatic
   Palette: deep sea navy · salt white · Chioggia terracotta
   Type: Instrument Sans (single clean family)
   ═══════════════════════════════════════════════════════════ */

:root {
  --sand: #F7F5F0;
  --sand-2: #EDEAE2;
  --ink: #15222C;
  --sea: #14506B;
  --sea-deep: #0B2C3D;
  --coral: #BF6B4E;
  --coral-text: #A0563B; /* AA-konform auf Weiß/Sand für kleinen Text */
  --coral-soft: #E4B29C;
  --white: #FFFFFF;

  --display: "Instrument Sans", system-ui, sans-serif;
  --sans: "Instrument Sans", system-ui, sans-serif;

  --ease: cubic-bezier(0.32, 0.72, 0, 1);
  --ease-spring: cubic-bezier(0.34, 1.3, 0.42, 1);

  --r-xl: 2rem;
  --r-core: calc(2rem - 0.4rem);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  background: var(--sand);
  color: var(--ink);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

::selection { background: var(--sea); color: var(--sand); }

a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible {
  outline: 2px solid var(--sea);
  outline-offset: 3px;
  border-radius: 4px;
}

img { max-width: 100%; display: block; }

/* ── Film grain ─────────────────────────────── */
.grain {
  position: fixed; inset: 0; z-index: 80;
  pointer-events: none; opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ── Typography ─────────────────────────────── */
h1, h2, h3 { font-family: var(--display); font-weight: 620; line-height: 1.06; letter-spacing: -0.03em; }

h1 { font-size: clamp(2.6rem, 5.6vw, 4.5rem); }
h2 { font-size: clamp(2rem, 3.9vw, 3rem); }

h1 em, h2 em { font-style: italic; font-weight: 460; color: var(--sea); letter-spacing: -0.02em; }
.section-dark h2 em { color: var(--coral-soft); }

.eyebrow {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.35rem 0.9rem; margin-bottom: 1.6rem;
  border-radius: 999px;
  border: 1px solid rgba(20, 80, 107, 0.22);
  background: rgba(255, 255, 255, 0.5);
  font-size: 10px; font-weight: 600;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--sea);
}
.eyebrow::before {
  content: ""; width: 5px; height: 5px; border-radius: 50%;
  background: var(--coral);
}
.eyebrow-light {
  border-color: rgba(228, 178, 156, 0.35);
  background: rgba(255, 255, 255, 0.06);
  color: var(--coral-soft);
}

/* ── Double bezel ───────────────────────────── */
.bezel {
  background: rgba(21, 34, 44, 0.045);
  border: 1px solid rgba(21, 34, 44, 0.07);
  border-radius: var(--r-xl);
  padding: 0.4rem;
}
.bezel-core {
  background: var(--white);
  border-radius: var(--r-core);
  overflow: hidden;
  box-shadow:
    inset 0 1px 1px rgba(255, 255, 255, 0.9),
    0 24px 60px -32px rgba(11, 44, 61, 0.28);
}
.bezel-dark {
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: var(--r-xl);
  padding: 0.4rem;
}
.bezel-dark .bezel-core {
  background: rgba(13, 49, 66, 0.72);
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.07);
}

/* ── Buttons ────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 0.9rem;
  padding: 0.55rem 0.55rem 0.55rem 1.5rem;
  border-radius: 999px;
  font-family: var(--sans); font-size: 0.92rem; font-weight: 600;
  text-decoration: none; cursor: pointer; border: none;
  transition: transform 0.6s var(--ease), background 0.6s var(--ease), box-shadow 0.6s var(--ease);
}
.btn:active { transform: scale(0.98); }

.btn-orb {
  width: 2.2rem; height: 2.2rem; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  flex: none;
  transition: transform 0.6s var(--ease-spring);
}
.btn-orb svg { width: 15px; height: 15px; }
.btn:hover .btn-orb { transform: translate(3px, -2px) scale(1.06); }

.btn-primary {
  background: var(--sea); color: var(--sand);
  box-shadow: 0 18px 38px -18px rgba(11, 44, 61, 0.55);
}
.btn-primary:hover { background: var(--sea-deep); }
.btn-primary .btn-orb { background: rgba(255, 255, 255, 0.14); color: var(--sand); }

.btn-ghost {
  background: transparent; color: var(--ink);
  padding: 0.85rem 1.5rem;
  border: 1px solid rgba(21, 34, 44, 0.18);
  gap: 0.6rem;
}
.btn-ghost:hover { background: rgba(21, 34, 44, 0.05); }
.btn-ico { width: 17px; height: 17px; }

.btn-card {
  background: var(--sand-2); color: var(--ink);
  width: 100%; justify-content: space-between;
  margin-top: auto;
}
.btn-card:hover { background: var(--sea); color: var(--sand); }
.btn-card .btn-orb { background: var(--white); color: var(--sea); }
.btn-card:hover .btn-orb { background: rgba(255, 255, 255, 0.16); color: var(--sand); }

/* ── Nav island ─────────────────────────────── */
.nav-island {
  position: fixed; top: 1.4rem; left: 50%;
  transform: translateX(-50%);
  z-index: 102;
  display: flex; align-items: center; gap: 2rem;
  width: min(1120px, calc(100% - 2rem));
  padding: 0.55rem 0.65rem 0.55rem 1rem;
  border-radius: 999px;
  background: rgba(247, 245, 240, 0.72);
  backdrop-filter: blur(18px) saturate(1.4);
  -webkit-backdrop-filter: blur(18px) saturate(1.4);
  border: 1px solid rgba(21, 34, 44, 0.08);
  box-shadow: 0 18px 50px -24px rgba(11, 44, 61, 0.35);
  transition: transform 0.7s var(--ease), box-shadow 0.7s var(--ease);
}

.nav-brand {
  display: flex; align-items: center; gap: 0.7rem;
  text-decoration: none; color: var(--ink);
  margin-right: auto;
}
.nav-logo { width: 40px; height: 40px; border-radius: 50%; }
.nav-brand-text {
  font-family: var(--display); font-size: 0.98rem; line-height: 1.02;
  font-weight: 500; letter-spacing: 0.01em;
}
.nav-brand-text em { font-weight: 460; color: var(--sea); }

.nav-links { display: flex; gap: 1.7rem; }
.nav-links a {
  font-size: 0.86rem; font-weight: 500; text-decoration: none;
  padding: 0.6rem 0;
  color: rgba(21, 34, 44, 0.72);
  transition: color 0.4s var(--ease);
}
.nav-links a:hover { color: var(--sea); }

.nav-right { display: flex; align-items: center; gap: 0.9rem; }

.lang-switch {
  display: inline-flex; padding: 0.2rem;
  border-radius: 999px;
  background: rgba(21, 34, 44, 0.06);
}
.lang-switch button {
  border: none; background: transparent; cursor: pointer;
  padding: 0.32rem 0.62rem; border-radius: 999px;
  font-family: var(--sans); font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.06em; color: rgba(21, 34, 44, 0.55);
  transition: background 0.5s var(--ease), color 0.5s var(--ease);
}
.lang-switch button.active { background: var(--white); color: var(--sea); box-shadow: 0 2px 8px rgba(11, 44, 61, 0.12); }

.btn-nav { font-size: 0.84rem; padding-left: 1.2rem; }
.btn-nav .btn-orb { width: 1.9rem; height: 1.9rem; }

/* Burger */
.burger {
  display: none;
  width: 2.7rem; height: 2.7rem; border-radius: 50%;
  border: 1px solid rgba(21, 34, 44, 0.14);
  background: var(--white); cursor: pointer;
  position: relative; z-index: 101; flex: none;
}
.burger span {
  position: absolute; left: 50%; top: 50%;
  width: 16px; height: 1.6px; background: var(--ink);
  border-radius: 2px;
  transition: transform 0.55s var(--ease);
}
.burger span:nth-child(1) { transform: translate(-50%, calc(-50% - 3.5px)); }
.burger span:nth-child(2) { transform: translate(-50%, calc(-50% + 3.5px)); }
.burger.open span:nth-child(1) { transform: translate(-50%, -50%) rotate(45deg); }
.burger.open span:nth-child(2) { transform: translate(-50%, -50%) rotate(-45deg); }

/* Menu overlay */
.menu-overlay {
  position: fixed; inset: 0; z-index: 100;
  background: rgba(11, 44, 61, 0.92);
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 3rem;
  opacity: 0; visibility: hidden;
  transition: opacity 0.6s var(--ease), visibility 0.6s;
}
.menu-overlay.open { opacity: 1; visibility: visible; }

.menu-overlay-links { display: flex; flex-direction: column; align-items: center; gap: 0.4rem; }
.menu-overlay-links a {
  font-family: var(--display); font-size: clamp(2.2rem, 8vw, 3.4rem);
  color: var(--sand); text-decoration: none; font-weight: 540; letter-spacing: -0.02em;
  transform: translateY(3rem); opacity: 0; filter: blur(6px);
  transition: transform 0.9s var(--ease), opacity 0.9s var(--ease), filter 0.9s var(--ease), color 0.4s;
  transition-delay: calc(var(--i) * 70ms);
}
.menu-overlay-links a:hover { color: var(--coral-soft); }
.menu-overlay.open .menu-overlay-links a { transform: translateY(0); opacity: 1; filter: blur(0); }

.menu-overlay-meta {
  display: flex; flex-direction: column; align-items: center; gap: 1.4rem;
  transform: translateY(2rem); opacity: 0;
  transition: transform 0.9s var(--ease), opacity 0.9s var(--ease);
  transition-delay: calc(var(--i) * 70ms);
}
.menu-overlay.open .menu-overlay-meta { transform: translateY(0); opacity: 1; }
.menu-overlay-meta .lang-switch { background: rgba(255, 255, 255, 0.1); }
.menu-overlay-meta .lang-switch button { color: rgba(247, 245, 240, 0.6); font-size: 0.8rem; padding: 0.85rem 1.15rem; }
.menu-overlay-meta .lang-switch button.active { background: var(--sand); color: var(--sea); }
.menu-phone { color: var(--coral-soft); text-decoration: none; font-size: 1rem; letter-spacing: 0.04em; }

/* ── Hero ───────────────────────────────────── */
.hero {
  display: grid; grid-template-columns: 1.05fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
  max-width: 1220px; margin: 0 auto;
  padding: clamp(9rem, 16vh, 12rem) 1.5rem 6rem;
  min-height: 100dvh;
}

.hero-lead {
  font-size: 1.08rem; color: rgba(21, 34, 44, 0.68);
  max-width: 32rem; margin-top: 1.6rem; font-weight: 400;
}

.hero-cta { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 2.4rem; }

.hero-stats {
  display: flex; gap: clamp(1.5rem, 3.5vw, 3rem);
  margin-top: 3.4rem;
  padding-top: 1.8rem;
  border-top: 1px solid rgba(21, 34, 44, 0.1);
}
.hero-stats div { display: flex; flex-direction: column; gap: 0.15rem; }
.hero-stats strong { font-family: var(--display); font-size: 1.7rem; font-weight: 640; color: var(--sea); }
.hero-stats span { font-size: 0.78rem; color: rgba(21, 34, 44, 0.55); letter-spacing: 0.02em; }

.hero-visual { position: relative; }
.bezel-hero .bezel-core img { aspect-ratio: 4 / 3.1; object-fit: cover; width: 100%; height: auto; }

.hero-card {
  position: absolute; left: -2.2rem; bottom: 2.6rem;
  max-width: 260px;
  transform: rotate(-2deg);
}
.hero-card-core {
  display: flex; align-items: center; gap: 0.85rem;
  padding: 0.9rem 1.15rem;
}
.hero-card-logo { width: 44px; height: 44px; border-radius: 50%; flex: none; }
.hero-card-core strong { display: block; font-size: 0.92rem; letter-spacing: -0.01em; }
.hero-card-core span { font-size: 0.78rem; color: rgba(21, 34, 44, 0.55); }

/* ── Marquee ────────────────────────────────── */
.marquee {
  overflow: hidden; white-space: nowrap;
  padding: 1.1rem 0;
  border-top: 1px solid rgba(21, 34, 44, 0.09);
  border-bottom: 1px solid rgba(21, 34, 44, 0.09);
  background: var(--sand-2);
}
.marquee-track {
  display: inline-flex; align-items: center; gap: 2.4rem;
  animation: marquee 34s linear infinite;
  will-change: transform;
}
.marquee-track span {
  font-family: var(--display); font-style: italic;
  font-size: 1.02rem; color: rgba(21, 34, 44, 0.6);
}
.marquee-track i { color: var(--coral); font-style: normal; font-size: 0.7rem; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ── Sections ───────────────────────────────── */
.section { padding: clamp(6.5rem, 11vw, 10rem) 1.5rem; max-width: 1220px; margin: 0 auto; }

.section-head { max-width: 640px; margin-bottom: clamp(3rem, 6vw, 4.5rem); }

.section-head-stamp {
  max-width: none;
  display: flex; align-items: center; justify-content: space-between;
  gap: 2rem;
}
.section-head-stamp > div { max-width: 640px; }
.fleet-stamp {
  width: clamp(110px, 12vw, 150px); height: auto; flex: none;
  border-radius: 50%;
  transform: rotate(-8deg);
  box-shadow: 0 20px 44px -22px rgba(11, 44, 61, 0.4);
}
.section-lead { margin-top: 1.4rem; color: rgba(21, 34, 44, 0.62); font-size: 1.02rem; }

.section-dark {
  max-width: none;
  background: var(--sea-deep);
  color: var(--sand);
  position: relative;
}
.section-dark::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(52rem 30rem at 85% 0%, rgba(191, 107, 78, 0.13), transparent 60%),
    radial-gradient(40rem 26rem at 0% 100%, rgba(20, 80, 107, 0.55), transparent 65%);
}
.section-dark > * { position: relative; max-width: 1220px; margin-left: auto; margin-right: auto; }
.section-dark .section-head { margin-bottom: clamp(3rem, 6vw, 4.5rem); }

/* ── Fleet ──────────────────────────────────── */
.fleet-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1.6rem;
}

.boat-core { display: flex; flex-direction: column; height: 100%; }

.boat-media { position: relative; overflow: hidden; }
.boat-media img {
  width: 100%; aspect-ratio: 4 / 2.9; object-fit: cover;
  transition: transform 1.4s var(--ease);
}
.boat-card:hover .boat-media img { transform: scale(1.05); }

.boat-badge {
  position: absolute; top: 0.9rem; left: 0.9rem;
  padding: 0.34rem 0.8rem; border-radius: 999px;
  background: rgba(247, 245, 240, 0.92);
  backdrop-filter: blur(6px);
  font-size: 9.5px; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--sea);
}
.boat-badge-license { background: rgba(11, 44, 61, 0.88); color: var(--coral-soft); }

.boat-body { display: flex; flex-direction: column; gap: 0.7rem; padding: 1.5rem 1.5rem 1.4rem; flex: 1; }

.boat-head { display: flex; align-items: baseline; justify-content: space-between; gap: 1rem; }
.boat-head h3 { font-size: 1.75rem; }
.boat-price { font-family: var(--display); font-size: 1.2rem; font-weight: 620; letter-spacing: -0.02em; color: var(--sea); white-space: nowrap; }
.boat-price em { font-size: 0.8rem; font-style: italic; color: rgba(21, 34, 44, 0.5); margin-right: 0.2rem; }
.boat-price span { font-size: 0.78rem; font-family: var(--sans); color: rgba(21, 34, 44, 0.5); }

.boat-model {
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--coral-text);
}
.boat-desc { font-size: 0.92rem; color: rgba(21, 34, 44, 0.65); }

.boat-specs {
  list-style: none;
  display: flex; gap: 1.15rem; flex-wrap: wrap;
  padding: 0.9rem 0 1.1rem;
  border-top: 1px solid rgba(21, 34, 44, 0.08);
  margin-top: 0.3rem;
}
.boat-specs li { display: flex; align-items: center; gap: 0.45rem; font-size: 0.84rem; font-weight: 600; }
.boat-specs li em { font-style: normal; font-weight: 400; color: rgba(21, 34, 44, 0.55); }
.boat-specs svg { width: 17px; height: 17px; color: var(--sea); }

/* Conditions strip */
.conditions { margin-top: 1.6rem; }
.conditions-core {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 2rem; padding: 2rem 2.2rem;
  background: var(--sand-2);
}
.condition { display: flex; flex-direction: column; gap: 0.4rem; }
.condition svg { width: 22px; height: 22px; color: var(--coral); margin-bottom: 0.3rem; }
.condition strong { font-size: 0.9rem; letter-spacing: -0.01em; }
.condition span { font-size: 0.8rem; color: rgba(21, 34, 44, 0.58); }
.condition a { color: var(--sea); font-weight: 600; text-decoration: none; }
.condition a:hover { text-decoration: underline; }

/* ── Bento (services) ───────────────────────── */
.bento {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: minmax(180px, auto);
  gap: 1.4rem;
}
.bento-cell { grid-column: span 4; }
.bento-wide { grid-column: span 8; grid-row: span 2; }
.bento-tall { grid-column: span 4; grid-row: span 2; }

.bento-core {
  height: 100%; padding: 1.9rem;
  display: flex; flex-direction: column; gap: 0.6rem;
  color: var(--sand);
}
.bento-core h3 { font-size: 1.45rem; color: var(--sand); }
.bento-core p { font-size: 0.9rem; color: rgba(247, 245, 240, 0.66); }

.bento-ico { width: 30px; height: 30px; color: var(--coral-soft); margin-bottom: 0.6rem; }

.bento-img-cell { padding: 0; position: relative; justify-content: flex-end; }
.bento-img-cell img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.bento-img-caption {
  position: relative; padding: 2rem;
  background: linear-gradient(to top, rgba(11, 44, 61, 0.9), rgba(11, 44, 61, 0.45) 60%, transparent);
}
.bento-img-caption h3 { font-size: 1.7rem; }
.bento-img-caption p { max-width: 30rem; }

.bento-thumb {
  margin-top: auto; border-radius: 1rem;
  aspect-ratio: 16 / 8; object-fit: cover; width: 100%;
}
.bento-core p + .bento-thumb { margin-top: 0.9rem; }

.bento-list-core { gap: 1.1rem; }
.facility-list { list-style: none; display: flex; flex-direction: column; }
.facility-list li {
  display: flex; align-items: center; gap: 0.8rem;
  padding: 0.8rem 0; font-size: 0.92rem;
  color: rgba(247, 245, 240, 0.82);
}
.facility-list li + li { border-top: 1px solid rgba(255, 255, 255, 0.08); }
.fac-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--coral); flex: none; }
.facility-img {
  flex: 1; min-height: 200px; width: 100%;
  margin-top: 0.5rem; border-radius: 1rem;
  object-fit: cover;
}

/* ── About ──────────────────────────────────── */
.about {
  display: grid; grid-template-columns: 1fr 1.05fr;
  gap: clamp(2.5rem, 6vw, 6rem); align-items: center;
}
.about-visual { position: relative; padding: 2rem 0; }
.bezel-tilt-l { transform: rotate(-2.5deg); width: 82%; }
.bezel-tilt-r { transform: rotate(2deg); width: 62%; margin-left: auto; margin-top: -18%; position: relative; }
.bezel-tilt-l .bezel-core img { aspect-ratio: 4 / 3.4; object-fit: cover; }
.bezel-tilt-r .bezel-core img { aspect-ratio: 4 / 4.4; object-fit: cover; }

.about-text p { color: rgba(21, 34, 44, 0.66); margin-top: 1.3rem; max-width: 34rem; }
.about-text h2 { margin-top: 0; }

.quote { margin-top: 2.2rem; }
.quote-core { padding: 1.6rem 1.8rem; background: var(--sand-2); }
.quote blockquote { font-family: var(--display); font-style: italic; font-size: 1.12rem; line-height: 1.45; color: var(--ink); }
.quote figcaption { margin-top: 0.8rem; font-size: 0.82rem; font-weight: 600; color: rgba(21, 34, 44, 0.55); }
.quote-stars { color: var(--coral); letter-spacing: 0.12em; margin-left: 0.4rem; }

/* ── Contact ────────────────────────────────── */
.section-contact { padding-bottom: clamp(4rem, 7vw, 6rem); }
.contact-core {
  display: grid; grid-template-columns: 1fr 1.1fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  padding: clamp(1.8rem, 4vw, 3.4rem);
}

.contact-list { list-style: none; display: flex; flex-direction: column; gap: 1.4rem; margin-top: 2.2rem; }
.contact-list li { display: flex; gap: 1rem; }
.contact-list svg { width: 21px; height: 21px; color: var(--coral); flex: none; margin-top: 0.2rem; }
.contact-list strong { display: block; font-size: 0.78rem; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(21, 34, 44, 0.5); margin-bottom: 0.2rem; }
.contact-list a { display: block; color: var(--ink); text-decoration: none; font-weight: 500; line-height: 1.5; }
.contact-list a:hover { color: var(--sea); }

.social-row { display: flex; gap: 0.7rem; margin-top: 1.8rem; }
.social-row a {
  width: 2.7rem; height: 2.7rem; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid rgba(21, 34, 44, 0.14);
  color: var(--sea);
  transition: background 0.5s var(--ease), color 0.5s var(--ease), transform 0.5s var(--ease-spring);
}
.social-row a:hover { background: var(--sea); color: var(--sand); transform: translateY(-2px); }
.social-row svg { width: 19px; height: 19px; }

.contact-img { margin-top: 2rem; border-radius: 1.2rem; aspect-ratio: 16 / 7; object-fit: cover; }

.contact-form { display: flex; flex-direction: column; gap: 1.1rem; }
.contact-form label { display: flex; flex-direction: column; gap: 0.4rem; }
.contact-form label span { font-size: 0.78rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(21, 34, 44, 0.55); }
.contact-form input, .contact-form textarea {
  font-family: var(--sans); font-size: 0.95rem; color: var(--ink);
  padding: 0.85rem 1.1rem;
  background: var(--sand);
  border: 1px solid rgba(21, 34, 44, 0.1);
  border-radius: 1rem;
  outline: none; resize: vertical;
  transition: border-color 0.5s var(--ease), box-shadow 0.5s var(--ease);
}
.contact-form input:focus, .contact-form textarea:focus {
  border-color: var(--sea);
  box-shadow: 0 0 0 3px rgba(20, 80, 107, 0.12);
}
.btn-submit { justify-content: space-between; margin-top: 0.4rem; }
.form-note { font-size: 0.78rem; color: rgba(21, 34, 44, 0.5); }

/* ── Footer ─────────────────────────────────── */
.footer {
  background: var(--sea-deep); color: var(--sand);
  padding: 4.5rem 1.5rem 2rem;
}
.footer-inner {
  max-width: 1220px; margin: 0 auto;
  display: flex; justify-content: space-between; gap: 3rem; flex-wrap: wrap;
}
.footer-brand { display: flex; gap: 1rem; align-items: center; }
.footer-brand img { width: 56px; height: 56px; border-radius: 50%; }
.footer-brand strong { display: block; font-family: var(--display); font-size: 1.15rem; font-weight: 640; }
.footer-brand span { font-size: 0.82rem; color: rgba(247, 245, 240, 0.55); }

.footer-cols { display: flex; gap: clamp(2.5rem, 6vw, 5.5rem); flex-wrap: wrap; }
.footer-cols strong { display: block; font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--coral-soft); margin-bottom: 0.9rem; }
.footer-cols a { display: block; color: rgba(247, 245, 240, 0.72); text-decoration: none; font-size: 0.88rem; padding: 0.3rem 0; margin-bottom: 0.1rem; transition: color 0.4s var(--ease); }
.footer-cols a:hover { color: var(--sand); }

.footer-legal {
  max-width: 1220px; margin: 3.5rem auto 0;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(247, 245, 240, 0.12);
  display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap;
  font-size: 0.78rem; color: rgba(247, 245, 240, 0.45);
}
.footer-privacy {
  background: none; border: none; cursor: pointer;
  font-family: var(--sans); font-size: 0.78rem;
  padding: 0.6rem 0;
  color: rgba(247, 245, 240, 0.6); text-decoration: underline;
}
.privacy-body {
  max-width: 1220px; margin: 1.2rem auto 0;
  font-size: 0.78rem; color: rgba(247, 245, 240, 0.5);
  line-height: 1.7;
}

/* ── Scroll reveal ──────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(3.5rem);
  filter: blur(8px);
  transition: opacity 1s var(--ease), transform 1s var(--ease), filter 1s var(--ease);
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; filter: none; transition: none; }
  .marquee-track { animation: none; }
  html { scroll-behavior: auto; }
}

/* ── Responsive ─────────────────────────────── */
@media (max-width: 1080px) {
  .nav-links { display: none; }
  .btn-nav { display: none; }
  .burger { display: block; }
  .nav-island .lang-switch { display: none; }

  .fleet-grid { grid-template-columns: 1fr 1fr; }
  .boat-card:last-child { grid-column: span 2; }
  .conditions-core { grid-template-columns: 1fr 1fr; }

  .bento-cell, .bento-wide, .bento-tall { grid-column: span 6; }
  .bento-wide { grid-row: span 1; min-height: 320px; }
}

@media (max-width: 768px) {
  .hero {
    grid-template-columns: 1fr;
    padding: 7.5rem 1rem 4rem;
    gap: 3rem;
    min-height: auto;
  }
  .hero-card { left: 0.8rem; bottom: 1rem; transform: none; }
  .hero-stats { gap: 1.4rem; flex-wrap: wrap; }

  .section { padding: 4.5rem 1rem; }

  .fleet-grid { grid-template-columns: 1fr; gap: 1.2rem; }
  .boat-card:last-child { grid-column: span 1; }
  .conditions-core { grid-template-columns: 1fr; gap: 1.4rem; padding: 1.6rem; }

  .bento { grid-template-columns: 1fr; grid-auto-rows: auto; gap: 1.1rem; }
  .bento-cell, .bento-wide, .bento-tall { grid-column: span 1; grid-row: span 1; }
  .bento-wide { min-height: 300px; }

  .about { grid-template-columns: 1fr; }
  .bezel-tilt-l, .bezel-tilt-r { transform: none; }
  .bezel-tilt-l { width: 100%; }
  .bezel-tilt-r { width: 78%; margin-top: -12%; }

  .fleet-stamp { display: none; }

  .contact-core { grid-template-columns: 1fr; }
  .contact-img { display: none; }

  .footer-inner { flex-direction: column; }
}
