/* ==========================================================================
   SINAN BEY Bosphorus Cruises & Private Events
   Design system: navy + cream + gold, teal accent
   ========================================================================== */

/* ---------- Tokens ---------- */
:root {
  /* Brand */
  --navy-900: #0b2034;
  --navy-800: #0f2942;
  --navy-700: #143553;
  --navy-600: #1c4467;
  --navy-500: #285a83;

  --cream: #f8f4ec;
  --cream-2: #f1e9da;
  --ivory: #fffdf8;
  --paper: #fbf8f1;

  --gold: #c4a052;
  --gold-deep: #a9863c;
  --gold-soft: #ddc593;
  --gold-glow: rgba(196, 160, 82, 0.28);

  --teal: #1c6b62;
  --teal-deep: #134c45;

  --ink: #182a3b;
  --ink-soft: #4a5e72;
  --line: rgba(20, 43, 67, 0.12);
  --line-2: rgba(20, 43, 67, 0.07);

  --on-navy: #eef4f9;
  --on-navy-soft: rgba(238, 244, 249, 0.74);
  --on-navy-line: rgba(238, 244, 249, 0.16);

  /* Type */
  --font-display: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --font-sans: "Jost", "Helvetica Neue", Arial, sans-serif;

  /* Spacing scale (8pt) */
  --sp-1: 0.5rem;
  --sp-2: 1rem;
  --sp-3: 1.5rem;
  --sp-4: 2rem;
  --sp-5: 3rem;
  --sp-6: 4rem;
  --sp-7: 6rem;
  --sp-8: 8rem;

  --container: 1240px;
  --container-narrow: 880px;

  --radius: 4px;
  --radius-lg: 10px;

  --shadow-sm: 0 2px 10px rgba(11, 32, 52, 0.06);
  --shadow-md: 0 18px 40px -18px rgba(11, 32, 52, 0.3);
  --shadow-lg: 0 40px 80px -30px rgba(11, 32, 52, 0.45);

  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);

  --header-h: 88px;
}

/* ---------- Reset ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}
* {
  margin: 0;
}
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

body {
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img,
picture,
svg {
  display: block;
  max-width: 100%;
}
img {
  height: auto;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  font: inherit;
  cursor: pointer;
  border: none;
  background: none;
  color: inherit;
}
ul {
  list-style: none;
  padding: 0;
}
:focus-visible {
  outline: 2px solid var(--gold-deep);
  outline-offset: 3px;
  border-radius: 2px;
}

/* ---------- Typography ---------- */
h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.08;
  color: var(--navy-800);
  letter-spacing: 0.005em;
}
.display {
  font-size: clamp(2.8rem, 7vw, 5.6rem);
  font-weight: 500;
  line-height: 1.02;
}
h2.section-title,
.section-title {
  font-size: clamp(2.1rem, 4.6vw, 3.5rem);
  font-weight: 500;
}
h3 {
  font-size: clamp(1.5rem, 2.6vw, 2rem);
}
p {
  color: var(--ink-soft);
}
.lead {
  font-size: clamp(1.15rem, 1.9vw, 1.4rem);
  line-height: 1.6;
  color: var(--ink-soft);
  font-weight: 300;
}
em,
.italic {
  font-style: italic;
}

/* Eyebrow label */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-family: var(--font-sans);
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 1.1rem;
}
.eyebrow::before {
  content: "";
  width: 34px;
  height: 1px;
  background: var(--gold);
  display: inline-block;
}
.eyebrow.centered {
  justify-content: center;
}
.eyebrow.centered::after {
  content: "";
  width: 34px;
  height: 1px;
  background: var(--gold);
  display: inline-block;
}
.on-dark .eyebrow,
.eyebrow.on-dark {
  color: var(--gold-soft);
}
.on-dark h1,
.on-dark h2,
.on-dark h3,
.on-dark h4 {
  color: var(--ivory);
}
.on-dark p {
  color: var(--on-navy-soft);
}

/* ---------- Layout ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 5vw, 3rem);
}
.narrow {
  max-width: var(--container-narrow);
}
.section {
  padding-block: clamp(4.5rem, 9vw, 8.5rem);
}
.section-sm {
  padding-block: clamp(3rem, 6vw, 5rem);
}
.bg-cream {
  background: var(--cream);
}
.bg-paper {
  background: var(--paper);
}
.bg-ivory {
  background: var(--ivory);
}
.bg-cream2 {
  background: var(--cream-2);
}
.bg-navy {
  background: var(--navy-800);
  color: var(--on-navy);
}
.bg-navy-grad {
  background: linear-gradient(160deg, var(--navy-800), var(--navy-900));
  color: var(--on-navy);
}

.text-center {
  text-align: center;
}
.mx-auto {
  margin-inline: auto;
}
.measure {
  max-width: 62ch;
}
.measure.mx-auto {
  margin-inline: auto;
}
.mt-1 {
  margin-top: var(--sp-2);
}
.mt-2 {
  margin-top: var(--sp-3);
}
.mt-3 {
  margin-top: var(--sp-4);
}
.mt-4 {
  margin-top: var(--sp-5);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.95rem 1.9rem;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border-radius: var(--radius);
  position: relative;
  transition:
    transform 0.4s var(--ease),
    background-color 0.4s var(--ease),
    color 0.4s var(--ease),
    box-shadow 0.4s var(--ease),
    border-color 0.4s var(--ease);
  will-change: transform;
}
.btn:hover {
  transform: translateY(-2px);
}
.btn:active {
  transform: translateY(0);
}

.btn-gold {
  background: var(--gold);
  color: var(--navy-900);
  box-shadow: 0 12px 26px -12px var(--gold-glow);
}
.btn-gold:hover {
  background: var(--gold-deep);
  box-shadow: 0 18px 34px -12px var(--gold-glow);
}

.btn-navy {
  background: var(--navy-800);
  color: var(--ivory);
}
.btn-navy:hover {
  background: var(--navy-900);
}

.btn-outline {
  border: 1px solid var(--gold);
  color: var(--gold-deep);
  background: transparent;
}
.btn-outline:hover {
  background: var(--gold);
  color: var(--navy-900);
}

.btn-outline-light {
  border: 1px solid var(--on-navy-line);
  color: var(--ivory);
  background: transparent;
}
.btn-outline-light:hover {
  background: var(--ivory);
  color: var(--navy-900);
  border-color: var(--ivory);
}

/* Text link with animated underline */
.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-deep);
  position: relative;
}
.link-arrow svg {
  transition: transform 0.4s var(--ease);
}
.link-arrow:hover svg {
  transform: translateX(5px);
}
.on-dark .link-arrow {
  color: var(--gold-soft);
}

/* ==========================================================================
   Header / Navigation
   ========================================================================== */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  height: var(--header-h);
  display: flex;
  align-items: center;
  transition:
    background-color 0.5s var(--ease),
    box-shadow 0.5s var(--ease),
    height 0.5s var(--ease),
    border-color 0.5s var(--ease);
  border-bottom: 1px solid transparent;
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
.site-header.scrolled {
  background: rgba(251, 248, 241, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: var(--shadow-sm);
  height: 72px;
  border-bottom-color: var(--line);
}

/* Brand */
.brand {
  display: flex;
  flex-direction: column;
  line-height: 1;
  z-index: 2;
}
.brand .brand-name {
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  color: var(--ivory);
  white-space: nowrap;
  transition: color 0.5s var(--ease);
}
.brand .brand-sub {
  font-family: var(--font-sans);
  font-size: 0.58rem;
  font-weight: 500;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--gold-soft);
  margin-top: 5px;
  transition: color 0.5s var(--ease);
}
.scrolled .brand .brand-name {
  color: var(--navy-800);
}
.scrolled .brand .brand-sub {
  color: var(--gold-deep);
}

/* Nav */
.nav {
  display: flex;
  align-items: center;
  gap: clamp(1.2rem, 2.5vw, 2.4rem);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(1.2rem, 2.5vw, 2.2rem);
}
.nav-links li {
  flex: 0 0 auto;
}
.nav-links a {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  white-space: nowrap;
  color: var(--on-navy);
  position: relative;
  padding-block: 0.4rem;
  transition: color 0.4s var(--ease);
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease);
}
.nav-links a:hover::after,
.nav-links a.active::after {
  transform: scaleX(1);
}
.scrolled .nav-links a {
  color: var(--ink);
}
.nav-links a.active {
  color: var(--gold-soft);
}
.scrolled .nav-links a.active {
  color: var(--gold-deep);
}

.nav-tools {
  display: flex;
  align-items: center;
  gap: 1.1rem;
}

/* Language toggle */
.lang-toggle {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-sans);
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  border: 1px solid var(--on-navy-line);
  border-radius: 999px;
  overflow: hidden;
  color: var(--on-navy);
  transition:
    border-color 0.5s var(--ease),
    color 0.5s var(--ease);
}
.scrolled .lang-toggle {
  border-color: var(--line);
  color: var(--ink);
}
.lang-toggle button {
  padding: 0.34rem 0.7rem;
  color: inherit;
  opacity: 0.6;
  transition:
    background-color 0.3s var(--ease),
    color 0.3s var(--ease),
    opacity 0.3s var(--ease);
}
.lang-toggle button.active {
  background: var(--gold);
  color: var(--navy-900);
  opacity: 1;
}

/* Hamburger */
.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  position: relative;
  z-index: 120;
}
.nav-toggle span {
  position: absolute;
  left: 10px;
  right: 10px;
  height: 2px;
  background: var(--ivory);
  transition:
    transform 0.4s var(--ease),
    opacity 0.3s var(--ease),
    background-color 0.4s var(--ease),
    top 0.4s var(--ease);
}
.nav-toggle span:nth-child(1) {
  top: 15px;
}
.nav-toggle span:nth-child(2) {
  top: 21px;
}
.nav-toggle span:nth-child(3) {
  top: 27px;
}
.scrolled .nav-toggle span {
  background: var(--navy-800);
}
body.menu-open .nav-toggle span {
  background: var(--ivory);
}
body.menu-open .nav-toggle span:nth-child(1) {
  top: 21px;
  transform: rotate(45deg);
}
body.menu-open .nav-toggle span:nth-child(2) {
  opacity: 0;
}
body.menu-open .nav-toggle span:nth-child(3) {
  top: 21px;
  transform: rotate(-45deg);
}

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  color: var(--ivory);
}
.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.08);
  animation: kenburns 18s ease-out forwards;
}
@keyframes kenburns {
  to {
    transform: scale(1);
  }
}
.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(11, 32, 52, 0.42) 0%,
    rgba(11, 32, 52, 0.05) 30%,
    rgba(11, 32, 52, 0.18) 60%,
    rgba(11, 32, 52, 0.82) 100%
  );
}
.hero-inner {
  position: relative;
  z-index: 2;
  padding-bottom: clamp(4rem, 9vh, 8rem);
  padding-top: calc(var(--header-h) + 2rem);
}
.hero h1 {
  color: var(--ivory);
  max-width: 16ch;
}
.hero .lead {
  color: rgba(255, 255, 255, 0.86);
  max-width: 48ch;
  margin-top: 1.6rem;
  font-weight: 300;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2.4rem;
}
.hero .eyebrow {
  color: var(--gold-soft);
}

/* Scroll cue */
.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 1.8rem;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.62rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}
.scroll-cue .line {
  width: 1px;
  height: 46px;
  background: rgba(255, 255, 255, 0.4);
  position: relative;
  overflow: hidden;
}
.scroll-cue .line::after {
  content: "";
  position: absolute;
  top: -50%;
  left: 0;
  width: 100%;
  height: 50%;
  background: var(--gold);
  animation: scrollLine 2.2s var(--ease) infinite;
}
@keyframes scrollLine {
  0% {
    top: -50%;
  }
  100% {
    top: 100%;
  }
}

/* Page hero (inner pages) */
.page-hero {
  position: relative;
  min-height: 62vh;
  display: flex;
  align-items: center;
  color: var(--ivory);
  overflow: hidden;
}
.page-hero .hero-media img {
  animation-duration: 14s;
}
.page-hero-inner {
  position: relative;
  z-index: 2;
  padding-top: calc(var(--header-h) + 2rem);
  padding-bottom: 3rem;
}
.page-hero h1 {
  color: var(--ivory);
}
.page-hero .lead {
  color: rgba(255, 255, 255, 0.85);
  max-width: 52ch;
  margin-top: 1.2rem;
}
.breadcrumb {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 1.4rem;
}
.breadcrumb a {
  color: var(--gold-soft);
}

/* ==========================================================================
   Split rows (image + text)
   ========================================================================== */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: clamp(2.5rem, 6vw, 6rem);
}
.split.reverse .split-media {
  order: 2;
}
.split-media {
  position: relative;
}
.split-media .frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.split-media img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}
.split-media.wide img {
  aspect-ratio: 5 / 4;
}

/* Tours intro: show the intro photo at its natural square ratio and give it more room. */
.tours-intro-split {
  grid-template-columns: minmax(0, 1.18fr) minmax(0, 0.82fr);
  gap: clamp(2.5rem, 5vw, 5rem);
}
.tours-intro-split .split-media.wide img {
  aspect-ratio: auto;
  height: auto;
  object-fit: contain;
}
.tours-intro-split .split-media .frame img {
  transform: none;
}
.split-media .badge {
  position: absolute;
  bottom: -28px;
  right: -22px;
  background: var(--navy-800);
  color: var(--ivory);
  padding: 1.4rem 1.7rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  text-align: center;
  border: 1px solid var(--on-navy-line);
}
.split-media .badge .num {
  font-family: var(--font-display);
  font-size: 2.6rem;
  line-height: 1;
  color: var(--gold-soft);
}
.split-media .badge .lbl {
  font-size: 0.64rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--on-navy-soft);
  margin-top: 4px;
}
.split-body p + p {
  margin-top: 1.1rem;
}
.split-body .btn,
.split-body .link-arrow {
  margin-top: 2rem;
}

/* feature list */
.feature-list {
  margin-top: 1.8rem;
  display: grid;
  gap: 1rem;
}
.feature-list li {
  display: flex;
  gap: 0.9rem;
  align-items: flex-start;
  color: var(--ink);
}
.feature-list .ico {
  flex: none;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(196, 160, 82, 0.14);
  color: var(--gold-deep);
}
.feature-list .ico svg {
  width: 17px;
  height: 17px;
}
.feature-list strong {
  font-weight: 500;
}
.on-dark .feature-list li {
  color: var(--on-navy);
}
.on-dark .feature-list .ico {
  background: rgba(221, 197, 147, 0.16);
  color: var(--gold-soft);
}

/* ==========================================================================
   Cards
   ========================================================================== */
.section-head {
  max-width: 60ch;
}
.section-head.centered {
  margin-inline: auto;
  text-align: center;
}

.grid {
  display: grid;
  gap: clamp(1.4rem, 3vw, 2.2rem);
}
.grid-3 {
  grid-template-columns: repeat(3, 1fr);
}
.grid-2 {
  grid-template-columns: repeat(2, 1fr);
}
.grid-4 {
  grid-template-columns: repeat(4, 1fr);
}

/* Vessel datasheet (homepage) */
.vessel-sheet-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(18rem, 0.62fr);
  align-items: end;
  gap: clamp(1.5rem, 5vw, 5rem);
  margin-bottom: clamp(2rem, 4vw, 3.2rem);
}
.vessel-sheet-head p {
  margin: 0 0 0.5rem;
  color: var(--ink-soft);
}
.vessel-sheet {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 3rem;
  column-gap: 1.35rem;
  row-gap: 1.15rem;
}
.vessel-sheet-photo {
  position: relative;
  grid-row: 1;
  grid-column: 1;
  margin: 0;
  overflow: hidden;
  aspect-ratio: 21 / 9;
  background: var(--navy-900);
  box-shadow: var(--shadow-md);
}
.vessel-sheet-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 56%;
  transition: transform 1.1s var(--ease);
}
.vessel-sheet:hover .vessel-sheet-photo img {
  transform: scale(1.03);
}
.vessel-sheet-photo::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 62%, rgba(5, 19, 31, 0.55));
  content: "";
}
.vessel-sheet-photo figcaption {
  position: absolute;
  z-index: 1;
  bottom: clamp(0.9rem, 2vw, 1.5rem);
  left: clamp(1rem, 2.5vw, 2rem);
  color: var(--ivory);
  font-size: 0.66rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
/* Technical-drawing dimension lines */
.vessel-dim {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: var(--ink-soft);
  font-size: 0.64rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  white-space: nowrap;
}
.vessel-dim::before,
.vessel-dim::after {
  flex: 1;
  content: "";
}
.vessel-dim-length {
  grid-row: 2;
  grid-column: 1;
}
.vessel-dim-length::before,
.vessel-dim-length::after {
  height: 9px;
  background: linear-gradient(currentColor, currentColor) 0 50% / 100% 1px
    no-repeat;
}
.vessel-dim-length::before {
  border-left: 1px solid currentColor;
}
.vessel-dim-length::after {
  border-right: 1px solid currentColor;
}
.vessel-dim-beam {
  flex-direction: column;
  grid-row: 1;
  grid-column: 2;
}
.vessel-dim-beam span {
  writing-mode: vertical-rl;
}
.vessel-dim-beam::before,
.vessel-dim-beam::after {
  width: 9px;
  background: linear-gradient(currentColor, currentColor) 50% 0 / 1px 100%
    no-repeat;
}
.vessel-dim-beam::before {
  border-top: 1px solid currentColor;
}
.vessel-dim-beam::after {
  border-bottom: 1px solid currentColor;
}
.vessel-sheet-specs {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-row: 3;
  grid-column: 1 / -1;
  margin: clamp(1rem, 2.5vw, 1.8rem) 0 0;
}
.vessel-sheet-spec {
  min-width: 0;
  padding: 0.4rem clamp(1.2rem, 2.5vw, 2.2rem);
  border-left: 1px solid var(--line);
}
.vessel-sheet-spec:first-child {
  padding-left: 0;
  border-left: 0;
}
.vessel-sheet-spec dt {
  margin-bottom: 0.6rem;
  color: var(--teal);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.vessel-sheet-spec dd {
  margin: 0;
  color: var(--navy-800);
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.2vw, 1.75rem);
  font-weight: 500;
  line-height: 1.15;
}

/* Editorial vessel portrait on the tours page */
.vessel-specs-section {
  position: relative;
  overflow: hidden;
  background: var(--navy-900);
}
.vessel-specs-section::before {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 8% 12%, rgba(28, 107, 98, 0.2), transparent 34%),
    linear-gradient(135deg, transparent 55%, rgba(196, 160, 82, 0.06));
  content: "";
  pointer-events: none;
}
.vessel-specs-section .container {
  position: relative;
}
.vessel-specs-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(18rem, 0.7fr);
  align-items: end;
  gap: clamp(2rem, 7vw, 7rem);
}
.vessel-specs-intro .section-title {
  max-width: 9ch;
  margin-top: 0.55rem;
  font-size: clamp(3rem, 6vw, 5.8rem);
  line-height: 0.9;
}
.vessel-specs-intro > p {
  max-width: 46ch;
  margin: 0 0 0.35rem;
  color: var(--on-navy-soft);
}
.vessel-specs-editorial {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(27rem, 0.95fr);
  align-items: stretch;
}
.vessel-specs-photo {
  position: relative;
  min-height: 690px;
  margin: 0;
  overflow: hidden;
}
.vessel-specs-photo::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(5, 19, 31, 0.72));
  content: "";
}
.vessel-specs-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 58%;
  transition: transform 1.1s var(--ease);
}
.vessel-specs-editorial:hover .vessel-specs-photo img {
  transform: scale(1.025);
}
.vessel-specs-photo figcaption {
  position: absolute;
  z-index: 1;
  right: clamp(1.5rem, 3vw, 2.5rem);
  bottom: clamp(1.5rem, 3vw, 2.5rem);
  left: clamp(1.5rem, 3vw, 2.5rem);
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  color: var(--ivory);
}
.vessel-specs-photo figcaption strong {
  color: var(--gold-soft);
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5vw, 4.7rem);
  font-weight: 500;
  line-height: 0.8;
}
.vessel-specs-photo figcaption span {
  font-size: 0.66rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.vessel-specs-panel {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(2rem, 5vw, 4.5rem);
  background: var(--ivory);
  color: var(--navy-800);
}
.vessel-specs-signature {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: clamp(1.6rem, 3vw, 2.8rem);
}
.vessel-specs-signature strong {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3vw, 3rem);
  font-weight: 500;
  letter-spacing: 0.03em;
}
.vessel-specs-signature span {
  color: var(--gold-deep);
  font-size: 0.68rem;
  letter-spacing: 0.16em;
}
.vessel-spec-list {
  margin: 0;
  border-top: 1px solid var(--line);
}
.vessel-spec-row {
  display: grid;
  grid-template-columns: minmax(8rem, 0.7fr) minmax(0, 1fr);
  align-items: baseline;
  gap: 1.5rem;
  padding: 1.15rem 0;
  border-bottom: 1px solid var(--line);
  transition: padding 0.35s var(--ease), color 0.35s var(--ease);
}
.vessel-spec-row:hover {
  padding-right: 0.4rem;
  padding-left: 0.4rem;
  color: var(--teal-deep);
}
.vessel-spec-row dt {
  color: var(--ink-soft);
  font-size: 0.66rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.vessel-spec-row dd {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2vw, 1.55rem);
  font-weight: 500;
  text-align: right;
}

.card {
  background: var(--ivory);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--line-2);
  transition:
    transform 0.5s var(--ease),
    box-shadow 0.5s var(--ease);
  display: flex;
  flex-direction: column;
}
.card:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow-md);
}
.card-media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3 / 2.2;
}
.card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.9s var(--ease);
}
.card:hover .card-media img {
  transform: scale(1.07);
}
.card-media .tag {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: rgba(11, 32, 52, 0.78);
  color: var(--gold-soft);
  font-size: 0.64rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0.4rem 0.8rem;
  border-radius: 999px;
  backdrop-filter: blur(4px);
}
.card-body {
  padding: clamp(1.5rem, 2.5vw, 2rem);
  display: flex;
  flex-direction: column;
  flex: 1;
}
.card-body h3 {
  margin-bottom: 0.7rem;
}
.card-body p {
  font-size: 0.98rem;
}
.card-body .link-arrow {
  margin-top: auto;
  padding-top: 1.4rem;
}
.card-meta {
  display: flex;
  gap: 1.2rem;
  margin-top: 1rem;
  font-size: 0.8rem;
  color: var(--gold-deep);
  letter-spacing: 0.05em;
}
.card-meta span {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}
.card-meta svg {
  width: 15px;
  height: 15px;
}

/* ==========================================================================
   Stats band
   ========================================================================== */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}
.stat .num {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 5vw, 3.8rem);
  color: var(--gold-soft);
  line-height: 1;
}
.stat .lbl {
  font-size: 0.74rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--on-navy-soft);
  margin-top: 0.8rem;
}

/* ==========================================================================
   Testimonials
   ========================================================================== */
.quote-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.4rem, 3vw, 2rem);
}
.quote {
  background: var(--ivory);
  border: 1px solid var(--line-2);
  border-radius: var(--radius-lg);
  padding: clamp(1.8rem, 3vw, 2.4rem);
  box-shadow: var(--shadow-sm);
}
.quote .stars {
  display: flex;
  gap: 3px;
  color: var(--gold);
  margin-bottom: 1.1rem;
}
.quote .stars svg {
  width: 17px;
  height: 17px;
}
.quote blockquote {
  font-family: var(--font-display);
  font-size: 1.3rem;
  line-height: 1.45;
  color: var(--navy-800);
  font-weight: 500;
}
.quote .author {
  margin-top: 1.4rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.quote .author .av {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-soft), var(--gold-deep));
  color: var(--navy-900);
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
}
.quote .author .meta strong {
  display: block;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--ink);
}
.quote .author .meta span {
  font-size: 0.78rem;
  color: var(--ink-soft);
  letter-spacing: 0.04em;
}

/* ==========================================================================
   CTA band
   ========================================================================== */
.cta-band {
  position: relative;
  overflow: hidden;
}
.cta-band .cta-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.cta-band .cta-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cta-band .cta-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    rgba(11, 32, 52, 0.92),
    rgba(15, 41, 66, 0.78)
  );
}
.cta-band .container {
  position: relative;
  z-index: 2;
}
.cta-band h2 {
  color: var(--ivory);
}
.cta-band p {
  color: rgba(255, 255, 255, 0.8);
}

/* ==========================================================================
   Gallery
   ========================================================================== */
.gallery {
  columns: 3;
  column-gap: 1.1rem;
}
.gallery .g-item {
  break-inside: avoid;
  margin-bottom: 1.1rem;
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
}
.gallery .g-item img {
  width: 100%;
  transition: transform 0.8s var(--ease);
}
.gallery .g-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(11, 32, 52, 0.45));
  opacity: 0;
  transition: opacity 0.4s var(--ease);
}
.gallery .g-item:hover img {
  transform: scale(1.06);
}
.gallery .g-item:hover::after {
  opacity: 1;
}
.gallery .g-item .g-zoom {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  color: var(--navy-800);
  display: grid;
  place-items: center;
  opacity: 0;
  transform: translateY(8px);
  transition:
    opacity 0.4s var(--ease),
    transform 0.4s var(--ease);
  z-index: 2;
}
.gallery .g-item:hover .g-zoom {
  opacity: 1;
  transform: translateY(0);
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(7, 20, 33, 0.94);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4vw;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.4s var(--ease),
    visibility 0.4s var(--ease);
}
.lightbox.open {
  opacity: 1;
  visibility: visible;
}
.lightbox img {
  max-width: 92vw;
  max-height: 84vh;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  transform: scale(0.96);
  transition: transform 0.4s var(--ease-out);
}
.lightbox.open img {
  transform: scale(1);
}
.lightbox .lb-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  transition: background-color 0.3s var(--ease);
}
.lightbox .lb-btn:hover {
  background: rgba(255, 255, 255, 0.22);
}
.lightbox .lb-prev {
  left: 3vw;
}
.lightbox .lb-next {
  right: 3vw;
}
.lightbox .lb-close {
  top: 3vh;
  right: 3vw;
  transform: none;
}
.lightbox .lb-count {
  position: absolute;
  bottom: 3vh;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.8rem;
  letter-spacing: 0.2em;
}

/* ==========================================================================
   Forms
   ========================================================================== */
.form-card {
  background: var(--ivory);
  border-radius: var(--radius-lg);
  padding: clamp(1.8rem, 4vw, 3rem);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--line-2);
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem 1.4rem;
}
.field {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.field.full {
  grid-column: 1 / -1;
}
.field label {
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--navy-700);
}
.field label .req {
  color: var(--gold-deep);
}
.field input,
.field select,
.field textarea {
  font-family: var(--font-sans);
  font-size: 1rem;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0.85rem 1rem;
  transition:
    border-color 0.3s var(--ease),
    box-shadow 0.3s var(--ease),
    background-color 0.3s var(--ease);
  width: 100%;
  min-height: 48px;
}
.field textarea {
  resize: vertical;
  min-height: 130px;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: var(--ivory);
  box-shadow: 0 0 0 3px var(--gold-glow);
}
.field .error-msg {
  font-size: 0.78rem;
  color: #b3402e;
  display: none;
}
.field.invalid input,
.field.invalid select,
.field.invalid textarea {
  border-color: #c5553f;
}
.field.invalid .error-msg {
  display: block;
}
.form-note {
  font-size: 0.86rem;
  color: var(--ink-soft);
  margin-top: 1rem;
}
.form-success {
  display: none;
  align-items: center;
  gap: 0.8rem;
  background: rgba(28, 107, 98, 0.1);
  border: 1px solid rgba(28, 107, 98, 0.3);
  color: var(--teal-deep);
  padding: 1rem 1.2rem;
  border-radius: var(--radius);
  margin-top: 1.2rem;
  font-size: 0.95rem;
}
.form-success.show {
  display: flex;
}

/* Contact info list */
.info-list {
  display: grid;
  gap: 1.6rem;
}
.info-item {
  display: flex;
  gap: 1.1rem;
  align-items: flex-start;
}
.info-item .ico {
  flex: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--navy-800);
  color: var(--gold-soft);
  display: grid;
  place-items: center;
}
.info-item .ico svg {
  width: 20px;
  height: 20px;
}
.info-item h4 {
  font-family: var(--font-sans);
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 0.3rem;
}
.info-item p,
.info-item a {
  color: var(--navy-800);
  font-size: 1.05rem;
}
.info-item a:hover {
  color: var(--gold-deep);
}

/* ==========================================================================
   Menu / dining lists
   ========================================================================== */
.menu-block {
  background: var(--ivory);
  border: 1px solid var(--line-2);
  border-radius: var(--radius-lg);
  padding: clamp(1.8rem, 3vw, 2.6rem);
  box-shadow: var(--shadow-sm);
}
.menu-block h3 {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-bottom: 0;
}
.menu-block h3 .price {
  margin-left: auto;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  letter-spacing: 0.12em;
  color: var(--gold-deep);
}
.menu-toggle {
  width: 100%;
  margin-top: 0.45rem;
  padding: 0.7rem 0 0;
  border: 0;
  border-top: 1px solid var(--line-2);
  background: transparent;
  color: var(--ink-soft);
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}
.menu-toggle:hover,
.menu-toggle:focus-visible {
  color: var(--gold-deep);
}
.menu-toggle:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 5px;
}
.menu-label-close,
.menu-block.is-open .menu-label-open {
  display: none;
}
.menu-block.is-open .menu-label-close {
  display: inline;
}
.menu-toggle-icon {
  position: relative;
  width: 0.85rem;
  height: 0.85rem;
  flex: 0 0 auto;
}
.menu-toggle-icon::before,
.menu-toggle-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 1px;
  background: currentColor;
  transition: transform 0.3s var(--ease);
}
.menu-toggle-icon::after {
  transform: rotate(90deg);
}
.menu-block.is-open .menu-toggle-icon::after {
  transform: rotate(0);
}
.menu-content {
  display: grid;
  grid-template-rows: 0fr;
  opacity: 0;
  transition: grid-template-rows 0.45s var(--ease), opacity 0.3s ease;
}
.menu-content-inner {
  min-height: 0;
  overflow: hidden;
}
.menu-block.is-open .menu-content {
  grid-template-rows: 1fr;
  opacity: 1;
}
.menu-content-inner > :first-child {
  margin-top: 1.4rem;
}
.menu-list li {
  padding: 0.7rem 0;
  border-bottom: 1px dashed var(--line);
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}
.menu-list li:last-child {
  border-bottom: none;
}
.menu-list .name {
  color: var(--navy-800);
  font-weight: 400;
}
.menu-list .desc {
  color: var(--ink-soft);
  font-size: 0.88rem;
}
.menu-block .course {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin: 1.7rem 0 0.2rem;
}
.menu-block h3 + .course {
  margin-top: 0;
}
.menu-block .menu-list li {
  padding: 0.45rem 0;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
  background: var(--navy-900);
  color: var(--on-navy-soft);
  padding-top: clamp(4rem, 7vw, 6rem);
}
.footer-top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.3fr;
  gap: clamp(2rem, 4vw, 3.5rem);
  padding-bottom: 3.5rem;
  border-bottom: 1px solid var(--on-navy-line);
}
.footer-brand .brand-name {
  font-family: var(--font-display);
  font-size: 1.9rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  color: var(--ivory);
}
.footer-brand .brand-sub {
  font-size: 0.6rem;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--gold-soft);
  margin-top: 6px;
}
.footer-brand p {
  margin-top: 1.4rem;
  max-width: 34ch;
  font-size: 0.95rem;
}
.footer-col h4 {
  font-family: var(--font-sans);
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-soft);
  margin-bottom: 1.3rem;
}
.footer-col ul {
  display: grid;
  gap: 0.8rem;
}
.footer-col a,
.footer-col p {
  font-size: 0.95rem;
  color: var(--on-navy-soft);
  transition: color 0.3s var(--ease);
}
.footer-col a:hover {
  color: var(--gold-soft);
}
.footer-social {
  display: flex;
  gap: 0.8rem;
  margin-top: 1.6rem;
}
.footer-social a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid var(--on-navy-line);
  display: grid;
  place-items: center;
  color: var(--on-navy);
  transition:
    background-color 0.3s var(--ease),
    color 0.3s var(--ease),
    border-color 0.3s var(--ease),
    transform 0.3s var(--ease);
}
.footer-social a:hover {
  background: var(--gold);
  color: var(--navy-900);
  border-color: var(--gold);
  transform: translateY(-3px);
}
.footer-social svg {
  width: 18px;
  height: 18px;
}
.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-block: 1.8rem;
  font-size: 0.82rem;
  color: var(--on-navy-soft);
}
.footer-bottom a:hover {
  color: var(--gold-soft);
}

/* ==========================================================================
   Reveal animations
   ========================================================================== */
.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition:
    opacity 0.9s var(--ease-out),
    transform 0.9s var(--ease-out);
  will-change: opacity, transform;
}
.reveal.in {
  opacity: 1;
  transform: none;
}
.reveal.d1 {
  transition-delay: 0.1s;
}
.reveal.d2 {
  transition-delay: 0.2s;
}
.reveal.d3 {
  transition-delay: 0.3s;
}
.reveal.d4 {
  transition-delay: 0.4s;
}
.reveal-scale {
  opacity: 0;
  transform: scale(0.96);
  transition:
    opacity 0.9s var(--ease-out),
    transform 0.9s var(--ease-out);
}
.reveal-scale.in {
  opacity: 1;
  transform: none;
}

/* Divider ornament */
.ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin: 1.4rem 0;
  color: var(--gold);
}
.ornament::before,
.ornament::after {
  content: "";
  height: 1px;
  width: 60px;
  background: linear-gradient(90deg, transparent, var(--gold));
}
.ornament::after {
  background: linear-gradient(90deg, var(--gold), transparent);
}
.ornament svg {
  width: 22px;
  height: 22px;
}

/* WhatsApp float */
.wa-float {
  position: fixed;
  right: 1.4rem;
  bottom: 1.4rem;
  z-index: 90;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #1fae54;
  color: #fff;
  display: grid;
  place-items: center;
  box-shadow: 0 14px 30px -8px rgba(31, 174, 84, 0.6);
  transition: transform 0.3s var(--ease);
}
.wa-float:hover {
  transform: scale(1.08);
}
.wa-float svg {
  width: 30px;
  height: 30px;
}

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 1024px) {
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
  .vessel-sheet-head {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 1.1rem;
  }
  .vessel-sheet-photo {
    aspect-ratio: 16 / 9;
  }
  .vessel-sheet-specs {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    row-gap: 1.5rem;
  }
  .vessel-sheet-spec:nth-child(odd) {
    padding-left: 0;
    border-left: 0;
  }
  .vessel-specs-intro,
  .vessel-specs-editorial {
    grid-template-columns: 1fr;
  }
  .vessel-specs-intro {
    gap: 1.5rem;
  }
  .vessel-specs-intro .section-title {
    max-width: 12ch;
  }
  .vessel-specs-photo {
    min-height: auto;
    aspect-ratio: 16 / 10;
  }
  .footer-top {
    grid-template-columns: 1fr 1fr;
  }

  .nav-links {
    display: none;
  }
  .nav-toggle {
    display: block;
  }
  .nav-tools .lang-toggle {
    display: none;
  }

  /* Tablet overlay menu */
  .mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 110;
    background: linear-gradient(160deg, var(--navy-800), var(--navy-900));
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 2rem clamp(1.5rem, 8vw, 3rem);
    transform: translateX(100%);
    transition: transform 0.55s var(--ease);
    overflow-y: auto;
  }
  body.menu-open .mobile-menu {
    transform: translateX(0);
  }
  .mobile-menu a.m-link {
    font-family: var(--font-display);
    font-size: 2.1rem;
    color: var(--ivory);
    padding: 0.6rem 0;
    border-bottom: 1px solid var(--on-navy-line);
    display: flex;
    justify-content: space-between;
    align-items: center;
    opacity: 0;
    transform: translateY(20px);
  }
  body.menu-open .mobile-menu a.m-link {
    opacity: 1;
    transform: none;
    transition:
      opacity 0.5s var(--ease),
      transform 0.5s var(--ease);
  }
  body.menu-open .mobile-menu a.m-link:nth-child(1) {
    transition-delay: 0.12s;
  }
  body.menu-open .mobile-menu a.m-link:nth-child(2) {
    transition-delay: 0.18s;
  }
  body.menu-open .mobile-menu a.m-link:nth-child(3) {
    transition-delay: 0.24s;
  }
  body.menu-open .mobile-menu a.m-link:nth-child(4) {
    transition-delay: 0.3s;
  }
  body.menu-open .mobile-menu a.m-link:nth-child(5) {
    transition-delay: 0.36s;
  }
  body.menu-open .mobile-menu a.m-link:nth-child(6) {
    transition-delay: 0.42s;
  }
  .mobile-menu a.m-link .num {
    font-family: var(--font-sans);
    font-size: 0.8rem;
    color: var(--gold-soft);
    letter-spacing: 0.1em;
  }
  .mobile-menu .m-footer {
    margin-top: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    opacity: 0;
    transition: opacity 0.5s var(--ease) 0.5s;
  }
  body.menu-open .mobile-menu .m-footer {
    opacity: 1;
  }
  .mobile-menu .lang-toggle {
    align-self: flex-start;
    border-color: var(--on-navy-line);
    color: var(--on-navy);
  }
  .mobile-menu .m-contact {
    color: var(--on-navy-soft);
    font-size: 0.92rem;
    display: grid;
    gap: 0.5rem;
  }
  .mobile-menu .m-contact a {
    color: var(--gold-soft);
  }
}

@media (min-width: 1025px) and (max-width: 1180px) {
  .site-header .container {
    gap: 1rem;
  }
  .nav {
    gap: 1rem;
  }
  .nav-links {
    gap: 1rem;
  }
  .nav-tools {
    gap: 0.8rem;
  }
  .nav-links a {
    font-size: 0.74rem;
    letter-spacing: 0.09em;
  }
  .site-header .nav-tools > .btn {
    padding-inline: 1.35rem;
  }
}

@media (max-width: 880px) {
  :root {
    --header-h: 72px;
  }
  .nav-links {
    display: none;
  }
  .nav-toggle {
    display: block;
  }
  .nav-tools .lang-toggle {
    display: none;
  }

  /* Mobile overlay menu */
  .mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 110;
    background: linear-gradient(160deg, var(--navy-800), var(--navy-900));
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 2rem clamp(1.5rem, 8vw, 3rem);
    transform: translateX(100%);
    transition: transform 0.55s var(--ease);
    overflow-y: auto;
  }
  body.menu-open .mobile-menu {
    transform: translateX(0);
  }
  .mobile-menu a.m-link {
    font-family: var(--font-display);
    font-size: 2.1rem;
    color: var(--ivory);
    padding: 0.6rem 0;
    border-bottom: 1px solid var(--on-navy-line);
    display: flex;
    justify-content: space-between;
    align-items: center;
    opacity: 0;
    transform: translateY(20px);
  }
  body.menu-open .mobile-menu a.m-link {
    opacity: 1;
    transform: none;
    transition:
      opacity 0.5s var(--ease),
      transform 0.5s var(--ease);
  }
  body.menu-open .mobile-menu a.m-link:nth-child(1) {
    transition-delay: 0.12s;
  }
  body.menu-open .mobile-menu a.m-link:nth-child(2) {
    transition-delay: 0.18s;
  }
  body.menu-open .mobile-menu a.m-link:nth-child(3) {
    transition-delay: 0.24s;
  }
  body.menu-open .mobile-menu a.m-link:nth-child(4) {
    transition-delay: 0.3s;
  }
  body.menu-open .mobile-menu a.m-link:nth-child(5) {
    transition-delay: 0.36s;
  }
  body.menu-open .mobile-menu a.m-link:nth-child(6) {
    transition-delay: 0.42s;
  }
  .mobile-menu a.m-link .num {
    font-family: var(--font-sans);
    font-size: 0.8rem;
    color: var(--gold-soft);
    letter-spacing: 0.1em;
  }
  .mobile-menu .m-footer {
    margin-top: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    opacity: 0;
    transition: opacity 0.5s var(--ease) 0.5s;
  }
  body.menu-open .mobile-menu .m-footer {
    opacity: 1;
  }
  .mobile-menu .lang-toggle {
    align-self: flex-start;
    border-color: var(--on-navy-line);
    color: var(--on-navy);
  }
  .mobile-menu .m-contact {
    color: var(--on-navy-soft);
    font-size: 0.92rem;
    display: grid;
    gap: 0.5rem;
  }
  .mobile-menu .m-contact a {
    color: var(--gold-soft);
  }

  .split {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .split.reverse .split-media {
    order: 0;
  }
  .split-media .badge {
    right: 1rem;
    bottom: -24px;
  }
  .grid-3 {
    grid-template-columns: 1fr;
  }
  .grid-2 {
    grid-template-columns: 1fr;
  }
  .quote-grid {
    grid-template-columns: 1fr;
  }
  .stats {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem 1rem;
  }
  .gallery {
    columns: 2;
  }
  .form-grid {
    grid-template-columns: 1fr;
  }
  .footer-top {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .hero {
    min-height: 92svh;
  }
}

@media (max-width: 520px) {
  body {
    font-size: 1rem;
  }
  .site-header .nav-tools > .btn {
    display: none;
  }
  .brand .brand-name {
    font-size: 1.45rem;
    letter-spacing: 0.12em;
  }
  .brand .brand-sub {
    letter-spacing: 0.34em;
    font-size: 0.54rem;
  }
  .grid-4 {
    grid-template-columns: 1fr;
  }
  .vessel-sheet {
    grid-template-columns: minmax(0, 1fr);
  }
  .vessel-dim-beam {
    display: none;
  }
  .vessel-sheet-photo {
    aspect-ratio: 4 / 3;
  }
  .vessel-sheet-specs {
    grid-template-columns: 1fr;
    row-gap: 0;
  }
  .vessel-sheet-spec {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.85rem 0;
    border-bottom: 1px solid var(--line);
    border-left: 0;
  }
  .vessel-sheet-spec:first-child {
    border-top: 1px solid var(--line);
  }
  .vessel-sheet-spec dt {
    margin-bottom: 0;
  }
  .vessel-sheet-spec dd {
    text-align: right;
  }
  .vessel-specs-intro .section-title {
    font-size: clamp(2.7rem, 14vw, 4rem);
  }
  .vessel-specs-photo {
    aspect-ratio: 4 / 5;
  }
  .vessel-specs-photo figcaption {
    align-items: flex-end;
    flex-direction: column;
  }
  .vessel-specs-panel {
    padding: 1.6rem 1.25rem;
  }
  .vessel-specs-signature {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.35rem;
  }
  .vessel-spec-row {
    grid-template-columns: 1fr;
    gap: 0.3rem;
  }
  .vessel-spec-row dd {
    text-align: left;
  }
  .gallery {
    columns: 1;
  }
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .hero-actions .btn {
    width: 100%;
  }
  .split-media .badge {
    padding: 1.1rem 1.3rem;
  }
}

@media (min-width: 1025px) {
  .mobile-menu {
    display: none;
  }
}

/* ==========================================================================
   ELEVATION LAYER texture, depth & hand-crafted micro-interactions
   (additive; no new colors or fonts)
   ========================================================================== */

/* ---- 1. Film grain (whole page, very low opacity, no blend = cheap compositing) ---- */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.6'/%3E%3C/svg%3E");
}

/* ---- 2. Tonal depth on the flat sections (no busier, just dimensional) ---- */
.bg-cream {
  background-color: var(--cream);
  background-image:
    radial-gradient(
      130% 90% at 50% -20%,
      rgba(255, 253, 248, 0.75),
      rgba(255, 253, 248, 0) 55%
    ),
    radial-gradient(
      120% 80% at 100% 120%,
      rgba(196, 160, 82, 0.05),
      rgba(196, 160, 82, 0) 55%
    );
}
.bg-paper {
  background-color: var(--paper);
  background-image:
    radial-gradient(
      120% 80% at 0% -10%,
      rgba(255, 253, 248, 0.7),
      rgba(255, 253, 248, 0) 50%
    ),
    radial-gradient(
      140% 100% at 90% 110%,
      rgba(28, 107, 98, 0.04),
      rgba(28, 107, 98, 0) 55%
    );
}
.bg-paper,
.cta-band {
  border-top: 1px solid rgba(196, 160, 82, 0.16);
}

.bg-navy-grad {
  background:
    radial-gradient(
      100% 130% at 82% -10%,
      rgba(40, 90, 131, 0.55),
      rgba(40, 90, 131, 0) 55%
    ),
    radial-gradient(
      90% 120% at 10% 120%,
      rgba(196, 160, 82, 0.1),
      rgba(196, 160, 82, 0) 50%
    ),
    linear-gradient(158deg, var(--navy-800), var(--navy-900));
  border-top: 1px solid rgba(238, 244, 249, 0.08);
  position: relative;
}
.bg-navy,
.bg-navy-grad {
  color: var(--on-navy);
}
.cta-band .cta-media::after {
  background:
    radial-gradient(
      80% 120% at 75% 10%,
      rgba(40, 90, 131, 0.45),
      rgba(11, 32, 52, 0) 60%
    ),
    linear-gradient(120deg, rgba(11, 32, 52, 0.92), rgba(15, 41, 66, 0.78));
}

/* ---- 3. Headline clip-reveal (a wipe, not a fade) ---- */
.h-reveal {
  clip-path: inset(0 0 102% 0);
  opacity: 0.001;
  transform: translateY(14px);
  transition:
    clip-path 1.05s var(--ease-out),
    transform 1.05s var(--ease-out),
    opacity 0.9s var(--ease-out);
  will-change: clip-path, transform;
}
.h-reveal.in {
  clip-path: inset(0 0 -6% 0);
  opacity: 1;
  transform: none;
}

/* ---- 4. Button light-sweep ---- */
.btn {
  overflow: hidden;
}
.btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: -130%;
  width: 55%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(255, 255, 255, 0.38),
    transparent
  );
  transform: skewX(-22deg);
  transition: left 0.7s var(--ease);
  pointer-events: none;
}
.btn:hover::after {
  left: 150%;
}

/* ---- 5. Card gold-edge draw ---- */
.card {
  position: relative;
}
.card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-soft));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.55s var(--ease);
  z-index: 3;
}
.card:hover {
  border-color: rgba(196, 160, 82, 0.4);
}
.card:hover::before {
  transform: scaleX(1);
}

/* ---- 6. Link underline wipe ---- */
.link-arrow::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s var(--ease);
}
.link-arrow:hover::before {
  transform: scaleX(1);
}

/* ---- 7. Split-image parallax base (JS sets --py) ---- */
.split-media .frame img {
  transform: scale(1.08) translate3d(0, var(--py, 0px), 0);
  will-change: transform;
}

/* ---- 8. Gold scroll-progress line ---- */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  width: 0;
  z-index: 200;
  background: linear-gradient(
    90deg,
    var(--gold-deep),
    var(--gold),
    var(--gold-soft)
  );
  pointer-events: none;
  transition: width 0.1s linear;
}

/* ---- 9. Eyebrow line breathes on hover of its section head ---- */
.section-head:hover .eyebrow::before,
.section-head:hover .eyebrow::after {
  width: 48px;
}
.eyebrow::before,
.eyebrow::after {
  transition: width 0.5s var(--ease);
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
  .reveal,
  .reveal-scale {
    opacity: 1 !important;
    transform: none !important;
  }
  .h-reveal {
    opacity: 1 !important;
    clip-path: none !important;
    transform: none !important;
  }
  .hero-media img {
    transform: none !important;
  }
  .split-media .frame img {
    transform: scale(1.08) !important;
  }
  .scroll-progress {
    display: none;
  }
}
