/* ============================================================
   Nathan Yachting — style.css
   Mobile-first, CSS custom properties, no framework
   ============================================================ */

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

/* ── Design tokens ────────────────────────────────────────── */
:root {
  --color-navy:       #3D3D6B;
  --color-amber:      #F5A623;
  --color-coral:      #E8643A;
  --color-sky:        #4DB8E8;
  --color-teal:       #1A9490;
  --color-white:      #FFFFFF;
  --color-cream:      #FAF8F4;
  --color-dark:       #0D1B2A;
  --color-text:       #1A1A2E;
  --color-text-light: #5A5A7A;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'DM Sans', system-ui, sans-serif;
  --font-accent:  'Teko', 'Arial Narrow', sans-serif;

  --radius-sm:  4px;
  --radius-md:  8px;
  --radius-lg:  16px;
  --radius-xl:  24px;

  --shadow-sm:  0 2px 8px rgba(13,27,42,.08);
  --shadow-md:  0 4px 20px rgba(13,27,42,.14);
  --shadow-lg:  0 8px 40px rgba(13,27,42,.20);

  --transition: .3s ease;
  --nav-h:      72px;
}

/* ── Reset ────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--color-text);
  background: var(--color-white);
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul { list-style: none; }

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

/* ── Typography helpers ───────────────────────────────────── */
.display { font-family: var(--font-display); font-weight: 600; line-height: 1.15; }
.accent  { font-family: var(--font-accent); letter-spacing: .04em; }

h1,h2,h3,h4 { font-family: var(--font-display); font-weight: 600; line-height: 1.2; }
h1 { font-size: clamp(2.2rem, 6vw, 4.5rem); }
h2 { font-size: clamp(1.8rem, 4vw, 3rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); }

/* ── Layout helpers ───────────────────────────────────────── */
.container { width: 100%; max-width: 1280px; margin: 0 auto; padding: 0 1.25rem; }
.section-pad { padding: 5rem 0; }
.section-pad-sm { padding: 3rem 0; }
@media (min-width: 768px) {
  .container { padding: 0 2rem; }
  .section-pad { padding: 7rem 0; }
}
@media (min-width: 1200px) {
  .container { padding: 0 3rem; }
}

/* ── Scroll-reveal ────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .65s ease, transform .65s ease;
}
.reveal.is-visible { opacity: 1; transform: none; }

/* ── Buttons ──────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .8rem 1.8rem;
  border-radius: 50px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: .95rem;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
}
.btn:hover { transform: scale(1.04); box-shadow: var(--shadow-md); }

.btn-amber {
  background: linear-gradient(135deg, var(--color-amber), var(--color-coral));
  color: var(--color-white);
}
.btn-amber:hover { box-shadow: 0 6px 24px rgba(245,166,35,.45); }

.btn-outline-white {
  border: 2px solid rgba(255,255,255,.8);
  color: var(--color-white);
  background: transparent;
}
.btn-outline-white:hover { background: rgba(255,255,255,.12); }

.btn-teal {
  background: var(--color-teal);
  color: var(--color-white);
}
.btn-navy {
  background: var(--color-navy);
  color: var(--color-white);
}

.btn-wa {
  background: #25D366;
  color: var(--color-white);
}
.btn-wa:hover { box-shadow: 0 6px 24px rgba(37,211,102,.45); }

/* ── TOP NAVIGATION ───────────────────────────────────────── */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  transition: background var(--transition), backdrop-filter var(--transition), box-shadow var(--transition);
}
#navbar.scrolled {
  background: rgba(13,27,42,.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(0,0,0,.3);
}
#navbar .nav-inner {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.nav-logo img { height: 44px; width: auto; }
.nav-links {
  display: none;
  gap: 1.8rem;
  align-items: center;
}
.nav-links a {
  color: rgba(255,255,255,.9);
  font-size: .9rem;
  font-weight: 500;
  letter-spacing: .02em;
  position: relative;
  padding-bottom: 2px;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--color-amber);
  transition: width var(--transition);
}
.nav-links a:hover::after { width: 100%; }

.nav-right {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.lang-toggle {
  color: rgba(255,255,255,.85);
  font-size: .85rem;
  font-weight: 600;
  letter-spacing: .06em;
  padding: .3rem .6rem;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255,255,255,.3);
  transition: background var(--transition);
  cursor: pointer;
}
.lang-toggle:hover { background: rgba(255,255,255,.12); }

.btn-nav-wa {
  background: #25D366;
  color: var(--color-white);
  font-size: .82rem;
  padding: .45rem 1rem;
  border-radius: 50px;
  font-weight: 600;
  display: none;
}

.hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: .4rem;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-white);
  transition: transform var(--transition), opacity var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile overlay nav */
#mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(13,27,42,.97);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.2rem;
}
#mobile-menu.open { display: flex; }
#mobile-menu a {
  color: var(--color-white);
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 600;
}
#mobile-menu a:hover { color: var(--color-amber); }

@media (min-width: 768px) {
  .btn-nav-wa { display: inline-flex; }
  .hamburger { display: none; }
}
@media (min-width: 1024px) {
  .nav-links { display: flex; }
  #navbar .nav-inner { padding: 0 2rem; }
}

/* ── HERO ─────────────────────────────────────────────────── */
#hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  color: var(--color-white);
}
.hero-video-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-video-wrap video,
.hero-video-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(13,27,42,.45) 0%, rgba(13,27,42,.70) 100%);
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 1.25rem;
  max-width: 900px;
  animation: heroFadeUp .9s ease .2s both;
}
@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(32px); }
  to   { opacity: 1; transform: none; }
}
.hero-label {
  font-family: var(--font-accent);
  font-size: 1rem;
  letter-spacing: .18em;
  color: var(--color-teal);
  text-transform: uppercase;
  margin-bottom: 1.2rem;
  animation: heroFadeUp .9s ease .1s both;
}
.hero-title {
  font-size: clamp(2rem, 6vw, 4.5rem);
  font-weight: 600;
  line-height: 1.12;
  margin-bottom: 1rem;
}
.hero-sub {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: rgba(255,255,255,.85);
  margin-bottom: 2.4rem;
  font-weight: 300;
}
.hero-btns {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  animation: bounce 2s infinite;
  color: rgba(255,255,255,.7);
  font-size: 1.6rem;
}
@keyframes bounce {
  0%,100% { transform: translateX(-50%) translateY(0); }
  50%      { transform: translateX(-50%) translateY(8px); }
}

/* trust bar */
.trust-bar {
  background: rgba(255,255,255,.07);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-top: 1px solid rgba(255,255,255,.12);
  padding: .9rem 1.25rem;
  position: absolute;
  bottom: 0; left: 0; right: 0;
  z-index: 2;
  overflow-x: auto;
}
.trust-bar-inner {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  align-items: center;
  white-space: nowrap;
  min-width: max-content;
  margin: 0 auto;
}
.trust-badge {
  color: rgba(255,255,255,.9);
  font-size: .8rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: .35rem;
}
.trust-badge .check { color: var(--color-teal); font-weight: 700; }

/* ── ABOUT ────────────────────────────────────────────────── */
#about { padding: 6rem 0; }
.about-grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}
.about-img-wrap {
  position: relative;
}
.about-img-wrap img {
  width: 100%;
  border-radius: var(--radius-lg);
  object-fit: cover;
  aspect-ratio: 4/3;
}
.about-img-wrap::before {
  content: '';
  position: absolute;
  inset: -12px -12px 12px 12px;
  border: 3px solid var(--color-teal);
  border-radius: var(--radius-lg);
  z-index: -1;
}
.about-text .section-label {
  font-family: var(--font-accent);
  color: var(--color-teal);
  letter-spacing: .14em;
  font-size: .95rem;
  text-transform: uppercase;
  margin-bottom: .7rem;
}
.about-text h2 { margin-bottom: 1.2rem; }
.about-text p  { color: var(--color-text-light); margin-bottom: 1rem; line-height: 1.75; }
.family-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  margin-top: 1.2rem;
  padding: .6rem 1.2rem;
  background: var(--color-cream);
  border-radius: 50px;
  font-size: .85rem;
  font-weight: 600;
  color: var(--color-navy);
  border: 1px solid rgba(61,61,107,.12);
}

@media (min-width: 900px) {
  .about-grid { grid-template-columns: 1fr 1fr; }
}

/* ── YACHT SPECS ──────────────────────────────────────────── */
#yacht {
  background: var(--color-cream);
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}
#yacht::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 120px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 120'%3E%3Cpath fill='%23FAF8F4' fill-opacity='.07' d='M0,60 C240,100 480,20 720,60 C960,100 1200,20 1440,60 L1440,120 L0,120 Z'/%3E%3C/svg%3E") repeat-x bottom;
}
.yacht-heading { text-align: center; margin-bottom: 3.5rem; }
.yacht-heading .section-label {
  font-family: var(--font-accent);
  color: var(--color-teal);
  letter-spacing: .14em;
  font-size: .95rem;
  text-transform: uppercase;
  margin-bottom: .6rem;
}
.specs-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.2rem;
  margin-bottom: 3rem;
}
.spec-card {
  background: var(--color-white);
  border-radius: var(--radius-md);
  padding: 1.2rem;
  display: flex;
  align-items: flex-start;
  gap: .8rem;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition);
}
.spec-card:hover { box-shadow: var(--shadow-md); }
.spec-icon { font-size: 1.6rem; flex-shrink: 0; }
.spec-label { font-size: .75rem; color: var(--color-text-light); font-weight: 500; text-transform: uppercase; letter-spacing: .06em; }
.spec-value { font-weight: 700; color: var(--color-navy); font-size: .95rem; margin-top: .15rem; }

.cabin-scroll { display: flex; gap: 1.5rem; overflow-x: auto; padding-bottom: 1rem; scroll-snap-type: x mandatory; }
.cabin-scroll::-webkit-scrollbar { height: 4px; }
.cabin-scroll::-webkit-scrollbar-track { background: rgba(0,0,0,.06); border-radius: 2px; }
.cabin-scroll::-webkit-scrollbar-thumb { background: var(--color-teal); border-radius: 2px; }
.cabin-card {
  flex: 0 0 280px;
  scroll-snap-align: start;
  background: var(--color-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.cabin-card img { width: 100%; height: 180px; object-fit: cover; }
.cabin-card-body { padding: 1.2rem; }
.cabin-card-body h4 { font-size: 1.1rem; margin-bottom: .4rem; color: var(--color-navy); }
.cabin-card-body p { font-size: .85rem; color: var(--color-text-light); }

@media (min-width: 768px) {
  .specs-grid { grid-template-columns: repeat(4, 1fr); }
  .cabin-card { flex: 0 0 320px; }
}
@media (min-width: 1024px) {
  .cabin-scroll { overflow: visible; display: grid; grid-template-columns: repeat(3, 1fr); }
  .cabin-card { flex: none; }
}

.amenities-heading { font-size: 1.3rem; margin: 3rem 0 1.5rem; font-family: var(--font-display); }
.amenities-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: .9rem;
}
.amenity-item {
  display: flex;
  align-items: center;
  gap: .7rem;
  font-size: .9rem;
  padding: .6rem .8rem;
  background: var(--color-white);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
}
.amenity-icon { font-size: 1.2rem; flex-shrink: 0; }

@media (min-width: 600px) { .amenities-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 900px) { .amenities-grid { grid-template-columns: repeat(4, 1fr); } }

.specs-image-wrap {
  margin-top: 3rem;
  text-align: center;
}
.specs-image-wrap img {
  max-width: 720px;
  margin: 0 auto;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  cursor: pointer;
  transition: transform var(--transition);
}
.specs-image-wrap img:hover { transform: scale(1.01); }

/* ── CRUISES ──────────────────────────────────────────────── */
#cruises {
  background: var(--color-dark);
  color: var(--color-white);
  padding: 6rem 0;
}
.cruises-heading {
  text-align: center;
  margin-bottom: 3rem;
}
.cruises-heading h2 { color: var(--color-amber); }
.cruises-heading p  { color: rgba(255,255,255,.7); margin-top: .7rem; }

.experience-cards {
  display: grid;
  gap: 1.5rem;
  margin-bottom: 4rem;
}
.exp-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: var(--radius-xl);
  padding: 2rem;
  transition: background var(--transition), transform var(--transition);
}
.exp-card:hover {
  background: rgba(255,255,255,.10);
  transform: translateY(-4px);
}
.exp-icon { font-size: 2.2rem; margin-bottom: 1rem; }
.exp-subtitle { font-family: var(--font-accent); color: var(--color-teal); letter-spacing: .1em; font-size: .95rem; text-transform: uppercase; margin-bottom: .6rem; }
.exp-card h3 { font-size: 1.5rem; color: var(--color-amber); margin-bottom: .8rem; }
.exp-card p { color: rgba(255,255,255,.75); font-size: .9rem; line-height: 1.7; margin-bottom: 1rem; }
.exp-price { font-family: var(--font-accent); font-size: 1.1rem; color: var(--color-amber); letter-spacing: .04em; }

@media (min-width: 768px) { .experience-cards { grid-template-columns: repeat(3, 1fr); } }

/* Day timeline */
.timeline-section { margin-bottom: 4rem; }
.timeline-section h3 { color: var(--color-amber); margin-bottom: 1.8rem; text-align: center; }
.timeline {
  display: flex;
  gap: 0;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 1rem;
  justify-content: center;
}
.timeline-step {
  flex: 0 0 140px;
  scroll-snap-align: start;
  text-align: center;
  position: relative;
  padding: 0 .5rem;
}
.timeline-step::after {
  content: '';
  position: absolute;
  top: 22px;
  right: 0;
  width: 50%;
  height: 2px;
  background: var(--color-teal);
}
.timeline-step:last-child::after { display: none; }
.timeline-dot {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--color-teal);
  margin: 0 auto .6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: .8rem;
  position: relative;
  z-index: 1;
}
.timeline-step p { font-size: .78rem; color: rgba(255,255,255,.8); }

/* Culinary grid */
.culinary-section h3 { color: var(--color-amber); margin-bottom: .5rem; text-align: center; }
.culinary-section .culinary-note { text-align: center; color: rgba(255,255,255,.6); font-size: .85rem; margin-bottom: 2rem; }
.culinary-grid {
  columns: 2;
  column-gap: 1rem;
}
.culinary-grid img {
  width: 100%;
  border-radius: var(--radius-md);
  margin-bottom: 1rem;
  break-inside: avoid;
  transition: transform var(--transition);
  cursor: pointer;
}
.culinary-grid img:hover { transform: scale(1.02); }
@media (min-width: 768px) { .culinary-grid { columns: 3; } }

/* ── REGION ───────────────────────────────────────────────── */
#region { padding: 0; overflow: hidden; }
.region-grid { display: grid; }
.region-img {
  height: 360px;
  overflow: hidden;
}
.region-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.region-text {
  background: var(--color-cream);
  padding: 3.5rem 1.5rem;
}
.region-text .section-label {
  font-family: var(--font-accent);
  color: var(--color-teal);
  letter-spacing: .14em;
  font-size: .95rem;
  text-transform: uppercase;
  margin-bottom: .6rem;
}
.region-text h2 { margin-bottom: 1.2rem; }
.region-text p { color: var(--color-text-light); line-height: 1.75; margin-bottom: 1.5rem; }
.stats-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-bottom: 2rem;
}
.stat-box {
  background: var(--color-white);
  border-radius: var(--radius-md);
  padding: 1.2rem 1rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
}
.stat-num {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--color-navy);
  line-height: 1;
}
.stat-label { font-size: .8rem; color: var(--color-text-light); margin-top: .3rem; }
.map-embed { margin-top: 1.5rem; border-radius: var(--radius-md); overflow: hidden; }
.map-embed iframe { width: 100%; height: 220px; border: none; display: block; }

@media (min-width: 900px) {
  .region-grid { grid-template-columns: 55% 45%; }
  .region-img { height: auto; min-height: 520px; }
  .region-text { padding: 5rem 3rem; }
  .stats-row { grid-template-columns: repeat(4, 1fr); }
}

/* ── PRICES ───────────────────────────────────────────────── */
#prices {
  padding: 6rem 0;
  background: var(--color-white);
}
.prices-heading { text-align: center; margin-bottom: 3rem; }
.prices-heading .section-label {
  font-family: var(--font-accent);
  color: var(--color-teal);
  letter-spacing: .14em;
  font-size: .95rem;
  text-transform: uppercase;
  margin-bottom: .6rem;
}
.pricing-tables {
  display: grid;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}
.price-table {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.price-table-header {
  padding: 1.5rem 2rem;
  color: var(--color-white);
}
.price-table.high .price-table-header { background: linear-gradient(135deg, var(--color-amber), var(--color-coral)); }
.price-table.low  .price-table-header { background: linear-gradient(135deg, var(--color-teal), var(--color-navy)); }
.price-table-header h3 { font-size: 1.4rem; margin-bottom: .2rem; }
.price-table-header p  { font-size: .85rem; opacity: .85; }
.price-table-body { padding: 1.5rem 2rem; border: 2px solid; border-top: none; border-radius: 0 0 var(--radius-xl) var(--radius-xl); }
.price-table.high .price-table-body { border-color: var(--color-amber); }
.price-table.low  .price-table-body { border-color: var(--color-teal); }
.price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: .7rem 0;
  border-bottom: 1px solid rgba(0,0,0,.06);
}
.price-row:last-child { border-bottom: none; }
.price-row .label { font-size: .95rem; color: var(--color-text-light); }
.price-row .amount { font-family: var(--font-display); font-size: 1.3rem; font-weight: 700; color: var(--color-navy); }

@media (min-width: 768px) { .pricing-tables { grid-template-columns: 1fr 1fr; } }

.inclusions {
  display: grid;
  gap: 1.5rem;
  margin-bottom: 2rem;
}
.inclusion-box {
  background: var(--color-cream);
  border-radius: var(--radius-lg);
  padding: 1.8rem;
}
.inclusion-box h4 { margin-bottom: 1rem; font-size: 1.1rem; }
.inclusion-list li {
  display: flex;
  align-items: flex-start;
  gap: .6rem;
  padding: .4rem 0;
  font-size: .9rem;
  color: var(--color-text-light);
}
.inclusion-list .inc-icon { flex-shrink: 0; margin-top: 2px; }
.inc-yes  { color: #16a34a; font-size: 1rem; }
.inc-info { color: var(--color-sky); }

@media (min-width: 768px) { .inclusions { grid-template-columns: 1fr 1fr; } }

.price-note-box {
  background: #FFF8E7;
  border: 1.5px solid rgba(245,166,35,.4);
  border-radius: var(--radius-lg);
  padding: 1.5rem 2rem;
  margin-bottom: 2rem;
  font-size: .9rem;
  color: var(--color-text);
}
.price-note-box strong { color: var(--color-coral); }

.b2b-note {
  text-align: center;
  font-size: .82rem;
  color: var(--color-text-light);
  margin-top: 1.5rem;
}
.b2b-note a { color: var(--color-teal); text-decoration: underline; }

/* ── AVAILABILITY CALENDAR ────────────────────────────────── */
#availability {
  background: var(--color-cream);
  padding: 6rem 0;
}
.avail-heading { text-align: center; margin-bottom: .8rem; }
.avail-heading .section-label {
  font-family: var(--font-accent);
  color: var(--color-teal);
  letter-spacing: .14em;
  font-size: .95rem;
  text-transform: uppercase;
  margin-bottom: .6rem;
}
.avail-sub { text-align: center; color: var(--color-text-light); margin-bottom: 2.5rem; }

#calendar-container {
  display: grid;
  gap: 1.5rem;
  margin-bottom: 2rem;
}
.calendar-month {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.calendar-month-header {
  background: var(--color-navy);
  color: var(--color-white);
  padding: 1rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.calendar-month-header h4 { font-family: var(--font-display); font-size: 1.15rem; }
.cal-nav-btn {
  background: none;
  border: none;
  color: rgba(255,255,255,.7);
  font-size: 1.2rem;
  cursor: pointer;
  padding: .2rem .5rem;
  transition: color var(--transition);
}
.cal-nav-btn:hover { color: var(--color-amber); }
.calendar-weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  background: rgba(61,61,107,.06);
}
.calendar-weekdays span {
  text-align: center;
  padding: .5rem 0;
  font-size: .75rem;
  font-weight: 700;
  color: var(--color-text-light);
  text-transform: uppercase;
  letter-spacing: .04em;
}
.calendar-days { display: grid; grid-template-columns: repeat(7, 1fr); padding: .5rem; gap: .2rem; }
.cal-day {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  font-size: .85rem;
  cursor: default;
  font-weight: 500;
}
.cal-day.empty { }
.cal-day.available { background: rgba(26,148,144,.08); color: var(--color-teal); }
.cal-day.unavailable { background: rgba(232,100,58,.12); color: var(--color-coral); text-decoration: line-through; }
.cal-day.today { background: var(--color-navy); color: var(--color-white); font-weight: 700; border-radius: 50%; }

@media (min-width: 900px) { #calendar-container { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 600px) and (max-width: 899px) { #calendar-container { grid-template-columns: repeat(2, 1fr); } }

.cal-legend {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 2rem;
  font-size: .85rem;
}
.cal-legend span { display: flex; align-items: center; gap: .4rem; }
.cal-cta { text-align: center; }
.cal-cta .cta-row { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin-top: 1rem; }

/* ── GALLERY ──────────────────────────────────────────────── */
#gallery { padding: 6rem 0; }
.gallery-heading { text-align: center; margin-bottom: 2rem; }
.gallery-heading .section-label {
  font-family: var(--font-accent);
  color: var(--color-teal);
  letter-spacing: .14em;
  font-size: .95rem;
  text-transform: uppercase;
  margin-bottom: .6rem;
}
.gallery-filters {
  display: flex;
  gap: .6rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}
.filter-btn {
  padding: .45rem 1.2rem;
  border-radius: 50px;
  border: 1.5px solid rgba(61,61,107,.2);
  font-size: .85rem;
  font-weight: 600;
  color: var(--color-text-light);
  transition: all var(--transition);
  background: transparent;
}
.filter-btn:hover,
.filter-btn.active {
  background: var(--color-navy);
  color: var(--color-white);
  border-color: var(--color-navy);
}
.gallery-grid {
  columns: 2;
  column-gap: 1rem;
}
.gallery-item {
  break-inside: avoid;
  margin-bottom: 1rem;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  position: relative;
}
.gallery-item img {
  width: 100%;
  display: block;
  transition: transform var(--transition);
}
.gallery-item:hover img { transform: scale(1.04); }
.gallery-item.hidden { display: none; }

@media (min-width: 600px) { .gallery-grid { columns: 3; } }
@media (min-width: 1024px) { .gallery-grid { columns: 4; } }

/* Lightbox */
#lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.92);
  z-index: 9000;
  align-items: center;
  justify-content: center;
}
#lightbox.open { display: flex; }
#lightbox-img {
  max-width: 90vw;
  max-height: 88vh;
  border-radius: var(--radius-md);
  object-fit: contain;
}
.lb-btn {
  position: absolute;
  background: rgba(255,255,255,.12);
  border: none;
  color: var(--color-white);
  font-size: 1.8rem;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background var(--transition);
}
.lb-btn:hover { background: rgba(255,255,255,.25); }
#lb-close { top: 1.5rem; right: 1.5rem; }
#lb-prev  { left: 1rem; top: 50%; transform: translateY(-50%); }
#lb-next  { right: 1rem; top: 50%; transform: translateY(-50%); }

/* ── REVIEWS ──────────────────────────────────────────────── */
#reviews {
  background: var(--color-dark);
  color: var(--color-white);
  padding: 6rem 0;
}
.reviews-heading { text-align: center; margin-bottom: 2.5rem; }
.reviews-heading h2 { color: var(--color-white); }
.reviews-carousel-wrap { overflow: hidden; position: relative; }
.reviews-carousel {
  display: flex;
  gap: 1.5rem;
  transition: transform .5s ease;
  will-change: transform;
}
.review-card {
  flex: 0 0 min(340px, 85vw);
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-xl);
  padding: 2rem;
}
.review-stars { color: var(--color-amber); font-size: 1.1rem; letter-spacing: .1em; margin-bottom: .8rem; }
.review-text {
  font-size: .9rem;
  color: rgba(255,255,255,.82);
  line-height: 1.75;
  margin-bottom: 1.2rem;
  font-style: italic;
}
.review-meta strong { color: var(--color-amber); font-size: .95rem; }
.review-meta span   { color: rgba(255,255,255,.5); font-size: .8rem; margin-left: .5rem; }

.carousel-dots {
  display: flex;
  gap: .6rem;
  justify-content: center;
  margin-top: 2rem;
}
.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,.25);
  transition: background var(--transition), transform var(--transition);
}
.carousel-dot.active { background: var(--color-amber); transform: scale(1.3); }

.aggregate-rating {
  text-align: center;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,.1);
}
.aggregate-rating .stars-big { color: var(--color-amber); font-size: 1.8rem; }
.aggregate-rating .score { font-family: var(--font-display); font-size: 2.5rem; font-weight: 700; color: var(--color-white); }
.aggregate-rating .count { color: rgba(255,255,255,.55); font-size: .9rem; }

/* ── CONTACT ──────────────────────────────────────────────── */
#contact { padding: 6rem 0; }
.contact-heading { text-align: center; margin-bottom: 3rem; }
.contact-heading .section-label {
  font-family: var(--font-accent);
  color: var(--color-teal);
  letter-spacing: .14em;
  font-size: .95rem;
  text-transform: uppercase;
  margin-bottom: .6rem;
}
.contact-grid { display: grid; gap: 3rem; align-items: start; }

.contact-info h3 { margin-bottom: 1.5rem; font-size: 1.3rem; color: var(--color-navy); }
.booking-steps { counter-reset: step; margin-bottom: 2rem; }
.booking-step {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.2rem;
}
.step-num {
  flex-shrink: 0;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--color-navy);
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: .9rem;
}
.step-text strong { display: block; font-size: .9rem; color: var(--color-text); }
.step-text span   { font-size: .82rem; color: var(--color-text-light); }

.wa-buttons { display: flex; flex-direction: column; gap: .9rem; margin-bottom: 2rem; }
.wa-btn {
  display: flex;
  align-items: center;
  gap: .8rem;
  padding: .9rem 1.5rem;
  border-radius: var(--radius-lg);
  background: #25D366;
  color: var(--color-white);
  font-weight: 600;
  font-size: .9rem;
  transition: box-shadow var(--transition), transform var(--transition);
}
.wa-btn:hover { box-shadow: 0 6px 24px rgba(37,211,102,.4); transform: translateY(-2px); }
.wa-btn svg { flex-shrink: 0; }

.contact-details { display: flex; flex-direction: column; gap: .7rem; margin-bottom: 1.5rem; }
.contact-detail { display: flex; align-items: center; gap: .7rem; font-size: .9rem; color: var(--color-text-light); }
.contact-detail a:hover { color: var(--color-teal); }
.contact-detail .det-icon { font-size: 1.1rem; }

.social-row { display: flex; gap: 1rem; }
.social-link {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .85rem;
  color: var(--color-text-light);
  transition: color var(--transition);
}
.social-link:hover { color: var(--color-navy); }

/* Contact form */
.contact-form-wrap {
  background: var(--color-cream);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
}
.contact-form-wrap h3 { margin-bottom: 1.8rem; font-size: 1.3rem; }
.form-row { display: grid; gap: 1rem; margin-bottom: 1rem; }
.form-group { display: flex; flex-direction: column; gap: .4rem; }
.form-group label { font-size: .82rem; font-weight: 600; color: var(--color-text); text-transform: uppercase; letter-spacing: .04em; }
.form-group input,
.form-group select,
.form-group textarea {
  border: 1.5px solid rgba(0,0,0,.12);
  border-radius: var(--radius-md);
  padding: .75rem 1rem;
  font-family: var(--font-body);
  font-size: .9rem;
  color: var(--color-text);
  background: var(--color-white);
  transition: border-color var(--transition);
  width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-teal);
}
.form-group textarea { resize: vertical; min-height: 110px; }
.form-privacy { font-size: .78rem; color: var(--color-text-light); margin-bottom: 1.2rem; }
.form-submit { width: 100%; font-size: 1rem; padding: .9rem; }

@media (min-width: 600px) { .form-row { grid-template-columns: 1fr 1fr; } }
@media (min-width: 900px) { .contact-grid { grid-template-columns: 1fr 1fr; } }

/* ── FOOTER ───────────────────────────────────────────────── */
#footer {
  background: var(--color-dark);
  color: rgba(255,255,255,.75);
  padding: 4rem 0 0;
}
.footer-grid {
  display: grid;
  gap: 2.5rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
@media (min-width: 600px) { .footer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .footer-grid { grid-template-columns: repeat(4, 1fr); } }

.footer-col h4 {
  font-family: var(--font-display);
  color: var(--color-white);
  font-size: 1.1rem;
  margin-bottom: 1.2rem;
}
.footer-logo img { height: 48px; margin-bottom: 1rem; }
.footer-tagline { font-size: .85rem; line-height: 1.6; margin-bottom: .5rem; }
.footer-mmsi    { font-size: .78rem; color: rgba(255,255,255,.45); font-family: var(--font-accent); letter-spacing: .06em; }
.footer-links   { display: flex; flex-direction: column; gap: .6rem; }
.footer-links a { font-size: .88rem; color: rgba(255,255,255,.65); transition: color var(--transition); }
.footer-links a:hover { color: var(--color-amber); }
.footer-contacts { display: flex; flex-direction: column; gap: .7rem; }
.footer-contact-item { display: flex; align-items: flex-start; gap: .6rem; font-size: .85rem; }
.footer-contact-item a:hover { color: var(--color-amber); }

.footer-social { display: flex; gap: .8rem; margin-bottom: 1.5rem; }
.footer-social a {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.2);
  display: flex; align-items: center; justify-content: center;
  font-size: .9rem; color: rgba(255,255,255,.65);
  transition: all var(--transition);
}
.footer-social a:hover { background: var(--color-amber); border-color: var(--color-amber); color: var(--color-dark); }

.trust-badges { display: flex; flex-wrap: wrap; gap: .5rem; }
.trust-badge-pill {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 50px;
  padding: .3rem .8rem;
  font-size: .75rem;
  color: rgba(255,255,255,.65);
}
.footer-bottom {
  padding: 1.5rem 0;
  display: flex;
  flex-direction: column;
  gap: .4rem;
  align-items: center;
  text-align: center;
}
.footer-bottom p { font-size: .8rem; color: rgba(255,255,255,.4); }

/* ── FLOATING WHATSAPP ────────────────────────────────────── */
.whatsapp-float {
  position: fixed;
  bottom: 1.8rem;
  right: 1.8rem;
  z-index: 9999;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,.5);
  transition: transform var(--transition), box-shadow var(--transition);
  animation: waPulse 2.5s infinite;
}
.whatsapp-float:hover {
  transform: scale(1.12);
  box-shadow: 0 6px 28px rgba(37,211,102,.65);
  animation: none;
}
@keyframes waPulse {
  0%,100% { box-shadow: 0 4px 20px rgba(37,211,102,.5); }
  50%      { box-shadow: 0 4px 32px rgba(37,211,102,.8), 0 0 0 8px rgba(37,211,102,.15); }
}

/* ── PARTNERS PAGE ────────────────────────────────────────── */
.partners-hero {
  min-height: 50vh;
  background: var(--color-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--color-white);
  padding: calc(var(--nav-h) + 3rem) 1.5rem 4rem;
}
.partners-hero h1 { color: var(--color-amber); margin-bottom: .8rem; }
.partners-hero p  { color: rgba(255,255,255,.75); font-size: 1.1rem; }
.why-grid {
  display: grid;
  gap: 1rem;
}
.why-item {
  display: flex;
  align-items: flex-start;
  gap: .9rem;
  padding: 1.2rem;
  background: var(--color-cream);
  border-radius: var(--radius-md);
  font-size: .9rem;
}
.why-check { color: var(--color-teal); font-size: 1.1rem; flex-shrink: 0; margin-top: 2px; }
@media (min-width: 768px) { .why-grid { grid-template-columns: repeat(2, 1fr); } }

.crew-grid {
  display: grid;
  gap: 1.5rem;
}
.crew-card {
  text-align: center;
  padding: 2rem 1.5rem;
  background: var(--color-cream);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-sm);
}
.crew-icon { font-size: 2.5rem; margin-bottom: 1rem; }
.crew-card h4 { margin-bottom: .5rem; color: var(--color-navy); }
.crew-card p { font-size: .88rem; color: var(--color-text-light); }
@media (min-width: 768px) { .crew-grid { grid-template-columns: repeat(3, 1fr); } }

/* ── Utility ──────────────────────────────────────────────── */
.text-center { text-align: center; }
.mt-2 { margin-top: 2rem; }
.mb-2 { margin-bottom: 2rem; }
.text-teal  { color: var(--color-teal); }
.text-amber { color: var(--color-amber); }
.divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0,0,0,.1), transparent);
  margin: 2rem 0;
}
