:root {
  --navy: #082638;
  --navy-deep: #041824;
  --ink: #0b1720;
  --gold: #d8bd8d;
  --gold-deep: #ad8950;
  --ivory: #f7f4ec;
  --paper: #ffffff;
  --mist: #dfe8ea;
  --muted: #66757d;
  --shadow: 0 24px 70px rgba(4, 24, 36, 0.22);
  --serif: Georgia, "Times New Roman", serif;
  --sans: 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(--paper);
  color: var(--ink);
  font-family: var(--sans);
  line-height: 1.55;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea {
  font: inherit;
}

.lang-en {
  display: none;
}

body[data-lang="en"] .lang-de {
  display: none;
}

body[data-lang="en"] .lang-en {
  display: inline;
}

.site-header {
  align-items: center;
  backdrop-filter: blur(18px);
  background: rgba(4, 24, 36, 0.74);
  border: 1px solid rgba(216, 189, 141, 0.25);
  border-radius: 8px;
  color: var(--paper);
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 28px;
  left: 50%;
  max-width: min(1180px, calc(100% - 32px));
  padding: 10px 14px;
  position: fixed;
  top: 16px;
  transform: translateX(-50%);
  width: 100%;
  z-index: 10;
}

.brand {
  align-items: center;
  background: rgba(8, 38, 56, 0.82);
  border: 1px solid rgba(216, 189, 141, 0.26);
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  gap: 1px;
  height: 62px;
  justify-content: center;
  padding: 7px 18px;
  transition: border-color 180ms ease, background 180ms ease;
  width: 168px;
}

.brand:hover {
  background: rgba(8, 38, 56, 0.96);
  border-color: rgba(216, 189, 141, 0.58);
}

.brand-word {
  color: var(--paper);
  font-family: var(--serif);
  font-size: 1.58rem;
  font-weight: 400;
  line-height: 1;
}

.brand-sub {
  color: var(--gold);
  font-size: 0.56rem;
  font-weight: 800;
  letter-spacing: 0.23em;
  line-height: 1;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  gap: clamp(14px, 3vw, 36px);
  justify-content: center;
}

.nav-links a,
.footer-links a {
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.76rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: color 180ms ease;
}

.nav-links a:hover,
.footer-links a:hover {
  color: var(--gold);
}

.header-actions {
  align-items: center;
  display: flex;
  gap: 8px;
}

.lang-toggle,
.icon-link {
  align-items: center;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(216, 189, 141, 0.28);
  border-radius: 8px;
  color: var(--paper);
  cursor: pointer;
  display: inline-grid;
  font-size: 0.78rem;
  font-weight: 700;
  height: 40px;
  justify-content: center;
  min-width: 44px;
  transition: background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.lang-toggle:hover,
.icon-link:hover {
  background: rgba(216, 189, 141, 0.18);
  border-color: rgba(216, 189, 141, 0.68);
  transform: translateY(-1px);
}

.hero {
  background: var(--navy-deep);
  color: var(--paper);
  display: grid;
  min-height: 100svh;
  overflow: hidden;
  padding: 130px clamp(20px, 5vw, 76px) 70px;
  place-items: end start;
  position: relative;
}

.hero-video,
.hero-scrim {
  height: 100%;
  inset: 0;
  position: absolute;
  width: 100%;
}

.hero-video {
  object-fit: cover;
}

.hero-scrim {
  background:
    linear-gradient(90deg, rgba(4, 24, 36, 0.92) 0%, rgba(4, 24, 36, 0.62) 48%, rgba(4, 24, 36, 0.16) 100%),
    linear-gradient(0deg, rgba(4, 24, 36, 0.88) 0%, rgba(4, 24, 36, 0) 48%);
}

.hero-inner {
  max-width: 820px;
  position: relative;
  z-index: 1;
}

.hero-kicker,
.section-label {
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  font-family: var(--serif);
  font-size: clamp(2.7rem, 6.6vw, 6.4rem);
  font-weight: 400;
  line-height: 0.98;
  margin-bottom: 26px;
  max-width: 760px;
}

h2 {
  font-family: var(--serif);
  font-size: clamp(2.1rem, 5vw, 5.4rem);
  font-weight: 400;
  line-height: 1.02;
  margin-bottom: 24px;
}

h3 {
  font-family: var(--serif);
  font-size: 1.55rem;
  font-weight: 400;
  line-height: 1.1;
  margin-bottom: 12px;
}

.hero p {
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1.02rem, 2vw, 1.32rem);
  max-width: 680px;
}

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

.button {
  align-items: center;
  border-radius: 8px;
  display: inline-flex;
  font-size: 0.8rem;
  font-weight: 800;
  justify-content: center;
  letter-spacing: 0.13em;
  min-height: 52px;
  padding: 0 22px;
  text-transform: uppercase;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  background: linear-gradient(135deg, var(--gold), #f2ddb2);
  border: 1px solid rgba(255, 255, 255, 0.24);
  color: #1e201a;
}

.button-secondary {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: var(--paper);
}

.button-secondary:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(216, 189, 141, 0.72);
}

.hero-panel {
  background: rgba(4, 24, 36, 0.78);
  border: 1px solid rgba(216, 189, 141, 0.26);
  border-radius: 8px;
  bottom: 38px;
  box-shadow: var(--shadow);
  max-width: 330px;
  padding: 14px;
  position: absolute;
  right: clamp(18px, 4vw, 72px);
  z-index: 2;
}

.panel-mark {
  align-items: center;
  aspect-ratio: 2 / 1;
  background:
    radial-gradient(circle at 50% 15%, rgba(216, 189, 141, 0.13), transparent 34%),
    linear-gradient(180deg, rgba(8, 38, 56, 0.96), rgba(5, 25, 37, 0.96));
  border: 1px solid rgba(216, 189, 141, 0.22);
  border-radius: 6px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
}

.panel-logo {
  height: 88%;
  object-fit: contain;
  width: 88%;
}

.hero-panel dl {
  display: grid;
  gap: 10px;
  margin: 14px 0 0;
}

.hero-panel dl > div {
  align-items: center;
  border-top: 1px solid rgba(216, 189, 141, 0.18);
  display: grid;
  gap: 12px;
  grid-template-columns: 72px 1fr;
  padding-top: 10px;
}

.hero-panel dt {
  color: var(--gold);
  font-family: var(--serif);
  font-size: 1.45rem;
  white-space: nowrap;
}

.hero-panel dd {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.88rem;
  margin: 0;
}

.section {
  padding: clamp(72px, 10vw, 130px) clamp(20px, 5vw, 76px);
}

.intro {
  background:
    linear-gradient(180deg, #ffffff 0%, var(--ivory) 100%);
}

.intro-grid {
  align-items: end;
  display: grid;
  gap: clamp(30px, 6vw, 82px);
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.72fr);
  margin-top: 18px;
}

.intro p,
.copy-stack p,
.inquiry-copy p {
  color: var(--muted);
  font-size: 1.08rem;
  margin-bottom: 0;
}

.media-band {
  background: var(--ivory);
  display: grid;
  gap: 18px;
  grid-template-columns: minmax(0, 1.3fr) minmax(280px, 0.7fr);
  padding: 0 clamp(20px, 5vw, 76px) clamp(72px, 10vw, 130px);
}

figure {
  margin: 0;
  position: relative;
}

.wide-shot img,
.tall-shot img,
.image-split img {
  border-radius: 8px;
  box-shadow: var(--shadow);
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.wide-shot {
  min-height: 560px;
}

.tall-shot {
  min-height: 560px;
}

figcaption {
  background: rgba(4, 24, 36, 0.72);
  border: 1px solid rgba(216, 189, 141, 0.28);
  border-radius: 8px;
  bottom: 18px;
  color: var(--paper);
  font-size: 0.78rem;
  font-weight: 800;
  left: 18px;
  letter-spacing: 0.13em;
  padding: 12px 14px;
  position: absolute;
  text-transform: uppercase;
}

.yacht-section {
  background: var(--navy);
  color: var(--paper);
  display: grid;
  gap: clamp(34px, 6vw, 86px);
  grid-template-columns: minmax(0, 0.95fr) minmax(310px, 0.8fr);
}

.yacht-section .copy-stack p {
  color: rgba(255, 255, 255, 0.72);
}

.feature-board {
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(216, 189, 141, 0.28);
  border-radius: 8px;
  overflow: hidden;
}

.feature-board article {
  display: grid;
  gap: 8px 22px;
  grid-template-columns: 42px minmax(0, 1fr);
  padding: clamp(24px, 4vw, 38px);
}

.feature-board article + article {
  border-top: 1px solid rgba(216, 189, 141, 0.22);
}

.feature-board article > span {
  align-self: start;
  color: var(--gold);
  grid-row: 1 / span 2;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  line-height: 1;
  padding-top: 8px;
}

.feature-board h3 {
  font-size: clamp(1.65rem, 2.5vw, 2.15rem);
  margin-bottom: 0;
}

.feature-board p {
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.7;
  margin-bottom: 0;
  max-width: 43ch;
}

.image-split {
  background: var(--navy);
  color: var(--paper);
  display: grid;
  gap: clamp(28px, 5vw, 66px);
  grid-template-columns: minmax(280px, 0.7fr) minmax(0, 0.8fr);
  padding: 0 clamp(20px, 5vw, 76px) clamp(72px, 10vw, 130px);
}

.image-split img {
  max-height: 760px;
}

.image-split-copy {
  align-self: center;
}

.moments {
  background:
    linear-gradient(180deg, var(--navy) 0%, var(--navy-deep) 100%);
  color: var(--paper);
}

.moments-heading {
  align-items: end;
  display: grid;
  gap: clamp(20px, 5vw, 70px);
  grid-template-columns: minmax(180px, 0.36fr) minmax(0, 1fr);
  margin-bottom: 42px;
}

.moments-heading h2 {
  margin-bottom: 0;
  max-width: 940px;
}

.moments-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.moment-card {
  min-height: 460px;
  overflow: hidden;
}

.moment-card-large {
  grid-row: span 2;
  min-height: 738px;
}

.moment-card img {
  border-radius: 8px;
  box-shadow: var(--shadow);
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.routes {
  background: linear-gradient(180deg, #ffffff 0%, #eef4f4 100%);
}

.routes h2 {
  max-width: 820px;
}

.route-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 42px;
}

.route-grid article {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(8, 38, 56, 0.12);
  border-radius: 8px;
  min-height: 260px;
  padding: 30px;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.route-grid article:hover {
  border-color: rgba(173, 137, 80, 0.48);
  box-shadow: 0 20px 48px rgba(8, 38, 56, 0.12);
  transform: translateY(-4px);
}

.route-grid article > span {
  color: var(--gold-deep);
  display: block;
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.2em;
  margin-bottom: 54px;
  text-transform: uppercase;
}

.route-grid p {
  color: var(--muted);
  margin-bottom: 0;
}

.inquiry {
  background: var(--navy-deep);
  color: var(--paper);
  display: grid;
  gap: clamp(34px, 6vw, 90px);
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 0.7fr);
  padding: clamp(72px, 10vw, 130px) clamp(20px, 5vw, 76px);
}

.inquiry-copy p {
  color: rgba(255, 255, 255, 0.74);
}

.contact-lines {
  display: grid;
  gap: 14px;
  margin-top: 42px;
}

.contact-lines a {
  border-bottom: 1px solid rgba(216, 189, 141, 0.3);
  color: var(--gold);
  font-family: var(--serif);
  font-size: clamp(1.45rem, 3vw, 2.55rem);
  padding-bottom: 12px;
}

.inquiry-form {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(216, 189, 141, 0.24);
  border-radius: 8px;
  display: grid;
  gap: 18px;
  padding: clamp(22px, 4vw, 38px);
}

label {
  color: rgba(255, 255, 255, 0.68);
  display: grid;
  font-size: 0.78rem;
  font-weight: 800;
  gap: 8px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

input,
textarea {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  color: var(--paper);
  outline: none;
  padding: 15px 16px;
  resize: vertical;
  transition: border-color 180ms ease, background 180ms ease;
  width: 100%;
}

input:focus,
textarea:focus {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(216, 189, 141, 0.72);
}

.form-note {
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.9rem;
  margin: 0;
}

.form-status {
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.92rem;
  margin: 0;
  min-height: 1.4em;
}

.form-status[data-state="success"] {
  color: #d8f0df;
}

.form-status[data-state="error"] {
  color: #ffd2c9;
}

.hp-field {
  height: 0;
  left: -9999px;
  opacity: 0;
  overflow: hidden;
  position: absolute;
  width: 0;
}

.button:disabled {
  cursor: wait;
  opacity: 0.65;
  transform: none;
}

.site-footer {
  align-items: center;
  background: #03131d;
  color: var(--paper);
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 28px clamp(20px, 5vw, 76px);
}

.site-footer div:first-child {
  display: grid;
  gap: 2px;
}

.site-footer span {
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.86rem;
}

.footer-links {
  display: flex;
  gap: 22px;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 700ms ease, transform 700ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: auto auto;
  }

  .nav-links {
    display: none;
  }

  .header-actions {
    justify-content: end;
  }

  .hero {
    min-height: auto;
    padding-top: 128px;
    place-items: end center;
  }

  .hero-panel {
    margin-top: 44px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    right: auto;
    bottom: auto;
    justify-self: center;
    width: min(100%, 330px);
  }

  .intro-grid,
  .media-band,
  .yacht-section,
  .image-split,
  .moments-heading,
  .moments-grid,
  .inquiry {
    grid-template-columns: 1fr;
  }

  .wide-shot,
  .tall-shot {
    min-height: 420px;
  }

  .route-grid {
    grid-template-columns: 1fr;
  }

  .moment-card,
  .moment-card-large {
    min-height: 430px;
  }
}

@media (max-width: 640px) {
  .site-header {
    max-width: calc(100% - 20px);
    top: 10px;
  }

  .brand {
    height: 54px;
    padding: 6px 12px;
    width: 136px;
  }

  .brand-word {
    font-size: 1.36rem;
  }

  .brand-sub {
    font-size: 0.48rem;
  }

  .hero {
    padding: 112px 18px 44px;
    text-align: center;
  }

  .hero-inner {
    max-width: 100%;
    width: 100%;
  }

  .hero-actions {
    margin-left: auto;
    margin-right: auto;
    max-width: 340px;
    width: 100%;
  }

  .button {
    width: 100%;
  }

  .section,
  .media-band,
  .yacht-section,
  .image-split,
  .inquiry {
    padding-left: 18px;
    padding-right: 18px;
  }

  .wide-shot,
  .tall-shot {
    min-height: 360px;
  }

  figcaption {
    left: 12px;
    right: 12px;
  }

  .feature-board article {
    gap: 8px 14px;
    grid-template-columns: 32px minmax(0, 1fr);
    padding: 24px 20px;
  }

  .feature-board article > span {
    font-size: 0.7rem;
    padding-top: 6px;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
