/* ─────────────────────────────────────────────
   MARTINS TRAVEL — LUXURY CSS
   Navy #091447 · Gold #C5A060 · Off-white #F8F7F4
   Cormorant Garamond + Montserrat
   ───────────────────────────────────────────── */

/* ── VARIABLES ── */
:root {
  --navy:         #091447;
  --navy-mid:     #122068;
  --navy-light:   #1E3278;
  --navy-deep:    #040D20;
  --white:        #FFFFFF;
  --off-white:    #F8F7F4;
  --warm-grey:    #F2F0EC;
  --mid-grey:     #E8E5DF;
  --light-grey:   #D5D2CB;
  --text:         #111111;
  --text-mid:     #333333;
  --text-light:   #666666;
  --gold:         #C5A060;
  --gold-light:   #D8BA82;
  --gold-dark:    #A0823A;

  --font-serif:   'Cormorant Garamond', Georgia, serif;
  --font-sans:    'Montserrat', 'Helvetica Neue', sans-serif;

  --max-w:        1320px;
  --side-pad:     8%;
  --section-pad:  90px;
  --nav-h:        70px;

  --transition:   all 0.28s ease;
  --shadow-sm:    0 2px 12px rgba(14,27,92,0.08);
  --shadow-md:    0 8px 32px rgba(14,27,92,0.12);
  --shadow-lg:    0 20px 60px rgba(14,27,92,0.18);
}

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

html {
  scroll-behavior: smooth;
  font-size: 15px;
}

body {
  background: var(--white);
  color: var(--text);
  font-family: var(--font-sans);
  font-weight: 400;
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

ul, ol {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: var(--font-sans);
}

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4, h5 {
  font-family: var(--font-serif);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: 0.01em;
  color: var(--navy);
}

h1 { font-size: clamp(36px, 5.5vw, 70px); }
h2 { font-size: clamp(28px, 3.5vw, 48px); }
h3 { font-size: clamp(20px, 2.2vw, 30px); }
h4 { font-size: clamp(16px, 1.5vw, 22px); }

em { font-style: italic; }

p {
  font-family: var(--font-sans);
  font-weight: 400;
  color: var(--text-mid);
  line-height: 1.85;
}

.section-eyebrow {
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
  display: block;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(28px, 3.5vw, 46px);
  font-weight: 400;
  color: var(--navy);
  line-height: 1.15;
  max-width: 540px;
}

.section-divider {
  width: 48px;
  height: 1px;
  background: var(--gold);
  margin: 22px 0;
}

.section-desc {
  font-size: 14px;
  font-weight: 400;
  color: var(--text-mid);
  max-width: 560px;
  line-height: 1.85;
  margin-top: 14px;
}

.section-header { margin-bottom: 60px; }
.section-header--center { text-align: center; }
.section-header--center .section-title { max-width: 100%; }
.section-header--center .section-eyebrow { justify-content: center; }

/* ── SCROLL REVEAL ANIMATIONS ── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal--right {
  transform: translateX(40px);
}

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

/* ── NAV ── */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(232,229,223,0.6);
  padding: 0 var(--side-pad);
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.3s, box-shadow 0.3s, border-color 0.3s;
}

.nav--scrolled {
  background: rgba(255,255,255,0.98);
  box-shadow: 0 2px 20px rgba(14,27,92,0.08);
  border-bottom-color: transparent;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex-shrink: 0;
}

.nav-logo-img {
  height: 42px;
  width: auto;
}

.nav-logo-text {
  font-family: var(--font-serif);
  font-size: 17px;
  font-weight: 500;
  color: var(--navy);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

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

.nav-links a {
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 10.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text);
  transition: color 0.2s;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.3s ease;
}

.nav-links a:hover { color: var(--navy); }
.nav-links a:hover::after { width: 100%; }

.nav-cta {
  background: var(--navy) !important;
  color: var(--white) !important;
  padding: 10px 24px !important;
  letter-spacing: 0.14em !important;
  transition: background 0.22s !important;
  border-radius: 5px !important;
}

.nav-cta::after { display: none !important; }

.nav-cta:hover { background: var(--gold) !important; }

.nav-client-link {
  font-size: 9px !important;
  opacity: 0.45;
  letter-spacing: 0.16em !important;
  transition: opacity 0.3s !important;
}
.nav-client-link:hover { opacity: 1; }
.nav-client-link::after { display: none !important; }

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 4px;
  cursor: pointer;
}

.nav-hamburger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--navy);
  transition: var(--transition);
}

/* ── HERO (homepage & expedition shared) ── */
.homepage-hero,
.exp-hero {
  position: relative;
  height: 100vh;
  min-height: 620px;
  overflow: hidden;
  margin-top: var(--nav-h);
}

.homepage-hero { margin-top: 0; }

.hero-video-wrap {
  position: absolute;
  inset: 0;
}

.hero-video-wrap iframe {
  position: absolute;
  top: 50%; left: 50%;
  width: 100vw;
  height: 56.25vw; /* 16:9 */
  min-height: 100%;
  min-width: 177.78vh;
  transform: translate(-50%, -50%);
  border: none;
  z-index: 1;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
  transform: scale(1.05);
  will-change: transform;
}

.hero-bg--fallback {
  z-index: 0;
  opacity: 1;
  transition: opacity 0.8s ease;
}

.hero-bg--fallback.video-playing {
  opacity: 0;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  z-index: 1;
  will-change: transform;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(4,13,32,0.10) 0%,
    rgba(4,13,32,0.25) 40%,
    rgba(4,13,32,0.72) 75%,
    rgba(4,13,32,0.82) 100%
  );
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0 var(--side-pad) 8%;
  max-width: calc(var(--max-w) + var(--side-pad) * 2);
  animation: heroFadeIn 1.2s ease-out;
}

@keyframes heroFadeIn {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Hero scroll indicator */
.hero-scroll-indicator {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
}

.hero-scroll-indicator span {
  display: block;
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.6), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(0.6); }
  50% { opacity: 1; transform: scaleY(1); }
}

/* Homepage hero */
.hero-eyebrow {
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.80);
  margin-bottom: 20px;
  text-shadow: 0 1px 8px rgba(4,13,32,0.4);
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(38px, 5.5vw, 70px);
  font-weight: 400;
  font-style: italic;
  color: var(--white);
  line-height: 1.08;
  margin-bottom: 22px;
  max-width: 680px;
  text-shadow: 0 2px 24px rgba(4,13,32,0.55);
}

.hero-sub {
  font-size: 13px;
  font-weight: 400;
  color: rgba(255,255,255,0.92);
  letter-spacing: 0.04em;
  max-width: 480px;
  margin-bottom: 36px;
  line-height: 1.85;
  text-shadow: 0 1px 12px rgba(4,13,32,0.5);
}

.hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* ── BUTTONS ── */
.btn-primary {
  display: inline-block;
  padding: 14px 36px;
  background: var(--white);
  color: var(--navy);
  font-family: var(--font-sans);
  font-size: 10.5px;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  transition: var(--transition);
  border-radius: 5px;
}

.btn-primary:hover {
  background: var(--gold);
  color: var(--white);
}

.btn-outline-hero {
  display: inline-block;
  padding: 13px 35px;
  border: 1px solid rgba(255,255,255,0.7);
  color: var(--white);
  background: transparent;
  font-family: var(--font-sans);
  font-size: 10.5px;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transition: var(--transition);
  border-radius: 5px;
}

.btn-outline-hero:hover {
  background: rgba(255,255,255,0.12);
  border-color: var(--white);
}

.btn-outline-white {
  display: inline-block;
  padding: 13px 35px;
  border: 1px solid rgba(255,255,255,0.6);
  color: var(--white);
  background: transparent;
  font-family: var(--font-sans);
  font-size: 10.5px;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transition: var(--transition);
}

.btn-outline-white:hover {
  background: rgba(255,255,255,0.15);
  border-color: var(--white);
}

.btn-gold {
  display: inline-block;
  padding: 14px 36px;
  background: var(--gold);
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 10.5px;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transition: var(--transition);
  border-radius: 5px;
}

.btn-gold:hover { background: var(--gold-dark); }

/* ── STATS STRIP ── */
.stats-strip {
  background: var(--navy);
  padding: 36px var(--side-pad);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}

.stats-strip-stat {
  text-align: center;
  flex: 1;
  max-width: 220px;
}

.stats-strip-num {
  font-family: var(--font-serif);
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 400;
  color: var(--white);
  display: block;
  line-height: 1;
  margin-bottom: 6px;
}

.stats-strip-label {
  font-family: var(--font-sans);
  font-size: 9.5px;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}

.stats-strip-divider {
  width: 1px;
  height: 48px;
  background: rgba(255,255,255,0.15);
  flex-shrink: 0;
  margin: 0 4%;
}

/* ── PHILOSOPHY ── */
.philosophy {
  background: var(--off-white);
  padding: var(--section-pad) var(--side-pad);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.philosophy-text h2 {
  font-family: var(--font-serif);
  font-size: clamp(26px, 3vw, 42px);
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 26px;
  max-width: 460px;
}

.philosophy-text p {
  font-size: 14px;
  color: var(--text-mid);
  margin-bottom: 18px;
  line-height: 1.9;
}

.philosophy-img-wrap {
  position: relative;
}

.philosophy-img {
  width: 100%;
  height: 540px;
  object-fit: cover;
  display: block;
  border-radius: 8px;
}

.philosophy-quote {
  position: absolute;
  bottom: -32px;
  left: -32px;
  background: var(--navy);
  padding: 30px 34px;
  max-width: 310px;
}

.philosophy-quote p {
  font-family: var(--font-serif);
  font-size: 17px;
  font-style: italic;
  font-weight: 400;
  color: var(--white);
  line-height: 1.55;
  margin-bottom: 12px;
}

.philosophy-quote cite {
  display: block;
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  font-style: normal;
}

/* ── SERVICE PILLARS ── */
.pillars {
  background: var(--white);
  padding: var(--section-pad) var(--side-pad);
}

.pillars-header {
  margin-bottom: 60px;
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
}

.pillar-item {
  border-top: 1px solid var(--mid-grey);
  padding-top: 32px;
  transition: border-color 0.3s;
}

.pillar-item:hover {
  border-top-color: var(--gold);
}

.pillar-num {
  font-family: var(--font-serif);
  font-size: 52px;
  font-weight: 400;
  color: var(--mid-grey);
  line-height: 1;
  display: block;
  margin-bottom: 18px;
  letter-spacing: -0.02em;
  transition: color 0.3s;
}

.pillar-item:hover .pillar-num {
  color: var(--gold);
}

.pillar-title {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 400;
  color: var(--navy);
  line-height: 1.25;
  margin-bottom: 14px;
}

.pillar-body {
  font-size: 13.5px;
  font-weight: 400;
  color: var(--text-mid);
  line-height: 1.85;
}

/* ── JOURNEY CARDS GRID ── */
.expeditions-section {
  background: var(--off-white);
  padding: var(--section-pad) var(--side-pad) 40px;
}

.journeys-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.journey-card {
  position: relative;
  display: block;
  overflow: hidden;
  text-decoration: none;
  aspect-ratio: 3/4;
  background: var(--navy-deep);
  border-radius: 8px;
}

.journey-card-img-wrap {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.journey-card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.journey-card:hover .journey-card-img-wrap img {
  transform: scale(1.06);
}

.journey-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(14,27,92,0.05) 0%,
    rgba(14,27,92,0.25) 35%,
    rgba(14,27,92,0.82) 100%
  );
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px 26px;
  transition: background 0.3s;
}

.journey-card:hover .journey-card-overlay {
  background: linear-gradient(
    to bottom,
    rgba(14,27,92,0.1) 0%,
    rgba(14,27,92,0.35) 35%,
    rgba(14,27,92,0.90) 100%
  );
}

.journey-card-region {
  font-size: 9.5px;
  font-weight: 400;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}

.journey-card-title {
  font-family: var(--font-serif);
  font-size: clamp(20px, 2vw, 26px);
  font-weight: 400;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 12px;
}

.journey-card-meta {
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.65);
  margin-bottom: 18px;
}

.journey-card-cta {
  font-size: 9.5px;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--white);
  border-bottom: 1px solid var(--gold);
  padding-bottom: 3px;
  display: inline-block;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.3s, transform 0.3s;
}

.journey-card:hover .journey-card-cta {
  opacity: 1;
  transform: translateY(0);
}

/* ── CRUISE SECTION (was Yacht) ── */
.cruise-section {
  padding: var(--section-pad) var(--side-pad);
  background: var(--white);
}

.cruise-hero {
  position: relative;
  height: 560px;
  overflow: hidden;
  border-radius: 8px;
}

.cruise-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 8s ease;
}

.cruise-hero:hover img {
  transform: scale(1.04);
}

.cruise-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(14,27,92,0.85) 0%,
    rgba(14,27,92,0.50) 55%,
    rgba(14,27,92,0.15) 100%
  );
}

.cruise-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 60px var(--side-pad);
  max-width: 650px;
}

.cruise-title {
  font-family: var(--font-serif);
  font-size: clamp(28px, 3.5vw, 50px);
  font-weight: 400;
  color: var(--white);
  line-height: 1.1;
  margin: 14px 0 22px;
}

.cruise-desc {
  font-size: 13.5px;
  font-weight: 400;
  color: rgba(255,255,255,0.82);
  line-height: 1.85;
  margin-bottom: 28px;
  max-width: 460px;
}

.cruise-logos {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 32px;
}

.cruise-partner {
  font-family: var(--font-serif);
  font-size: 14px;
  font-weight: 400;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.08em;
  font-style: italic;
}

.cruise-partner-divider {
  width: 1px;
  height: 16px;
  background: rgba(255,255,255,0.25);
}

/* ── TESTIMONIALS ── */
.testimonials-section {
  background: var(--navy);
  padding: var(--section-pad) var(--side-pad);
}

.testimonials-section .section-eyebrow { color: var(--gold); }
.testimonials-section .section-title { color: var(--white); }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
  margin-top: 56px;
}

.testimonial-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 36px 32px;
  border-radius: 8px;
  transition: background 0.3s, border-color 0.3s, transform 0.3s;
}

.testimonial-card:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(197,160,96,0.3);
  transform: translateY(-4px);
}

.testimonial-stars {
  color: var(--gold);
  font-size: 13px;
  letter-spacing: 3px;
  margin-bottom: 20px;
}

.testimonial-quote {
  font-family: var(--font-serif);
  font-size: 17px;
  font-style: italic;
  font-weight: 400;
  color: var(--white);
  line-height: 1.6;
  margin-bottom: 24px;
}

.testimonial-author {
  display: flex;
  flex-direction: column;
  gap: 4px;
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 18px;
}

.testimonial-name {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--white);
}

.testimonial-title {
  font-size: 10.5px;
  font-weight: 400;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.06em;
}

/* ── CONTACT SECTION ── */
.contact-section {
  background: var(--warm-grey);
  padding: var(--section-pad) var(--side-pad);
}

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
  max-width: var(--max-w);
  margin: 0 auto;
}

.contact-title {
  font-family: var(--font-serif);
  font-size: clamp(28px, 3.5vw, 48px);
  color: var(--navy);
  line-height: 1.1;
  margin-bottom: 18px;
}

.contact-desc {
  font-size: 13.5px;
  font-weight: 400;
  color: var(--text-mid);
  line-height: 1.85;
  margin-bottom: 36px;
}

.contact-details { display: flex; flex-direction: column; gap: 16px; }

.contact-detail-item {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.contact-detail-label {
  font-size: 9.5px;
  font-weight: 400;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
}

.contact-detail-val {
  font-size: 13.5px;
  color: var(--navy);
  font-weight: 400;
  line-height: 1.6;
}

.contact-detail-val a {
  color: var(--navy);
  transition: color 0.2s;
}

.contact-detail-val a:hover { color: var(--gold); }

.contact-form-wrap {
  background: var(--white);
  padding: 48px 44px;
  box-shadow: var(--shadow-md);
  border-radius: 8px;
}

/* ── FORM ELEMENTS ── */
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 18px;
}

.form-group label {
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-mid);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--mid-grey);
  background: var(--off-white);
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 400;
  color: var(--text);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  -webkit-appearance: none;
  appearance: none;
  border-radius: 0;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--navy);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(14,27,92,0.06);
}

.form-group textarea {
  min-height: 110px;
  resize: vertical;
  line-height: 1.7;
}

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%234a4a4a' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}

.form-submit {
  width: 100%;
  padding: 16px 24px;
  background: var(--navy);
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 10.5px;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.25s, transform 0.2s;
  border: none;
  margin-top: 6px;
  border-radius: 5px;
}

.form-submit:hover {
  background: var(--gold);
  transform: translateY(-1px);
}

.form-note {
  font-size: 11px;
  color: var(--text-light);
  margin-top: 14px;
  line-height: 1.7;
  text-align: center;
}

/* ── FLOATING ENQUIRY BUTTON ── */
.floating-enquiry-btn {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 900;
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--gold);
  color: var(--white);
  padding: 14px 24px;
  border: none;
  cursor: pointer;
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  box-shadow: 0 8px 32px rgba(197,160,96,0.35);
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
  transition: opacity 0.4s, transform 0.4s, background 0.25s, box-shadow 0.25s;
}

.floating-enquiry-btn--visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.floating-enquiry-btn:hover {
  background: var(--navy);
  box-shadow: 0 8px 32px rgba(14,27,92,0.35);
}

.floating-enquiry-icon {
  display: flex;
  align-items: center;
}

/* ── ENQUIRY MODAL ── */
.enquiry-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(7,16,47,0.7);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s;
}

.enquiry-modal--open {
  opacity: 1;
  pointer-events: auto;
}

.enquiry-modal--open .enquiry-modal {
  transform: translateY(0);
  opacity: 1;
}

.enquiry-modal {
  background: var(--white);
  max-width: 640px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  border-radius: 10px;
  padding: 48px 44px;
  position: relative;
  box-shadow: 0 32px 80px rgba(14,27,92,0.3);
  transform: translateY(24px);
  opacity: 0;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.4s;
}

.enquiry-modal-close {
  position: absolute;
  top: 18px;
  right: 22px;
  background: none;
  border: none;
  font-size: 28px;
  color: var(--text-light);
  cursor: pointer;
  line-height: 1;
  padding: 4px;
  transition: color 0.2s;
}

.enquiry-modal-close:hover { color: var(--navy); }

.enquiry-modal-header {
  margin-bottom: 32px;
}

.enquiry-modal-title {
  font-family: var(--font-serif);
  font-size: clamp(24px, 3vw, 34px);
  color: var(--navy);
  line-height: 1.15;
  margin-bottom: 12px;
}

.enquiry-modal-desc {
  font-size: 13px;
  font-weight: 400;
  color: var(--text-mid);
  line-height: 1.8;
}

/* ── EXPEDITION HERO ── */
.exp-hero .hero-content {
  max-width: none;
  padding-bottom: 9%;
}

.hero-region {
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  display: block;
}

.exp-hero .hero-title {
  font-style: italic;
  max-width: 720px;
}

.hero-subtitle {
  font-size: 14px;
  font-weight: 400;
  color: rgba(255,255,255,0.80);
  letter-spacing: 0.03em;
  max-width: 560px;
  margin-bottom: 30px;
  line-height: 1.85;
}

.hero-stats {
  display: inline-flex;
  gap: 0;
  border: 1px solid rgba(255,255,255,0.25);
  background: rgba(14,27,92,0.35);
  backdrop-filter: blur(6px);
  margin-bottom: 28px;
}

.hero-stat {
  padding: 14px 28px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.18);
}

.hero-stat:last-child { border-right: none; }

.hero-stat-value {
  display: block;
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 400;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 4px;
}

.hero-stat-label {
  font-size: 8.5px;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.btn-request {
  display: inline-block;
  padding: 14px 36px;
  background: var(--gold);
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 10.5px;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transition: var(--transition);
}

.btn-request:hover { background: var(--gold-dark); }

/* ── EXPEDITION INTRO ── */
.exp-intro {
  background: var(--off-white);
  padding: var(--section-pad) var(--side-pad);
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 72px;
  align-items: start;
}

.intro-eyebrow {
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  display: block;
}

.intro-pull {
  font-family: var(--font-serif);
  font-size: clamp(18px, 2vw, 24px);
  font-style: italic;
  font-weight: 400;
  color: var(--navy);
  line-height: 1.5;
  margin-bottom: 28px;
}

.intro-body p {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.9;
  margin-bottom: 16px;
}

.intro-body p:last-child { margin-bottom: 0; }

.inclusions-title {
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 22px;
  display: block;
}

.inclusions-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.inclusions-list li {
  font-size: 13.5px;
  font-weight: 400;
  color: var(--text-mid);
  padding-left: 18px;
  position: relative;
  line-height: 1.65;
}

.inclusions-list li::before {
  content: '\2014';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 400;
}

/* ── ITINERARY ── */
.exp-itinerary {
  background: var(--white);
  padding: var(--section-pad) var(--side-pad);
}

.itinerary-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
  margin-bottom: 70px;
}

.itinerary-quote {
  font-family: var(--font-serif);
  font-size: 18px;
  font-style: italic;
  color: var(--text-mid);
  line-height: 1.6;
  margin-top: 40px;
}

.itinerary-days {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.day-item {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 48px;
  padding: 44px 0;
  border-top: 1px solid var(--mid-grey);
}

.day-item:last-child { border-bottom: 1px solid var(--mid-grey); }

.day-number-wrap {
  padding-top: 4px;
}

.day-num {
  font-family: var(--font-serif);
  font-size: clamp(20px, 2.2vw, 28px);
  font-weight: 400;
  color: var(--light-grey);
  display: block;
  letter-spacing: -0.01em;
  line-height: 1.1;
}

.day-location {
  font-size: 9.5px;
  font-weight: 400;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
  display: block;
}

.day-title {
  font-family: var(--font-serif);
  font-size: clamp(20px, 2vw, 26px);
  font-weight: 400;
  color: var(--navy);
  margin-bottom: 14px;
  line-height: 1.2;
}

.day-body {
  font-size: 13.5px;
  font-weight: 400;
  color: var(--text-mid);
  line-height: 1.9;
  margin-bottom: 18px;
}

.day-stay {
  display: inline-block;
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--navy);
  border: 1px solid var(--mid-grey);
  padding: 7px 16px;
}

/* ── ITINERARY IMAGE BREAK ── */
.itinerary-image-break {
  padding: 8px 0 0;
}
.itinerary-image-break img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  border-radius: 18px;
  display: block;
}
.itinerary-image-caption {
  text-align: center;
  font-size: 11px;
  letter-spacing: 0.16em;
  color: var(--text-mid);
  font-style: italic;
  margin-top: 16px;
  opacity: 0.72;
}

/* ── FEATURED PROPERTIES ── */
.exp-properties {
  background: var(--off-white);
  padding: var(--section-pad) var(--side-pad);
}

.properties-header {
  text-align: center;
  margin-bottom: 56px;
}

.properties-header .section-title {
  max-width: 100%;
}

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

.property-card {
  background: var(--white);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  border-radius: 8px;
  transition: box-shadow 0.3s, transform 0.3s;
}

.property-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.property-card-img-wrap {
  overflow: hidden;
  height: 240px;
}

.property-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.property-card:hover .property-card-img {
  transform: scale(1.04);
}

.property-card-body {
  padding: 26px 28px 30px;
}

.property-tier {
  font-size: 9.5px;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
  display: block;
}

.property-name {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 400;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 5px;
}

.property-loc {
  font-size: 11px;
  color: var(--text-light);
  letter-spacing: 0.06em;
  margin-bottom: 14px;
  display: block;
}

.property-desc {
  font-size: 13px;
  font-weight: 400;
  color: var(--text-mid);
  line-height: 1.8;
}

/* ── REQUEST FORM (expedition page) ── */
.exp-request {
  background: var(--navy);
  padding: var(--section-pad) var(--side-pad);
}

.request-inner {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 72px;
  align-items: start;
  max-width: var(--max-w);
  margin: 0 auto;
}

.request-eyebrow {
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  display: block;
}

.request-title {
  font-family: var(--font-serif);
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 400;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 20px;
}

.request-body {
  font-size: 13.5px;
  font-weight: 400;
  color: rgba(255,255,255,0.7);
  line-height: 1.85;
  margin-bottom: 36px;
}

.request-contact { display: flex; flex-direction: column; gap: 16px; }

.contact-row {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.contact-label {
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold);
}

.contact-val {
  font-size: 13px;
  color: rgba(255,255,255,0.85);
  line-height: 1.5;
}

.contact-val a {
  color: rgba(255,255,255,0.85);
  transition: color 0.2s;
}

.contact-val a:hover { color: var(--gold); }

.request-form {
  background: var(--white);
  padding: 44px 40px;
}

.form-title {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 400;
  color: var(--navy);
  margin-bottom: 28px;
  line-height: 1.2;
}

/* ── FOOTER ── */
.site-footer {
  background: var(--navy-deep);
}

.footer-top {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 48px;
  padding: 72px var(--side-pad) 60px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand-name {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 500;
  color: var(--white);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.footer-brand-desc {
  font-size: 12.5px;
  color: rgba(255,255,255,0.45);
  line-height: 1.8;
  margin-bottom: 18px;
}

.footer-contact-item {
  font-size: 12.5px;
  color: rgba(255,255,255,0.45);
  line-height: 1.7;
}

.footer-col-title {
  font-family: var(--font-sans);
  font-size: 9.5px;
  font-weight: 400;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  font-size: 12.5px;
  color: rgba(255,255,255,0.5);
  transition: color 0.2s;
  line-height: 1.5;
}

.footer-links a:hover { color: var(--white); }

.footer-contact-label {
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 2px;
}

.footer-contact-item a {
  font-size: 12.5px;
  color: rgba(255,255,255,0.5);
  transition: color 0.2s;
}

.footer-contact-item a:hover { color: var(--white); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px var(--side-pad);
}

.footer-copy {
  font-size: 11px;
  color: rgba(255,255,255,0.3);
  letter-spacing: 0.05em;
}

/* ── TABLET (max 900px) ── */
@media (max-width: 900px) {

  :root {
    --side-pad: 6%;
    --section-pad: 60px;
  }

  .nav-links {
    display: none;
    position: fixed;
    top: var(--nav-h);
    left: 0; right: 0;
    background: var(--white);
    flex-direction: column;
    gap: 0;
    padding: 20px 0;
    border-bottom: 1px solid var(--mid-grey);
    box-shadow: var(--shadow-md);
  }

  .nav-links--open { display: flex; }

  .nav-links li { width: 100%; }

  .nav-links a {
    display: block;
    padding: 14px var(--side-pad);
    font-size: 11px;
  }

  .nav-links a::after { display: none; }

  .nav-cta {
    margin: 8px var(--side-pad);
    display: inline-block;
    padding: 12px 24px !important;
  }

  .nav-hamburger { display: flex; }

  .philosophy {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .philosophy-quote {
    position: relative;
    bottom: auto; left: auto;
    max-width: 100%;
  }

  .pillars-grid { grid-template-columns: 1fr; gap: 36px; }

  .journeys-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .contact-inner { grid-template-columns: 1fr; gap: 48px; }

  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }

  /* Expedition tablet */
  .exp-intro { grid-template-columns: 1fr; gap: 40px; }
  .itinerary-header { grid-template-columns: 1fr; gap: 30px; }
  .itinerary-header-quote { display: none; }
  .properties-grid { grid-template-columns: 1fr 1fr; gap: 20px; }
  .request-inner { grid-template-columns: 1fr; gap: 48px; }
  .request-form { padding: 36px 28px; }
  .stats-strip { flex-wrap: wrap; gap: 0; justify-content: center; }
  .stats-strip-stat { min-width: 45%; }
  .cruise-hero { height: 460px; }
  .cruise-logos { flex-wrap: wrap; gap: 12px; }
}

/* ── MOBILE (max 600px) ── */
@media (max-width: 600px) {

  :root {
    --side-pad: 5%;
    --section-pad: 50px;
  }

  .homepage-hero, .exp-hero { height: 92vh; min-height: 500px; }

  .hero-stats {
    flex-direction: column;
    gap: 0;
    display: flex;
  }

  .hero-stat { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.18); }
  .hero-stat:last-child { border-bottom: none; }

  .hero-btns, .hero-actions { flex-direction: column; gap: 10px; }

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

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

  .form-row { grid-template-columns: 1fr; }

  .footer-top { grid-template-columns: 1fr; gap: 32px; }

  .day-item { grid-template-columns: 1fr; gap: 12px; }

  .day-num { font-size: 14px; }

  .stats-strip { flex-direction: column; align-items: center; }
  .stats-strip-divider { width: 60px; height: 1px; margin: 12px 0; }
  .stats-strip-stat { min-width: auto; }

  .cruise-hero { height: 380px; }
  .cruise-content { padding: 40px var(--side-pad); max-width: 100%; }

  .contact-form-wrap { padding: 32px 22px; }

  .philosophy-img { height: 320px; }

  .itinerary-header { gap: 20px; }

  .request-inner { gap: 36px; }
  .request-form { padding: 28px 20px; }

  .floating-enquiry-btn {
    bottom: 20px;
    right: 20px;
    padding: 12px 18px;
    font-size: 9px;
  }

  .floating-enquiry-text { display: none; }

  .enquiry-modal {
    padding: 32px 22px;
  }

  .cruise-logos { flex-direction: column; gap: 8px; align-items: flex-start; }
  .cruise-partner-divider { display: none; }

  .nav-logo-img { height: 36px; }

  /* ── MOBILE FIX: Hero video/image — center on giraffe head ── */
  .hero-video {
    object-position: 65% 20% !important;
  }
  .hero-bg {
    object-position: 65% 20% !important;
    transform: none !important;
  }
  /* Safari mobile doesn't autoplay video — show fallback properly */
  .hero-bg--fallback {
    opacity: 1 !important;
  }

  /* ── MOBILE FIX: Hero text at top with strong contrast ── */
  .homepage-hero, .exp-hero {
    height: 85vh;
    min-height: 580px;
  }

  .hero-content {
    justify-content: center;
    padding-top: 0;
    padding-bottom: 10%;
  }

  .hero-title {
    font-size: clamp(30px, 8.5vw, 44px);
    text-shadow: 0 2px 24px rgba(0,0,0,0.6), 0 1px 4px rgba(0,0,0,0.3);
  }

  .hero-eyebrow {
    text-shadow: 0 1px 12px rgba(0,0,0,0.5);
  }

  .hero-sub {
    text-shadow: 0 1px 12px rgba(0,0,0,0.5);
    font-size: 12.5px;
    color: rgba(255,255,255,0.92);
  }

  .hero-overlay {
    background: linear-gradient(
      to bottom,
      rgba(14,27,92,0.40) 0%,
      rgba(14,27,92,0.20) 35%,
      rgba(14,27,92,0.60) 100%
    ) !important;
  }

  .hero-btns .btn-outline-white,
  .hero-btns .btn-gold {
    text-shadow: none;
    font-size: 10px;
  }

  /* ── MOBILE FIX: Philosophy section — classy card layout ── */
  .philosophy-img-wrap {
    position: relative;
    overflow: visible;
  }

  .philosophy-img {
    height: 280px;
    border-radius: 8px;
  }

  .philosophy-quote {
    position: relative;
    bottom: auto;
    left: auto;
    max-width: 100%;
    margin: -40px 16px 0;
    border-radius: 6px;
    padding: 28px 26px;
    box-shadow: 0 12px 40px rgba(14,27,92,0.25);
    z-index: 2;
  }

  /* ── MOBILE FIX: Cruise section — title outside, content centered ── */
  .cruise-hero {
    height: auto !important;
    border-radius: 8px;
  }

  .cruise-hero img {
    height: 320px;
  }

  .cruise-overlay {
    background: linear-gradient(
      to bottom,
      rgba(14,27,92,0.15) 0%,
      rgba(14,27,92,0.65) 100%
    ) !important;
  }

  .cruise-content {
    position: relative;
    inset: auto;
    max-width: 100%;
    padding: 32px var(--side-pad);
    text-align: center;
    background: var(--navy);
    border-radius: 0 0 8px 8px;
  }

  .cruise-title {
    font-size: clamp(26px, 7vw, 36px);
  }

  .cruise-desc {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    font-size: 13px;
    line-height: 1.9;
  }

  .cruise-eyebrow {
    justify-content: center;
  }

  .cruise-logos {
    align-items: center;
  }
}

/* ── UTILITY ── */
.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* Smooth scroll offset for fixed nav */
html { scroll-padding-top: calc(var(--nav-h) + 20px); }


/* ── CRUISE COLLAGE SECTION ── */
.voyages-section {
  background: #000730;
  color: #fff;
  padding: 64px 52px 100px;
}

.voyages-section .header-row,
.voyages-section .collage,
.voyages-section .features-bar {
  max-width: 1700px;
  margin-left: auto;
  margin-right: auto;
}

.voyages-section .header-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 64px;
}

.voyages-section .header-left { max-width: 680px; }

.voyages-section .eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}
.voyages-section .eyebrow::before {
  content: '';
  display: block;
  width: 36px; height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}

.voyages-section .section-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(46px, 4.5vw, 70px);
  font-weight: 300;
  line-height: 1.08;
  letter-spacing: 0.015em;
  color: var(--white);
}
.voyages-section .section-heading em {
  font-style: italic;
  color: #d4af7a;
}

.voyages-section .header-right {
  max-width: 360px;
  text-align: right;
}
.voyages-section .header-right p {
  font-size: 14px;
  font-weight: 300;
  letter-spacing: 0.04em;
  line-height: 1.8;
  color: rgba(255,255,255,0.72);
}
.voyages-section .header-right a {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 20px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
  transition: gap 0.3s ease;
}
.voyages-section .header-right a:hover { gap: 18px; }

.arrow-line {
  display: inline-block;
  width: 28px; height: 1px;
  background: var(--gold);
  position: relative;
}
.arrow-line::after {
  content: '';
  position: absolute;
  right: 0; top: -3px;
  width: 6px; height: 6px;
  border-top: 1px solid var(--gold);
  border-right: 1px solid var(--gold);
  transform: rotate(45deg);
}

/* Collage grid */
.collage {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: 610px 500px 490px;
  gap: 4px;
}

.c1 { grid-column: 1 / 6;  grid-row: 1; }
.c2 { grid-column: 6 / 9;  grid-row: 1; }
.c3 { grid-column: 9 / 13; grid-row: 1; }
.c4 { grid-column: 1 / 5;  grid-row: 2; }
.c5 { grid-column: 5 / 10; grid-row: 2; }
.c6 { grid-column: 10/ 13; grid-row: 2; }
.c7 { grid-column: 1 / 5;  grid-row: 3; }
.c8 { grid-column: 5 / 9;  grid-row: 3; }
.c9 { grid-column: 9 / 13; grid-row: 3; }

/* Card */
.card {
  position: relative;
  overflow: hidden;
  display: block;
  text-decoration: none;
  cursor: pointer;
  border-radius: 6px;
}
.card-photo {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 1.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.card:hover .card-photo { transform: scale(1.07); }

.card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    175deg,
    rgba(0,5,30,0.08) 0%,
    rgba(0,5,30,0.22) 35%,
    rgba(0,5,30,0.78) 70%,
    rgba(0,5,30,0.97) 100%
  );
  transition: opacity 0.5s ease;
}
.card:hover .card-overlay {
  background: linear-gradient(
    175deg,
    rgba(0,5,30,0.12) 0%,
    rgba(0,5,30,0.32) 35%,
    rgba(0,5,30,0.85) 70%,
    rgba(0,5,30,0.99) 100%
  );
}
.card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: 10;
}
.card:hover::before { transform: scaleX(1); }

.badge {
  position: absolute;
  top: 22px; left: 22px;
  font-size: 8px;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  padding: 6px 13px;
  z-index: 8;
  border: 1px solid var(--gold);
  color: var(--gold);
  background: rgba(0,5,30,0.55);
  backdrop-filter: blur(6px);
}
.badge.solid {
  background: var(--gold);
  color: #000730;
}

.card-body {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 32px 30px;
  z-index: 5;
  transform: translateY(0);
  transition: transform 0.4s ease;
}
.card:hover .card-body { transform: translateY(-6px); }
.c1 .card-body { padding: 44px 42px; }

.card-category {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 8.5px;
  font-weight: 500;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 9px;
}
.card-category::before {
  content: '';
  display: block;
  width: 18px; height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}

.card-operator {
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 8px;
}

.card-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: 22px;
  letter-spacing: 0.015em;
  line-height: 1.2;
  color: var(--white);
  margin-bottom: 10px;
}
.c1 .card-title { font-size: 38px; }
.c2 .card-title,
.c5 .card-title { font-size: 26px; }

.card-tagline {
  font-size: 11px;
  font-weight: 300;
  letter-spacing: 0.05em;
  line-height: 1.75;
  color: rgba(255,255,255,0.52);
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  margin-bottom: 0;
  transition: max-height 0.45s ease, opacity 0.35s ease 0.08s, margin-bottom 0.35s ease;
}
.card:hover .card-tagline {
  max-height: 72px;
  opacity: 1;
  margin-bottom: 16px;
}

.card-meta {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 20px;
}
.meta-item {
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.38);
  line-height: 1;
}
.meta-item strong {
  display: block;
  font-size: 12px;
  font-weight: 300;
  color: rgba(255,255,255,0.82);
  letter-spacing: 0.04em;
  margin-top: 4px;
  font-family: 'Cormorant Garamond', serif;
}
.meta-sep {
  width: 1px; height: 24px;
  background: rgba(255,255,255,0.12);
  flex-shrink: 0;
}

.card-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  transition: gap 0.35s ease;
}
.card:hover .card-cta { gap: 18px; }

.cta-line {
  width: 28px; height: 1px;
  background: var(--gold);
  position: relative;
  transition: width 0.35s ease;
  flex-shrink: 0;
}
.cta-line::after {
  content: '';
  position: absolute;
  right: 0; top: -3px;
  width: 6px; height: 6px;
  border-top: 1px solid var(--gold);
  border-right: 1px solid var(--gold);
  transform: rotate(45deg);
}
.card:hover .cta-line { width: 40px; }

/* Features bar */
.features-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4px;
  margin-top: 4px;
}
.feature-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 22px 26px;
  background: rgba(255,255,255,0.025);
  border-top: 1px solid rgba(197,160,96,0.15);
  transition: background 0.3s, border-color 0.3s;
  text-decoration: none;
}
.feature-item:hover {
  background: rgba(197,160,96,0.05);
  border-color: rgba(197,160,96,0.4);
}
.feature-icon {
  width: 34px; height: 34px;
  border: 1px solid rgba(197,160,96,0.3);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: border-color 0.3s;
}
.feature-item:hover .feature-icon { border-color: var(--gold); }
.feature-icon svg {
  width: 15px; height: 15px;
  stroke: var(--gold); fill: none; stroke-width: 1.4;
}
.feature-label {
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  margin-bottom: 4px;
}
.feature-value {
  font-family: 'Cormorant Garamond', serif;
  font-size: 16px;
  font-weight: 300;
  color: rgba(255,255,255,0.85);
  letter-spacing: 0.03em;
}

/* Collage responsive */
@media (max-width: 1200px) {
  .collage {
    grid-template-columns: repeat(6, 1fr);
    grid-template-rows: repeat(4, 420px);
  }
  .c1 { grid-column: 1/5; grid-row: 1; }
  .c2 { grid-column: 5/7; grid-row: 1; }
  .c3 { grid-column: 1/4; grid-row: 2; }
  .c4 { grid-column: 4/7; grid-row: 2; }
  .c5 { grid-column: 1/4; grid-row: 3; }
  .c6 { grid-column: 4/7; grid-row: 3; }
  .c7 { grid-column: 1/3; grid-row: 4; }
  .c8 { grid-column: 3/5; grid-row: 4; }
  .c9 { grid-column: 5/7; grid-row: 4; }
  .features-bar { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 720px) {
  .voyages-section { padding: 70px 20px 90px; }
  .voyages-section .header-row { flex-direction: column; align-items: flex-start; gap: 24px; }
  .voyages-section .header-right { text-align: left; max-width: 100%; }
  .collage {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(9, 380px);
  }
  .c1,.c2,.c3,.c4,.c5,.c6,.c7,.c8,.c9 {
    grid-column: 1; grid-row: auto;
  }
  .features-bar { grid-template-columns: 1fr; }
}

/* Cruise breadcrumb */
.cruise-breadcrumb {
  position: fixed;
  top: 80px;
  left: 2rem;
  z-index: 100;
}
.cruise-breadcrumb a {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  background: rgba(1,14,89,0.4);
  backdrop-filter: blur(8px);
  padding: 0.5rem 1rem;
  border: 1px solid rgba(197,160,96,0.3);
  transition: all 0.3s ease;
}
.cruise-breadcrumb a:hover {
  color: var(--gold);
  border-color: var(--gold);
}
@media (max-width: 768px) {
  .cruise-breadcrumb { top: 70px; left: 1rem; }
}

/* ── DREAM ITINERARIES BUTTON ── */
.journeys-more {
  text-align: center;
  padding: 40px 0 0;
}

.journeys-more-btn {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding: 17px 48px;
  background: var(--navy);
  color: var(--white);
  border-radius: 5px;
  font-family: var(--font-sans);
  font-size: 9.5px;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(14,27,92,0.18);
  transition: background 0.25s ease, transform 0.22s ease, box-shadow 0.25s ease;
  position: relative;
  overflow: hidden;
}

.journeys-more-btn:hover {
  background: var(--navy-mid);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(14,27,92,0.28);
}

.journeys-more-line {
  display: inline-block;
  width: 22px;
  height: 1px;
  background: rgba(255,255,255,0.55);
  position: relative;
  transition: width 0.28s ease;
}
.journeys-more-line::after {
  content: '';
  position: absolute;
  right: 0;
  top: -3px;
  width: 6px;
  height: 6px;
  border-top: 1px solid rgba(255,255,255,0.55);
  border-right: 1px solid rgba(255,255,255,0.55);
  transform: rotate(45deg);
}
.journeys-more-btn:hover .journeys-more-line { width: 34px; }
