@font-face {
  font-family: 'Playfair Display';
  src: url('fonts/PlayfairDisplay-VariableFont_wght.ttf') format('truetype');
  font-weight: 100 900; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Playfair Display';
  src: url('fonts/PlayfairDisplay-Italic-VariableFont_wght.ttf') format('truetype');
  font-weight: 100 900; font-style: italic; font-display: swap;
}
@font-face {
  font-family: 'Open Sans';
  src: url('fonts/OpenSans-VariableFont_wdth,wght.ttf') format('truetype');
  font-weight: 100 900; font-style: normal; font-display: swap;
}

:root {
  --navy: #22274f;
  --navy-dark: #161a38;
  --navy-mid: #2d3470;
  --gold: #f9d979;
  --gold-dark: #cd7521;
  --white: #f8f6f0;
  --text-light: rgba(255,255,255,0.82);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--navy-dark);
  color: var(--white);
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }

/* ─── HEADER ─── */
header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 18px 60px;
  display: flex; align-items: center; justify-content: space-between;
  background: rgba(22,26,56,0.82);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(249,217,121,0.15);
}
.logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem; color: var(--gold);
  letter-spacing: 2px; text-decoration: none;
}
nav ul { list-style: none; display: flex; gap: 36px; }
nav a {
  color: var(--text-light); text-decoration: none;
  font-size: 0.88rem; font-weight: 600; letter-spacing: 1.5px;
  text-transform: uppercase; transition: color 0.3s; position: relative;
}
nav a::after {
  content: ''; position: absolute; bottom: -4px; left: 0;
  width: 0; height: 1px; background: var(--gold); transition: width 0.3s;
}
nav a:hover { color: var(--gold); }
nav a:hover::after { width: 100%; }

.burger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; z-index: 200; background: none; border: none; }
.burger span { display: block; width: 26px; height: 2px; background: var(--gold); border-radius: 2px; transition: all 0.35s ease; transform-origin: center; }
.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
  display: none; position: fixed; inset: 0;
  background: rgba(16,19,48,0.98); backdrop-filter: blur(20px);
  z-index: 150; flex-direction: column; align-items: center; justify-content: center;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-family: 'Playfair Display', serif; font-size: 2.2rem; color: var(--white);
  text-decoration: none; padding: 18px 40px; letter-spacing: 2px; transition: color 0.3s;
}
.mobile-nav a:hover { color: var(--gold); }
.mobile-nav-phone { margin-top: 40px; font-size: 1rem; color: var(--gold); letter-spacing: 2px; }

/* ─── BUTTONS ─── */
.btn-gold {
  background: var(--gold); color: var(--navy); border: none;
  padding: 16px 40px; font-size: 0.88rem; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase; cursor: pointer;
  border-radius: 2px; text-decoration: none; transition: all 0.3s;
  display: inline-block; font-family: 'Open Sans', sans-serif;
}
.btn-gold:hover { background: var(--gold-dark); color: var(--white); transform: translateY(-2px); box-shadow: 0 10px 30px rgba(249,217,121,0.3); }
.btn-outline {
  background: transparent; color: var(--white);
  border: 1px solid rgba(255,255,255,0.4);
  padding: 16px 40px; font-size: 0.88rem; font-weight: 600;
  letter-spacing: 2px; text-transform: uppercase; cursor: pointer;
  border-radius: 2px; text-decoration: none; transition: all 0.3s;
  display: inline-flex; align-items: center; gap: 10px; font-family: 'Open Sans', sans-serif;
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }

/* ─── BREADCRUMB / BACK ─── */
.cruise-back {
  position: relative; z-index: 3;
  width: 100%; max-width: 1180px; margin: 0 auto; padding: 120px 60px 0;
}
.cruise-back a {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--text-light); text-decoration: none;
  font-size: 0.78rem; letter-spacing: 2px; text-transform: uppercase;
  transition: color 0.3s;
}
.cruise-back a:hover { color: var(--gold); }
.cruise-back svg { transition: transform 0.3s; }
.cruise-back a:hover svg { transform: translateX(-4px); }

/* ─── HERO ─── */
.cruise-hero {
  position: relative;
  min-height: 86vh;
  display: flex; flex-direction: column; justify-content: flex-end;
  overflow: hidden;
}
.cruise-hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  background-color: #16306b;
  transform: scale(1.04);
}
.cruise-hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top, var(--navy-dark) 2%, rgba(22,26,56,0.55) 45%, rgba(22,26,56,0.25) 100%);
}
.cruise-hero-inner {
  position: relative; z-index: 2;
  max-width: 1180px; width: 100%;
  margin: auto auto 0; padding: 0 60px 70px;
}
.cruise-eyebrow {
  display: inline-flex; align-items: center; gap: 14px;
  font-size: 0.74rem; letter-spacing: 4px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 22px;
}
.cruise-eyebrow .dot { width: 5px; height: 5px; border-radius: 50%; background: var(--gold); }
.cruise-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.6rem, 6vw, 5rem);
  line-height: 1.04; font-weight: 700; color: var(--white);
  margin-bottom: 22px; max-width: 16ch; text-wrap: balance;
}
.cruise-lead {
  font-family: 'Playfair Display', serif; font-style: italic;
  font-size: clamp(1.05rem, 2vw, 1.5rem); color: var(--text-light);
  max-width: 46ch; margin-bottom: 36px; line-height: 1.4;
}
.cruise-meta {
  display: flex; flex-wrap: wrap; gap: 14px 38px; align-items: center;
  padding-top: 26px; border-top: 1px solid rgba(249,217,121,0.2);
}
.cruise-meta-item { display: flex; flex-direction: column; gap: 5px; }
.cruise-meta-item .k { font-size: 0.66rem; letter-spacing: 2.5px; text-transform: uppercase; color: rgba(255,255,255,0.55); }
.cruise-meta-item .v { font-family: 'Playfair Display', serif; font-size: 1.35rem; color: var(--gold); }

/* ─── SEASON PILLS ─── */
.season-row { display: flex; flex-wrap: wrap; gap: 6px; }
.season-pill {
  font-size: 0.62rem; letter-spacing: 1.5px; text-transform: uppercase;
  color: rgba(255,255,255,0.45); border: 1px solid rgba(249,217,121,0.25);
  padding: 5px 10px; border-radius: 999px; transition: all 0.2s;
}
.season-pill.active { color: var(--navy); background: var(--gold); border-color: var(--gold); font-weight: 600; }

/* ─── CONTENT SECTIONS ─── */
.cruise-section { max-width: 1180px; margin: 0 auto; padding: 90px 60px; }
.section-label {
  font-size: 0.72rem; letter-spacing: 5px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 20px; display: block;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3.4vw, 2.7rem); line-height: 1.2;
  margin-bottom: 30px; color: var(--white);
}
.section-title em { color: var(--gold); font-style: italic; }

.cruise-intro { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 70px; align-items: start; }
.cruise-intro-body p {
  color: var(--text-light); line-height: 1.95; font-size: 1.05rem;
  font-weight: 300; margin-bottom: 22px; text-wrap: pretty;
}
.cruise-intro-body p:last-child { margin-bottom: 0; }
.cruise-quote {
  border-left: 2px solid rgba(249,217,121,0.4); padding: 4px 0 4px 24px;
  font-family: 'Playfair Display', serif; font-style: italic;
  font-size: 1.2rem; color: var(--white); line-height: 1.5;
}
.cruise-quote span { display: block; margin-top: 14px; font-size: 0.78rem; font-style: normal; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); }

/* ─── HIGHLIGHTS ─── */
.hl-section { background: linear-gradient(180deg, var(--navy-dark) 0%, #111530 100%); }
.hl-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2px; border: 1px solid rgba(249,217,121,0.14);
}
.hl-card {
  background: rgba(255,255,255,0.02); padding: 40px 34px;
  border: 1px solid rgba(249,217,121,0.08);
  transition: background 0.3s, border-color 0.3s; position: relative;
}
.hl-card:hover { background: rgba(249,217,121,0.04); border-color: rgba(249,217,121,0.3); }
.hl-num { font-family: 'Playfair Display', serif; font-size: 0.9rem; color: rgba(249,217,121,0.5); letter-spacing: 2px; margin-bottom: 18px; display: block; }
.hl-card h4 { font-family: 'Playfair Display', serif; font-size: 1.3rem; color: var(--gold); margin-bottom: 12px; line-height: 1.25; }
.hl-card p { color: var(--text-light); font-size: 0.92rem; line-height: 1.7; font-weight: 300; }

/* ─── ON BOARD ─── */
.board-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; }
.board-list { list-style: none; }
.board-list li {
  display: flex; justify-content: space-between; align-items: baseline; gap: 24px;
  padding: 16px 0; border-bottom: 1px solid rgba(255,255,255,0.08); font-size: 0.95rem;
}
.board-list li:first-child { border-top: 1px solid rgba(255,255,255,0.08); }
.board-list .k { color: var(--text-light); font-weight: 300; letter-spacing: 0.5px; }
.board-list .v { color: var(--white); font-weight: 600; text-align: right; }
.board-photo {
  position: relative; min-height: 380px; border-radius: 4px; overflow: hidden;
  background-size: cover; background-position: center; background-color: #16306b;
  border: 1px solid rgba(249,217,121,0.18);
}
.board-photo::after { content: ''; position: absolute; inset: 0; background: linear-gradient(120deg, transparent 40%, rgba(22,26,56,0.4)); }

/* ─── BOOK BAND ─── */
.book-band {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
  position: relative; overflow: hidden;
}
.book-band::before {
  content: ''; position: absolute; top: -200px; right: -160px;
  width: 520px; height: 520px; border-radius: 50%;
  background: radial-gradient(circle, rgba(249,217,121,0.06), transparent 70%); pointer-events: none;
}
.book-inner { max-width: 860px; margin: 0 auto; padding: 100px 60px; text-align: center; position: relative; z-index: 1; }
.book-inner h2 { font-family: 'Playfair Display', serif; font-size: clamp(2rem, 4vw, 3.2rem); margin-bottom: 18px; }
.book-inner h2 em { color: var(--gold); font-style: italic; }
.book-inner p { color: var(--text-light); font-size: 1.05rem; font-weight: 300; margin-bottom: 42px; line-height: 1.7; }
.book-cta { display: flex; gap: 18px; justify-content: center; flex-wrap: wrap; }

.gold-divider { width: 60px; height: 2px; background: var(--gold); margin: 22px 0 0; }
.center .gold-divider { margin: 22px auto 0; }

/* ─── OTHER CRUISES ─── */
.more-section { background: var(--navy-dark); border-top: 1px solid rgba(249,217,121,0.1); }
.more-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 14px; }
.more-card {
  position: relative; display: block; height: 200px; overflow: hidden;
  border-radius: 4px; text-decoration: none; border: 1px solid rgba(249,217,121,0.12);
}
.more-card-bg { position: absolute; inset: 0; background-size: cover; background-position: center; transition: transform 0.6s ease; background-color:#16306b; }
.more-card:hover .more-card-bg { transform: scale(1.08); }
.more-card::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(16,19,48,0.95) 10%, rgba(16,19,48,0.2) 80%); }
.more-card-label { position: absolute; bottom: 0; left: 0; right: 0; z-index: 2; padding: 20px; }
.more-card-label .d { font-size: 0.62rem; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); margin-bottom: 6px; display: block; }
.more-card-label .n { font-family: 'Playfair Display', serif; font-size: 1.05rem; color: var(--white); line-height: 1.25; }

/* ─── FOOTER ─── */
footer {
  background: var(--navy-dark); border-top: 1px solid rgba(249,217,121,0.15);
  padding: 40px 60px; display: flex; justify-content: space-between; align-items: center;
}
.footer-logo { font-family: 'Playfair Display', serif; font-size: 1.3rem; color: var(--gold); }
.footer-copy { color: var(--text-light); font-size: 0.8rem; }
.footer-links { display: flex; gap: 28px; }
.footer-links a { color: var(--text-light); text-decoration: none; font-size: 0.8rem; letter-spacing: 1px; transition: color 0.3s; }
.footer-links a:hover { color: var(--gold); }

/* ─── FLOAT BUTTONS ─── */
.float-contact, .float-lead {
  position: fixed; right: 36px; width: 48px; height: 48px;
  background: var(--gold); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--navy); z-index: 99; text-decoration: none; border: none; cursor: pointer;
  box-shadow: 0 4px 20px rgba(249,217,121,0.4); transition: all 0.3s;
}
.float-contact { bottom: 36px; }
.float-lead { bottom: 96px; }
.float-contact:hover, .float-lead:hover { background: var(--gold-dark); color: #fff; transform: scale(1.1); }

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  header { padding: 14px 30px; }
  .cruise-back { padding: 110px 30px 0; }
  .cruise-hero-inner { padding: 0 30px 56px; }
  .cruise-section { padding: 70px 30px; }
  .book-inner { padding: 80px 30px; }
  .cruise-intro { grid-template-columns: 1fr; gap: 40px; }
  .board-grid { grid-template-columns: 1fr; gap: 36px; }
  .board-photo { min-height: 280px; }
}
@media (max-width: 768px) {
  nav { display: none; }
  .burger { display: flex; }
  .cruise-meta { gap: 16px 26px; }
  footer { flex-direction: column; gap: 20px; text-align: center; }
  .footer-links { flex-wrap: wrap; justify-content: center; gap: 18px; }
}
