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

:root {
  --brand: #ca2431;
  --brand-dark: #a91d28;
  --orange: #f97316;
  --orange-dark: #ea580c;
  --pink: #ec4899;
  --golden: #f59e0b;
  --turquoise: #06b6d4;
  --lavender: #a78bfa;
  --plum: #3b0764;
  --sand: #fef7ed;
  --peach: #fff7ed;
  --dark: #1c1917;
  --white: #ffffff;
  --text: #292524;
  --text-light: #78716c;
  --font-heading: 'Plus Jakarta Sans', -apple-system, sans-serif;
  --font-body: 'Inter', -apple-system, sans-serif;
  --radius-card: 28px;
  --radius-btn: 50px;

  /* DateForward component tokens mapped to the Key West brand.
     Day circles use the red brand; CTAs/time chips use the orange action color. */
  --action: var(--orange);
  --action-dark: var(--orange-dark);
  --action-dim: #f8c39a;
  --action-glow: rgba(249, 115, 22, 0.12);
  --accent: var(--brand);
  --accent-dim: #f0ddcb;
  --cream: var(--sand);
  --cream-light: var(--peach);
  --warm-white: #ffffff;
  --text-dim: #b8a99c;
  --serif: var(--font-heading);
  --sans: var(--font-body);
  --gold: var(--orange);
  --gold-dark: var(--orange-dark);
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--text);
  line-height: 1.7;
  font-size: 16px;
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  line-height: 1.2;
  color: var(--text);
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

/* ========================================
   BUTTONS
   ======================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  padding: 16px 36px;
  border-radius: var(--radius-btn);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  letter-spacing: 0.01em;
}

.btn-orange {
  background: var(--brand);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(202, 36, 49, 0.35);
}
.btn-orange:hover {
  background: var(--brand-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 28px rgba(202, 36, 49, 0.45);
}

.btn-ghost {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.7);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.15);
  border-color: var(--white);
}

.btn-white {
  background: var(--white);
  color: var(--plum);
  font-weight: 700;
  box-shadow: 0 4px 20px rgba(255,255,255,0.25);
}
.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 28px rgba(255,255,255,0.35);
}

.btn-outline {
  background: transparent;
  color: var(--brand);
  border: 2px solid var(--brand);
}
.btn-outline:hover {
  background: var(--brand);
  color: var(--white);
}

.section-label {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--brand);
  margin-bottom: 12px;
}

/* ========================================
   NAV
   ======================================== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: transparent;
  transition: all 0.35s ease;
  padding: 20px 0;
}
.nav.scrolled {
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
  padding: 8px 0;
}
.nav.solid {
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
  padding: 8px 0;
}
.nav.solid .nav-links a { color: var(--text); }
.nav.solid .nav-links .btn-orange { color: var(--white); }
.nav.solid .nav-hamburger { color: var(--text); }
.nav.solid .nav-logo img { height: 44px; }
.nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo img {
  height: 120px;
  width: auto;
  transition: height 0.35s ease;
}
.nav.scrolled .nav-logo img {
  height: 44px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--white);
  transition: color 0.2s;
}
.nav.scrolled .nav-links a { color: var(--text); }
.nav.scrolled .nav-links .btn-orange { color: var(--white); }
.nav-links a:hover {
  color: var(--brand);
}
.nav-links .btn-orange {
  padding: 10px 24px;
  font-size: 0.85rem;
}
.nav-hamburger {
  display: none;
  background: none;
  border: none;
  font-size: 1.4rem;
  color: var(--white);
  cursor: pointer;
  padding: 8px;
  transition: color 0.3s;
}
.nav.scrolled .nav-hamburger { color: var(--text); }
.nav-mobile {
  display: none;
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--white);
  flex-direction: column;
  padding: 32px 24px;
  gap: 0;
  z-index: 999;
}
.nav-mobile.open {
  display: flex;
}
.nav-mobile a {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.15rem;
  padding: 16px 0;
  border-bottom: 1px solid #f0ebe3;
  color: var(--text);
}
.nav-mobile .btn-orange {
  margin-top: 20px;
  text-align: center;
  border-bottom: none;
  color: var(--white);
}

body.menu-open {
  overflow: hidden;
}

/* ========================================
   HERO (home page video hero)
   ======================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 24px 80px;
  overflow: hidden;
}
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  /* Aqua "water" wash (no purple), dark enough to keep hero text legible. */
  background: linear-gradient(
    135deg,
    rgba(6, 182, 212, 0.50) 0%,
    rgba(14, 165, 233, 0.40) 45%,
    rgba(3, 105, 161, 0.55) 100%
  );
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
  margin: 0 auto;
  padding-top: 40px;
}
.hero h1 {
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 20px;
  line-height: 1.1;
  text-shadow: 0 2px 30px rgba(0,0,0,0.2);
}
.hero-sub {
  font-size: clamp(1.05rem, 2vw, 1.2rem);
  color: rgba(255,255,255,0.92);
  margin-bottom: 36px;
  line-height: 1.7;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}
.hero-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 52px;
}
.hero-rating {
  display: inline-flex;
  align-items: center;
  margin-bottom: 24px;
  gap: 10px;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: var(--radius-btn);
  padding: 10px 24px;
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 500;
}
.hero-rating .stars {
  color: var(--golden);
  letter-spacing: 2px;
}

.hero-press {
  margin-top: 48px;
  text-align: center;
}
.hero-press-label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  margin-bottom: 20px;
}
.hero-press-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
  flex-wrap: wrap;
}
.hero-press-logos img {
  height: 28px;
  width: auto;
  flex: none;
  filter: brightness(0) invert(1);
  opacity: 0.9;
  transition: opacity 0.3s;
  object-fit: contain;
}
.hero-press-logos img:hover { opacity: 1; }
/* Per-logo optical balance so all five sit on one row: wide wordmarks shorter,
   stacked lockup a touch taller, compact square script bigger. */
.hero-press-logos img[alt="The New York Times"] { height: 24px; }
.hero-press-logos img[alt="Visit Florida"] { height: 30px; }
.hero-press-logos img[alt="Holland America Line"] { height: 24px; }
.hero-press-logos img[alt="Virgin Voyages"] { height: 40px; }

/* ========================================
   PAGE HERO (subpages: image bg, shorter)
   ======================================== */
.page-hero {
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 200px 24px 100px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  background-color: var(--plum);
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.15) 0%, rgba(0,0,0,0.55) 100%);
  z-index: 1;
}
.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(202, 36, 49, 0.55) 0%,
    rgba(167, 139, 250, 0.30) 50%,
    rgba(59, 7, 100, 0.65) 100%
  );
  z-index: 2;
  mix-blend-mode: multiply;
}
.page-hero-content {
  position: relative;
  z-index: 3;
  max-width: 760px;
  margin: 0 auto;
}
.page-hero p.eyebrow {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--white);
  opacity: 0.95;
  margin-bottom: 16px;
  text-shadow: 0 2px 12px rgba(0,0,0,0.4);
}
.page-hero h1 {
  font-size: clamp(2rem, 5vw, 3.4rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 20px;
  line-height: 1.15;
  text-shadow: 0 2px 24px rgba(0,0,0,0.55), 0 1px 3px rgba(0,0,0,0.4);
}
.page-hero p.lead {
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  color: var(--white);
  max-width: 620px;
  margin: 0 auto 28px;
  line-height: 1.7;
  text-shadow: 0 1px 12px rgba(0,0,0,0.5);
}
.page-hero .hero-btns {
  margin-bottom: 0;
}

/* ========================================
   SECTIONS, generic
   ======================================== */
.section {
  padding: 100px 24px;
  position: relative;
  overflow: hidden;
}
.section-tinted {
  background: linear-gradient(180deg, var(--white) 0%, var(--peach) 100%);
}
.section-sand {
  background: var(--sand);
}
.section-header {
  text-align: center;
  margin-bottom: 60px;
}
.section h2 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 800;
}
.prose p {
  color: var(--text-light);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 18px;
}
.prose p:last-child { margin-bottom: 0; }

/* ========================================
   INTRO
   ======================================== */
.intro {
  padding: 100px 24px;
  text-align: center;
  background: linear-gradient(180deg, var(--white) 0%, var(--peach) 100%);
  position: relative;
  overflow: hidden;
}
.intro::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -80px;
  width: 350px;
  height: 350px;
  background: linear-gradient(135deg, rgba(249,115,22,0.06), rgba(236,72,153,0.06));
  border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
  z-index: 0;
}
.intro::after {
  content: '';
  position: absolute;
  bottom: -60px;
  left: -60px;
  width: 280px;
  height: 280px;
  background: linear-gradient(135deg, rgba(245,158,11,0.05), rgba(167,139,250,0.05));
  border-radius: 60% 40% 30% 70% / 50% 60% 40% 50%;
  z-index: 0;
}
.intro .container {
  position: relative;
  z-index: 1;
}
.intro h2 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 800;
  margin-bottom: 20px;
}
.intro p {
  font-size: 1.1rem;
  color: var(--text-light);
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.8;
}

/* ========================================
   HOW IT WORKS
   ======================================== */
.how-it-works {
  padding: 100px 24px;
  background: linear-gradient(180deg, var(--peach) 0%, var(--sand) 100%);
  position: relative;
  overflow: hidden;
}
.how-it-works::before {
  content: '';
  position: absolute;
  top: 40px;
  left: -100px;
  width: 300px;
  height: 300px;
  background: linear-gradient(135deg, rgba(249,115,22,0.05), rgba(245,158,11,0.05));
  border-radius: 50% 40% 60% 30% / 40% 60% 40% 60%;
  z-index: 0;
}
.how-it-works .container {
  position: relative;
  z-index: 1;
}
.how-it-works .section-header {
  text-align: center;
  margin-bottom: 60px;
}
.how-it-works h2 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 800;
}
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.step { text-align: center; }
.step-icon {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-size: 1.8rem;
  color: var(--white);
  position: relative;
}
.step-icon::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  background: inherit;
  opacity: 0.2;
  filter: blur(8px);
}
.step:nth-child(1) .step-icon { background: linear-gradient(135deg, var(--orange), #fb923c); }
.step:nth-child(2) .step-icon { background: linear-gradient(135deg, var(--pink), #f472b6); }
.step:nth-child(3) .step-icon { background: linear-gradient(135deg, var(--golden), #fbbf24); }
.step:nth-child(4) .step-icon { background: linear-gradient(135deg, var(--turquoise), #22d3ee); }
.step-number {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.75rem;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 8px;
}
.step h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 10px;
}
.step p {
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ========================================
   TOURS (horizontal scroller)
   ======================================== */
.tours {
  padding: 100px 24px;
  background: linear-gradient(180deg, var(--sand) 0%, var(--white) 100%);
  position: relative;
  overflow: hidden;
}
.tours::after {
  content: '';
  position: absolute;
  bottom: -80px;
  right: -100px;
  width: 320px;
  height: 320px;
  background: linear-gradient(135deg, rgba(236,72,153,0.05), rgba(167,139,250,0.05));
  border-radius: 30% 70% 50% 50% / 60% 40% 60% 40%;
  z-index: 0;
}
.tours .container {
  position: relative;
  z-index: 1;
}
.tours .section-header {
  text-align: center;
  margin-bottom: 60px;
}
.tours h2 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 800;
}
.tours-grid {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 8px;
  margin: 0 -24px;
  padding-left: 24px;
  padding-right: 24px;
}
.tours-grid::-webkit-scrollbar { height: 6px; }
.tours-grid::-webkit-scrollbar-track { background: transparent; }
.tours-grid::-webkit-scrollbar-thumb { background: rgba(0,0,0,0.12); border-radius: 3px; }
.tour-card {
  background: var(--white);
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
  transition: all 0.35s ease;
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 320px;
  max-width: 360px;
  flex-shrink: 0;
  scroll-snap-align: start;
}
.tour-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(202,36,49,0.12);
}
/* ── Start-time filter on /tour/ ── */
.time-filter-bar {
  background: var(--sand);
  border-bottom: 1px solid #f0e2d2;
  padding: 18px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}
.time-filter-label {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-light);
}
.time-filter { display: flex; gap: 8px; flex-wrap: wrap; }
.time-filter button {
  background: transparent;
  border: 2px solid rgba(41, 37, 36, 0.15);
  color: var(--text);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.04em;
  padding: 9px 20px;
  border-radius: var(--radius-btn);
  cursor: pointer;
  transition: all 0.25s ease;
}
.time-filter button:hover { border-color: var(--brand); color: var(--brand); }
.time-filter button.active {
  background: var(--brand);
  border-color: var(--brand);
  color: var(--white);
}
.time-filter button:focus-visible { outline: 3px solid var(--orange); outline-offset: 2px; }
.tour-time-note {
  text-align: center;
  color: var(--text-light);
  font-size: 0.92rem;
  margin-bottom: 28px;
}
.tour-filter-empty {
  display: none;
  text-align: center;
  color: var(--text-light);
  padding: 48px 24px;
  font-size: 1.05rem;
}
.time-filter-clear {
  background: none;
  border: none;
  padding: 0;
  font: inherit;
  font-weight: 700;
  color: var(--brand);
  text-decoration: underline;
  cursor: pointer;
}
@media (max-width: 640px) {
  .time-filter-bar { flex-direction: column; gap: 12px; }
}

.tour-card-image {
  position: relative;
  display: block;
  height: 220px;
  background-size: cover;
  background-position: center;
}
a.tour-card-image { transition: filter 0.2s ease; }
a.tour-card-image:hover { filter: brightness(1.07) saturate(1.04); }
.tour-card-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--brand);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 50px;
}
.tour-card-body {
  padding: 28px 28px 32px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.tour-card h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 12px;
}
.tour-card h3 a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}
.tour-card h3 a:hover { color: var(--brand); }
.tour-card p {
  color: var(--text-light);
  font-size: 0.95rem;
  margin-bottom: 20px;
  line-height: 1.7;
  flex: 1;
}
.tour-card-pricing { margin-bottom: 16px; }
.tour-card-pricing .from-label {
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--text-light);
  margin-bottom: 2px;
}
.tour-card-pricing .price {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--dark);
}
.tour-card-pricing .price span {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--text-light);
}
.tour-card-buttons {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
}
.tour-card-buttons .btn {
  flex: 1;
  padding: 12px 16px;
  font-size: 0.85rem;
}
.tour-card-footer {
  display: flex;
  gap: 20px;
  padding-top: 14px;
  border-top: 1px solid rgba(0,0,0,0.06);
}
.tour-card-footer span {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  color: var(--text-light);
}
.tour-card-footer i {
  color: var(--brand);
  font-size: 0.72rem;
}

/* ========================================
   FEATURE GRID (icon + title + body card)
   ======================================== */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.feature-card {
  background: var(--white);
  border-radius: var(--radius-card);
  padding: 36px 28px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.05);
  transition: all 0.35s ease;
}
.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(202,36,49,0.1);
}
.feature-icon {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 1.4rem;
  color: var(--white);
  background: linear-gradient(135deg, var(--brand), var(--brand-dark));
}
.feature-card:nth-child(2) .feature-icon { background: linear-gradient(135deg, var(--orange), #fb923c); }
.feature-card:nth-child(3) .feature-icon { background: linear-gradient(135deg, var(--golden), var(--orange)); }
.feature-card:nth-child(4) .feature-icon { background: linear-gradient(135deg, var(--turquoise), #22d3ee); }
.feature-card:nth-child(5) .feature-icon { background: linear-gradient(135deg, var(--pink), #f472b6); }
.feature-card:nth-child(6) .feature-icon { background: linear-gradient(135deg, var(--lavender), var(--pink)); }
.feature-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 10px;
}
.feature-card p {
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ========================================
   TWO-COL (image + text)
   ======================================== */
.two-col {
  padding: 100px 24px;
  background: var(--white);
}
.two-col .container {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 64px;
  align-items: center;
}
.two-col.reverse .container {
  grid-template-columns: 1.1fr 1fr;
}
.two-col img {
  border-radius: 24px;
  box-shadow: 0 16px 48px rgba(249,115,22,0.15);
  width: 100%;
}
.two-col h2 {
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  font-weight: 800;
  margin-bottom: 18px;
}
.two-col p {
  color: var(--text-light);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 16px;
}

/* ========================================
   TESTIMONIAL
   ======================================== */
.testimonial {
  padding: 100px 24px;
  /* Branded warm gradient (KWFT orange into brand red) */
  background: linear-gradient(135deg, #f97316 0%, #ea580c 45%, #ca2431 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.testimonial::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(249,115,22,0.08) 0%, rgba(236,72,153,0.06) 50%, transparent 100%);
  z-index: 0;
}
.testimonial .container {
  position: relative;
  z-index: 1;
}
.testimonial-stars {
  color: var(--golden);
  font-size: 1.3rem;
  letter-spacing: 4px;
  margin-bottom: 28px;
}
.testimonial blockquote {
  font-family: var(--font-heading);
  font-size: clamp(1.2rem, 3vw, 1.65rem);
  font-weight: 500;
  color: #fef7ed;
  max-width: 700px;
  margin: 0 auto 28px;
  line-height: 1.6;
  font-style: italic;
}
.testimonial cite {
  font-style: normal;
  font-size: 0.95rem;
  color: rgba(254,247,237,0.7);
  font-weight: 500;
}

/* ========================================
   FOUNDER
   ======================================== */
.founder {
  padding: 100px 24px;
  background: var(--sand);
  position: relative;
  overflow: hidden;
}
.founder::after {
  content: '';
  position: absolute;
  bottom: -60px;
  right: -80px;
  width: 300px;
  height: 300px;
  background: linear-gradient(135deg, rgba(249,115,22,0.05), rgba(245,158,11,0.05));
  border-radius: 50% 40% 60% 30% / 40% 60% 40% 60%;
  z-index: 0;
}
.founder .container {
  position: relative;
  z-index: 1;
}
.founder-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: center;
}
.founder-photo img {
  border-radius: 20px;
  box-shadow: 0 16px 48px rgba(249,115,22,0.15);
  width: 100%;
}
.founder-text h2 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 800;
  margin-bottom: 20px;
}
.founder-text p {
  color: var(--text-light);
  font-size: 1.05rem;
  margin-bottom: 16px;
  line-height: 1.8;
}
.founder-signature {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--text);
  margin-top: 24px;
}
.founder-signature span {
  display: block;
  font-weight: 400;
  font-size: 0.85rem;
  color: var(--text-light);
  margin-top: 4px;
}

/* ========================================
   CTA BAND
   ======================================== */
.cta-band {
  padding: 80px 24px;
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-dark) 100%);
  text-align: center;
}
.cta-band h2 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 16px;
}
.cta-band p {
  color: rgba(255,255,255,0.9);
  font-size: 1.1rem;
  margin-bottom: 32px;
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
  background: #0c2340;
  padding: 80px 24px 40px;
  color: rgba(255,255,255,0.55);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 2fr;
  gap: 48px;
  margin-bottom: 60px;
}
.footer-brand img {
  height: 56px;
  width: auto;
  margin-bottom: 20px;
}
.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.8;
  margin-bottom: 24px;
  max-width: 280px;
}
.footer-social {
  display: flex;
  gap: 14px;
}
.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.5);
  font-size: 0.85rem;
  transition: all 0.3s;
}
.footer-social a:hover {
  border-color: var(--brand);
  color: var(--brand);
}
.footer-links-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  max-width: 500px;
  margin: 0 auto;
}
.footer-col h4 {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 22px;
}
.footer-col a {
  display: block;
  font-size: 0.9rem;
  padding: 5px 0;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--white); }
.footer-bottom {
  text-align: center;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.06);
  font-size: 0.82rem;
}
.footer-copyright { color: rgba(255,255,255,0.4); }

/* ========================================
   MOBILE CTA BAR
   ======================================== */
.mobile-cta-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 998;
  padding: 12px 16px;
  background: var(--white);
  box-shadow: 0 -4px 20px rgba(0,0,0,0.1);
  border-top: 1px solid rgba(0,0,0,0.05);
}
.mobile-cta-bar .btn {
  width: 100%;
  padding: 14px;
  font-size: 1rem;
}

/* ========================================
   TOUR DETAIL (overview + sticky booking card)
   ======================================== */
.tour-detail {
  padding: 100px 24px;
  background: var(--white);
}
.tour-detail .container {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 60px;
  align-items: start;
}
.tour-overview h2 {
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  font-weight: 800;
  margin-bottom: 16px;
}
.tour-overview p {
  color: var(--text-light);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 18px;
}
.tour-overview ul {
  list-style: none;
  margin: 24px 0;
}
.tour-overview ul li {
  display: flex;
  gap: 14px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(0,0,0,0.05);
  color: var(--text);
  font-size: 1rem;
  line-height: 1.6;
}
.tour-overview ul li i {
  color: var(--brand);
  font-size: 1.1rem;
  flex-shrink: 0;
  margin-top: 4px;
}
.booking-card {
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: var(--radius-card);
  padding: 32px 28px;
  box-shadow: 0 12px 36px rgba(0,0,0,0.06);
  position: sticky;
  top: 100px;
}
.booking-card .price {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--dark);
  line-height: 1;
}
.booking-card .price span {
  font-size: 0.95rem;
  color: var(--text-light);
  font-weight: 400;
  font-family: var(--font-body);
}
.booking-card .from-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 4px;
}
.booking-card .facts {
  list-style: none;
  margin: 24px 0;
  padding: 24px 0;
  border-top: 1px solid rgba(0,0,0,0.06);
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.booking-card .facts li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 0;
  font-size: 0.95rem;
  color: var(--text);
}
.booking-card .facts li i {
  color: var(--brand);
  width: 22px;
  text-align: center;
}
.booking-card .btn { width: 100%; margin-bottom: 12px; }
.booking-card .booking-note {
  font-size: 0.82rem;
  color: var(--text-light);
  text-align: center;
  line-height: 1.5;
  margin-top: 8px;
}

.itinerary-list {
  max-width: 800px;
  margin: 0 auto;
  counter-reset: stop;
}
.itinerary-step {
  background: var(--white);
  border-radius: 20px;
  padding: 28px 32px;
  margin-bottom: 16px;
  box-shadow: 0 4px 18px rgba(0,0,0,0.05);
  display: flex;
  gap: 24px;
  align-items: flex-start;
}
.itinerary-step::before {
  counter-increment: stop;
  content: counter(stop);
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand), var(--brand-dark));
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.2rem;
}
.itinerary-step h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 6px;
}
.itinerary-step p {
  color: var(--text-light);
  font-size: 0.98rem;
  line-height: 1.7;
}

@media (max-width: 1024px) {
  .tour-detail .container { grid-template-columns: 1fr; gap: 40px; }
  .booking-card { position: static; }
}

/* ========================================
   FAQ LIST
   ======================================== */
.faq-list {
  max-width: 760px;
  margin: 0 auto;
}
.faq-item {
  background: var(--white);
  border-radius: 16px;
  padding: 24px 28px;
  margin-bottom: 16px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}
.faq-item h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text);
}
.faq-item p {
  color: var(--text-light);
  font-size: 0.98rem;
  line-height: 1.7;
}

/* ========================================
   FAREHARBOR EMBED
   ======================================== */
.fh-wrap {
  max-width: 900px;
  margin: 0 auto;
  background: var(--white);
  border-radius: var(--radius-card);
  box-shadow: 0 12px 40px rgba(0,0,0,0.08);
  overflow: hidden;
  padding: 8px;
}

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 1024px) {
  .tours-grid { min-width: 0; }
  .tour-card { min-width: 280px; max-width: 300px; }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .two-col .container,
  .two-col.reverse .container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .hero {
    min-height: 100dvh;
    padding: 100px 20px 60px;
  }
  .hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .nav-logo img { height: 80px; }
  .nav { padding: 12px 0; }
  .nav .container {
    justify-content: center;
    position: relative;
  }
  .nav-hamburger {
    position: absolute;
    right: 24px;
  }
  .nav.scrolled .nav-logo img { height: 36px; }
  .nav.solid .nav-logo img { height: 36px; }
  .nav.scrolled .container { justify-content: space-between; }
  .nav.solid .container { justify-content: space-between; }
  .nav.scrolled .nav-hamburger { position: static; }
  .nav.solid .nav-hamburger { position: static; }
  .hero .nav-logo-mobile {
    display: block;
    margin-bottom: 40px;
    padding-top: 60px;
  }
  .hero .nav-logo-mobile img {
    height: 100px;
    margin: 0 auto;
  }
  .hero-sub { text-align: center; }
  .hero-press { align-items: center; }
  .hero-press-label { text-align: center; }
  .hero-press-logos { justify-content: center; }
  .hero-btns {
    flex-direction: column;
    align-items: center;
  }
  .hero-btns .btn { width: 100%; max-width: 320px; }

  .nav-links { display: none; }
  .nav-hamburger { display: block; }

  .page-hero {
    padding: 140px 20px 80px;
    min-height: auto;
  }

  .steps-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
    gap: 48px;
  }

  .feature-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }

  .founder-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .footer-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .footer-brand p { max-width: 100%; }
  .footer-social { justify-content: center; }
  .footer-links-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
  .footer { padding-bottom: 80px; }

  .hero-press-logos { gap: 20px; }

  .intro::before,
  .intro::after,
  .how-it-works::before,
  .tours::after,
  .founder::after { display: none; }
}

@media (max-width: 480px) {
  .footer-links-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}
