/* ── Reset & Base ─────────────────────────────── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Source Sans 3', sans-serif;
  color: #3a3428;
  background: #fdfbf7;
  line-height: 1.7;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Source Serif 4', serif;
  font-weight: 600;
  line-height: 1.2;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ── Colors ────────────────────────────────────── */
:root {
  --gold: #f39422;        /* logo orange */
  --gold-dark: #d97814;
  --green: #4a6741;
  --dark: #20180f;
  --charcoal: #2a2218;
  --cream: #f5f0e6;
  --warm-white: #fdfbf7;
  --text: #3a3428;
  --text-light: #8a7e6e;

  /* DateForward picker tokens: alias the CFA palette onto the names the
     ported picker CSS/JS use, so the components inherit this brand. */
  --action: #f39422;        /* logo orange */
  --action-dark: #d97814;   /* darker orange (hover) */
  --action-dim: #f7b25a;    /* lighter orange accent */
  --action-glow: rgba(243, 148, 34, 0.14);
  --accent: #f39422;
  --accent-dim: #e4d6b6;    /* light warm border */
  --cream-light: #fdfbf7;
  --text-dim: #b3a892;
  --serif: 'Source Serif 4', Georgia, serif;
  --sans: 'Source Sans 3', system-ui, sans-serif;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --white: #fff;
}

/* ── Buttons ───────────────────────────────────── */
.btn {
  display: inline-block;
  font-family: 'Source Sans 3', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 14px 32px;
  border-radius: 4px;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
}
.btn-gold { background: var(--gold); color: #fff; }
.btn-gold:hover { background: var(--gold-dark); }
.btn-ghost {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,0.6);
}
.btn-ghost:hover { border-color: #fff; background: rgba(255,255,255,0.1); }
.btn-dark { background: var(--dark); color: #fff; }
.btn-dark:hover { background: var(--charcoal); }
.btn-outline {
  background: transparent;
  color: var(--charcoal);
  border: 2px solid rgba(32,24,15,0.15);
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }

/* ── NAV ───────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 10px 0;
  transition: all 0.35s ease;
}
.nav.scrolled {
  background: rgba(253, 251, 247, 0.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 12px rgba(32, 24, 15, 0.08);
  padding: 6px 0;
}
.nav.solid {
  background: rgba(253, 251, 247, 0.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 12px rgba(32, 24, 15, 0.08);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo img {
  height: 120px;
  border-radius: 6px;
  transition: height 0.35s ease;
}
.nav.scrolled .nav-logo img,
.nav.solid .nav-logo img { height: 95px; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}
.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: #fff;
  transition: color 0.3s;
}
.nav.scrolled .nav-links a,
.nav.solid .nav-links a { color: var(--text); }
.nav-links a:hover { color: var(--gold); }
.nav-links .btn-gold { padding: 10px 24px; font-size: 0.85rem; color: #fff; }
.nav-hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  margin: 6px 0;
  transition: all 0.3s ease;
  border-radius: 2px;
}
.nav.scrolled .nav-hamburger span,
.nav.solid .nav-hamburger span { background: var(--text); }
.nav-hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 6px); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -6px); }

/* ── Mobile Menu ───────────────────────────────── */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 999;
  background: var(--dark);
  flex-direction: column;
  padding: 100px 30px 30px;
  overflow-y: auto;
}
.mobile-menu.open { display: flex; }
/* Primary pages: big serif list */
.mm-primary { display: flex; flex-direction: column; }
.mm-primary a {
  font-family: 'Source Serif 4', serif;
  font-size: 1.85rem;
  font-weight: 600;
  color: #fff;
  padding: 13px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: color 0.2s ease;
}
.mm-primary a:hover { color: var(--gold); }
/* Primary CTA */
.mm-cta { display: block; width: 100%; text-align: center; margin: 26px 0 30px; }
/* Secondary pages: two columns */
.mm-secondary { display: grid; grid-template-columns: 1fr 1fr; gap: 16px 20px; }
.mm-secondary a {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.72);
  transition: color 0.2s ease;
}
.mm-secondary a:hover { color: #fff; }
/* Contact row pinned to the bottom */
.mm-contact {
  margin-top: auto;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.mm-contact a {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.98rem;
  color: rgba(255, 255, 255, 0.85);
  transition: color 0.2s ease;
}
.mm-contact a:hover { color: var(--gold); }
.mm-contact i { color: var(--gold); width: 16px; text-align: center; }

/* ── HERO (full-bleed home) ──────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  padding-top: 160px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: center/cover no-repeat;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(32, 24, 15, 0.15) 0%,
    rgba(32, 24, 15, 0.35) 40%,
    rgba(32, 24, 15, 0.75) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  padding-bottom: 60px;
  padding-left: clamp(24px, 6vw, 96px);
  padding-right: 24px;
  max-width: 720px;
  margin: 0;
}
.hero h1 {
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  color: #fff;
  font-weight: 700;
  margin-bottom: 20px;
  text-shadow: 0 2px 16px rgba(0,0,0,0.2);
}
.hero p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.88);
  max-width: 540px;
  margin-bottom: 32px;
  line-height: 1.7;
}
.hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; }

/* ── HERO 10BEST BADGE ─────────────────────────── */
.hero-badge-float {
  position: absolute;
  right: clamp(24px, 6vw, 96px);
  bottom: 60px;
  z-index: 3;
  width: clamp(100px, 10vw, 140px);
  filter: drop-shadow(0 8px 24px rgba(0,0,0,0.35));
}
/* The award page is gone, so the badge is a static image; .hero-badge-img is
   the unlinked stand-in for the old anchor. */
.hero-badge-float > a,
.hero-badge-float > .hero-badge-img {
  display: block;
  transform: rotate(-6deg);
  transition: transform 0.4s ease;
}
.hero-badge-float:hover > a,
.hero-badge-float:hover > .hero-badge-img { transform: rotate(0deg) scale(1.05); }
.hero-badge-float img { width: 100%; height: auto; display: block; }
/* Opens upward: the badge sits near the bottom of the hero, so a tooltip
   below it spills into the next section and gets painted over. */
.hero-badge-tooltip {
  position: absolute;
  bottom: 100%;
  right: 0;
  margin-bottom: 16px;
  width: 280px;
  background: #fff;
  color: var(--charcoal);
  padding: 16px 18px;
  border-radius: 8px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.25);
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0s linear 0.25s;
  z-index: 4;
  font-size: 0.85rem;
  line-height: 1.5;
}
.hero-badge-tooltip::before {
  content: "";
  position: absolute;
  bottom: -6px;
  right: 36px;
  width: 12px;
  height: 12px;
  background: #fff;
  transform: rotate(45deg);
}
.hero-badge-float:hover .hero-badge-tooltip,
.hero-badge-float:focus-within .hero-badge-tooltip {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0s linear 0s;
}
.hero-badge-tooltip strong {
  display: block;
  font-family: 'Source Serif 4', serif;
  font-size: 0.95rem;
  margin-bottom: 6px;
  color: var(--dark);
}
.hero-badge-tooltip a {
  display: inline-block;
  margin-top: 10px;
  font-weight: 600;
  font-size: 0.82rem;
  color: var(--gold-dark);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.hero-badge-tooltip a:hover { color: var(--green); }
@media (max-width: 900px) {
  .hero-badge-float { bottom: 40px; width: 86px; right: 20px; }
}
@media (max-width: 640px) {
  .hero-badge-float { display: none; }
}

/* ── HERO AS FEATURED IN ───────────────────────── */
.hero-featured { margin-top: 40px; }
.hero .hero-featured-label {
  font-family: 'Source Serif 4', serif;
  font-style: italic;
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  margin-bottom: 10px;
  max-width: none;
  line-height: 1.4;
}
.hero-featured-logos {
  display: flex;
  align-items: center;
  gap: clamp(28px, 3.5vw, 44px);
  flex-wrap: wrap;
}
.hero-featured-logos img,
.hero-featured-logos svg {
  height: 32px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.82;
  transition: opacity 0.25s;
}
.hero-featured-logos img[src*="experience-columbus"] { height: 54px; }
.hero-featured-logos img[src*="food-network"] { height: 48px; }
.hero-featured-logos img:hover,
.hero-featured-logos svg:hover { opacity: 1; }
@media (max-width: 768px) {
  .hero-featured-logos { gap: 24px; }
  .hero-featured-logos img,
  .hero-featured-logos svg { height: 26px; }
  .hero-featured-logos img[src*="experience-columbus"] { height: 42px; }
  .hero-featured-logos img[src*="food-network"] { height: 38px; }
}

/* ── PAGE HERO (subpages) ──────────────────────── */
.page-hero {
  position: relative;
  min-height: 480px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  padding: 280px 0 72px;
  color: #fff;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  background: center/cover no-repeat;
}
.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(32, 24, 15, 0.35) 0%,
    rgba(32, 24, 15, 0.55) 50%,
    rgba(32, 24, 15, 0.78) 100%
  );
}
.page-hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
}
.page-hero .eyebrow {
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--gold);
  margin-bottom: 14px;
}
.page-hero h1 {
  font-size: clamp(2.2rem, 4.6vw, 3.2rem);
  color: #fff;
  font-weight: 700;
  margin-bottom: 18px;
  text-shadow: 0 2px 16px rgba(0,0,0,0.25);
}
.page-hero p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.88);
  max-width: 600px;
  line-height: 1.7;
}

/* ── STATS BAR ─────────────────────────────────── */
.stats-bar {
  background: var(--dark);
  padding: 28px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.stat-value {
  font-family: 'Source Serif 4', serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--gold);
}
.stat-label {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.7);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ── SECTION GENERICS ───────────────────────────── */
.section { padding: 100px 0; }
.section-warm { background: var(--warm-white); }
.section-cream { background: var(--cream); }
.section-dark { background: var(--dark); color: #fff; }
.section-label {
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold);
  margin-bottom: 12px;
}
.section-heading {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  color: var(--charcoal);
  margin-bottom: 16px;
}
.section-dark .section-heading { color: #fff; }
.section-subtext {
  font-size: 1.12rem;
  color: var(--text-light);
  max-width: 640px;
  line-height: 1.75;
}
.section-dark .section-subtext { color: rgba(255,255,255,0.75); }
.section-intro { text-align: center; margin-bottom: 64px; }
.section-intro .section-subtext { margin: 0 auto; }

/* ── EXPERIENCE STEPS ──────────────────────────── */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
}
#how-it-works { padding-bottom: 50px; } /* tighten the gap above the photo marquee */
.step { text-align: center; padding: 40px 24px; }
.step-number {
  font-family: 'Source Serif 4', serif;
  font-size: 3.2rem;
  font-weight: 300;
  color: var(--gold);
  opacity: 0.5;
  line-height: 1;
  margin-bottom: 20px;
}
.step-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: var(--gold);
  font-size: 1.2rem;
}
.step h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
  color: var(--charcoal);
}
.step p {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.65;
}

/* ── TOURS (home – horizontal scroll) ──────────── */
.tours {
  position: relative;
  padding: 110px 0;
  background:
    linear-gradient(180deg, rgba(32,24,15,0.82) 0%, rgba(32,24,15,0.92) 100%),
    url('../assets/connor-gan.jpg') center/cover no-repeat fixed;
  color: #fff;
}
.tours .section-intro { color: #fff; }
.tours .section-intro .section-heading { color: #fff; }
.tours-grid {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-padding: 0 24px;
  padding: 8px 24px 24px;
  margin: 0 -24px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: rgba(255,255,255,0.35) transparent;
}
.tours-grid::-webkit-scrollbar { height: 8px; }
.tours-grid::-webkit-scrollbar-track { background: rgba(255,255,255,0.08); border-radius: 4px; }
.tours-grid::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.35); border-radius: 4px; }
.tours-grid::-webkit-scrollbar-thumb:hover { background: var(--gold); }
.tours-grid .tour-card {
  flex: 0 0 340px;
  scroll-snap-align: start;
}

/* ── TOUR CARD ─────────────────────────────────── */
.tour-card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  border: none;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  box-shadow: 0 6px 30px rgba(0,0,0,0.15);
}
.tour-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.25);
}
.tour-card-image {
  height: 266px;
  background-size: cover;
  background-position: center;
  position: relative;
}
.tour-card-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--gold);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 6px 12px;
  border-radius: 3px;
}
.tour-card-body {
  padding: 24px 24px 26px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.tour-type {
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--green);
  margin-bottom: 10px;
}
.tour-card h3 {
  font-size: 1.25rem;
  color: var(--charcoal);
  margin-bottom: 12px;
  line-height: 1.3;
}
.tour-card p.tour-desc {
  font-size: 0.98rem;
  color: var(--text-light);
  line-height: 1.65;
  margin-bottom: 16px;
  flex: 1;
}
.tour-meta {
  display: flex;
  gap: 16px;
  font-size: 0.8rem;
  color: var(--text-light);
  padding-top: 14px;
  border-top: 1px solid rgba(32,24,15,0.08);
  margin-top: 14px;
}
.tour-meta span { display: inline-flex; align-items: center; gap: 6px; }
.tour-meta i { color: var(--gold); font-size: 0.8rem; }
.tour-price {
  font-family: 'Source Serif 4', serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 14px;
}
.tour-price span {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.8rem;
  font-weight: 400;
  color: var(--text-light);
}
.tour-card-buttons {
  display: flex;
  gap: 8px;
}
.tour-card .btn {
  text-align: center;
  flex: 1;
  padding: 11px 12px;
  font-size: 0.82rem;
}
.tour-card .btn-gold { background: var(--gold); color: #fff; border: 2px solid var(--gold); }
.tour-card .btn-gold:hover { background: var(--gold-dark); border-color: var(--gold-dark); }
.tour-card .btn-outline {
  background: transparent;
  color: var(--charcoal);
  border: 2px solid rgba(32,24,15,0.15);
}
.tour-card .btn-outline:hover { border-color: var(--gold); color: var(--gold); }

/* ── TOURS GRID (subpages – static) ─────────────── */
.tours-static-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.tours-static-grid .tour-card { background: #fff; }
@media (max-width: 1024px) {
  .tours-static-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .tours-grid .tour-card { flex: 0 0 85%; }
  .tour-card-image { height: 220px; }
  /* Tours scroll horizontally on mobile instead of stacking down the page */
  .tours-static-grid {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    margin: 0 -24px;
    padding: 4px 24px 18px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .tours-static-grid::-webkit-scrollbar { display: none; }
  .tours-static-grid .tour-card { flex: 0 0 82%; scroll-snap-align: start; }
}

/* ── TOUR FILTER PILLS ─────────────────────────── */
.tour-filter {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}
.tour-filter button {
  background: transparent;
  border: 2px solid rgba(32,24,15,0.15);
  color: var(--text);
  font-family: 'Source Sans 3', sans-serif;
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 10px 22px;
  border-radius: 999px;
  cursor: pointer;
  transition: all 0.25s ease;
}
.tour-filter button:hover { border-color: var(--gold); color: var(--gold); }
.tour-filter button.active {
  background: var(--gold);
  border-color: var(--gold);
  color: #fff;
}

/* ── TESTIMONIAL ───────────────────────────────── */
.testimonial {
  position: relative;
  padding: 120px 0;
  background:
    radial-gradient(ellipse at center, rgba(74,103,65,0.92) 0%, rgba(32,24,15,0.98) 100%),
    var(--dark);
  text-align: center;
  overflow: hidden;
}
.testimonial::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='80' height='80' viewBox='0 0 80 80'><g fill='none' stroke='%23c8963e' stroke-width='1' stroke-linecap='round'><path d='M20 10 L20 30 M18 10 L22 10 M16 14 L24 14 M20 30 L20 38'/><path d='M60 10 L60 38 M56 10 L56 22 L60 22 M64 10 L64 22 L60 22'/><circle cx='40' cy='60' r='3'/></g></svg>");
  background-size: 80px 80px;
  opacity: 0.08;
  pointer-events: none;
}
.testimonial::after {
  content: "\201C";
  position: absolute;
  top: 40px;
  left: 50%;
  transform: translateX(-50%);
  font-family: 'Source Serif 4', serif;
  font-size: 14rem;
  line-height: 1;
  color: var(--gold);
  opacity: 0.12;
  pointer-events: none;
}
.testimonial > .container { position: relative; z-index: 1; }
.testimonial-stars {
  color: var(--gold);
  font-size: 1.1rem;
  margin-bottom: 24px;
  letter-spacing: 4px;
}
.testimonial blockquote {
  font-family: 'Source Serif 4', serif;
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  font-weight: 400;
  font-style: italic;
  color: #fff;
  max-width: 800px;
  margin: 0 auto 24px;
  line-height: 1.6;
}
.testimonial-author {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ── FOUNDERS ───────────────────────────────────── */
.founders {
  padding: 100px 0;
  background: var(--warm-white);
}
.founders-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.founders-photo { border-radius: 8px; overflow: hidden; }
.founders-photo img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
}
.founders-text .section-label { text-align: left; }
.founders-text p {
  font-size: 1.05rem;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 24px;
}
.founders-sig {
  font-family: 'Source Serif 4', serif;
  font-style: italic;
  font-size: 3rem;
  line-height: 1.1;
  color: var(--charcoal);
  margin-bottom: 8px;
}
.founders-role {
  font-size: 0.82rem;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ── PARTNERS ───────────────────────────────────── */
.partners {
  padding: 72px 0;
  background: var(--cream);
  text-align: center;
}
.partners .section-label { margin-bottom: 32px; }
.partners-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 56px;
  flex-wrap: wrap;
}
.partners-logos img {
  height: 56px;
  opacity: 0.75;
  transition: opacity 0.3s;
}
.partners-logos img:hover { opacity: 1; }

/* ── CTA BAND ──────────────────────────────────── */
.cta-band {
  position: relative;
  padding: 88px 0;
  background: var(--gold);
  text-align: center;
  overflow: hidden;
}
.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='48' height='48' viewBox='0 0 48 48'><g fill='none' stroke='%2320180f' stroke-width='0.7'><path d='M0 24 L24 0 L48 24 L24 48 Z'/></g><circle cx='24' cy='24' r='1.4' fill='%2320180f'/><circle cx='0' cy='0' r='1.4' fill='%2320180f'/><circle cx='48' cy='0' r='1.4' fill='%2320180f'/><circle cx='0' cy='48' r='1.4' fill='%2320180f'/><circle cx='48' cy='48' r='1.4' fill='%2320180f'/></svg>");
  background-size: 48px 48px;
  opacity: 0.14;
  pointer-events: none;
}
.cta-band > .container { position: relative; z-index: 1; }
.cta-band h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--dark);
  margin-bottom: 12px;
}
.cta-band p {
  font-size: 1.05rem;
  color: rgba(32, 24, 15, 0.75);
  margin-bottom: 28px;
}

/* ── FEATURE LIST (private events, gift cards) ───── */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.feature {
  background: #fff;
  border-radius: 10px;
  padding: 36px 28px;
  box-shadow: 0 4px 20px rgba(32, 24, 15, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.feature:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 36px rgba(32, 24, 15, 0.12);
}
.feature-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--cream);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  margin-bottom: 18px;
}
.feature h3 {
  font-size: 1.2rem;
  color: var(--charcoal);
  margin-bottom: 10px;
}
.feature p {
  font-size: 1.02rem;
  color: var(--text-light);
  line-height: 1.7;
}
@media (max-width: 1024px) {
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .feature-grid { grid-template-columns: 1fr; }
}

/* ── SPLIT (image + text) ──────────────────────── */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.split.reverse > :first-child { order: 2; }
.split-photo { border-radius: 8px; overflow: hidden; }
.split-photo img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
}
.split-text p {
  font-size: 1.05rem;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 18px;
}
@media (max-width: 1024px) {
  .split { grid-template-columns: 1fr; max-width: 560px; margin: 0 auto; gap: 40px; }
  .split.reverse > :first-child { order: 0; }
  .split-photo { order: -1; }
}

/* ── PRACTICAL INFO (tour detail) ──────────────── */
.practical {
  background: var(--cream);
  border-radius: 10px;
  padding: 40px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}
.practical-item h4 {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold);
  margin-bottom: 8px;
}
.practical-item p {
  font-size: 1rem;
  color: var(--charcoal);
  line-height: 1.5;
}
@media (max-width: 768px) {
  .practical { grid-template-columns: repeat(2, 1fr); padding: 28px; gap: 22px; }
}

/* ── ITINERARY ─────────────────────────────────── */
.itinerary {
  max-width: 760px;
  margin: 0 auto;
}
.itinerary-step {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 24px;
  padding: 22px 0;
  border-bottom: 1px solid rgba(32,24,15,0.08);
}
.itinerary-step:last-child { border-bottom: none; }
.itinerary-step-num {
  font-family: 'Source Serif 4', serif;
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
}
.itinerary-step h3 {
  font-size: 1.15rem;
  color: var(--charcoal);
  margin-bottom: 6px;
}
.itinerary-step p {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.65;
}

/* ── FAQ ────────────────────────────────────────── */
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid rgba(32,24,15,0.1);
  padding: 22px 0;
}
.faq-item:first-child { border-top: 1px solid rgba(32,24,15,0.1); }
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  list-style: none;
  font-family: 'Source Serif 4', serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--charcoal);
  gap: 16px;
}
.faq-question::-webkit-details-marker { display: none; }
.faq-question::after {
  content: "+";
  font-family: 'Source Sans 3', sans-serif;
  font-size: 1.6rem;
  color: var(--gold);
  font-weight: 300;
  flex-shrink: 0;
  transition: transform 0.25s ease;
}
.faq-item[open] .faq-question::after { transform: rotate(45deg); }
.faq-answer {
  margin-top: 14px;
  font-size: 1.05rem;
  color: var(--text-light);
  line-height: 1.75;
}

/* ── FORM ───────────────────────────────────────── */
.form {
  max-width: 640px;
  margin: 0 auto;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}
.form-field { margin-bottom: 16px; }
.form-field label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text);
  margin-bottom: 8px;
}
.form-field input,
.form-field textarea,
.form-field select {
  width: 100%;
  padding: 14px 16px;
  font-family: 'Source Sans 3', sans-serif;
  font-size: 1rem;
  color: var(--text);
  background: #fff;
  border: 1.5px solid rgba(32,24,15,0.12);
  border-radius: 6px;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}
.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(243, 148, 34, 0.18);
}
.form-field textarea { resize: vertical; min-height: 130px; }
@media (max-width: 640px) {
  .form-row { grid-template-columns: 1fr; }
}

/* ── PROSE (about, gift cards copy blocks) ────── */
.prose {
  max-width: 720px;
  margin: 0 auto;
}
.prose p {
  font-size: 1.18rem;
  color: var(--text);
  line-height: 1.8;
  margin-bottom: 24px;
}
.prose h3 {
  font-size: 1.4rem;
  color: var(--charcoal);
  margin: 36px 0 14px;
}
.prose ul {
  margin: 0 0 22px 22px;
  color: var(--text);
  line-height: 1.8;
}
.prose ul li { margin-bottom: 8px; }

/* ── DATE GRID (calendar) ──────────────────────── */
.date-tour-block {
  background: #fff;
  border-radius: 10px;
  padding: 28px 32px;
  margin-bottom: 22px;
  box-shadow: 0 4px 20px rgba(32, 24, 15, 0.06);
  display: grid;
  grid-template-columns: 1fr 2fr auto;
  gap: 28px;
  align-items: center;
}
.date-tour-info h3 {
  font-size: 1.15rem;
  color: var(--charcoal);
  margin-bottom: 4px;
}
.date-tour-info .tour-meta {
  border-top: none;
  padding-top: 0;
  margin-top: 6px;
}
.date-list {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.date-pill {
  background: var(--cream);
  color: var(--charcoal);
  font-size: 0.88rem;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(32,24,15,0.06);
  transition: all 0.25s ease;
}
.date-pill:hover {
  background: var(--gold);
  color: #fff;
  border-color: var(--gold);
}
.date-pill.sold-out {
  opacity: 0.45;
  cursor: not-allowed;
  text-decoration: line-through;
}
.date-pill.sold-out:hover { background: var(--cream); color: var(--charcoal); }
@media (max-width: 900px) {
  .date-tour-block {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

/* ── FOOTER ─────────────────────────────────────── */
.footer {
  background: var(--dark);
  padding: 80px 0 32px;
  color: rgba(255,255,255,0.6);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  grid-template-areas: "tours brand company";
  gap: 72px;
  align-items: start;
  margin-bottom: 56px;
}
.footer-col-tours { grid-area: tours; text-align: right; }
.footer-col-company { grid-area: company; text-align: left; }
.footer-brand {
  grid-area: brand;
  text-align: center;
  padding: 0 24px;
}
.footer-brand img {
  height: 120px;
  border-radius: 6px;
  margin: 0 auto 18px;
  display: block;
}
.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 20px;
  max-width: 320px;
  margin-left: auto;
  margin-right: auto;
}
.footer-social { justify-content: center; display: flex; gap: 16px; }
.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  font-size: 0.85rem;
  transition: all 0.3s;
}
.footer-social a:hover { border-color: var(--gold); color: var(--gold); }
.footer h4 {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.4);
  margin-bottom: 20px;
}
.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-links a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  transition: color 0.3s;
}
.footer-links a:hover { color: var(--gold); }
.footer-links a i { margin-right: 8px; width: 16px; text-align: center; }
/* ── Footer mailing list strip (sits between the columns and the copyright) ── */
.footer-signup {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 32px 0;
  margin-bottom: 8px;
}
.footer-signup__copy h4 { margin-bottom: 6px; }
.footer-signup__copy p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
  margin: 0;
}
.footer-signup__form {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  position: relative;
}
.footer-signup__form input[type="email"] {
  min-width: 260px;
  padding: 12px 16px;
  border: 1.5px solid rgba(255,255,255,0.18);
  border-radius: 6px;
  background: rgba(255,255,255,0.06);
  color: #fff;
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.95rem;
  transition: border-color 0.3s, background 0.3s;
}
.footer-signup__form input[type="email"]::placeholder { color: rgba(255,255,255,0.4); }
.footer-signup__form input[type="email"]:focus {
  outline: none;
  border-color: var(--gold);
  background: rgba(255,255,255,0.1);
}
@media (max-width: 768px) {
  .footer-signup {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
    gap: 18px;
  }
  .footer-signup__form { justify-content: center; }
  .footer-signup__form input[type="email"] { min-width: 0; flex: 1; }
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 24px;
  text-align: center;
  font-size: 0.82rem;
}

/* ── Home-style card footer (shared: home widget, /tour/ hub, calendar) ── */
.dpx-xp__foot { display: flex; align-items: flex-start; justify-content: flex-start; gap: 12px 16px; flex-wrap: wrap; margin-top: 6px; }
.dpx-xp__foot.has-times { justify-content: space-between; }
.dpx-xp__cta { flex: none; display: inline-block; font-family: 'Source Sans 3', sans-serif; font-size: 12px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: #fff; background: var(--gold); border-radius: 2px; padding: 11px 24px; text-decoration: none; transition: background 0.25s ease; }
.dpx-xp__cta:hover { background: var(--gold-dark); }
.dpx-xp__times { display: flex; flex-direction: column; align-items: flex-end; gap: 7px; }
.dpx-xp__slot { font-family: 'Source Sans 3', sans-serif; font-size: 14px; font-weight: 600; color: var(--gold-dark); text-decoration: none; white-space: nowrap; }
.dpx-xp__slot:hover { text-decoration: underline; }
.dpx-xp__slot--out, .dpx-xp__slot--out:hover { color: #c0392b; text-decoration: line-through; cursor: default; }

.tour-marquee::-webkit-scrollbar { display: none; }

/* ── Photo Lightbox ────────────────────────────── */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(20, 16, 12, 0.9);
  backdrop-filter: blur(4px);
}
.lightbox.open { display: flex; }
.lightbox__img {
  max-width: min(1100px, 92vw);
  max-height: 88vh;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.55);
}
.lightbox__close {
  position: absolute;
  top: 18px;
  right: 22px;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.14);
  border: none;
  border-radius: 50%;
  color: #fff;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  transition: background 0.2s ease;
}
.lightbox__close:hover { background: rgba(255, 255, 255, 0.28); }

/* ── Responsive ─────────────────────────────────── */
@media (max-width: 1024px) {
  .founders-grid { grid-template-columns: 1fr; max-width: 560px; margin: 0 auto; }
  .founders-photo { order: -1; }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-areas:
      "brand brand"
      "tours company";
    gap: 40px;
  }
  .footer-col-tours { text-align: left; }
  .footer-col-company { text-align: right; }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-hamburger { display: block; }
  .nav-logo img { height: 60px; }
  .nav.scrolled .nav-logo img, .nav.solid .nav-logo img { height: 52px; }
  .nav.nav-hidden { transform: translateY(-100%); }
  .hero-content { padding-bottom: 100px; }
  .hero h1 { font-size: 2rem; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .steps-grid { grid-template-columns: 1fr; gap: 16px; }
  .step { padding: 24px 16px; }
  /* Compact "How It Works" on mobile: icon beside the title (out of the circle) so all 3 fit. */
  #how-it-works { padding-top: 44px !important; padding-bottom: 24px; }
  #how-it-works .steps-grid { gap: 0; }
  #how-it-works .step { display: grid; grid-template-columns: auto 1fr; column-gap: 13px; row-gap: 6px; align-items: center; text-align: left; padding: 18px 2px; }
  #how-it-works .step + .step { border-top: 1px solid rgba(32, 24, 15, 0.08); }
  #how-it-works .step-icon { grid-column: 1; grid-row: 1; width: auto; height: auto; background: none; margin: 0; font-size: 1.3rem; }
  #how-it-works .step h3 { grid-column: 2; grid-row: 1; margin: 0; font-size: 1.1rem; line-height: 1.25; }
  #how-it-works .step p { grid-column: 2; grid-row: 2; margin: 0; font-size: 0.95rem; line-height: 1.55; }
  /* Compact "What's Included" on mobile: icon beside the title, on the RIGHT. */
  #included { padding-top: 44px !important; padding-bottom: 48px; }
  #included .feature-grid { gap: 10px; }
  #included .feature { display: grid; grid-template-columns: 1fr auto; column-gap: 14px; align-items: start; padding: 16px; }
  #included .feature-icon { grid-column: 2; grid-row: 1 / span 2; width: auto; height: auto; background: none; margin: 2px 0 0; font-size: 1.35rem; }
  #included .feature h3 { grid-column: 1; grid-row: 1; margin-bottom: 4px; font-size: 1.08rem; }
  #included .feature p { grid-column: 1; grid-row: 2; font-size: 0.95rem; line-height: 1.55; margin: 0; }
  .section { padding: 72px 0; }
  .experience { padding: 72px 0; }
  .tours { padding: 72px 0; }
  .testimonial { padding: 72px 0; }
  .founders { padding: 72px 0; }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-areas:
      "brand brand"
      "tours company";
    gap: 32px;
  }
  .footer-col-tours { text-align: left; }
  .footer-col-company { text-align: right; }
  .footer { padding-bottom: 80px; }
  .page-hero { min-height: 380px; padding: 240px 0 56px; }
}

/* ── TWO-TILE CALLOUT (home: team outings + private events) ─ */
.two-tile {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 8px;
}
.two-tile-item {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  min-height: 360px;
  display: flex;
  align-items: flex-end;
  padding: 36px 32px;
  color: #fff;
  background-size: cover;
  background-position: center;
  isolation: isolate;
}
.two-tile-item::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(32, 24, 15, 0.25) 0%,
    rgba(32, 24, 15, 0.65) 60%,
    rgba(32, 24, 15, 0.85) 100%
  );
  z-index: -1;
  transition: background 0.3s ease;
}
.two-tile-item:hover::before {
  background: linear-gradient(
    180deg,
    rgba(32, 24, 15, 0.35) 0%,
    rgba(32, 24, 15, 0.7) 60%,
    rgba(32, 24, 15, 0.92) 100%
  );
}
.two-tile-item .eyebrow {
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--gold);
  margin-bottom: 10px;
}
.two-tile-item h3 {
  font-size: 1.6rem;
  margin-bottom: 10px;
  color: #fff;
}
.two-tile-item p {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.65;
  margin-bottom: 22px;
  max-width: 420px;
}
.two-tile-item .btn {
  align-self: flex-start;
}
@media (max-width: 768px) {
  .two-tile { grid-template-columns: 1fr; }
  .two-tile-item { min-height: 280px; padding: 28px 24px; }
}

/* ── DAY FILTER (tours hub) ────────────────────── */
.day-filter-wrap {
  background: var(--cream);
  border-radius: 10px;
  padding: 24px 28px;
  margin-bottom: 36px;
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: center;
}
/* Full-bleed day-filter bar, butted directly under the /tour/ hero */
.page-hero-note { font-size: 0.98rem; color: rgba(255, 255, 255, 0.78); max-width: 600px; line-height: 1.6; margin-top: 14px; }
.day-filter-bar {
  background: var(--cream);
  padding: 18px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}
.day-filter-label {
  font-family: 'Source Serif 4', serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--charcoal);
}
.day-filter {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
}
.tour-day-note { text-align: center; font-family: 'Source Sans 3', sans-serif; font-size: 1rem; color: var(--text-light); margin: 0 0 18px; }
.day-filter button {
  background: #fff;
  border: 1.5px solid rgba(32, 24, 15, 0.12);
  color: var(--text);
  font-family: 'Source Sans 3', sans-serif;
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 9px 16px;
  border-radius: 999px;
  cursor: pointer;
  transition: all 0.2s ease;
}
.day-filter button:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.day-filter button.active {
  background: var(--gold);
  border-color: var(--gold);
  color: #fff;
}
.day-filter-clear {
  font-size: 0.85rem;
  color: var(--text-light);
  text-decoration: underline;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px 8px;
}

/* ── GALLERY (tour detail) ─────────────────────── */
.gallery {
  margin: 0 -24px;
  padding: 0 24px;
  position: relative;
}
.gallery-track {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-padding: 0 24px;
  padding: 8px 0 24px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: rgba(32, 24, 15, 0.25) transparent;
}
.gallery-track::-webkit-scrollbar { height: 8px; }
.gallery-track::-webkit-scrollbar-track {
  background: rgba(32, 24, 15, 0.05);
  border-radius: 4px;
}
.gallery-track::-webkit-scrollbar-thumb {
  background: rgba(32, 24, 15, 0.25);
  border-radius: 4px;
}
.gallery-track::-webkit-scrollbar-thumb:hover {
  background: var(--gold);
}
.gallery-item {
  flex: 0 0 480px;
  scroll-snap-align: start;
  border-radius: 10px;
  overflow: hidden;
  aspect-ratio: 4/3;
  background-size: cover;
  background-position: center;
  box-shadow: 0 6px 24px rgba(32, 24, 15, 0.12);
}
@media (max-width: 768px) {
  .gallery-item { flex: 0 0 85%; }
}

/* ── VIDEO EMBED (tour detail) ─────────────────── */
.video-embed {
  position: relative;
  width: 100%;
  max-width: 880px;
  margin: 0 auto;
  aspect-ratio: 16/9;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(32, 24, 15, 0.15);
}
.video-embed iframe,
.video-embed video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}
.video-embed-placeholder {
  position: absolute;
  inset: 0;
  background: var(--charcoal);
  color: rgba(255, 255, 255, 0.7);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-family: 'Source Serif 4', serif;
  font-style: italic;
  text-align: center;
  padding: 24px;
}
.video-embed-placeholder i {
  font-size: 3rem;
  color: var(--gold);
  margin-bottom: 16px;
}

/* ── RELATED-TOURS STRIP (visually different from tour content) ─ */
.related-strip {
  background: var(--dark);
  color: #fff;
  padding: 80px 0;
}
.related-strip .section-label {
  color: var(--gold);
  text-align: center;
}
.related-strip .section-heading {
  color: #fff;
  text-align: center;
  font-size: 1.6rem;
  margin-bottom: 8px;
}
.related-strip .section-subtext {
  color: rgba(255, 255, 255, 0.65);
  text-align: center;
  margin: 0 auto 40px;
  font-size: 1rem;
}
.related-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.related-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 10px;
  transition: all 0.25s ease;
  color: #fff;
}
.related-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--gold);
  transform: translateY(-2px);
}
.related-card-image {
  flex: 0 0 96px;
  height: 96px;
  border-radius: 8px;
  background-size: cover;
  background-position: center;
}
.related-card-body { flex: 1; min-width: 0; }
.related-card-type {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gold);
  margin-bottom: 4px;
}
.related-card h3 {
  font-size: 1rem;
  color: #fff;
  margin-bottom: 4px;
  line-height: 1.25;
}
.related-card p {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
  line-height: 1.5;
}
@media (max-width: 1024px) {
  .related-cards { grid-template-columns: 1fr; }
}

/* ── MAILING LIST SIGNUP ───────────────────────── */
.mailing-list {
  background: var(--cream);
  padding: 64px 0;
  text-align: center;
}
.mailing-list h2 {
  font-size: clamp(1.6rem, 2.4vw, 2rem);
  color: var(--charcoal);
  margin-bottom: 12px;
}
.mailing-list p {
  font-size: 1.05rem;
  color: var(--text-light);
  max-width: 540px;
  margin: 0 auto 28px;
  line-height: 1.7;
}
.mailing-list-form {
  display: flex;
  gap: 8px;
  max-width: 460px;
  margin: 0 auto 14px;
  flex-wrap: wrap;
  justify-content: center;
}
.mailing-list-form input[type="email"] {
  flex: 1;
  min-width: 240px;
  padding: 14px 18px;
  border: 1.5px solid rgba(32, 24, 15, 0.15);
  border-radius: 6px;
  background: #fff;
  font-family: 'Source Sans 3', sans-serif;
  font-size: 1rem;
  color: var(--text);
  transition: border-color 0.25s, box-shadow 0.25s;
}
.mailing-list-form input[type="email"]:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(243, 148, 34, 0.18);
}
.mailing-list-form button {
  padding: 14px 28px;
  white-space: nowrap;
}
.mailing-list-privacy {
  font-size: 0.82rem;
  color: var(--text-light);
  font-style: italic;
}

/* ── PROBLEM/AGITATION/SOLUTION (team outings) ─── */
.pas-problem {
  background: var(--charcoal);
  color: #fff;
  padding: 80px 0;
}
.pas-problem .section-heading {
  color: #fff;
  text-align: center;
  margin-bottom: 32px;
}
.pas-problem .pas-list {
  max-width: 640px;
  margin: 0 auto;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.pas-problem .pas-list li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.88);
  padding: 14px 20px;
  background: rgba(255, 255, 255, 0.04);
  border-left: 3px solid var(--gold);
  border-radius: 4px;
  line-height: 1.6;
}
.pas-problem .pas-list li::before {
  content: "✕";
  color: var(--gold);
  font-weight: 700;
  flex-shrink: 0;
  font-size: 1.1rem;
  line-height: 1.5;
}

/* ── COORDINATOR LETTER ────────────────────────── */
.coordinator {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 56px;
  align-items: center;
  max-width: 960px;
  margin: 0 auto;
}
.coordinator-photo {
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 1/1;
  background: var(--cream);
  background-size: cover;
  background-position: center;
}
.coordinator-text p {
  font-size: 1.1rem;
  color: var(--text);
  line-height: 1.8;
  margin-bottom: 18px;
}
.coordinator-sig {
  font-family: 'Source Serif 4', serif;
  font-style: italic;
  font-size: 2.2rem;
  line-height: 1.1;
  color: var(--charcoal);
  margin-top: 24px;
  margin-bottom: 4px;
}
.coordinator-role {
  font-size: 0.82rem;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
@media (max-width: 768px) {
  .coordinator { grid-template-columns: 1fr; gap: 28px; max-width: 480px; }
  .coordinator-photo { max-width: 200px; }
}

/* ── CALENDAR FAREHARBOR EMBED FRAME ───────────── */
.fh-embed-frame {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  min-height: 700px;
  box-shadow: 0 4px 20px rgba(32, 24, 15, 0.06);
}
.fh-embed-frame iframe {
  width: 100%;
  border: none;
  min-height: 700px;
}

/* ── GIFT BOX PRODUCT CARDS ────────────────────── */
.box-products {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  max-width: 1040px;
  margin: 0 auto;
}
.box-product {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 6px 30px rgba(32, 24, 15, 0.08);
  display: flex;
  flex-direction: column;
}
.box-product-image {
  height: 280px;
  background-size: cover;
  background-position: center;
  position: relative;
}
.box-product-flag {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--gold);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 6px 12px;
  border-radius: 3px;
}
.box-product-body {
  padding: 32px 32px 28px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.box-product h3 {
  font-size: 1.5rem;
  color: var(--charcoal);
  margin-bottom: 8px;
  line-height: 1.25;
}
.box-product .price {
  font-family: 'Source Serif 4', serif;
  font-size: 1.7rem;
  font-weight: 600;
  color: var(--gold-dark);
  margin-bottom: 18px;
}
.box-product .price span {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--text-light);
}
.box-product .contents-label {
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold);
  margin-bottom: 12px;
}
.box-product ul {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}
.box-product li {
  font-size: 0.98rem;
  color: var(--text);
  line-height: 1.5;
  padding-left: 18px;
  position: relative;
}
.box-product li::before {
  content: "•";
  color: var(--gold);
  position: absolute;
  left: 0;
  font-weight: 700;
}
.box-product li .vendor {
  color: var(--text-light);
  font-style: italic;
}
.box-product .btn { width: 100%; }
@media (max-width: 768px) {
  .box-products { grid-template-columns: 1fr; }
  .box-product-image { height: 220px; }
  .box-product-body { padding: 24px; }
}

/* ── PASSPORT FLOW ─────────────────────────────── */
.passport-card-visual {
  background: linear-gradient(135deg, var(--charcoal) 0%, var(--dark) 100%);
  color: #fff;
  border-radius: 14px;
  padding: 40px;
  max-width: 640px;
  margin: 0 auto 56px;
  position: relative;
  box-shadow: 0 18px 48px rgba(32, 24, 15, 0.25);
  overflow: hidden;
}
.passport-card-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='60' height='60' viewBox='0 0 60 60'><g fill='none' stroke='%23c8963e' stroke-width='1' opacity='0.2'><circle cx='30' cy='30' r='14'/><circle cx='30' cy='30' r='22'/></g></svg>");
  background-size: 60px 60px;
  opacity: 0.4;
  pointer-events: none;
}
.passport-card-visual > * { position: relative; z-index: 1; }
.passport-card-label {
  font-family: 'Source Serif 4', serif;
  font-style: italic;
  font-size: 0.92rem;
  letter-spacing: 0.18em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 18px;
}
.passport-card-title {
  font-family: 'Source Serif 4', serif;
  font-size: 1.7rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 28px;
}
.passport-stamps {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
}
.passport-stamp {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 2.5px dashed var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-family: 'Source Serif 4', serif;
  font-size: 0.78rem;
  font-style: italic;
  text-align: center;
  line-height: 1;
}
.passport-stamp.stamped {
  background: var(--gold);
  color: var(--dark);
  border-style: solid;
  font-weight: 700;
  font-style: normal;
  font-size: 1.2rem;
}
.passport-stamp.free {
  border-style: solid;
  background: rgba(243, 148, 34, 0.15);
  font-size: 0.7rem;
}
.passport-stamp-arrow {
  color: rgba(255, 255, 255, 0.35);
  font-size: 0.95rem;
}
@media (max-width: 640px) {
  .passport-card-visual { padding: 28px 24px; }
  .passport-stamp { width: 48px; height: 48px; font-size: 0.68rem; }
  .passport-stamp.stamped { font-size: 1rem; }
  .passport-stamps { gap: 8px; }
}
