/* ============================================================
   COMPASS BONAIRE — single-file site
   Editorial · refined · photography-led
   ============================================================ */

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

:root {
  /* surface */
  --paper:    #FAF8F4;
  --bone:     #F2EEE7;
  --ivory:    #ECE6DB;
  --ink:      #0F1014;
  --ink-2:    #1F1F25;
  --ink-3:    #4A4A52;
  --ink-4:    #8A8A92;

  /* accent */
  --ocean:    #16384E;
  --ocean-2:  #2D5A75;
  --sun:      #C8744A;

  /* line */
  --rule:     rgba(15,16,20,0.12);
  --rule-2:   rgba(15,16,20,0.06);

  /* type */
  --serif:    'Cormorant Garamond', 'EB Garamond', Georgia, serif;
  --sans:     'DM Sans', -apple-system, system-ui, sans-serif;
  --wordmark: 'Malayalam MN', 'EB Garamond', 'Adobe Garamond Pro', 'Cormorant Garamond', serif;

  /* scale */
  --t-display: clamp(56px, 11vw, 168px);
  --t-h1:      clamp(44px, 6vw, 88px);
  --t-h2:      clamp(34px, 4.2vw, 64px);
  --t-h3:      clamp(22px, 2vw, 32px);
  --t-lead:    clamp(20px, 1.6vw, 26px);
  --t-body:    19px;
  --t-small:   14px;
  --t-tiny:    12px;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--serif);
  background: var(--paper);
  color: var(--ink-2);
  font-size: var(--t-body);
  font-weight: 500;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

::selection { background: var(--ocean); color: var(--paper); }

/* ============================================================
   TYPE PRIMITIVES
   ============================================================ */

.eyebrow {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--ink-3);
}

.eyebrow.dark { color: var(--ink); }

.display {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: var(--t-display);
  line-height: 0.92;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.h1 {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: var(--t-h1);
  line-height: 1.0;
  letter-spacing: -0.015em;
  color: var(--ink);
}

.h2 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: var(--t-h2);
  line-height: 1.05;
  letter-spacing: -0.01em;
  color: var(--ink);
}

.h2.italic { font-style: italic; font-weight: 400; }

.h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: var(--t-h3);
  line-height: 1.2;
  color: var(--ink);
}

.lead {
  font-family: var(--serif);
  font-weight: 400;
  font-size: var(--t-lead);
  line-height: 1.5;
  color: var(--ink-2);
}

.body {
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1.65;
  color: var(--ink-2);
}

.caps {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--ink);
}

/* ============================================================
   COMPASS ROSE — extracted from the actual hull mark
   The PNG is dark; we invert it on dark backgrounds
   ============================================================ */

.compass-mark {
  display: inline-block;
  vertical-align: middle;
  /* default state: dark (works on paper backgrounds) */
}

/* Inverted for dark contexts */
.compass-mark--light {
  filter: invert(1);
}

/* ============================================================
   NAV
   ============================================================ */

.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 78px;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 36px;
  background: rgba(250, 248, 244, 0);
  transition: background 400ms ease, backdrop-filter 400ms ease, border-color 400ms ease;
  border-bottom: 1px solid transparent;
}

.nav.scrolled {
  background: rgba(250, 248, 244, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom-color: var(--rule-2);
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--paper);
  transition: color 400ms ease;
}
.nav.scrolled .nav-brand { color: var(--ink); }

.nav-mark {
  width: 22px;
  height: 22px;
  filter: invert(1);
  transition: filter 400ms ease;
}
.nav.scrolled .nav-mark { filter: none; }

.nav-wordmark {
  font-family: var(--wordmark);
  font-weight: 600;
  font-size: 18px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-link {
  font-family: var(--sans);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.13em;
  color: var(--paper);
  text-decoration: none;
  transition: color 400ms ease, opacity 200ms ease;
  opacity: 0.85;
}
.nav.scrolled .nav-link { color: var(--ink); }
.nav-link:hover { opacity: 1; }

.nav-cta {
  font-family: var(--sans);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  padding: 12px 22px;
  border: 1px solid currentColor;
  color: var(--paper);
  text-decoration: none;
  transition: all 300ms ease;
}
.nav.scrolled .nav-cta { color: var(--ink); }
.nav-cta:hover {
  background: var(--paper);
  color: var(--ink);
  border-color: var(--paper);
}
.nav.scrolled .nav-cta:hover {
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
}

@media (max-width: 800px) {
  .nav { padding: 0 20px; height: 64px; }
  .nav-links { display: none; }
}

/* ============================================================
   MOBILE MENU — hamburger toggle + full-screen overlay
   ============================================================ */

.nav-toggle {
  display: none;
  background: transparent;
  border: 0;
  padding: 12px;
  margin-right: -12px;
  cursor: pointer;
  color: var(--paper);
  transition: color 400ms ease;
  z-index: 102;
}
.nav.scrolled .nav-toggle { color: var(--ink); }

.nav-toggle-icon {
  display: block;
  width: 22px;
  height: 14px;
  position: relative;
}
.nav-toggle-icon::before,
.nav-toggle-icon::after,
.nav-toggle-icon span {
  content: '';
  position: absolute;
  left: 0;
  width: 100%;
  height: 1px;
  background: currentColor;
  transition: transform 320ms ease, opacity 200ms ease, top 320ms ease;
}
.nav-toggle-icon::before { top: 0; }
.nav-toggle-icon span    { top: 50%; }
.nav-toggle-icon::after  { top: 100%; }

/* Open state: lines form an X */
.menu-open .nav-toggle-icon::before {
  top: 50%;
  transform: rotate(45deg);
}
.menu-open .nav-toggle-icon span {
  opacity: 0;
}
.menu-open .nav-toggle-icon::after {
  top: 50%;
  transform: rotate(-45deg);
}

/* Overlay menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--paper);
  z-index: 101;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 36px;
  opacity: 0;
  visibility: hidden;
  transform: scale(1.04);
  transition: opacity 400ms ease, transform 500ms cubic-bezier(0.2, 0.8, 0.2, 1), visibility 0s 400ms;
}

.menu-open .mobile-menu {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
  transition: opacity 400ms ease, transform 500ms cubic-bezier(0.2, 0.8, 0.2, 1), visibility 0s;
}

.mobile-menu-mark {
  width: 56px;
  height: 56px;
  margin-bottom: 16px;
}

.mobile-menu a {
  font-family: var(--serif);
  font-style: italic;
  font-size: 32px;
  color: var(--ink);
  text-decoration: none;
  letter-spacing: -0.01em;
}

.mobile-menu-cta {
  margin-top: 24px;
  font-family: var(--sans) !important;
  font-style: normal !important;
  font-size: 12px !important;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  padding: 16px 32px;
  border: 1px solid var(--ink);
  color: var(--ink);
}

.mobile-menu-meta {
  position: absolute;
  bottom: 40px;
  left: 0;
  right: 0;
  text-align: center;
  font-family: var(--sans);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--ink-3);
}

@media (max-width: 800px) {
  .nav-toggle { display: block; }
  .nav-cta { display: none; }
}

/* Lock body scroll when menu open */
body.menu-open { overflow: hidden; }

/* ============================================================
   HERO
   ============================================================ */

.hero {
  position: relative;
  height: 100vh;
  min-height: 720px;
  width: 100%;
  overflow: hidden;
  background: var(--ink);
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
}

.hero-image-wrapper {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-gradient {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(15,16,20,0.42) 0%, rgba(15,16,20,0.04) 30%, rgba(15,16,20,0.10) 70%, rgba(15,16,20,0.55) 100%);
  z-index: 1;
}

.hero-content {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0 56px 64px;
}

.hero-eyebrow {
  font-family: var(--sans);
  font-size: 26px;
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--paper);
  opacity: 0.95;
  margin-bottom: 44px;
  display: flex;
  align-items: center;
  gap: 24px;
}

.hero-eyebrow::before,
.hero-eyebrow::after {
  content: '';
  display: inline-block;
  width: 60px;
  height: 1px;
  background: rgba(250,248,244,0.6);
}

.hero-title {
  font-family: var(--wordmark);
  font-style: normal;
  font-weight: 600;
  font-size: clamp(52px, 9.5vw, 140px);
  line-height: 0.95;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--paper);
  max-width: 16ch;
  margin-bottom: 36px;
}

.hero-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
  border-top: 1px solid rgba(250,248,244,0.25);
  padding-top: 28px;
  max-width: 880px;
}

.hero-meta-item {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--paper);
  opacity: 0.92;
}

.hero-scroll {
  position: absolute;
  right: 56px;
  bottom: 56px;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  font-family: var(--sans);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--paper);
  opacity: 0.7;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}

.hero-scroll::after {
  content: '';
  width: 1px;
  height: 56px;
  background: var(--paper);
  animation: scroll-pulse 2.4s ease-in-out infinite;
  transform-origin: top;
}

@keyframes scroll-pulse {
  0%, 100% { transform: scaleY(1); opacity: 0.4; }
  50% { transform: scaleY(0.4); opacity: 1; }
}

@media (max-width: 800px) {
  .hero-content { padding: 0 24px 40px; }
  .hero-title { font-size: clamp(44px, 12vw, 80px); letter-spacing: 0.03em; }
  .hero-eyebrow { font-size: 16px; letter-spacing: 0.14em; gap: 14px; margin-bottom: 32px; }
  .hero-eyebrow::before, .hero-eyebrow::after { width: 28px; }
  .hero-scroll { display: none; }
}

/* ============================================================
   INTRO / EDITORIAL STATEMENT
   ============================================================ */

.intro {
  padding: 160px 56px 140px;
  position: relative;
  background: var(--paper);
}

.intro-grid {
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 96px;
  align-items: start;
}

.intro-statement {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(32px, 3.6vw, 56px);
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--ink);
}

.intro-statement em {
  font-style: normal;
  color: var(--ocean);
}

.intro-body {
  padding-top: 12px;
}

.intro-portrait {
  width: 220px;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  margin-bottom: 36px;
  background: var(--ivory);
}

.intro-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}

.intro-body .eyebrow {
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.intro-body .eyebrow::before {
  content: '';
  display: inline-block;
  width: 32px;
  height: 1px;
  background: var(--ink-3);
}

.intro-body p {
  font-family: var(--serif);
  font-size: 19px;
  font-weight: 500;
  line-height: 1.75;
  color: var(--ink-2);
  margin-bottom: 22px;
}

.intro-signature {
  margin-top: 36px;
  font-family: var(--serif);
  font-style: italic;
  font-size: 18px;
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: 14px;
}

@media (max-width: 1000px) {
  .intro { padding: 96px 24px 88px; }
  .intro-grid { grid-template-columns: 1fr; gap: 48px; }
}

/* ============================================================
   DETAIL / ON HOSPITALITY — editorial intermezzo
   ============================================================ */

.detail {
  background: var(--paper);
  padding: 0 0 140px;
  position: relative;
}

.detail-grid {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 56px;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 80px;
  align-items: center;
}

.detail-image-wrap {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.detail-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.detail-content .eyebrow {
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.detail-content .eyebrow::before {
  content: '';
  display: inline-block;
  width: 32px; height: 1px;
  background: var(--ink-3);
}

.detail-statement {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(28px, 3vw, 44px);
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin-bottom: 28px;
}

.detail-content > p:not(.detail-statement) {
  font-family: var(--serif);
  font-size: 18px;
  line-height: 1.7;
  color: var(--ink-2);
}

@media (max-width: 1000px) {
  .detail { padding: 0 0 80px; }
  .detail-grid { grid-template-columns: 1fr; gap: 40px; padding: 0 24px; }
}

/* ============================================================
   EXPERIENCES — three magazine cards
   ============================================================ */

.experiences {
  background: var(--bone);
  padding: 120px 56px 140px;
  position: relative;
}

.section-header {
  max-width: 1320px;
  margin: 0 auto 80px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 48px;
  border-bottom: 1px solid var(--rule);
  padding-bottom: 28px;
}

.section-header-left .eyebrow {
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.section-header-left .eyebrow::before {
  content: '';
  display: inline-block;
  width: 32px; height: 1px;
  background: var(--ink-3);
}

.section-header-title {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(36px, 5vw, 72px);
  line-height: 1;
  letter-spacing: -0.01em;
  color: var(--ink);
}

.section-header-right {
  font-family: var(--serif);
  font-size: 18px;
  line-height: 1.55;
  color: var(--ink-2);
  max-width: 360px;
  padding-bottom: 10px;
}

.exp-grid {
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

@media (max-width: 1100px) {
  .exp-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
}
@media (max-width: 600px) {
  .exp-grid { grid-template-columns: 1fr; gap: 48px; }
}

.exp-card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  text-align: left;
  color: inherit;
  cursor: pointer;
  background: transparent;
  border: 0;
  padding: 0;
  font: inherit;
  transition: transform 600ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.exp-card:hover { transform: translateY(-6px); }

.exp-image-wrap {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  margin-bottom: 24px;
  background: var(--ivory);
}

.exp-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1200ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.exp-card:hover .exp-image { transform: scale(1.04); }

.exp-number {
  position: absolute;
  top: 16px;
  left: 16px;
  font-family: var(--sans);
  font-size: 13px;
  letter-spacing: 0.3em;
  color: var(--paper);
  z-index: 2;
  mix-blend-mode: difference;
}

.exp-duration {
  position: absolute;
  bottom: 16px;
  right: 16px;
  font-family: var(--sans);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--paper);
  background: rgba(15,16,20,0.55);
  padding: 8px 12px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.exp-title {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(24px, 1.8vw, 30px);
  line-height: 1.05;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin-bottom: 12px;
}

.exp-desc {
  font-family: var(--serif);
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink-2);
  margin-bottom: 20px;
}

.exp-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--rule);
  padding-top: 16px;
  margin-top: auto;
}

.exp-price {
  font-family: var(--serif);
  font-size: 18px;
  color: var(--ink);
}

.exp-price em {
  font-family: var(--sans);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-style: normal;
  color: var(--ink-3);
  margin-right: 6px;
}

.exp-link {
  font-family: var(--sans);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: 8px;
}

.exp-link::after {
  content: '→';
  font-size: 14px;
  transition: transform 300ms ease;
}

.exp-card:hover .exp-link::after { transform: translateX(4px); }

@media (max-width: 1000px) {
  .experiences { padding: 80px 24px 96px; }
  .section-header { flex-direction: column; align-items: flex-start; margin-bottom: 48px; }
  .exp-image-wrap { aspect-ratio: 3 / 4; }
}

/* ============================================================
   BOOKING MODAL — overlay that hosts the Bokun widget
   ============================================================ */

.booking-modal {
  position: fixed;
  inset: 0;
  background: rgba(15, 16, 20, 0.78);
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 56px 24px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 360ms ease, visibility 0s 360ms;
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}

.booking-modal.open {
  opacity: 1;
  visibility: visible;
  transition: opacity 360ms ease, visibility 0s;
}

.booking-modal-panel {
  position: relative;
  width: 100%;
  max-width: 920px;
  max-height: 100%;
  background: var(--paper);
  display: flex;
  flex-direction: column;
  transform: translateY(24px);
  transition: transform 480ms cubic-bezier(0.2, 0.8, 0.2, 1);
}
.booking-modal.open .booking-modal-panel {
  transform: translateY(0);
}

.booking-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 32px;
  border-bottom: 1px solid var(--rule);
  flex-shrink: 0;
}

.booking-modal-eyebrow {
  font-family: var(--sans);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--ink-3);
  margin-bottom: 6px;
}

.booking-modal-title {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: 24px;
  line-height: 1.1;
  color: var(--ink);
  letter-spacing: -0.01em;
}

.booking-modal-close {
  background: transparent;
  border: 0;
  width: 36px;
  height: 36px;
  cursor: pointer;
  color: var(--ink);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 200ms ease;
}
.booking-modal-close:hover { opacity: 0.6; }
.booking-modal-close svg { width: 22px; height: 22px; }

.booking-modal-body {
  flex: 1;
  overflow-y: auto;
  padding: 24px 32px 32px;
  -webkit-overflow-scrolling: touch;
}

/* Bokun widget container — let it expand naturally */
.booking-modal-body .bokunWidget {
  width: 100%;
  min-height: 400px;
}

@media (max-width: 700px) {
  .booking-modal { padding: 0; align-items: stretch; }
  .booking-modal-panel { max-width: 100%; max-height: 100%; height: 100%; }
  .booking-modal-header { padding: 16px 20px; }
  .booking-modal-title { font-size: 20px; }
  .booking-modal-body { padding: 20px; }
}

/* Lock body scroll when modal open */
body.modal-open { overflow: hidden; }

.break {
  position: relative;
  height: 90vh;
  min-height: 600px;
  overflow: hidden;
  background: var(--ocean);
}

.break-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 50%;
}

.break-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15,16,20,0.10) 0%, rgba(15,16,20,0.30) 100%);
}

.break-content {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 32px;
  z-index: 2;
}

.break-quote {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(28px, 4vw, 56px);
  line-height: 1.25;
  letter-spacing: -0.01em;
  color: var(--paper);
  text-align: center;
  max-width: 24ch;
}

.break-attribution {
  font-family: var(--sans);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--paper);
  opacity: 0.8;
  margin-top: 28px;
  display: block;
  text-align: center;
}

/* ============================================================
   THE CROSSING — Atlantic chart
   ============================================================ */

.crossing {
  background: var(--paper);
  padding: 160px 56px 140px;
  position: relative;
  overflow: hidden;
}

.crossing-header {
  max-width: 880px;
  margin: 0 auto 72px;
  text-align: center;
}

.crossing-header .eyebrow {
  margin-bottom: 28px;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  justify-content: center;
}

.crossing-header .eyebrow::before,
.crossing-header .eyebrow::after {
  content: '';
  display: inline-block;
  width: 32px; height: 1px;
  background: var(--ink-3);
}

.crossing-title {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(48px, 7vw, 112px);
  line-height: 0.95;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 24px;
}

.crossing-subtitle {
  font-family: var(--sans);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--ink-3);
}

.crossing-chart {
  max-width: 1320px;
  margin: 0 auto 72px;
  padding: 32px 0;
}

.crossing-chart svg {
  width: 100%;
  height: auto;
  display: block;
}

.crossing-body {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.crossing-body p {
  font-family: var(--serif);
  font-size: 19px;
  line-height: 1.7;
  color: var(--ink-2);
}

.crossing-stats {
  margin-top: 56px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 880px;
  margin-left: auto;
  margin-right: auto;
  border-top: 1px solid var(--rule);
  padding-top: 40px;
}

.crossing-stat {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.crossing-stat-value {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(28px, 3vw, 44px);
  line-height: 1;
  color: var(--ink);
  letter-spacing: -0.01em;
}

.crossing-stat-label {
  font-family: var(--sans);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--ink-3);
}

@media (max-width: 1000px) {
  .crossing { padding: 96px 24px 88px; }
  .crossing-stats { grid-template-columns: repeat(2, 1fr); gap: 32px 16px; }
}

/* ============================================================
   THE YACHT — Bavaria C46
   ============================================================ */

.yacht {
  padding: 160px 56px;
  background: var(--paper);
}

.yacht-grid {
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 72px;
  align-items: center;
}

.yacht-content {
  padding-right: 32px;
}

.yacht-content .eyebrow {
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.yacht-content .eyebrow::before {
  content: '';
  display: inline-block;
  width: 32px; height: 1px;
  background: var(--ink-3);
}

.yacht-title {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(40px, 5vw, 80px);
  line-height: 0.95;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin-bottom: 36px;
}

.yacht-content > p {
  font-family: var(--serif);
  font-size: 18px;
  line-height: 1.7;
  color: var(--ink-2);
  margin-bottom: 24px;
}

.yacht-specs {
  margin-top: 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px 32px;
  border-top: 1px solid var(--rule);
  padding-top: 32px;
}

.yacht-spec {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.yacht-spec-label {
  font-family: var(--sans);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--ink-3);
}

.yacht-spec-value {
  font-family: var(--serif);
  font-size: 22px;
  color: var(--ink);
  letter-spacing: -0.01em;
}

.yacht-image-wrap {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
}

.yacht-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.yacht-image-tag {
  position: absolute;
  bottom: 24px;
  left: 24px;
  font-family: var(--sans);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--paper);
  background: rgba(15,16,20,0.5);
  padding: 10px 14px;
  backdrop-filter: blur(8px);
}

@media (max-width: 1000px) {
  .yacht { padding: 88px 24px; }
  .yacht-grid { grid-template-columns: 1fr; gap: 48px; }
  .yacht-content { padding-right: 0; order: 2; }
  .yacht-image-wrap { aspect-ratio: 4 / 5; order: 1; }
}

/* ============================================================
   SUNSET MOMENT — a single image with one line
   ============================================================ */

.sunset {
  position: relative;
  height: 100vh;
  min-height: 720px;
  overflow: hidden;
  background: var(--sun);
}

.sunset-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sunset-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15,16,20,0.05) 0%, rgba(15,16,20,0.45) 100%);
}

.sunset-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0 56px 80px;
  z-index: 2;
}

.sunset-eyebrow {
  font-family: var(--sans);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--paper);
  opacity: 0.9;
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.sunset-eyebrow::before {
  content: '';
  display: inline-block;
  width: 32px; height: 1px;
  background: rgba(250,248,244,0.6);
}

.sunset-line {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(40px, 6vw, 96px);
  line-height: 1;
  letter-spacing: -0.015em;
  color: var(--paper);
  max-width: 16ch;
  margin-bottom: 36px;
}

.sunset-cta {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  align-self: flex-start;
  font-family: var(--sans);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--paper);
  text-decoration: none;
  padding: 16px 24px;
  border: 1px solid var(--paper);
  transition: all 300ms ease;
}

.sunset-cta:hover {
  background: var(--paper);
  color: var(--ink);
}

.sunset-cta::after {
  content: '→';
  font-size: 16px;
  transition: transform 300ms ease;
}
.sunset-cta:hover::after { transform: translateX(4px); }

@media (max-width: 800px) {
  .sunset-content { padding: 0 24px 56px; }
}

/* ============================================================
   REVIEWS — minimal pulled quotes
   ============================================================ */

.reviews {
  padding: 160px 56px;
  background: var(--paper);
}

.reviews-inner {
  max-width: 1320px;
  margin: 0 auto;
}

.reviews-header {
  text-align: center;
  margin-bottom: 88px;
}

.reviews-header .eyebrow {
  margin-bottom: 16px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.reviews-stars {
  display: inline-flex;
  gap: 3px;
  color: var(--sun);
  font-size: 14px;
  letter-spacing: 0.1em;
}

.reviews-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 56px;
}

.review {
  position: relative;
}

.review-quote {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: 22px;
  line-height: 1.45;
  color: var(--ink);
  margin-bottom: 28px;
  letter-spacing: -0.005em;
}

.review-quote::before {
  content: '“';
  display: block;
  font-family: var(--serif);
  font-style: italic;
  font-size: 64px;
  line-height: 0.8;
  color: var(--ocean);
  margin-bottom: 16px;
  height: 24px;
}

.review-meta {
  font-family: var(--sans);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--ink-3);
  border-top: 1px solid var(--rule);
  padding-top: 16px;
  display: flex;
  justify-content: space-between;
}

.review-source {
  color: var(--ink);
}

@media (max-width: 1000px) {
  .reviews { padding: 88px 24px; }
  .reviews-grid { grid-template-columns: 1fr; gap: 48px; }
}

/* ============================================================
   LOCATION — Plaza Marina
   ============================================================ */

.location {
  background: var(--ivory);
  padding: 140px 56px;
  position: relative;
}

.location-grid {
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 72px;
  align-items: center;
}

.location-image-wrap {
  aspect-ratio: 5 / 4;
  overflow: hidden;
}
.location-image-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
}

.location-content .eyebrow {
  margin-bottom: 20px;
  display: flex; align-items: center; gap: 12px;
}
.location-content .eyebrow::before {
  content: ''; display: inline-block;
  width: 32px; height: 1px; background: var(--ink-3);
}

.location-title {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(36px, 4vw, 60px);
  line-height: 1;
  color: var(--ink);
  margin-bottom: 28px;
  letter-spacing: -0.01em;
}

.location-content > p {
  font-family: var(--serif);
  font-size: 18px;
  line-height: 1.7;
  color: var(--ink-2);
  margin-bottom: 32px;
}

.location-details {
  border-top: 1px solid var(--rule);
  padding-top: 24px;
  margin-top: 32px;
  display: grid;
  gap: 14px;
}

.location-detail {
  display: flex;
  gap: 24px;
  align-items: baseline;
}

.location-detail-label {
  font-family: var(--sans);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--ink-3);
  width: 100px;
  flex-shrink: 0;
}

.location-detail-value {
  font-family: var(--serif);
  font-size: 18px;
  color: var(--ink);
}

.location-detail-value a {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid var(--rule);
  transition: border-color 200ms ease;
}
.location-detail-value a:hover { border-bottom-color: var(--ink); }

@media (max-width: 1000px) {
  .location { padding: 88px 24px; }
  .location-grid { grid-template-columns: 1fr; gap: 48px; }
}

/* ============================================================
   FOOTER
   ============================================================ */

.footer {
  background: var(--ink);
  color: var(--paper);
  padding: 120px 56px 56px;
}

.footer-inner {
  max-width: 1320px;
  margin: 0 auto;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 56px;
  padding-bottom: 80px;
  border-bottom: 1px solid rgba(250,248,244,0.12);
}

.footer-brand-mark {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 28px;
}

.footer-brand-mark img,
.footer-brand-mark svg {
  width: 32px; height: 32px;
  color: var(--paper);
}

.footer-wordmark {
  font-family: var(--wordmark);
  font-weight: 600;
  font-size: 22px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--paper);
}

.footer-tagline {
  font-family: var(--serif);
  font-style: italic;
  font-size: 22px;
  line-height: 1.4;
  max-width: 380px;
  color: var(--paper);
  opacity: 0.85;
}

.footer-col-title {
  font-family: var(--sans);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--paper);
  opacity: 0.5;
  margin-bottom: 24px;
}

.footer-col ul { list-style: none; display: grid; gap: 14px; }

.footer-col li a,
.footer-col li {
  font-family: var(--serif);
  font-size: 16px;
  color: var(--paper);
  text-decoration: none;
  opacity: 0.85;
  transition: opacity 200ms ease;
}

.footer-col li a:hover { opacity: 1; }

.footer-bottom {
  padding-top: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-copyright,
.footer-credit,
.footer-legal {
  font-family: var(--sans);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--paper);
  opacity: 0.5;
}

.footer-legal {
  display: inline-flex;
  gap: 14px;
  align-items: center;
}
.footer-legal a {
  color: inherit;
  text-decoration: none;
  transition: opacity 200ms ease;
}
.footer-legal a:hover { opacity: 1; }
.footer-legal span[aria-hidden] { opacity: 0.6; }

@media (max-width: 1000px) {
  .footer { padding: 80px 24px 40px; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; padding-bottom: 56px; }
  .footer-tagline { font-size: 18px; }
}
@media (max-width: 600px) {
  .footer-top { grid-template-columns: 1fr; }
}

/* ============================================================
   REVEAL ANIMATIONS
   ============================================================ */

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 1000ms cubic-bezier(0.2, 0.8, 0.2, 1),
              transform 1000ms cubic-bezier(0.2, 0.8, 0.2, 1);
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 80ms; }
.reveal-delay-2 { transition-delay: 160ms; }
.reveal-delay-3 { transition-delay: 240ms; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; }
  .hero-scroll::after { animation: none; }
  * { transition: none !important; animation: none !important; }
}

