/* ============================================================
   CHALKIDIKI YACHTS — design system
   Palette & rhythm inspired by contemporary yachting editorial:
   warm sand canvas, deep ocean panels, petrol accents.
   ============================================================ */

:root {
  --sand: #f3eee8;
  --sand-soft: #faf7f2;
  --sand-warm: #ecd8b3;
  --ink: #313131;
  --ink-soft: #636363;
  --petrol: #02737c;
  --petrol-deep: #13828b;
  --navy: #1d3e57;
  --navy-ink: #27313d;
  --sea: #6cbe99;
  --white: #ffffff;
  --ease-lux: cubic-bezier(0.625, 0.05, 0, 1);
  --font-display: "Commissioner", "Source Sans 3", sans-serif;
  --font-body: "Source Sans 3", sans-serif;
}

/* Fluid em scaling — 16px at 1440w, like the reference recipe */
html { font-size: calc(100vw / 90); }
@media (max-width: 991px) { html { font-size: calc(100vw / 52); } }
@media (max-width: 767px) { html { font-size: calc(100vw / 28); } }
@media (max-width: 479px) { html { font-size: calc(100vw / 24.5); } }

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

html { scrollbar-width: none; }
html::-webkit-scrollbar { display: none; }

body {
  font-family: var(--font-body);
  font-weight: 300;
  background: var(--sand);
  color: var(--ink);
  font-size: 1.125rem;
  line-height: 1.55;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

::selection { background: var(--petrol); color: var(--white); }

/* ---------- typography ---------- */
h1, h2, h3, .display {
  font-family: var(--font-display);
  font-weight: 200;
  line-height: 1.04;
  letter-spacing: -0.015em;
  white-space: pre-line;
}
h1 { font-size: 5.6rem; }
h2 { font-size: 3.6rem; }
h3 { font-size: 1.5rem; font-weight: 300; }
@media (max-width: 767px) {
  h1 { font-size: 3.2rem; }
  h2 { font-size: 2.4rem; }
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--petrol);
  margin-bottom: 1.6rem;
}
.kicker::before {
  content: "";
  width: 2.2rem; height: 1px;
  background: currentColor;
  opacity: 0.6;
}
.on-dark .kicker { color: var(--sea); }

.lead { font-size: 1.3rem; max-width: 34em; color: var(--ink-soft); }
.display-xl { font-size: 5rem; }
@media (max-width: 767px) { .display-xl { font-size: 2.7rem; } }
.on-dark { color: var(--sand); }
.on-dark .lead { color: rgba(243, 238, 232, 0.78); }

/* ---------- layout ---------- */
.container { width: min(90rem, calc(100% - 5rem)); margin-inline: auto; }
@media (max-width: 767px) { .container { width: calc(100% - 2.5rem); } }

section { position: relative; padding: 7.5rem 0; }
.section-tight { padding: 4.5rem 0; }

.panel {
  border-radius: 1.6rem;
  overflow: hidden;
  position: relative;
}
.bg-navy { background: var(--navy); }
.bg-petrol { background: var(--petrol); }
.bg-navy-ink { background: var(--navy-ink); }
.bg-soft { background: var(--sand-soft); }

/* ---------- loader ---------- */
.loader {
  position: fixed; inset: 0; z-index: 200;
  background: var(--sand);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 1.4rem;
}
.loader__mark {
  font-family: var(--font-display);
  font-weight: 200;
  font-size: 1.1rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--navy);
}
.loader__count {
  font-family: var(--font-display);
  font-weight: 200;
  font-size: 6rem;
  color: var(--petrol);
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.loader__bar {
  width: 12rem; height: 1px;
  background: rgba(49, 49, 49, 0.15);
  position: relative; overflow: hidden;
}
.loader__bar i {
  position: absolute; inset: 0;
  background: var(--petrol);
  transform-origin: left;
  transform: scaleX(0);
}

/* ---------- page transition overlay ---------- */
.transition {
  position: fixed; inset: 0; z-index: 190;
  background: var(--navy);
  transform: scaleY(0);
  transform-origin: bottom;
  pointer-events: none;
}

/* ---------- nav ---------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 1.6rem 2.5rem;
  display: flex; align-items: center; justify-content: space-between;
  transition: transform 0.6s var(--ease-lux);
  mix-blend-mode: normal;
}
.nav.is-hidden { transform: translateY(-110%); }
/* default: light text over hero imagery */
.nav .nav__logo, .nav .nav__lang, .nav .burger span { color: var(--sand); }
.nav .nav__cta { color: var(--sand); }
.nav .burger i { background: var(--sand); }
/* solid state: cream backdrop + ink text (scrolled, or pages without hero media) */
.nav.is-solid {
  background: rgba(243, 238, 232, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.nav.is-solid .nav__logo, .nav.is-solid .nav__lang, .nav.is-solid .burger span { color: var(--ink); }
.nav.is-solid .nav__cta { color: var(--ink); }
.nav.is-solid .nav__cta:hover { color: var(--white); }
.nav.is-solid .burger i { background: var(--ink); }
body.menu-open .nav { background: transparent; }
body.menu-open .nav .nav__logo, body.menu-open .nav .nav__lang,
body.menu-open .nav .burger span { color: var(--sand); }
body.menu-open .nav .burger i { background: var(--sand); }
.nav__logo {
  font-family: var(--font-display);
  font-weight: 300;
  letter-spacing: 0.3em;
  font-size: 0.95rem;
  color: var(--ink);
  white-space: nowrap;
}
@media (max-width: 991px) {
  .nav { padding: 1.2rem 1.4rem; }
  .nav__logo { letter-spacing: 0.18em; font-size: 0.85rem; }
  .nav__right { gap: 1rem; }
  .nav__cta { display: none; }
}
.nav__logo strong { font-weight: 600; color: var(--petrol); }
.nav--dark .nav__logo, .nav--dark .nav__right a, .nav--dark .burger span { color: var(--sand); }
.nav--dark .burger i { background: var(--sand); }
.nav__right { display: flex; align-items: center; gap: 1.8rem; }
.nav__lang {
  font-size: 0.8rem; font-weight: 600; letter-spacing: 0.18em;
}
.nav__cta {
  border: 1px solid currentColor;
  border-radius: 10rem;
  padding: 0.55rem 1.4rem;
  font-size: 0.8rem; font-weight: 600; letter-spacing: 0.14em;
  text-transform: uppercase;
  position: relative; overflow: hidden;
  transition: color 0.45s var(--ease-lux), border-color 0.45s var(--ease-lux);
}
.nav__cta::after {
  content: ""; position: absolute; inset: -1px;
  background: var(--petrol); border-radius: inherit;
  transform: scale(0); transition: transform 0.5s var(--ease-lux);
  z-index: -1;
}
.nav__cta:hover { color: var(--white); border-color: var(--petrol); }
.nav__cta:hover::after { transform: scale(1.05); }

.burger {
  display: flex; align-items: center; gap: 0.7rem;
  background: none; border: 0; cursor: pointer;
  font: inherit; color: var(--ink);
}
.burger span { font-size: 0.8rem; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; }
.burger .burger__lines { display: flex; flex-direction: column; gap: 0.32rem; width: 1.7rem; }
.burger i { display: block; height: 1px; background: var(--ink); transition: transform 0.45s var(--ease-lux), opacity 0.3s; }
.menu-open .burger i:nth-child(1) { transform: translateY(0.37rem) rotate(45deg); }
.menu-open .burger i:nth-child(2) { opacity: 0; }
.menu-open .burger i:nth-child(3) { transform: translateY(-0.37rem) rotate(-45deg); }

/* fullscreen menu */
.menu {
  position: fixed; inset: 0; z-index: 90;
  background: var(--navy);
  display: flex; align-items: center;
  clip-path: inset(0 0 100% 0);
  visibility: hidden;
}
.menu__inner {
  width: min(90rem, calc(100% - 5rem));
  margin-inline: auto;
  display: grid; grid-template-columns: 1.4fr 1fr;
  gap: 4rem; align-items: end;
  padding-top: 5rem;
}
.menu__list li { border-bottom: 1px solid rgba(243, 238, 232, 0.12); }
.menu__list a {
  display: flex; align-items: baseline; justify-content: space-between;
  padding: 1.15rem 0;
  color: var(--sand);
}
.menu__list a b {
  font-family: var(--font-display);
  font-weight: 200; font-size: 2.1rem; letter-spacing: 0.01em;
  transition: transform 0.5s var(--ease-lux), color 0.4s;
}
.menu__list a small { font-size: 0.85rem; color: rgba(243, 238, 232, 0.5); text-align: right; }
.menu__list a:hover b { transform: translateX(0.8rem); color: var(--sea); }
.menu__side { color: rgba(243, 238, 232, 0.6); font-size: 0.95rem; display: grid; gap: 1.2rem; padding-bottom: 1.2rem; }
.menu__side a { color: var(--sand); }
@media (max-width: 767px) {
  .menu { overflow-y: auto; align-items: flex-start; }
  .menu__inner { grid-template-columns: 1fr; gap: 2rem; padding: 6rem 0 3rem; }
  .menu__list a b { font-size: 1.5rem; }
}

/* ---------- hero ---------- */
.hero {
  min-height: 100svh;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 8rem 0 4rem;
}
.hero__media {
  position: absolute; inset: 0; overflow: hidden;
}
.hero__media img {
  width: 100%; height: 100%; object-fit: cover;
  transform: scale(1.12);
}
.hero__media::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(19, 34, 48, 0.72) 0%, rgba(19, 34, 48, 0.12) 45%, rgba(19, 34, 48, 0.25) 100%);
}
.hero .container { position: relative; z-index: 2; }
.hero h1 { color: var(--sand); }
.hero .kicker { color: var(--sand-warm); }
.hero__sub { color: rgba(243, 238, 232, 0.85); max-width: 32em; margin-top: 1.6rem; font-size: 1.2rem; }
.hero__ctas { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 2.4rem; }
.hero__scroll {
  position: absolute; right: 2.5rem; bottom: 2.5rem; z-index: 2;
  color: rgba(243, 238, 232, 0.75);
  font-size: 0.75rem; letter-spacing: 0.22em; text-transform: uppercase;
  display: flex; align-items: center; gap: 0.8rem;
}
.hero__scroll::after {
  content: ""; width: 1px; height: 3.2rem;
  background: linear-gradient(var(--sand), transparent);
  animation: drip 2.2s var(--ease-lux) infinite;
}
@keyframes drip {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}
.hero--inner { min-height: 72svh; }
@media (max-width: 991px) { .hero__scroll { display: none; } }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 0.8rem;
  border-radius: 10rem;
  padding: 0.95rem 2rem;
  font-size: 0.85rem; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  border: 1px solid transparent;
  position: relative; overflow: hidden;
  cursor: pointer;
  transition: color 0.45s var(--ease-lux), border-color 0.45s var(--ease-lux);
}
.btn::after {
  content: ""; position: absolute; inset: -1px; border-radius: inherit;
  transform: scale(0); transition: transform 0.55s var(--ease-lux);
  z-index: -1;
}
.btn--solid { background: var(--petrol); color: var(--white); }
.btn--solid::after { background: var(--navy); }
.btn--solid:hover::after { transform: scale(1.05); }
.btn--ghost { border-color: rgba(243, 238, 232, 0.5); color: var(--sand); }
.btn--ghost::after { background: var(--sand); }
.btn--ghost:hover { color: var(--navy); border-color: var(--sand); }
.btn--ghost:hover::after { transform: scale(1.05); }
.btn--ink { border-color: rgba(49, 49, 49, 0.35); color: var(--ink); background: transparent; }
.btn--ink::after { background: var(--petrol); }
.btn--ink:hover { color: var(--white); border-color: var(--petrol); }
.btn--ink:hover::after { transform: scale(1.05); }

.underline-link {
  position: relative;
  font-weight: 600; font-size: 0.9rem;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding-bottom: 0.3rem;
}
.underline-link::after {
  content: ""; position: absolute; left: 0; bottom: 0;
  width: 100%; height: 1px; background: currentColor;
  transform: scaleX(0); transform-origin: right;
  transition: transform 0.735s var(--ease-lux);
}
.underline-link:hover::after { transform: scaleX(1); transform-origin: left; }

/* ---------- scrollroom (canvas frame scrub) ---------- */
.scrollroom { height: 450vh; position: relative; background: var(--navy); padding: 0; }
@media (max-width: 767px) { .scrollroom { height: 300vh; } }
.scrollroom__sticky {
  position: sticky; top: 0; height: 100svh; overflow: hidden;
}
.scrollroom__sticky canvas { position: absolute; inset: 0; width: 100%; height: 100%; display: block; }
.scrollroom__sticky::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(to top, rgba(19, 34, 48, 0.45), rgba(19, 34, 48, 0) 40%);
}
.sr-room {
  position: absolute; inset: 0; z-index: 3;
  display: flex; flex-direction: column; align-items: center; justify-content: flex-end;
  text-align: center; padding: 0 1.5rem 16svh;
  opacity: 0; pointer-events: none;
}
.sr-room.is-on { pointer-events: auto; }
.sr-room h2 {
  color: var(--sand); font-size: 4.2rem;
  text-shadow: 0 2px 24px rgba(19, 34, 48, 0.45);
}
.sr-room p { color: rgba(243, 238, 232, 0.85); max-width: 30em; margin-top: 1.2rem; font-size: 1.15rem; }
.sr-room .btn { margin-top: 1.8rem; }
@media (max-width: 767px) { .sr-room h2 { font-size: 2.4rem; } }
.scrollroom__fallback { position: absolute; inset: 0; }
.scrollroom__fallback img { width: 100%; height: 100%; object-fit: cover; }

/* hero room (room 0 of the scroll experience) */
.scrollroom--hero { height: 520vh; }
@media (max-width: 767px) { .scrollroom--hero { height: 360vh; } }
.sr-room--hero {
  align-items: flex-start; text-align: left;
  justify-content: flex-end;
  padding: 0 2.5rem 9svh;
}
.sr-room--hero h1 { color: var(--sand); text-shadow: 0 2px 24px rgba(19,34,48,.45); }
.sr-room--hero .kicker { color: var(--sand-warm); }
.sr-room--hero p { text-align: left; margin-left: 0; font-size: 1.2rem; max-width: 32em; }
.sr-room--hero .hero__ctas { margin-top: 2rem; }
@media (max-width: 991px) {
  .sr-room--hero .kicker { display: none; }
  .sr-room--hero p { font-size: 1rem; }
  .sr-room--hero h1 { font-size: 2.9rem; }
}
.hero__scroll--room { z-index: 4; }

/* ---------- lifestyle wheel (rotating image circle) ---------- */
.wheel-section { height: 260vh; position: relative; padding: 0; }
.wheel-sticky {
  position: sticky; top: 0; height: 100svh; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.wheel-center { text-align: center; max-width: 34rem; position: relative; z-index: 2; }
.wheel-center .kicker { justify-content: center; }
.wheel {
  position: absolute; left: 50%; top: 50%;
  width: 0; height: 0; z-index: 1;
}
.wheel__item {
  position: absolute; left: 0; top: 0;
  width: 16rem; aspect-ratio: 4 / 3;
  margin: -6rem 0 0 -8rem; /* center the card on the wheel origin */
  border-radius: 1rem; overflow: hidden;
  box-shadow: 0 20px 60px rgba(19, 34, 48, 0.18);
}
.wheel__item img { width: 100%; height: 100%; object-fit: cover; }
@media (max-width: 767px) {
  .wheel-section { height: 200vh; }
  .wheel__item { width: 9.5rem; margin: -3.6rem 0 0 -4.75rem; }
}

/* footer sea video */
.footer { position: relative; overflow: hidden; }
.footer__sea { position: absolute; inset: 0; z-index: 0; }
.footer__sea video { width: 100%; height: 100%; object-fit: cover; opacity: 0.35; }
.footer__sea::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(39, 49, 61, 0.92), rgba(39, 49, 61, 0.55));
}
.footer .container { position: relative; z-index: 1; }

/* ---------- home story panels (pinned, tilt away) ---------- */
.chapters { padding: 7.5rem 0; }
.chapters .container { perspective: 60rem; }
.chapter {
  min-height: 88svh;
  border-radius: 1.6rem;
  overflow: hidden;
  display: grid; grid-template-columns: 1fr 1fr;
  margin-bottom: 2.5rem;
  position: sticky;
  top: 5svh;
}
.chapter__text {
  padding: 4.5rem;
  display: flex; flex-direction: column; justify-content: center; gap: 1.4rem;
  align-items: flex-start;
}
.chapter__text p { max-width: 30em; }
.chapter__media { position: relative; overflow: hidden; min-height: 24rem; }
.chapter__media img { position: absolute; inset: 0; width: 100%; height: 110%; object-fit: cover; }
@media (max-width: 767px) {
  .chapter { grid-template-columns: 1fr; min-height: 0; }
  .chapter__text { padding: 2.4rem 1.8rem; }
}

/* ---------- zone chapters (yacht page) ---------- */
.zone {
  min-height: 100svh;
  display: grid; grid-template-columns: 1fr 1fr; gap: 4rem;
  align-items: center;
  padding: 5rem 0;
}
.zone:nth-child(even) .zone__media { order: -1; }
.zone__media { border-radius: 1.6rem; overflow: hidden; aspect-ratio: 4 / 4.6; position: relative; }
.zone__media img { position: absolute; inset: 0; width: 100%; height: 112%; object-fit: cover; }
.zone__index {
  font-family: var(--font-display); font-weight: 200;
  font-size: 0.95rem; color: var(--petrol);
  display: block; margin-bottom: 1rem;
}
.zone__text p { max-width: 28em; color: var(--ink-soft); margin-top: 1.4rem; }
@media (max-width: 767px) {
  .zone { grid-template-columns: 1fr; gap: 1.8rem; min-height: 0; }
  .zone:nth-child(even) .zone__media { order: 0; }
  .zone__media { aspect-ratio: 4 / 3; }
}

/* ---------- detail pairs ---------- */
.details-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem; margin-top: 3rem; }
.detail-card { border-radius: 1.2rem; overflow: hidden; background: var(--sand-soft); }
.detail-card figure { aspect-ratio: 16 / 10; overflow: hidden; }
.detail-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.1s var(--ease-lux); }
.detail-card:hover img { transform: scale(1.05); }
.detail-card figcaption { padding: 1.6rem 1.8rem 1.9rem; }
.detail-card b { display: block; font-weight: 600; font-size: 1rem; margin-bottom: 0.35rem; }
.detail-card p { color: var(--ink-soft); font-size: 0.98rem; }
@media (max-width: 767px) { .details-grid { grid-template-columns: 1fr; } }

/* ---------- specs ---------- */
.specs { display: grid; grid-template-columns: 1fr 1.2fr; gap: 4rem; align-items: start; }
.specs__list { border-top: 1px solid rgba(243, 238, 232, 0.18); }
.specs__list li {
  display: flex; justify-content: space-between; gap: 2rem;
  padding: 0.95rem 0;
  border-bottom: 1px solid rgba(243, 238, 232, 0.18);
  font-size: 1rem;
}
.specs__list li span:first-child { color: rgba(243, 238, 232, 0.6); }
.specs__list li span:last-child { font-weight: 600; text-align: right; }
.specs__intro { position: sticky; top: 7rem; display: grid; gap: 1.6rem; justify-items: start; }
.specs__ctas { display: flex; flex-wrap: wrap; gap: 1rem; }
@media (max-width: 767px) { .specs { grid-template-columns: 1fr; gap: 2rem; } .specs__intro { position: static; } }

/* ---------- journey stepper ---------- */
.journey { counter-reset: step; display: grid; gap: 0; margin-top: 3rem; border-top: 1px solid rgba(49, 49, 49, 0.14); }
.journey li {
  counter-increment: step;
  display: grid; grid-template-columns: 5rem 1fr 2fr; gap: 2rem;
  padding: 1.7rem 0;
  border-bottom: 1px solid rgba(49, 49, 49, 0.14);
  align-items: baseline;
}
.journey li::before {
  content: counter(step, decimal-leading-zero);
  font-family: var(--font-display); font-weight: 200;
  font-size: 1.6rem; color: var(--petrol);
}
.journey b { font-weight: 600; font-size: 1.15rem; }
.journey p { color: var(--ink-soft); }
@media (max-width: 767px) {
  .journey li { grid-template-columns: 3rem 1fr; }
  .journey p { grid-column: 2; }
}

/* ---------- stats ---------- */
.stats { display: flex; flex-wrap: wrap; gap: 4rem; margin: 3rem 0; }
.stat b {
  font-family: var(--font-display); font-weight: 200;
  font-size: 4.4rem; line-height: 1; color: var(--petrol); display: block;
}
.stat span { color: var(--ink-soft); }

/* ---------- chips ---------- */
.chips { display: flex; flex-wrap: wrap; gap: 0.7rem; margin-top: 1.6rem; }
.chip {
  border: 1px solid rgba(49, 49, 49, 0.25);
  border-radius: 10rem;
  padding: 0.45rem 1.1rem;
  font-size: 0.82rem; font-weight: 600; letter-spacing: 0.05em;
}
.on-dark .chip { border-color: rgba(243, 238, 232, 0.35); }

/* ---------- compare table ---------- */
.compare { width: 100%; border-collapse: collapse; margin-top: 3rem; }
.compare th, .compare td {
  padding: 1.1rem 1.4rem; text-align: left;
  border-bottom: 1px solid rgba(49, 49, 49, 0.14);
  font-size: 1rem; vertical-align: top;
}
.compare thead th {
  font-family: var(--font-display); font-weight: 300; font-size: 1.4rem;
  color: var(--petrol); border-bottom: 1px solid rgba(49, 49, 49, 0.4);
}
.compare tbody th { font-weight: 600; color: var(--ink-soft); width: 22%; }
.compare-wrap { overflow-x: auto; }
.compare { min-width: 40rem; }

/* ---------- fleet cards ---------- */
.fleet-card {
  display: grid; grid-template-columns: 1.15fr 1fr;
  border-radius: 1.6rem; overflow: hidden;
  background: var(--sand-soft);
  margin-bottom: 2.5rem;
}
.fleet-card__media { position: relative; min-height: 26rem; overflow: hidden; }
.fleet-card__media img { position: absolute; inset: 0; width: 100%; height: 110%; object-fit: cover; }
.fleet-card__body { padding: 3.5rem; display: flex; flex-direction: column; gap: 1.3rem; align-items: flex-start; }
.fleet-card__type { color: var(--petrol); font-weight: 600; font-size: 0.85rem; letter-spacing: 0.16em; text-transform: uppercase; }
.fleet-card__specs { display: grid; grid-template-columns: 1fr 1fr; gap: 0.7rem 2rem; width: 100%; margin-top: 0.4rem; }
.fleet-card__specs div { display: flex; justify-content: space-between; border-bottom: 1px solid rgba(49,49,49,0.12); padding-bottom: 0.5rem; font-size: 0.95rem; }
.fleet-card__specs span:last-child { font-weight: 600; }
@media (max-width: 767px) {
  .fleet-card { grid-template-columns: 1fr; }
  .fleet-card__body { padding: 2rem 1.6rem; }
  .fleet-card__media { min-height: 16rem; }
}

/* ---------- destinations map ---------- */
.map-wrap {
  display: grid; grid-template-columns: 1.4fr 1fr; gap: 3rem;
  align-items: stretch;
}
.map-panel {
  border-radius: 1.6rem;
  background: var(--navy);
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
}
.map-svg { width: 100%; height: auto; display: block; }
.map-pin { cursor: pointer; }
.map-pin circle.dot { fill: var(--sand-warm); transition: fill 0.3s, r 0.3s; }
.map-pin circle.halo { fill: none; stroke: var(--sand-warm); stroke-width: 1; opacity: 0.55; }
.map-pin.is-active circle.dot { fill: var(--sea); }
.map-pin text {
  fill: rgba(243, 238, 232, 0.85); font-size: 3.2px;
  font-family: var(--font-body); letter-spacing: 0.08em;
}
.map-hint { color: rgba(243,238,232,0.5); font-size: 0.8rem; letter-spacing: 0.18em; text-transform: uppercase; position: absolute; bottom: 1.6rem; left: 2.5rem; }
.spot-card { border-radius: 1.6rem; overflow: hidden; background: var(--sand-soft); display: flex; flex-direction: column; }
.spot-card figure { aspect-ratio: 16 / 11; overflow: hidden; }
.spot-card img { width: 100%; height: 100%; object-fit: cover; }
.spot-card div { padding: 1.8rem 2rem 2.2rem; }
.spot-card h3 { margin-bottom: 0.6rem; font-weight: 300; font-size: 1.6rem; }
.spot-card p { color: var(--ink-soft); font-size: 1rem; }
@media (max-width: 767px) { .map-wrap { grid-template-columns: 1fr; } }

/* pulse animation for pins */
@keyframes pinPulse { 0% { r: 1.5; opacity: 0.6; } 100% { r: 6; opacity: 0; } }
.map-pin circle.halo { animation: pinPulse 2.4s ease-out infinite; }

/* ---------- team ---------- */
.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.8rem; margin-top: 3rem; }
.team-card figure { border-radius: 1.2rem; overflow: hidden; aspect-ratio: 3 / 3.8; }
.team-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s var(--ease-lux); }
.team-card:hover img { transform: scale(1.06); }
.team-card b { display: block; margin-top: 1rem; font-weight: 600; }
.team-card span { color: var(--ink-soft); font-size: 0.92rem; }
@media (max-width: 767px) { .team-grid { grid-template-columns: repeat(2, 1fr); } }

/* ---------- usps (about) ---------- */
.usp {
  display: grid; grid-template-columns: 1fr 1fr; gap: 4rem;
  align-items: center; padding: 4rem 0;
  border-top: 1px solid rgba(49, 49, 49, 0.12);
}
.usp:nth-child(even) figure { order: -1; }
.usp figure { border-radius: 1.4rem; overflow: hidden; aspect-ratio: 16 / 11; position: relative; }
.usp img { position: absolute; inset: 0; width: 100%; height: 112%; object-fit: cover; }
.usp p { color: var(--ink-soft); max-width: 30em; margin-top: 1.2rem; }
@media (max-width: 767px) {
  .usp { grid-template-columns: 1fr; gap: 1.6rem; }
  .usp:nth-child(even) figure { order: 0; }
}

/* ---------- faq ---------- */
.faq-nav {
  position: sticky; top: 0; z-index: 20;
  background: rgba(243, 238, 232, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(49, 49, 49, 0.12);
  overflow-x: auto;
}
.faq-nav ul { display: flex; gap: 2rem; padding: 1.1rem 2.5rem; white-space: nowrap; }
.faq-nav a { font-size: 0.82rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-soft); }
.faq-nav a:hover { color: var(--petrol); }
.faq-cat { padding: 3.5rem 0 1rem; scroll-margin-top: 6rem; }
.faq-item { border-bottom: 1px solid rgba(49, 49, 49, 0.14); }
.faq-item summary {
  cursor: pointer; list-style: none;
  display: flex; justify-content: space-between; align-items: center; gap: 2rem;
  padding: 1.5rem 0;
  font-family: var(--font-display); font-weight: 300; font-size: 1.45rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+"; font-size: 1.8rem; font-weight: 200; color: var(--petrol);
  transition: transform 0.4s var(--ease-lux); flex-shrink: 0;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p { color: var(--ink-soft); max-width: 46em; padding-bottom: 1.6rem; }

/* ---------- journal ---------- */
.posts-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2.5rem; margin-top: 3rem; }
.post-card { border-radius: 1.4rem; overflow: hidden; background: var(--sand-soft); }
.post-card figure { aspect-ratio: 16 / 9; overflow: hidden; }
.post-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.1s var(--ease-lux); }
.post-card:hover img { transform: scale(1.05); }
.post-card div { padding: 1.8rem 2rem 2.2rem; }
.post-card time { font-size: 0.8rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--petrol); font-weight: 600; }
.post-card h3 { margin: 0.7rem 0 0.6rem; font-size: 1.6rem; font-weight: 300; }
.post-card p { color: var(--ink-soft); font-size: 1rem; }
@media (max-width: 767px) { .posts-grid { grid-template-columns: 1fr; } }

/* ---------- form ---------- */
.form-section { border-radius: 1.6rem; padding: 5rem 4.5rem; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }
.cy-form { display: grid; gap: 1.4rem; }
.cy-form label { display: grid; gap: 0.5rem; font-size: 0.85rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(243,238,232,0.7); }
.cy-form input, .cy-form textarea {
  background: transparent;
  border: 0; border-bottom: 1px solid rgba(243, 238, 232, 0.35);
  padding: 0.7rem 0; color: var(--sand);
  font: inherit; font-size: 1.1rem;
  transition: border-color 0.4s;
}
.cy-form input:focus, .cy-form textarea:focus { outline: none; border-color: var(--sea); }
.cy-form textarea { min-height: 7rem; resize: vertical; }
.cy-form .privacy { display: flex; gap: 0.8rem; align-items: flex-start; font-size: 0.85rem; color: rgba(243,238,232,0.65); font-weight: 300; text-transform: none; letter-spacing: 0; }
.cy-form .privacy a { text-decoration: underline; color: var(--sand); }
.cy-form input[type="checkbox"] { width: 1.05rem; height: 1.05rem; accent-color: var(--petrol); margin-top: 0.2rem; }
.form-note { display: none; padding: 1rem 1.2rem; border-radius: 0.6rem; font-size: 0.95rem; }
.form-note.is-visible { display: block; }
.form-note--ok { background: rgba(108, 190, 153, 0.18); color: var(--sea); }
.form-note--err { background: rgba(236, 216, 179, 0.14); color: var(--sand-warm); }
@media (max-width: 767px) {
  .form-section { padding: 2.6rem 1.8rem; }
  .form-grid { grid-template-columns: 1fr; gap: 2rem; }
}

/* ---------- footer ---------- */
.footer {
  background: var(--navy-ink);
  color: var(--sand);
  padding: 6rem 0 2.5rem;
  border-radius: 1.6rem 1.6rem 0 0;
  margin-top: 5rem;
}
.footer__claim { font-family: var(--font-display); font-weight: 200; font-size: 3.4rem; margin-bottom: 3.5rem; white-space: pre-line; }
.footer__grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; padding-bottom: 3.5rem; border-bottom: 1px solid rgba(243, 238, 232, 0.14); }
.footer__col h4 { font-size: 0.8rem; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(243, 238, 232, 0.5); margin-bottom: 1.2rem; font-weight: 600; }
.footer__col li { margin-bottom: 0.55rem; }
.footer__col a { color: rgba(243, 238, 232, 0.85); font-size: 0.98rem; }
.footer__col a:hover { color: var(--sea); }
.footer__badges { display: grid; gap: 1rem; align-content: start; }
.badge {
  border: 1px solid rgba(243, 238, 232, 0.2); border-radius: 0.9rem;
  padding: 1rem 1.3rem;
}
.badge b { display: block; font-weight: 600; font-size: 0.95rem; }
.badge span { font-size: 0.82rem; color: rgba(243, 238, 232, 0.55); }
.footer__bottom { display: flex; justify-content: space-between; gap: 2rem; padding-top: 2rem; font-size: 0.85rem; color: rgba(243, 238, 232, 0.45); flex-wrap: wrap; }
@media (max-width: 767px) { .footer__grid { grid-template-columns: 1fr 1fr; } .footer__claim { font-size: 2.2rem; } }

/* ---------- reveal helpers ---------- */
[data-reveal] { opacity: 0; }
.no-js [data-reveal], .reduced-motion [data-reveal] { opacity: 1; }

/* ---------- legal ---------- */
.legal-body { max-width: 46rem; display: grid; gap: 2rem; padding-bottom: 3rem; }
.legal-body h3 { font-weight: 300; margin-bottom: 0.5rem; }
.legal-body p { color: var(--ink-soft); }

/* reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.001s !important; transition-duration: 0.001s !important; }
}
