/* ============================================================
   NKAZI TOURS v2 — Complete Rewrite
   Aesthetic: Warm editorial · African warmth · Premium travel
   Fonts: Cormorant Garamond (display) + DM Sans (body)
   ============================================================ */

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

/* ── Variables ─────────────────────────────────────────────── */
:root {
  --ink:       #0f1923;
  --ink2:      #1c2b3a;
  --amber:     #c8861a;
  --amber2:    #e4aa00;
  --sand:      #f5ede0;
  --sand2:     #fdf8f2;
  --rust:      #b84c1e;
  --teal:      #0e6e6e;
  --white:     #ffffff;
  --muted:     #6b7a8a;
  --border:    rgba(15,25,35,.10);
  --wa:        #25d366;

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

  --shadow-sm: 0 4px 20px rgba(15,25,35,.08);
  --shadow-md: 0 12px 50px rgba(15,25,35,.13);
  --shadow-lg: 0 30px 80px rgba(15,25,35,.18);

  --r-sm:  12px;
  --r-md:  20px;
  --r-lg:  32px;
  --r-xl:  48px;
}

/* ── 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(--ink); background: var(--white); line-height: 1.6; overflow-x: hidden; }
img   { display: block; max-width: 100%; }
a     { text-decoration: none; color: inherit; }
ul    { list-style: none; }
label { display: block; font-weight: 600; margin-bottom: .4rem; font-size: .9rem; color: var(--ink2); }
button { cursor: pointer; font-family: var(--font-body); }

/* ── Typography ─────────────────────────────────────────────── */
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 600; line-height: 1.1; color: var(--ink); }
h1 { font-size: clamp(2.8rem, 7vw, 6rem); }
h2 { font-size: clamp(2rem, 4vw, 3.4rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); font-weight: 500; }

/* ── Layout ─────────────────────────────────────────────────── */
.container { width: min(1200px, 92%); margin: 0 auto; }
.grid-2    { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.grid-3    { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.8rem; }

/* ── Topbar ─────────────────────────────────────────────────── */
.topbar {
  background: var(--ink);
  color: rgba(255,255,255,.75);
  font-size: .82rem;
  font-weight: 500;
  letter-spacing: .03em;
  padding: .6rem 0;
}
.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: .5rem;
}
.topbar a { color: rgba(255,255,255,.75); transition: color .2s; }
.topbar a:hover { color: var(--amber2); }
.topbar-left { display: flex; gap: 1.5rem; align-items: center; }
.topbar-left span::before { content: '· '; opacity: .4; }
.topbar-left span:first-child::before { display: none; }

/* ── Navbar ─────────────────────────────────────────────────── */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow .3s;
}
.navbar.scrolled { box-shadow: var(--shadow-md); }
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
  gap: 2rem;
}
.brand img { height: 64px; width: auto; }
.nav-links {
  display: flex;
  align-items: center;
  gap: .2rem;
}
.nav-links a {
  font-size: .9rem;
  font-weight: 600;
  color: var(--ink2);
  padding: .5rem .85rem;
  border-radius: 999px;
  transition: background .2s, color .2s;
  letter-spacing: .01em;
}
.nav-links a:hover { background: var(--sand); color: var(--amber); }
.nav-links a.active { color: var(--amber); }
.menu-btn {
  display: none;
  background: var(--ink);
  color: var(--white);
  border: 0;
  padding: .6rem 1rem;
  border-radius: var(--r-sm);
  font-size: .85rem;
  font-weight: 600;
  letter-spacing: .04em;
}

/* ── Inline SVG icon sizing (used in buttons) ────────────────── */
.btn svg,
.topbar a svg,
.footer-social-btn svg,
.footer-links svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
  flex-shrink: 0;
  display: inline-block;
  vertical-align: middle;
}

/* ── Buttons ─────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: .9rem;
  letter-spacing: .03em;
  border: 0;
  border-radius: 999px;
  padding: .85rem 1.6rem;
  cursor: pointer;
  transition: transform .2s, box-shadow .2s, background .2s;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }

.btn-primary {
  background: var(--amber);
  color: var(--white);
}
.btn-primary:hover { background: #b8770f; box-shadow: 0 12px 35px rgba(200,134,26,.35); }

.btn-dark {
  background: var(--ink);
  color: var(--white);
}
.btn-dark:hover { box-shadow: 0 12px 35px rgba(15,25,35,.3); }

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

.btn-ghost {
  background: rgba(255,255,255,.12);
  border: 1.5px solid rgba(255,255,255,.25);
  color: var(--white);
  backdrop-filter: blur(8px);
}
.btn-ghost:hover { background: rgba(255,255,255,.22); }

.btn-wa {
  background: var(--wa);
  color: var(--white);
}
.btn-wa:hover { box-shadow: 0 12px 35px rgba(37,211,102,.35); }

.btn-sand {
  background: var(--sand);
  color: var(--ink);
}
.btn-sand:hover { background: #ecdcc9; }

.btn-sm { padding: .6rem 1.1rem; font-size: .82rem; }
.btn-lg { padding: 1.1rem 2.2rem; font-size: 1rem; }

/* ── Pill / Badge ────────────────────────────────────────────── */
.pill {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  background: var(--sand);
  color: var(--amber);
  border: 1px solid rgba(200,134,26,.2);
  padding: .35rem .8rem;
  border-radius: 999px;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.pill-dark {
  background: rgba(255,255,255,.12);
  color: rgba(255,255,255,.9);
  border-color: rgba(255,255,255,.2);
}

/* ── HERO ───────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--ink);
  color: var(--white);
}

/* Slides */
.hero-slides {
  position: absolute;
  inset: 0;
}
.slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  animation: slideIn 90s infinite;
}
.slide:nth-child(1) { animation-delay:  0s; animation-name: driftL; }
.slide:nth-child(2) { animation-delay: 10s; animation-name: driftR; }
.slide:nth-child(3) { animation-delay: 20s; animation-name: driftU; }
.slide:nth-child(4) { animation-delay: 30s; animation-name: driftD; }
.slide:nth-child(5) { animation-delay: 40s; animation-name: driftL; }
.slide:nth-child(6) { animation-delay: 50s; animation-name: driftR; }
.slide:nth-child(7) { animation-delay: 60s; animation-name: driftU; }
.slide:nth-child(8) { animation-delay: 70s; animation-name: driftD; }
.slide:nth-child(9) { animation-delay: 80s; animation-name: driftL; }

@keyframes driftL {
  0%   { opacity: 0; transform: scale(1.06) translateX(0); }
  3%   { opacity: 1; }
  10%  { opacity: 1; transform: scale(1.13) translateX(-1.5%); }
  13%  { opacity: 0; }
  100% { opacity: 0; }
}
@keyframes driftR {
  0%   { opacity: 0; transform: scale(1.06) translateX(0); }
  3%   { opacity: 1; }
  10%  { opacity: 1; transform: scale(1.13) translateX(1.5%); }
  13%  { opacity: 0; }
  100% { opacity: 0; }
}
@keyframes driftU {
  0%   { opacity: 0; transform: scale(1.06) translateY(0); }
  3%   { opacity: 1; }
  10%  { opacity: 1; transform: scale(1.13) translateY(-1.5%); }
  13%  { opacity: 0; }
  100% { opacity: 0; }
}
@keyframes driftD {
  0%   { opacity: 0; transform: scale(1.06) translateY(0); }
  3%   { opacity: 1; }
  10%  { opacity: 1; transform: scale(1.13) translateY(1.5%); }
  13%  { opacity: 0; }
  100% { opacity: 0; }
}

/* Gradient overlay — heavy at bottom for text legibility */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(12,18,28,.95) 0%, rgba(12,18,28,.55) 40%, rgba(12,18,28,.15) 100%),
    linear-gradient(to right, rgba(12,18,28,.5) 0%, transparent 60%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 5rem 0 6rem;
  max-width: 820px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--amber2);
  margin-bottom: 1.5rem;
}
.hero-eyebrow::before {
  content: '';
  display: block;
  width: 28px;
  height: 1.5px;
  background: var(--amber2);
}

.hero h1 {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(3rem, 8vw, 6.5rem);
  line-height: .95;
  color: var(--white);
  margin-bottom: 1.5rem;
  letter-spacing: -.01em;
}
.hero h1 em {
  font-style: italic;
  font-weight: 300;
  color: var(--amber2);
}

.hero-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,.75);
  max-width: 540px;
  line-height: 1.75;
  margin-bottom: 2.5rem;
  font-weight: 300;
}

.hero-actions {
  display: flex;
  gap: .8rem;
  flex-wrap: wrap;
  align-items: center;
}

/* Hero scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  right: 4%;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
  color: rgba(255,255,255,.5);
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, rgba(255,255,255,.5), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: .5; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.2); }
}

/* Hero stats bar */
.hero-stats {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 3;
  background: rgba(15,25,35,.7);
  backdrop-filter: blur(12px);
  border-top: 1px solid rgba(255,255,255,.08);
}
.hero-stats .container {
  display: flex;
  divide: 1px solid rgba(255,255,255,.1);
}
.stat-item {
  flex: 1;
  padding: 1.2rem 0;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,.08);
}
.stat-item:last-child { border-right: none; }
.stat-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 600;
  color: var(--amber2);
  line-height: 1;
}
.stat-label {
  font-size: .72rem;
  color: rgba(255,255,255,.5);
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-top: .25rem;
}

/* ── Section base ────────────────────────────────────────────── */
.section { padding: 6rem 0; }
.section-sm { padding: 4rem 0; }
.section-sand { background: var(--sand2); }
.section-dark { background: var(--ink); color: var(--white); }
.section-ink2 { background: var(--ink2); color: var(--white); }

.section-label {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: .6rem;
}
.section-label::after {
  content: '';
  display: block;
  width: 32px;
  height: 1.5px;
  background: var(--amber);
}
.section-label.light { color: var(--amber2); }
.section-label.light::after { background: var(--amber2); }

.section-intro { max-width: 600px; }
.section-intro h2 { margin-bottom: 1rem; }
.section-intro p { color: var(--muted); line-height: 1.8; font-size: 1.05rem; font-weight: 300; }
.section-intro.light p { color: rgba(255,255,255,.6); }
.section-intro.light h2 { color: var(--white); }

.section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 3.5rem;
  flex-wrap: wrap;
}

/* ── TRIP CARDS ──────────────────────────────────────────────── */
.trip-card {
  background: var(--white);
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: transform .3s, box-shadow .3s;
  display: flex;
  flex-direction: column;
}
.trip-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.trip-card-img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: contain;
  object-position: center;
  background: linear-gradient(135deg, #0f1923, #1c3a5a);
  flex-shrink: 0;
}

.trip-card-body {
  padding: 1.6rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.trip-tag {
  display: inline-flex;
  background: var(--sand);
  color: var(--amber);
  border-radius: 999px;
  padding: .3rem .75rem;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: .8rem;
  width: fit-content;
}

.trip-card h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  margin-bottom: .4rem;
  color: var(--ink);
  line-height: 1.2;
}

.trip-card-location {
  font-size: .83rem;
  color: var(--muted);
  font-weight: 500;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: .3rem;
}
.trip-card-location::before {
  content: '↗';
  font-size: .7rem;
  color: var(--amber);
}

.trip-price-row {
  display: flex;
  align-items: baseline;
  gap: .5rem;
  margin-bottom: 1.2rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}
.trip-price {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--ink);
  line-height: 1;
}
.trip-price-sub {
  font-size: .8rem;
  color: var(--muted);
  font-weight: 400;
}
.trip-duration {
  margin-left: auto;
  font-size: .78rem;
  color: var(--muted);
  background: var(--sand2);
  padding: .3rem .7rem;
  border-radius: 999px;
  font-weight: 600;
}

.trip-card-actions {
  display: flex;
  gap: .6rem;
  flex-wrap: wrap;
  margin-top: auto;
}
.trip-card-actions .btn { flex: 1 1 120px; }

/* Trip details accordion */
.trip-details {
  margin-bottom: 1.2rem;
  border-top: 1px solid var(--border);
  padding-top: 1rem;
}
.trip-details summary {
  cursor: pointer;
  font-size: .85rem;
  font-weight: 600;
  color: var(--ink2);
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .4rem 0;
  user-select: none;
}
.trip-details summary::after {
  content: '+';
  font-size: 1.2rem;
  color: var(--amber);
  font-weight: 300;
  transition: transform .2s;
}
.trip-details[open] summary::after { transform: rotate(45deg); }
.details-body {
  padding-top: 1rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}
.details-body h4 {
  font-family: var(--font-body);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: .6rem;
}
.details-body ul {
  padding-left: 0;
  display: flex;
  flex-direction: column;
  gap: .3rem;
}
.details-body ul li {
  font-size: .83rem;
  color: var(--muted);
  padding-left: 1rem;
  position: relative;
  line-height: 1.5;
}
.details-body ul li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--amber);
  font-size: .7rem;
  top: .1em;
}
.chips {
  display: flex;
  flex-wrap: wrap;
  gap: .35rem;
  margin-top: .4rem;
}
.chip {
  background: var(--sand);
  color: var(--ink2);
  border-radius: 999px;
  padding: .25rem .65rem;
  font-size: .75rem;
  font-weight: 600;
}
.trip-note {
  background: #fff8ec;
  border-left: 3px solid var(--amber);
  border-radius: 0 var(--r-sm) var(--r-sm) 0;
  padding: .7rem .9rem;
  font-size: .8rem;
  color: #6b4a10;
  margin-top: .8rem;
  line-height: 1.6;
}

/* ── FOUNDER SECTION ─────────────────────────────────────────── */
.founder-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  min-height: 600px;
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.founder-img-wrap {
  position: relative;
  overflow: hidden;
}
.founder-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
.founder-img-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, transparent 70%, var(--ink2) 100%);
}
.founder-content {
  background: var(--ink2);
  color: var(--white);
  padding: 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.founder-content .section-label { margin-bottom: 1.5rem; }
.founder-content h2 {
  color: var(--white);
  font-weight: 300;
  margin-bottom: 1.5rem;
}
.founder-content h2 em { color: var(--amber2); font-style: italic; }
.founder-content p {
  color: rgba(255,255,255,.65);
  line-height: 1.85;
  font-weight: 300;
  font-size: 1.02rem;
  margin-bottom: 1rem;
}
.founder-content p:last-of-type { margin-bottom: 2rem; }
.founder-quote {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-style: italic;
  font-weight: 300;
  color: var(--amber2);
  padding: 1.2rem 0;
  border-top: 1px solid rgba(255,255,255,.1);
  border-bottom: 1px solid rgba(255,255,255,.1);
  margin: 1.5rem 0;
  line-height: 1.5;
}

/* ── PROMO BANNER ────────────────────────────────────────────── */
.promo-banner {
  background: var(--ink);
  border-radius: var(--r-xl);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  min-height: 460px;
  position: relative;
}
.promo-banner::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200,134,26,.2) 0%, transparent 70%);
}
.promo-content {
  padding: 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 1;
}
.promo-content h2 {
  color: var(--white);
  font-weight: 300;
  margin: 1rem 0;
}
.promo-content h2 em { color: var(--amber2); font-style: italic; }
.promo-content p {
  color: rgba(255,255,255,.6);
  margin-bottom: 1.5rem;
  font-weight: 300;
  line-height: 1.8;
}
.promo-list {
  margin: 0 0 2rem;
  display: flex;
  flex-direction: column;
  gap: .6rem;
}
.promo-list li {
  color: rgba(255,255,255,.75);
  font-size: .9rem;
  padding-left: 1.2rem;
  position: relative;
}
.promo-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--amber2);
  font-size: .8rem;
  top: .05em;
}
.promo-img-wrap {
  position: relative;
  overflow: hidden;
}
.promo-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  background: linear-gradient(135deg, #1c2b3a, #0e4a6e);
  padding: 2rem;
}

/* ── TRANSPORT ───────────────────────────────────────────────── */
.transport-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.transport-card {
  border-radius: var(--r-lg);
  overflow: hidden;
  position: relative;
  min-height: 320px;
  cursor: default;
}
.transport-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s;
}
.transport-card:hover img { transform: scale(1.06); }
.transport-card-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(15,25,35,.92) 0%, transparent 100%);
  padding: 2rem 1.5rem 1.5rem;
  color: var(--white);
}
.transport-card-overlay h3 {
  color: var(--white);
  font-size: 1.2rem;
  margin-bottom: .3rem;
}
.transport-card-overlay p {
  font-size: .83rem;
  color: rgba(255,255,255,.65);
  font-weight: 300;
}

/* ── GALLERY ─────────────────────────────────────────────────── */
.gallery-masonry {
  columns: 3 280px;
  column-gap: 1.2rem;
}
.gallery-item {
  break-inside: avoid;
  margin-bottom: 1.2rem;
  border-radius: var(--r-md);
  overflow: hidden;
  cursor: pointer;
  position: relative;
}
.gallery-item img {
  width: 100%;
  display: block;
  transition: transform .4s;
}
.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(15,25,35,0);
  transition: background .3s;
}
.gallery-item:hover img { transform: scale(1.04); }
.gallery-item:hover::after { background: rgba(15,25,35,.15); }

/* ── LIGHTBOX ────────────────────────────────────────────────── */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9000;
  background: rgba(10,15,22,.96);
  align-items: center;
  justify-content: center;
  padding: 2rem;
}
.lightbox.open { display: flex; }
.lightbox img {
  max-width: 90vw;
  max-height: 85vh;
  border-radius: var(--r-md);
  object-fit: contain;
}
.lb-close {
  position: fixed; top: 1.5rem; right: 1.5rem;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  color: var(--white);
  width: 44px; height: 44px;
  border-radius: 50%;
  font-size: 1.4rem;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: background .2s;
}
.lb-close:hover { background: rgba(255,255,255,.2); }
.lb-prev, .lb-next {
  position: fixed; top: 50%; transform: translateY(-50%);
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.15);
  color: var(--white);
  width: 48px; height: 48px;
  border-radius: 50%;
  font-size: 1.3rem;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: background .2s;
}
.lb-prev:hover, .lb-next:hover { background: rgba(255,255,255,.2); }
.lb-prev { left: 1.2rem; }
.lb-next { right: 1.2rem; }

/* ── SOCIAL LINKS ────────────────────────────────────────────── */
.social-cards {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 2rem;
}
.social-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 1.2rem 1.8rem;
  box-shadow: var(--shadow-sm);
  transition: transform .2s, box-shadow .2s;
  min-width: 240px;
}
.social-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.social-icon {
  width: 46px; height: 46px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  flex-shrink: 0;
}
.social-icon svg { width: 22px; height: 22px; fill: currentColor; }
.social-icon.fb { background: #1877f2; }
.social-icon.tt { background: #111; }
.social-card-text strong { display: block; color: var(--ink); font-size: .95rem; }
.social-card-text small { color: var(--muted); font-size: .8rem; }

/* ── FORMS ───────────────────────────────────────────────────── */
.form-card {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
}
.form-card h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { margin-bottom: 1.2rem; }
.form-group:last-child { margin-bottom: 0; }
.form-input {
  width: 100%;
  padding: .9rem 1.1rem;
  border: 1.5px solid #e0e5eb;
  border-radius: var(--r-sm);
  font-family: var(--font-body);
  font-size: .95rem;
  color: var(--ink);
  background: var(--white);
  transition: border-color .2s, box-shadow .2s;
  appearance: none;
}
.form-input:focus {
  outline: none;
  border-color: var(--amber);
  box-shadow: 0 0 0 3px rgba(200,134,26,.12);
}
textarea.form-input { min-height: 130px; resize: vertical; }
.form-submit { width: 100%; padding: 1.1rem; font-size: 1rem; border-radius: var(--r-md); margin-top: .5rem; }

/* ── PAGE HERO (inner pages) ─────────────────────────────────── */
.page-hero {
  background: var(--ink);
  color: var(--white);
  padding: 6rem 0 5rem;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200,134,26,.12) 0%, transparent 70%);
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: -80px; left: -80px;
  width: 350px; height: 350px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(14,110,110,.1) 0%, transparent 70%);
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { color: var(--white); font-weight: 300; margin: 1rem 0 1.2rem; }
.page-hero h1 em { color: var(--amber2); font-style: italic; }
.page-hero p { color: rgba(255,255,255,.65); font-size: 1.05rem; font-weight: 300; max-width: 600px; line-height: 1.8; }
.page-hero-actions { display: flex; gap: .8rem; flex-wrap: wrap; margin-top: 2rem; }

/* ── MSC CRUISES ─────────────────────────────────────────────── */
.msc-banner {
  background: var(--ink);
  padding: 2rem 0 0;
}
.msc-banner img {
  width: 100%;
  border-radius: var(--r-lg) var(--r-lg) 0 0;
  max-height: 520px;
  object-fit: cover;
  object-position: center;
}
.featured-cruise {
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.featured-cruise-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: linear-gradient(135deg, #0f1923, #1c3a5a);
  padding: 1.5rem;
}
.featured-cruise-content {
  padding: 3rem;
  background: var(--white);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.featured-cruise-content h2 { font-size: clamp(1.5rem, 2.5vw, 2.2rem); margin: .8rem 0; }
.cruise-pricing {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: .8rem;
  margin: 1.5rem 0;
}
.cruise-price-card {
  background: var(--sand2);
  border-radius: var(--r-sm);
  padding: 1rem .8rem;
  text-align: center;
  border: 1px solid var(--border);
}
.cruise-price-card strong {
  display: block;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: .4rem;
}
.cruise-price-card span {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--ink);
}
.cruise-includes {
  background: #fff8ec;
  border: 1px solid rgba(200,134,26,.2);
  border-radius: var(--r-sm);
  padding: 1rem 1.2rem;
  font-size: .87rem;
  color: #6b4a10;
  line-height: 1.7;
  margin-bottom: 1.8rem;
}
.cruise-includes strong { color: var(--amber); }
.cruise-actions { display: flex; gap: .8rem; flex-wrap: wrap; }

/* MSC Schedule Table */
.table-wrap { overflow-x: auto; border-radius: var(--r-md); box-shadow: var(--shadow-sm); border: 1px solid var(--border); }
.msc-table { width: 100%; border-collapse: collapse; background: var(--white); }
.msc-table thead th {
  background: var(--ink);
  color: rgba(255,255,255,.85);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 1rem 1.2rem;
  text-align: left;
}
.msc-table tbody tr { border-bottom: 1px solid var(--border); transition: background .15s; }
.msc-table tbody tr:last-child { border-bottom: none; }
.msc-table tbody tr:hover { background: var(--sand2); }
.msc-table td {
  padding: .9rem 1.2rem;
  font-size: .87rem;
  color: var(--ink2);
  vertical-align: middle;
}
.msc-table td:first-child { font-weight: 600; color: var(--ink); white-space: nowrap; }
.table-btn, .table-wa {
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 999px;
  padding: .45rem .9rem;
  font-size: .78rem;
  font-weight: 700;
  margin: .1rem .15rem;
  transition: transform .15s, box-shadow .15s;
  border: 0; cursor: pointer;
}
.table-btn:hover, .table-wa:hover { transform: translateY(-1px); }
.table-btn { background: var(--amber); color: var(--white); }
.table-wa  { background: var(--wa); color: var(--white); }

/* ── FINAL CTA ───────────────────────────────────────────────── */
.final-cta {
  background: linear-gradient(135deg, var(--ink) 0%, var(--ink2) 60%, #0e3d3d 100%);
  color: var(--white);
  padding: 7rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.final-cta::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 700px; height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200,134,26,.1) 0%, transparent 65%);
}
.final-cta .container { position: relative; z-index: 1; max-width: 700px; }
.final-cta h2 { color: var(--white); font-weight: 300; margin: 1rem 0; }
.final-cta h2 em { color: var(--amber2); font-style: italic; }
.final-cta p { color: rgba(255,255,255,.6); font-size: 1.05rem; font-weight: 300; margin-bottom: 2.5rem; line-height: 1.8; }
.final-cta-actions { display: flex; gap: .8rem; justify-content: center; flex-wrap: wrap; }

/* ── FOOTER ──────────────────────────────────────────────────── */
.footer {
  background: #080d13;
  color: rgba(255,255,255,.55);
  padding: 5rem 0 2rem;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.4fr .8fr .8fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-brand img {
  width: 160px;
  background: var(--white);
  border-radius: var(--r-sm);
  padding: .5rem;
  margin-bottom: 1.2rem;
}
.footer-brand p {
  font-size: .87rem;
  line-height: 1.8;
  color: rgba(255,255,255,.45);
  font-weight: 300;
}
.footer h4 {
  font-family: var(--font-body);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--amber2);
  margin-bottom: 1.2rem;
}
.footer-links { display: flex; flex-direction: column; gap: .6rem; }
.footer-links a {
  font-size: .87rem;
  color: rgba(255,255,255,.5);
  transition: color .2s;
}
.footer-links a:hover { color: var(--white); }
.footer-contact { display: flex; flex-direction: column; gap: .7rem; }
.footer-contact a {
  font-size: .87rem;
  color: rgba(255,255,255,.5);
  transition: color .2s;
  display: flex;
  align-items: flex-start;
  gap: .5rem;
}
.footer-contact a:hover { color: var(--white); }
.footer-contact-label {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: rgba(255,255,255,.3);
  display: block;
  margin-bottom: .1rem;
}
.footer-socials { display: flex; flex-direction: column; gap: .8rem; }
.footer-social-btn {
  display: flex;
  align-items: center;
  gap: .8rem;
  padding: .8rem 1rem;
  border-radius: var(--r-sm);
  font-size: .83rem;
  font-weight: 600;
  color: var(--white);
  transition: opacity .2s, transform .2s;
}
.footer-social-btn:hover { opacity: .85; transform: translateX(3px); }
.footer-social-btn.fb { background: #1877f2; }
.footer-social-btn.tt { background: #222; }
.footer-social-btn.wa { background: var(--wa); }
.footer-social-btn svg { width: 18px; height: 18px; fill: currentColor; flex-shrink: 0; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  font-size: .78rem;
  color: rgba(255,255,255,.3);
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-bottom a { color: rgba(255,255,255,.4); transition: color .2s; }
.footer-bottom a:hover { color: rgba(255,255,255,.7); }

/* ── PAGE SECTIONS ───────────────────────────────────────────── */

/* About page */
.about-story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.about-story-text h2 { margin-bottom: 1.5rem; }
.about-story-text p {
  color: var(--muted);
  line-height: 1.9;
  font-weight: 300;
  font-size: 1.02rem;
  margin-bottom: 1.2rem;
}

/* Values */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.value-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 2rem;
  transition: box-shadow .2s, transform .2s;
}
.value-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.value-icon {
  width: 48px; height: 48px;
  border-radius: var(--r-sm);
  background: var(--sand);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.2rem;
  font-size: 1.4rem;
}
.value-card h3 { font-size: 1.1rem; margin-bottom: .6rem; }
.value-card p { color: var(--muted); font-size: .88rem; line-height: 1.7; font-weight: 300; }

/* Contact info grid */
.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.2rem;
}
.contact-info-card {
  background: var(--sand2);
  border-radius: var(--r-md);
  padding: 1.5rem;
  border: 1px solid var(--border);
}
.contact-info-card h4 {
  font-family: var(--font-body);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: .6rem;
}
.contact-info-card a, .contact-info-card p {
  font-size: .95rem;
  color: var(--ink2);
  font-weight: 500;
  line-height: 1.6;
}
.contact-info-card a:hover { color: var(--amber); }

/* Thank you */
.thankyou-section {
  min-height: 60vh;
  display: flex;
  align-items: center;
}

/* ── RESPONSIVE ──────────────────────────────────────────────── */
@media (max-width: 900px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: var(--white);
    padding: 1rem 4% 1.5rem;
    flex-direction: column;
    align-items: flex-start;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-md);
    gap: .2rem;
  }
  .nav-links.open { display: flex; }
  .menu-btn { display: flex; align-items: center; gap: .4rem; }
  .brand img { height: 52px; }

  h1 { font-size: clamp(2.2rem, 8vw, 3.5rem); }
  .hero { min-height: 85vh; }
  .hero-stats .container { flex-wrap: wrap; }
  .stat-item { min-width: 50%; }
  .hero-scroll { display: none; }

  .grid-2, .grid-3,
  .founder-section,
  .promo-banner,
  .featured-cruise,
  .about-story { grid-template-columns: 1fr; }

  .founder-img-wrap { min-height: 320px; }
  .founder-img-wrap::after { display: none; }
  .founder-content { padding: 2.5rem 2rem; }

  .transport-grid, .values-grid { grid-template-columns: 1fr 1fr; }
  .gallery-masonry { columns: 2 200px; }

  .footer-top { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .section { padding: 4rem 0; }

  .promo-content { padding: 2.5rem 2rem; }
  .promo-img-wrap img { padding: 1rem; }

  .cruise-pricing { grid-template-columns: 1fr; }
  .featured-cruise-content { padding: 2rem; }

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

  .details-body { grid-template-columns: 1fr; }

  .msc-table { min-width: 780px; }
}

@media (max-width: 600px) {
  .topbar .container { justify-content: center; text-align: center; }
  .topbar-left { flex-wrap: wrap; justify-content: center; }
  .transport-grid, .values-grid { grid-template-columns: 1fr; }
  .gallery-masonry { columns: 1; }
  .footer-top { grid-template-columns: 1fr; }
  .hero-stats .container { flex-direction: column; }
  .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,.08); }
  .stat-item:last-child { border-bottom: none; }
  .final-cta-actions .btn { width: 100%; }
  .footer-bottom { justify-content: center; text-align: center; }
}
