:root {
  --ink: #17211f;
  --muted: #66706d;
  --paper: #f7f3ec;
  --soft: #ede6da;
  --white: #ffffff;
  --gold: #b9965a;
  --deep: #071615;
  --line: rgba(23, 33, 31, 0.14);
  --radius: 8px;
  --font-body: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-display: Georgia, "Times New Roman", serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--font-body);
  line-height: 1.6;
}

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

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 20;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 16px clamp(18px, 4vw, 54px);
  color: var(--white);
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.site-header.is-scrolled {
  color: var(--ink);
  background: rgba(247, 243, 236, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.brand-logo {
  display: block;
  width: 126px;
}

.brand-logo img {
  width: 100%;
  height: auto;
}

.logo-dark,
.site-header.is-scrolled .logo-white {
  display: none;
}

.site-header.is-scrolled .logo-dark {
  display: block;
}

.nav {
  display: none;
  align-items: center;
  gap: 24px;
  font-size: 0.82rem;
  font-weight: 600;
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--white);
  padding: 116px clamp(20px, 5vw, 70px) 54px;
}

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

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

.hero-overlay {
  background:
    linear-gradient(180deg, rgba(7, 22, 21, 0.12), rgba(7, 22, 21, 0.82)),
    linear-gradient(90deg, rgba(7, 22, 21, 0.78), rgba(7, 22, 21, 0.08));
}

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

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

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

h1,
h2 {
  font-family: var(--font-display);
  line-height: 1.05;
}

h1 {
  max-width: 780px;
  margin-bottom: 20px;
  font-size: clamp(3rem, 13vw, 6.6rem);
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2.05rem, 8vw, 4.5rem);
}

h3 {
  margin-bottom: 10px;
  font-size: 1rem;
}

.hero-text {
  max-width: 650px;
  margin-bottom: 22px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.02rem;
}

.hero-points,
.process,
.check-list {
  display: grid;
  gap: 9px;
  margin: 0 0 28px;
  padding: 0;
}

.hero-points span,
.process span,
.check-list li {
  list-style: none;
  width: fit-content;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 999px;
  padding: 8px 12px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.78rem;
  font-weight: 700;
}

.hero-actions,
.form-row {
  display: grid;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  font: inherit;
  font-size: 0.88rem;
  font-weight: 700;
  cursor: pointer;
}

.button-primary {
  color: var(--deep);
  background: var(--gold);
}

.button-secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.42);
}

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

.intro {
  max-width: 1030px;
}

.intro p:not(.section-kicker),
.inquiry > div p,
.section-heading p {
  max-width: 780px;
  color: var(--muted);
  font-size: 1.04rem;
}

.section-heading {
  max-width: 900px;
  margin-bottom: 34px;
}

.value,
.routes,
.faq {
  background: var(--soft);
}

.value-grid,
.faq-grid,
.route-list,
.feature-list {
  display: grid;
  gap: 14px;
}

.value-grid article,
.faq-grid article,
.feature-list article,
.route-list article {
  padding: 24px 0;
  border-top: 1px solid var(--line);
}

.value-grid p,
.faq-grid p,
.feature-list p,
.route-list p,
.bachelor-copy p,
.footer p {
  color: var(--muted);
}

.split,
.bachelor-section,
.inquiry {
  display: grid;
  gap: 34px;
  border-top: 1px solid var(--line);
}

.feature-list span {
  display: inline-block;
  margin-bottom: 16px;
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 700;
}

.bachelor-section {
  align-items: center;
  color: var(--white);
  background: var(--deep);
}

.bachelor-copy {
  max-width: 720px;
}

.bachelor-copy p {
  color: rgba(255, 255, 255, 0.75);
}

.bachelor-copy .check-list li {
  border-color: rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.86);
}

figure {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
}

.bachelor-image img,
.boat-grid img,
.gallery img {
  width: 100%;
  height: 330px;
  object-fit: cover;
}

figcaption {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  color: var(--white);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-shadow: 0 1px 16px rgba(0, 0, 0, 0.5);
}

.boat-grid,
.gallery {
  display: grid;
  gap: 10px;
}

.gallery {
  padding: 10px;
  background: var(--deep);
}

.gallery img {
  height: 280px;
}

.process {
  margin-top: 24px;
}

.process span {
  border-color: var(--line);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.5);
}

.inquiry-form {
  display: grid;
  gap: 16px;
  padding: 22px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

label {
  display: grid;
  gap: 7px;
  color: var(--ink);
  font-size: 0.84rem;
  font-weight: 700;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 13px 14px;
  color: var(--ink);
  background: #fbfaf7;
  font: inherit;
}

textarea {
  resize: vertical;
}

.footer {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 34px clamp(20px, 5vw, 70px);
  color: var(--white);
  background: var(--deep);
}

.footer a {
  color: var(--gold);
  font-weight: 700;
}

@media (min-width: 720px) {
  .nav,
  .hero-actions,
  .hero-points,
  .form-row,
  .process {
    display: flex;
    flex-wrap: wrap;
  }

  .split,
  .bachelor-section,
  .inquiry {
    grid-template-columns: 0.9fr 1.1fr;
  }

  .value-grid,
  .faq-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
  }

  .boat-grid {
    grid-template-columns: 1.2fr 0.8fr;
  }

  .boat-grid figure:first-child {
    grid-row: span 2;
  }

  .boat-grid figure:first-child img {
    height: 670px;
  }

  .gallery {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

@media (min-width: 980px) {
  .brand-logo {
    width: 168px;
  }

  .route-list {
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
  }

  .route-list article {
    padding-right: 28px;
  }
}
