/* ============================================
   OCEAN AIR ESCAPE
   Fonts: Cormorant Garamond + Raleway
   Palette: Navy · Gold · Cream · Sand
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,400;1,600&family=Raleway:wght@300;400;500;600;700&display=swap');

:root {
  --navy:      #0C1B33;
  --navy-deep: #070F1C;
  --gold:      #C9A55A;
  --gold-lt:   #E0C680;
  --cream:     #F0E4C8;
  --sand:      #FAF5EE;
  --sand-dark: #EDE5D5;
  --white:     #FFFFFF;
  --gray:      #888880;
  --text:      #1C1C1C;
  --transition: 0.2s ease;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body { font-family: 'Raleway', sans-serif; background: var(--sand); color: var(--text); -webkit-font-smoothing: antialiased; line-height: 1.6; overflow-x: hidden; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* ============================================
   TYPOGRAPHY
   ============================================ */

h1, h2, h3, h4 { font-family: 'Cormorant Garamond', serif; line-height: 1.15; color: var(--navy); font-weight: 300; }
h1 { font-size: clamp(2.4rem, 6vw, 4rem); }
h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); }
em { font-style: italic; }
p  { color: var(--gray); line-height: 1.8; font-size: 0.92rem; font-weight: 400; }

.eyebrow {
  display: block;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.85rem;
}

.gold-rule {
  width: 40px;
  height: 1px;
  background: var(--gold);
  margin: 1rem 0;
}

.gold-rule--center { margin: 1rem auto; }

/* ============================================
   LAYOUT
   ============================================ */

.container { max-width: 1120px; margin: 0 auto; padding: 0 2rem; }
.section { padding: 5rem 0; }
.section--navy { background: var(--navy); }
.section--navy h2, .section--navy h3, .section--navy h4 { color: var(--cream); }
.section--navy p { color: rgba(255,255,255,0.55); }
.section--navy .eyebrow { color: rgba(201,165,90,0.8); }
.section--white { background: var(--white); }

/* ============================================
   NAVIGATION
   ============================================ */

.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: #8C9BAA;
  border-bottom: 1px solid rgba(201,165,90,0.3);
  transition: box-shadow var(--transition);
}

.nav.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,0.25); }

.nav-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.nav-brand { display: flex; flex-direction: column; line-height: 1; }
.nav-brand-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  letter-spacing: 0.18em;
  color: var(--navy-deep);
  font-weight: 300;
  text-transform: uppercase;
}
.nav-brand-sub {
  font-size: 0.5rem;
  letter-spacing: 0.28em;
  color: rgba(201,165,90,0.85);
  text-transform: uppercase;
  margin-top: 3px;
}

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

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

.nav-links a {
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(7,15,28,0.75);
  padding: 0.45rem 0.85rem;
  transition: color var(--transition);
}

.nav-links a:hover { color: var(--navy); }

.nav-cta {
  border: 1px solid rgba(201,165,90,0.8) !important;
  color: #7a5c1e !important;
  padding: 0.5rem 1.1rem !important;
}
.nav-cta:hover { background: rgba(201,165,90,0.15) !important; color: var(--navy) !important; }

.nav-dropdown { position: relative; }
.nav-dropdown > a::after { content: ' ▾'; font-size: 0.6em; }
.dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: var(--navy);
  border: 1px solid rgba(201,165,90,0.2);
  min-width: 200px;
  padding: 0.5rem 0;
  list-style: none;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-4px);
  transition: opacity var(--transition), transform var(--transition);
}
.nav-dropdown:hover .dropdown-menu,
.nav-dropdown:focus-within .dropdown-menu {
  opacity: 1; pointer-events: auto; transform: translateY(0);
}
.dropdown-menu a {
  display: block;
  padding: 0.55rem 1.25rem;
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}
.dropdown-menu a:hover { color: var(--gold); background: rgba(201,165,90,0.05); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span { display: block; width: 22px; height: 1.5px; background: rgba(7,15,28,0.6); transition: transform var(--transition), opacity var(--transition); }

/* ============================================
   BUTTONS
   ============================================ */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  font-family: 'Raleway', sans-serif;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  line-height: 1;
}

.btn-gold { background: var(--gold); color: var(--navy); }
.btn-gold:hover { background: var(--gold-lt); }

.btn-navy { background: var(--navy); color: var(--cream); }
.btn-navy:hover { background: #162847; }

.btn-outline-gold { background: transparent; color: var(--gold); border: 1px solid rgba(201,165,90,0.6); }
.btn-outline-gold:hover { background: rgba(201,165,90,0.08); color: var(--gold-lt); }

.btn-outline-white { background: transparent; color: rgba(255,255,255,0.75); border: 1px solid rgba(255,255,255,0.3); }
.btn-outline-white:hover { border-color: rgba(255,255,255,0.6); color: var(--white); }

.btn-outline-navy { background: transparent; color: var(--navy); border: 1px solid rgba(12,27,51,0.4); }
.btn-outline-navy:hover { background: var(--navy); color: var(--cream); }

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

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(145deg, #0d2a4a 0%, #1a4a6a 50%, #0B3040 100%);
}

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

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(7,15,28,0.5) 0%, rgba(12,27,51,0.75) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 8rem 2rem 5rem;
  max-width: 680px;
}

.hero-content h1 { color: var(--white); margin-bottom: 0.5rem; }
.hero-content h1 em { color: var(--cream); }

.hero-rule { width: 48px; height: 1px; background: var(--gold); margin: 1.5rem auto; }

.hero-sub {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.1rem;
  color: rgba(255,255,255,0.6);
  font-weight: 300;
  margin-bottom: 2.25rem;
  letter-spacing: 0.03em;
}

.hero-free {
  font-size: 0.58rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.28);
  margin-top: 1.25rem;
}

/* ============================================
   VALUE BAR
   ============================================ */

.value-bar {
  background: var(--navy-deep);
  border-top: 1px solid rgba(201,165,90,0.2);
  border-bottom: 1px solid rgba(201,165,90,0.12);
  padding: 1rem 2rem;
}

.value-bar-inner {
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.vb-item {
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  padding: 0.25rem 1.75rem;
  border-right: 1px solid rgba(255,255,255,0.1);
}
.vb-item:last-child { border-right: none; }

/* ============================================
   SAILINGS (horizontal cards)
   ============================================ */

.sail-list { display: flex; flex-direction: column; gap: 2px; }

.sail-card {
  background: var(--white);
  display: flex;
  align-items: stretch;
  border: 1px solid var(--sand-dark);
  transition: border-color var(--transition);
}
.sail-card:hover { border-color: var(--gold); }

.sail-card-img {
  width: 140px;
  flex-shrink: 0;
  background: linear-gradient(135deg, var(--navy), #1a5068);
  position: relative;
  overflow: hidden;
}
.sail-card-img img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.sail-card-img-fallback {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  padding: 0.75rem;
}
.sail-card-img-fallback span { font-size: 0.55rem; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.35); }

.sail-card-body { flex: 1; padding: 1.25rem 1.5rem; }
.sail-card-dest {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  color: var(--navy);
  font-weight: 400;
  margin-bottom: 0.25rem;
}
.sail-card-detail {
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #aaa;
  font-weight: 500;
  margin-bottom: 0.6rem;
}
.sail-card-dates {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 0.9rem;
  color: #B85042;
  font-weight: 300;
}

.sail-card-right {
  padding: 1.25rem 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
  gap: 0.6rem;
  min-width: 140px;
}
.sail-card-onboard {
  font-size: 0.58rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
}
.sail-card-link {
  font-size: 0.6rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--navy);
  font-weight: 600;
  border-bottom: 1px solid var(--gold);
  padding-bottom: 1px;
  transition: color var(--transition);
  white-space: nowrap;
}
.sail-card:hover .sail-card-link { color: var(--gold); }

/* ============================================
   ABOUT STRIP (photo + text side by side)
   ============================================ */

.about-inner {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 3.5rem;
  align-items: center;
}

.about-photo {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  background: #1a3a5c;
}
.about-photo img { width: 100%; height: 100%; object-fit: cover; object-position: top center; }
.about-photo-border {
  position: absolute;
  bottom: -12px;
  right: -12px;
  inset: 12px -12px -12px 12px;
  border: 1px solid rgba(201,165,90,0.35);
  pointer-events: none;
}

.about-text .eyebrow { color: rgba(201,165,90,0.75); }
.about-text h2 { color: var(--cream); margin-bottom: 0.75rem; }
.about-text p { color: rgba(255,255,255,0.55); font-weight: 300; margin-bottom: 0.75rem; }

.about-quote {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.05rem;
  color: rgba(240,228,200,0.85);
  line-height: 1.65;
  border-left: 2px solid var(--gold);
  padding-left: 1.1rem;
  margin: 1.25rem 0;
  font-weight: 300;
}

/* ============================================
   CONTACT FORM
   ============================================ */

.form-wrap {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
  align-items: start;
}

.form-info .eyebrow { color: var(--gold); }
.form-info h2 { color: var(--navy); margin-bottom: 0.5rem; }
.form-info p { margin-bottom: 1.5rem; }

.form-detail {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1.1rem;
}
.form-detail-label {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--navy);
  display: block;
  margin-bottom: 0.15rem;
}
.form-detail-val { font-size: 0.82rem; color: var(--gray); }

.contact-form { background: var(--white); border-top: 3px solid var(--gold); padding: 2.5rem; }
.contact-form h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  color: var(--navy);
  font-weight: 300;
  margin-bottom: 1.5rem;
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { margin-bottom: 1rem; }
.form-group label {
  display: block;
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #5C4A28;
  margin-bottom: 0.4rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.7rem 0.9rem;
  border: 1px solid var(--sand-dark);
  background: var(--white);
  font-family: 'Raleway', sans-serif;
  font-size: 0.88rem;
  color: var(--text);
  outline: none;
  border-radius: 0;
  appearance: none;
  transition: border-color var(--transition);
}
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='%23888'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.85rem center;
  padding-right: 2.25rem;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--gold); }
.form-group textarea { resize: vertical; min-height: 88px; }
.form-submit { width: 100%; justify-content: center; margin-top: 0.5rem; }
.form-note { font-size: 0.7rem; color: #bbb; text-align: center; margin-top: 0.65rem; font-style: italic; }

.form-success { display: none; text-align: center; padding: 2rem 0; }
.form-success.visible { display: block; }
.form-success h3 { font-size: 1.5rem; margin-bottom: 0.5rem; }

/* ============================================
   FAQ
   ============================================ */

.faq-list { max-width: 720px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--sand-dark); }
.faq-item:first-child { border-top: 1px solid var(--sand-dark); }

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 0;
  background: none;
  border: none;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem;
  font-weight: 400;
  color: var(--navy);
  cursor: pointer;
  text-align: left;
  gap: 1rem;
  transition: color var(--transition);
}
.faq-question:hover { color: var(--gold); }

.faq-icon {
  font-size: 1.1rem;
  color: var(--gold);
  flex-shrink: 0;
  transition: transform var(--transition);
  font-weight: 300;
  line-height: 1;
}
.faq-item.open .faq-icon { transform: rotate(45deg); }

.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }
.faq-item.open .faq-answer { max-height: 300px; }
.faq-answer-inner { padding: 0 0 1.25rem; font-size: 0.88rem; color: var(--gray); line-height: 1.8; }

/* ============================================
   TIPS CARDS
   ============================================ */

.tips-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; }

.tip-card { background: var(--white); border: 1px solid var(--sand-dark); padding: 2rem; border-top: 2px solid var(--gold); }
.tip-card-icon { font-size: 1.5rem; margin-bottom: 1rem; }
.tip-card h3 { font-size: 1.15rem; margin-bottom: 0.75rem; font-weight: 400; }
.tip-card ul { padding-left: 1rem; display: flex; flex-direction: column; gap: 0.5rem; }
.tip-card ul li { font-size: 0.85rem; color: var(--gray); line-height: 1.65; }

/* ============================================
   CRUISE DETAIL PAGE
   ============================================ */

.cruise-hero {
  position: relative;
  height: 460px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: linear-gradient(135deg, var(--navy), #1a5068);
}
.cruise-hero img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0.4; }
.cruise-hero-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(12,27,51,0.92) 0%, rgba(12,27,51,0.15) 100%); }
.cruise-hero-content { position: relative; z-index: 2; padding: 2.5rem 2rem; max-width: 1120px; margin: 0 auto; width: 100%; }
.cruise-hero-content h1 { color: var(--white); font-size: clamp(2rem, 5vw, 3.5rem); margin-bottom: 0.5rem; }
.cruise-hero-sub { color: rgba(255,255,255,0.6); font-size: 0.95rem; margin-bottom: 1rem; font-style: italic; font-family: 'Cormorant Garamond', serif; font-size: 1.1rem; }
.cruise-hero-tags { display: flex; flex-wrap: wrap; gap: 0.75rem; }
.cruise-tag { font-size: 0.6rem; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.5); border: 1px solid rgba(255,255,255,0.15); padding: 0.3rem 0.75rem; font-weight: 500; }
.cruise-tag.gold { border-color: rgba(201,165,90,0.5); color: var(--gold); }

.cruise-body { display: grid; grid-template-columns: 1fr 320px; gap: 3rem; padding: 4rem 0; align-items: start; }

.cruise-main h2 { margin-bottom: 1rem; font-weight: 400; }
.cruise-main h3 { font-size: 1.3rem; margin: 2rem 0 0.75rem; font-weight: 400; }
.cruise-main p { margin-bottom: 0.85rem; }

.itinerary-table { width: 100%; border-collapse: collapse; font-size: 0.88rem; margin-top: 0.5rem; }
.itinerary-table th { background: var(--navy); color: rgba(255,255,255,0.6); padding: 0.65rem 1rem; text-align: left; font-size: 0.58rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; }
.itinerary-table td { padding: 0.75rem 1rem; border-bottom: 1px solid var(--sand-dark); color: var(--text); font-size: 0.88rem; }
.itinerary-table tr:last-child td { border-bottom: none; }
.itinerary-table tr:nth-child(even) td { background: var(--sand); }

.cruise-sidebar { position: sticky; top: 82px; }
.sidebar-card { background: var(--white); border: 1px solid var(--sand-dark); border-top: 2px solid var(--navy); margin-bottom: 1.5rem; }
.sidebar-card-header { background: var(--navy); padding: 1rem 1.25rem; }
.sidebar-card-header h3 { color: var(--cream); font-size: 1rem; font-weight: 300; letter-spacing: 0.04em; }
.sidebar-card-body { padding: 1.25rem; }
.sidebar-list { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
.sidebar-list li { display: flex; align-items: flex-start; gap: 0.5rem; font-size: 0.85rem; color: var(--text); }
.sidebar-list li::before { content: '—'; color: var(--gold); flex-shrink: 0; }

.cruise-quote-form input,
.cruise-quote-form select { width: 100%; padding: 0.65rem 0.85rem; border: 1px solid var(--sand-dark); font-family: 'Raleway', sans-serif; font-size: 0.82rem; color: var(--text); margin-bottom: 0.75rem; border-radius: 0; appearance: none; outline: none; }
.cruise-quote-form input:focus,
.cruise-quote-form select:focus { border-color: var(--gold); }
.cruise-quote-form label { display: block; font-size: 0.56rem; letter-spacing: 0.16em; text-transform: uppercase; font-weight: 700; color: #5C4A28; margin-bottom: 0.35rem; }

/* ============================================
   PAGE HERO (inner pages)
   ============================================ */

.page-hero {
  background: var(--navy);
  padding: 8rem 2rem 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(201,165,90,0.2);
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../images/hero-sunset.jpg') center/cover no-repeat;
  opacity: 0.1;
}
.page-hero-inner { position: relative; z-index: 1; max-width: 580px; margin: 0 auto; }
.page-hero h1 { color: var(--white); font-size: clamp(2rem, 5vw, 3rem); margin-bottom: 0.5rem; }
.page-hero h1 em { color: var(--cream); }
.page-hero p { color: rgba(255,255,255,0.5); font-style: italic; font-family: 'Cormorant Garamond', serif; font-size: 1rem; }

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

.footer { background: var(--navy-deep); padding: 3.5rem 0 2rem; border-top: 1px solid rgba(201,165,90,0.15); }
.footer-inner { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }

.footer-brand-name { font-family: 'Cormorant Garamond', serif; font-size: 1.1rem; letter-spacing: 0.18em; color: var(--cream); font-weight: 300; text-transform: uppercase; margin-bottom: 3px; }
.footer-brand-tag { font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: 0.78rem; color: rgba(201,165,90,0.65); margin-bottom: 0.85rem; letter-spacing: 0.06em; }
.footer-brand p { font-size: 0.82rem; color: rgba(255,255,255,0.3); line-height: 1.75; max-width: 240px; }

.footer-social { display: flex; gap: 0.6rem; margin-top: 1.1rem; }
.footer-social a {
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 700;
  color: rgba(255,255,255,0.35);
  transition: border-color var(--transition), color var(--transition);
}
.footer-social a:hover { border-color: var(--gold); color: var(--gold); }

.footer-col h4 {
  font-family: 'Raleway', sans-serif;
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 1rem;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.55rem; }
.footer-col ul a { font-size: 0.82rem; color: rgba(255,255,255,0.3); transition: color var(--transition); font-family: 'Cormorant Garamond', serif; font-size: 0.95rem; }
.footer-col ul a:hover { color: var(--gold); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  font-size: 0.58rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.2);
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 900px) {
  .about-inner { grid-template-columns: 1fr; }
  .about-photo { aspect-ratio: 16/9; max-height: 320px; }
  .about-photo-border { display: none; }
  .form-wrap { grid-template-columns: 1fr; }
  .cruise-body { grid-template-columns: 1fr; }
  .cruise-sidebar { position: static; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 680px) {
  .nav-links { display: none; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 64px; left: 0; right: 0;
    background: var(--navy);
    border-top: 1px solid rgba(201,165,90,0.15);
    padding: 1.5rem 2rem;
    gap: 0.25rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
  }
  .nav-links.open a { padding: 0.75rem 0; border-bottom: 1px solid rgba(255,255,255,0.06); color: rgba(255,255,255,0.6); }
  .nav-links.open .nav-cta { border: none; color: var(--gold) !important; }
  .nav-links.open .dropdown-menu {
    position: static; opacity: 1; pointer-events: auto; transform: none;
    background: rgba(255,255,255,0.04); border: none; padding: 0.25rem 0.75rem;
  }
  .nav-toggle { display: flex; }
  .form-row { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .sail-card { flex-direction: column; }
  .sail-card-img { width: 100%; height: 160px; }
  .sail-card-body { padding: 1rem 1.25rem; }
  .sail-card-right { min-width: auto; padding: 0 1.25rem 1rem; flex-direction: row; justify-content: space-between; align-items: center; }
  .container { padding-left: 1.25rem; padding-right: 1.25rem; }
  .vb-item { padding: 0.25rem 0.85rem; }
  .section { padding: 3.5rem 0; }
  .contact-form { padding: 1.75rem 1.25rem; }
  .form-wrap { gap: 2rem; }
  #contact .container { padding: 0; }
  .form-info { padding: 0 1.25rem; }
  .cruise-hero { height: 320px; }
  .tips-grid { grid-template-columns: 1fr; }
  .about-inner { flex-direction: column; }
  .about-photo { width: 100%; max-width: 280px; margin: 0 auto; }
  .mobile-stack { grid-template-columns: 1fr !important; gap: 1.5rem !important; }
  .mobile-stack-col { flex-direction: column !important; gap: 1.5rem !important; }
}

/* Cruise flyer */
.cruise-flyer { margin-top: 2rem; }
.cruise-flyer h3 { font-size: 1rem; font-weight: 400; margin-bottom: 0.75rem; color: var(--navy); }
.cruise-flyer img {
  max-width: 100%;
  cursor: zoom-in;
  border: 1px solid var(--sand-dark);
  display: block;
  transition: opacity 0.2s;
}
.cruise-flyer img:hover { opacity: 0.9; }
.cruise-flyer p { font-size: 0.72rem; color: #aaa; margin-top: 0.5rem; letter-spacing: 0.08em; text-transform: uppercase; }

/* Lightbox */
.lightbox-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.88);
  z-index: 500;
  align-items: center;
  justify-content: center;
  cursor: zoom-out;
  padding: 2rem;
}
.lightbox-overlay.open { display: flex; }
.lightbox-overlay img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
  box-shadow: 0 8px 40px rgba(0,0,0,0.5);
}
.lightbox-close {
  position: absolute;
  top: 1.25rem; right: 1.5rem;
  color: rgba(255,255,255,0.7);
  font-size: 2rem;
  cursor: pointer;
  line-height: 1;
  background: none;
  border: none;
  padding: 0;
}
