@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@500;600&display=swap');
/* ============================================================
   KOLKATA TOURS — Design System
   Palette: Warm gold (#C9922A), Deep charcoal (#1A1612),
            Cream (#F9F5EF), Rust accent (#B84A2A)
   ============================================================ */

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

:root {
  --gold:        #C9922A;
  --gold-light:  #E8C472;
  --gold-pale:   #FBF3E4;
  --rust:        #B84A2A;
  --charcoal:    #1A1612;
  --ink:         #2D2520;
  --smoke:       #5C544E;
  --mist:        #9C948E;
  --cream:       #F9F5EF;
  --white:       #FFFFFF;
  --border:      rgba(201,146,42,0.18);
  --border-dark: rgba(201,146,42,0.35);

  --font-sans:   'Segoe UI', system-ui, -apple-system, sans-serif;
  --font-serif:  Georgia, 'Times New Roman', serif;

  --radius-sm:   6px;
  --radius-md:   10px;
  --radius-lg:   16px;
  --radius-xl:   24px;

  --shadow-sm:   0 1px 4px rgba(26,22,18,0.08);
  --shadow-md:   0 4px 16px rgba(26,22,18,0.10);
  --shadow-lg:   0 8px 32px rgba(26,22,18,0.13);

  --nav-h:       76px;
  --section-gap: 80px;
  --container:   1160px;
}

html { scroll-behavior: smooth; font-size: 16px; scroll-padding-top: var(--nav-h); }

body {
  font-family: var(--font-sans);
  background: var(--cream);
  color: var(--ink);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }


/* 2. TYPOGRAPHY */
h1, h2, h3, h4 {
  font-family: var(--font-serif);
  color: var(--charcoal);
  line-height: 1.25;
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(2rem, 4vw, 3rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2.1rem); }
h3 { font-size: 1.25rem; }
h4 { font-size: 1rem; font-family: var(--font-sans); font-weight: 600; }

p { color: var(--smoke); line-height: 1.75; }
strong { color: var(--ink); font-weight: 600; }


/* 3. LAYOUT HELPERS */
.page-shell { display: flex; flex-direction: column; min-height: 100vh; }

.section {
  padding: var(--section-gap) max(1.5rem, calc((100% - var(--container)) / 2));
}
.bg-cream { background: var(--cream); }
.bg-white { background: var(--white); }
.bg-charcoal { background: var(--charcoal); color: var(--white); }

.section-header {
  text-align: center;
  max-width: 660px;
  margin: 0 auto 3rem;
}
.section-header p {
  margin-top: .75rem;
  font-size: 1.05rem;
}
.section-header h2::after {
  content: '';
  display: block;
  width: 48px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  margin: .85rem auto 0;
  border-radius: 2px;
}

.section-footer { margin-top: 2.5rem; text-align: center; }


/* 4. BUTTONS */
.btn-primary,
.btn-secondary,
.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: .65rem 1.5rem;
  border-radius: var(--radius-md);
  font-size: .9rem;
  font-weight: 600;
  letter-spacing: .02em;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all .2s ease;
  white-space: nowrap;
}

.btn-primary {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}
.btn-primary:hover {
  background: #b07f23;
  border-color: #b07f23;
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(201,146,42,0.30);
}

.btn-secondary {
  background: transparent;
  color: var(--gold);
  border-color: var(--gold);
}
.btn-secondary:hover {
  background: var(--gold-pale);
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: var(--ink);
  border-color: var(--border-dark);
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }


/* 5. NAV */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 2px solid var(--gold);
  box-shadow: 0 2px 16px rgba(26,22,18,0.10);
  height: var(--nav-h);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--container);
  height: 100%;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: .75rem;
  font-family: var(--font-serif);
  font-size: 1.3rem;
  color: var(--charcoal);
  font-weight: 700;
  letter-spacing: .01em;
}

.nav-logo img {
  height: 115px;
  width: auto;
  display: block;
  object-fit: contain;
  mix-blend-mode: multiply;
  filter: drop-shadow(0 1px 4px rgba(201,146,42,0.15));
}

.nav-logo-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.nav-logo-name {
  font-family: 'Cormorant Garamond', var(--font-serif);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--charcoal);
  letter-spacing: .05em;
  line-height: 1.2;
}


.nav-logo-tag {
  font-family: var(--font-sans);
  font-size: .62rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.8rem;
}
.nav-links a {
  font-size: .85rem;
  font-weight: 500;
  color: var(--smoke);
  letter-spacing: .03em;
  text-transform: uppercase;
  transition: color .15s;
  position: relative;
}
.nav-links a:hover { color: var(--gold); }
.nav-links a.active { color: var(--gold); }
.nav-links a.active:not(.btn-primary)::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
}
.nav-links .btn-primary { color: var(--white); font-size: .82rem; padding: .55rem 1.2rem; }


/* 6. HERO */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  padding: 5rem max(1.5rem, calc((100% - var(--container)) / 2));
  background: var(--white);
}

.hero-copy { display: flex; flex-direction: column; gap: 1.25rem; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
  background: var(--gold-pale);
  padding: .35rem .85rem;
  border-radius: 999px;
  width: fit-content;
  border: 1px solid var(--border-dark);
}

.hero h1 { max-width: 520px; }

.hero-actions {
  display: flex;
  gap: .75rem;
  flex-wrap: wrap;
  margin-top: .5rem;
}

.hero-stats {
  display: flex;
  gap: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  margin-top: .5rem;
}
.hero-stat strong {
  display: block;
  font-size: 1.6rem;
  font-family: var(--font-serif);
  color: var(--gold);
}
.hero-stat span {
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--mist);
  font-weight: 500;
}

.hero-visual {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
}
.hero-visual img {
  width: 100%;
  height: auto;
  max-height: 560px;
  object-fit: contain;
  display: block;
  margin: 0 auto;
  background-color: #f5efe6;
}
.hero-tag {
  position: absolute;
  top: 1.25rem; left: 1.25rem;
  background: rgba(26,22,18,.72);
  backdrop-filter: blur(6px);
  color: var(--gold-light);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .35rem .85rem;
  border-radius: 999px;
}
.hero-card {
  position: absolute;
  bottom: 1.25rem; left: 1.25rem; right: 1.25rem;
  background: rgba(249,245,239,0.94);
  backdrop-filter: blur(8px);
  border-radius: var(--radius-lg);
  padding: 1.1rem 1.25rem;
  display: flex;
  gap: 1rem;
  flex-direction: column;
  border: 1px solid var(--border);
}
.hero-card h2 { font-size: 1rem; color: var(--charcoal); }
.hero-card p  { font-size: .82rem; margin: .25rem 0 0; color: var(--smoke); }


/* 7. CAROUSEL */
.carousel-shell { position: relative; border-radius: var(--radius-xl); overflow: hidden; }
.carousel-track { display: flex; transition: transform .5s cubic-bezier(.4,0,.2,1); }
.carousel-slide {
  flex: 0 0 100%;
  height: 420px;
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: flex-end;
}
.carousel-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(26,22,18,.78) 0%, rgba(26,22,18,.15) 60%, transparent 100%);
}
.carousel-copy {
  position: relative;
  padding: 2.5rem;
  color: var(--white);
}
.carousel-copy h3 { font-family: var(--font-serif); font-size: 1.5rem; color: var(--white); margin-bottom: .5rem; }
.carousel-copy p  { font-size: .9rem; color: rgba(255,255,255,.78); max-width: 480px; }

.carousel-nav {
  position: absolute;
  bottom: 1.5rem; right: 1.5rem;
  display: flex; gap: .5rem;
}
.carousel-button {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(249,245,239,0.85);
  border: none;
  cursor: pointer;
  font-size: .9rem;
  color: var(--ink);
  transition: background .2s;
}
.carousel-button:hover { background: var(--white); }


/* 8. TOURS PAGE HERO & INCLUDES STRIP */
.tours-hero {
  background: linear-gradient(160deg, var(--charcoal) 0%, #221A12 55%, #2D1E10 100%);
  padding: 5rem 1.5rem 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.tours-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 110%, rgba(201,146,42,.09) 0%, transparent 62%);
  pointer-events: none;
}
.tours-hero-inner {
  max-width: 680px;
  margin: 0 auto;
  position: relative;
}
.tours-hero .eyebrow {
  font-family: var(--font-sans);
  font-size: .63rem;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}
.tours-hero h1 {
  font-family: 'Cormorant Garamond', var(--font-serif);
  font-size: clamp(2.1rem, 5vw, 3.4rem);
  font-weight: 600;
  color: var(--white);
  line-height: 1.12;
  letter-spacing: .01em;
  margin: 0 0 1.1rem;
}
.tours-hero p {
  font-size: .96rem;
  color: rgba(255,255,255,.6);
  line-height: 1.8;
  max-width: 520px;
  margin: 0 auto;
}

.tours-includes-strip {
  background: var(--charcoal);
  padding: 1rem 1.5rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .4rem 1.5rem;
  border-bottom: 1px solid rgba(201,146,42,.16);
}
.tours-includes-item {
  display: flex;
  align-items: center;
  gap: .4rem;
  font-family: var(--font-sans);
  font-size: .67rem;
  font-weight: 600;
  letter-spacing: .04em;
  color: rgba(255,255,255,.68);
  white-space: nowrap;
}
.tours-includes-check {
  color: var(--gold);
  font-size: .78rem;
}


/* 8b. TOUR DETAIL — overview section */
.tdet-overview {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 0;
  max-width: 1100px;
  margin: 0 auto;
  padding: 2.5rem 1.5rem 2.5rem;
  align-items: start;
}

/* Left: about + highlights */
.tdet-info {
  padding-right: 3.5rem;
  border-right: 1px solid var(--border);
}
.tdet-eyebrow {
  font-family: var(--font-sans);
  font-size: .63rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
  display: block;
}
.tdet-desc {
  font-size: .88rem;
  color: var(--smoke);
  line-height: 1.72;
  margin-bottom: 1.1rem;
}
.tdet-highlights {
  list-style: none;
  margin: 0;
  display: flex;
  flex-direction: column;
}
.tdet-highlights li {
  font-size: .84rem;
  color: var(--smoke);
  padding: .38rem 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  gap: .65rem;
  align-items: flex-start;
  line-height: 1.5;
}
.tdet-highlights li::before {
  content: '→';
  color: var(--gold);
  flex-shrink: 0;
  font-size: .78rem;
  margin-top: 2px;
}

/* Right: sidebar */
.tdet-sidebar {
  padding-left: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

/* Always included box */
.tdet-includes-box {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.1rem 1.25rem;
  margin-top: 1.75rem;
}
.tdet-includes-heading {
  font-family: var(--font-sans);
  font-size: .6rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--charcoal);
  margin-bottom: .75rem;
}
.tdet-includes-list {
  list-style: none;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .35rem .5rem;
}
.tdet-includes-list li {
  font-family: var(--font-sans);
  font-size: .73rem;
  color: var(--smoke);
  display: flex;
  align-items: flex-start;
  gap: .4rem;
  line-height: 1.4;
}
.tdet-check {
  color: var(--gold);
  font-size: .7rem;
  flex-shrink: 0;
  margin-top: 1px;
}

/* Tier cards */
.tdet-tier {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(26,22,18,.10);
  border: 1px solid var(--border);
}
.tdet-tier-head {
  padding: 1.25rem 1.35rem 1.1rem;
}
.tdet-tier-essential .tdet-tier-head {
  background: linear-gradient(135deg, var(--charcoal) 0%, var(--ink) 100%);
}
.tdet-tier-curated .tdet-tier-head {
  background: linear-gradient(135deg, #1A0C06 0%, #2E1408 100%);
}
.tdet-tier-label {
  display: block;
  font-family: var(--font-sans);
  font-size: .58rem;
  font-weight: 700;
  letter-spacing: .17em;
  text-transform: uppercase;
  margin-bottom: .4rem;
}
.tdet-tier-essential .tdet-tier-label { color: var(--gold-light); }
.tdet-tier-curated .tdet-tier-label { color: #E8A060; }

.tdet-tier-price {
  font-family: 'Cormorant Garamond', var(--font-serif);
  font-size: 2.1rem;
  font-weight: 600;
  color: var(--white);
  line-height: 1;
  letter-spacing: -.01em;
  margin-bottom: .3rem;
}
.tdet-tier-per {
  font-family: var(--font-sans);
  font-size: .7rem;
  font-weight: 400;
  color: rgba(255,255,255,.4);
  letter-spacing: .03em;
  margin-left: .25rem;
}
.tdet-tier-sub {
  font-family: var(--font-sans);
  font-size: .67rem;
  color: rgba(255,255,255,.42);
  line-height: 1.5;
  margin: 0;
}

/* Food trail */
.tdet-food-trail {
  list-style: none;
  background: #FDF8F5;
  margin: 0;
  padding: .85rem 1.35rem;
  border-top: 1px solid rgba(201,146,42,.12);
  display: flex;
  flex-direction: column;
  gap: .2rem;
}
.tdet-food-trail li {
  font-family: var(--font-sans);
  font-size: .75rem;
  color: var(--rust);
  font-style: italic;
  line-height: 1.5;
  display: flex;
  gap: .4rem;
}
.tdet-food-trail li::before {
  content: '—';
  color: var(--gold);
  font-style: normal;
  flex-shrink: 0;
}

/* CTAs */
.tdet-tier-cta {
  display: block;
  text-align: center;
  font-family: var(--font-sans);
  font-size: .73rem;
  font-weight: 700;
  letter-spacing: .09em;
  text-transform: uppercase;
  padding: .85rem 1rem;
  transition: all .2s ease;
}
.tdet-cta-essential {
  background: transparent;
  color: var(--gold);
  border-top: 1px solid var(--border);
}
.tdet-cta-essential:hover {
  background: var(--gold);
  color: var(--white);
}
.tdet-cta-curated {
  background: var(--rust);
  color: var(--white);
  border-top: none;
}
.tdet-cta-curated:hover {
  background: #9a3a1a;
}

@media (max-width: 860px) {
  .tdet-overview {
    grid-template-columns: 1fr;
    padding: 2.5rem 1.25rem;
  }
  .tdet-info {
    padding-right: 0;
    border-right: none;
    border-bottom: 1px solid var(--border);
    padding-bottom: 2rem;
    margin-bottom: .5rem;
  }
  .tdet-sidebar {
    padding-left: 0;
    padding-top: 1.5rem;
  }
  .tdet-includes-list {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 480px) {
  .tdet-includes-list { grid-template-columns: 1fr; }
}


/* 8b. PLAN CARDS — 2-column editorial layout */
.plan-grid {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  max-width: 1020px;
  margin: 0 auto;
}

.plan-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 4px 32px rgba(26,22,18,.10);
  border: 1px solid var(--border);
  transition: box-shadow .3s ease, transform .3s ease;
}
.plan-card:hover {
  box-shadow: 0 12px 48px rgba(26,22,18,.16);
  transform: translateY(-2px);
}

/* Top strip */
.plan-card-strip {
  background: linear-gradient(135deg, var(--charcoal) 0%, var(--ink) 100%);
  padding: .9rem 1.75rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.plan-card-strip-left {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.plan-card-num {
  font-family: 'Cormorant Garamond', var(--font-serif);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  letter-spacing: -.02em;
  opacity: .65;
}
.plan-card-meta {
  display: flex;
  align-items: center;
  gap: .4rem;
  flex-wrap: wrap;
}
.plan-card-meta span {
  font-family: var(--font-sans);
  font-size: .6rem;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: var(--gold-light);
  background: rgba(201,146,42,.12);
  border: 1px solid rgba(201,146,42,.22);
  padding: .2rem .6rem;
  border-radius: 999px;
}
.plan-popular-pill {
  background: linear-gradient(135deg, #E8A020 0%, var(--rust) 100%) !important;
  color: var(--white) !important;
  border: none !important;
  box-shadow: 0 2px 10px rgba(184,74,42,.35) !important;
  letter-spacing: .06em !important;
}
.plan-popular-pill::before {
  content: '★  ';
  font-size: .85em;
}

.tour-listing-head .plan-popular-pill {
  position: absolute;
  top: 1rem;
  right: 1.1rem;
  font-size: .6rem !important;
  padding: .3rem .8rem !important;
  border-radius: 999px !important;
  white-space: nowrap;
  z-index: 1;
}
.plan-card-price-range {
  display: flex;
  align-items: baseline;
  gap: .28rem;
}
.plan-card-from {
  font-family: var(--font-sans);
  font-size: .63rem;
  color: rgba(255,255,255,.38);
  letter-spacing: .05em;
}
.plan-card-price-range strong {
  font-family: 'Cormorant Garamond', var(--font-serif);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--gold-light);
  line-height: 1;
}
.plan-card-range {
  font-family: var(--font-sans);
  font-size: .82rem;
  color: rgba(255,255,255,.32);
}
.plan-card-per {
  font-family: var(--font-sans);
  font-size: .6rem;
  color: rgba(255,255,255,.32);
  letter-spacing: .03em;
}

/* 2-column main body */
.plan-card-main {
  display: grid;
  grid-template-columns: 1fr 310px;
}

/* Left editorial column */
.plan-card-info {
  padding: 2rem 2.25rem;
  border-right: 1px solid var(--border);
}
.plan-card-info h3 {
  font-family: 'Cormorant Garamond', var(--font-serif);
  font-size: clamp(1.55rem, 3vw, 2rem);
  font-weight: 600;
  color: var(--ink);
  line-height: 1.15;
  margin: 0 0 .3rem;
}
.plan-subtitle {
  font-family: var(--font-sans);
  font-size: .77rem;
  color: var(--rust);
  letter-spacing: .03em;
  font-style: italic;
  margin: 0 0 1rem;
}
.plan-desc {
  font-size: .9rem;
  color: var(--smoke);
  line-height: 1.78;
  margin-bottom: 1.3rem;
}
.plan-list {
  list-style: none;
  margin: 0;
}
.plan-list li {
  font-size: .85rem;
  color: var(--smoke);
  padding: .4rem 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  gap: .65rem;
  align-items: flex-start;
  line-height: 1.55;
}
.plan-list li::before {
  content: '→';
  color: var(--gold);
  flex-shrink: 0;
  font-size: .78rem;
  margin-top: 2px;
}

/* Right tier column */
.plan-card-tiers {
  display: flex;
  flex-direction: column;
}
.plan-tier {
  display: flex;
  flex-direction: column;
  flex: 1;
}
.plan-tier + .plan-tier {
  border-top: 1px solid rgba(201,146,42,.14);
}

.plan-tier-head {
  padding: 1.1rem 1.35rem 1rem;
}
.plan-tier-essential .plan-tier-head {
  background: linear-gradient(135deg, var(--charcoal) 0%, var(--ink) 100%);
}
.plan-tier-curated .plan-tier-head {
  background: linear-gradient(135deg, #1A0C06 0%, #2E1408 100%);
}

.plan-tier-label {
  font-family: var(--font-sans);
  font-size: .58rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  margin-bottom: .4rem;
}
.plan-tier-essential .plan-tier-label { color: var(--gold-light); }
.plan-tier-curated  .plan-tier-label { color: #E8A060; }

.plan-tier-price {
  font-family: 'Cormorant Garamond', var(--font-serif);
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--white);
  line-height: 1;
  letter-spacing: -.01em;
  margin-bottom: .15rem;
}
.plan-tier-sub {
  font-family: var(--font-sans);
  font-size: .6rem;
  color: rgba(255,255,255,.38);
  letter-spacing: .03em;
}

.plan-tier-body {
  padding: 1rem 1.35rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: .75rem;
  background: var(--white);
}
.plan-tier-curated .plan-tier-body { background: #FDF8F5; }

/* Essential mini includes */
.plan-mini-includes {
  list-style: none;
  flex: 1;
}
.plan-mini-includes li {
  font-family: var(--font-sans);
  font-size: .73rem;
  color: var(--smoke);
  padding: .18rem 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: flex-start;
  gap: .45rem;
  line-height: 1.45;
}
.plan-mini-includes li::before {
  content: '✓';
  color: var(--gold);
  font-size: .7rem;
  flex-shrink: 0;
  margin-top: 1px;
}

/* Curated food trail */
.plan-food-trail { list-style: none; flex: 1; }
.plan-food-trail li {
  font-family: var(--font-sans);
  font-size: .73rem;
  color: var(--rust);
  padding: .18rem 0;
  font-style: italic;
  line-height: 1.5;
  border-bottom: 1px solid rgba(184,74,42,.07);
}
.plan-food-trail li::before { content: '— '; color: var(--gold); font-style: normal; }

/* Tier CTAs */
.plan-tier-cta {
  display: block;
  text-align: center;
  padding: .7rem 1rem;
  border-radius: var(--radius-sm);
  font-family: var(--font-sans);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .09em;
  text-transform: uppercase;
  transition: all .2s ease;
  margin-top: auto;
}
.plan-tier-essential .plan-tier-cta {
  background: transparent;
  color: var(--gold);
  border: 1.5px solid var(--gold);
}
.plan-tier-essential .plan-tier-cta:hover {
  background: var(--gold);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(201,146,42,.3);
}
.plan-tier-curated .plan-tier-cta {
  background: var(--rust);
  color: var(--white);
  border: 1.5px solid var(--rust);
}
.plan-tier-curated .plan-tier-cta:hover {
  background: #9a3a1a;
  border-color: #9a3a1a;
  box-shadow: 0 4px 14px rgba(184,74,42,.3);
}

/* Responsive */
@media (max-width: 780px) {
  .plan-card-main { grid-template-columns: 1fr; }
  .plan-card-info { border-right: none; border-bottom: 1px solid var(--border); }
  .plan-card-tiers { flex-direction: row; }
  .plan-tier + .plan-tier { border-top: none; border-left: 1px solid rgba(201,146,42,.14); }
}
@media (max-width: 520px) {
  .plan-card-strip { flex-direction: column; align-items: flex-start; gap: .5rem; }
  .plan-card-tiers { flex-direction: column; }
  .plan-tier + .plan-tier { border-left: none; border-top: 1px solid rgba(201,146,42,.14); }
  .plan-card-info { padding: 1.5rem; }
  .plan-tier-head, .plan-tier-body { padding: 1rem 1.1rem; }
  .plan-tier-price { font-size: 1.5rem; }
}


/* 8c. TOUR LISTING PAGE */
.tour-listing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1020px;
  margin: 0 auto;
}

.tour-listing-link {
  text-decoration: none;
  display: block;
}

.tour-listing-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(26,22,18,.09);
  border: 1px solid var(--border);
  transition: box-shadow .3s ease, transform .3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.tour-listing-link:hover .tour-listing-card {
  box-shadow: 0 12px 40px rgba(26,22,18,.16);
  transform: translateY(-3px);
}

.tour-listing-head {
  background: linear-gradient(135deg, var(--charcoal) 0%, var(--ink) 100%);
  padding: 1.5rem 1.75rem 1.4rem;
  position: relative;
}
.tour-listing-meta {
  display: flex;
  align-items: center;
  gap: .4rem;
  flex-wrap: wrap;
  margin-bottom: .85rem;
}
.tour-listing-num {
  font-family: 'Cormorant Garamond', var(--font-serif);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--gold);
  opacity: .7;
  line-height: 1;
  margin-right: .2rem;
}
.tour-listing-meta span:not(.tour-listing-num):not(.plan-popular-pill) {
  font-family: var(--font-sans);
  font-size: .6rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold-light);
  background: rgba(201,146,42,.12);
  border: 1px solid rgba(201,146,42,.22);
  padding: .18rem .55rem;
  border-radius: 999px;
}
.tour-listing-head h3 {
  font-family: 'Cormorant Garamond', var(--font-serif);
  font-size: 1.45rem;
  font-weight: 600;
  color: var(--white);
  line-height: 1.15;
  margin: 0 0 .3rem;
}
.tour-listing-head .plan-subtitle {
  font-size: .75rem;
  color: rgba(232,196,114,.7);
  font-style: italic;
  margin: 0;
}

.tour-listing-body {
  padding: 1.4rem 1.75rem 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.tour-listing-body .plan-desc {
  font-size: .87rem;
  color: var(--smoke);
  line-height: 1.72;
  margin: 0;
  flex: 1;
}
.tour-listing-price {
  display: flex;
  align-items: baseline;
  gap: .28rem;
}
.tour-listing-from {
  font-family: var(--font-sans);
  font-size: .63rem;
  color: var(--mist);
  letter-spacing: .05em;
}
.tour-listing-price strong {
  font-family: 'Cormorant Garamond', var(--font-serif);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--ink);
  line-height: 1;
}
.tour-listing-range {
  font-family: var(--font-sans);
  font-size: .82rem;
  color: var(--mist);
}
.tour-listing-per {
  font-family: var(--font-sans);
  font-size: .6rem;
  color: var(--mist);
}
.tour-listing-cta {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: .73rem;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1.5px solid var(--gold);
  padding: .6rem 1.1rem;
  border-radius: var(--radius-sm);
  text-align: center;
  transition: all .2s ease;
}
.tour-listing-link:hover .tour-listing-cta {
  background: var(--gold);
  color: var(--white);
}


/* 9. BLOG GRID & CARDS */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.blog-card-link { display: block; color: inherit; }

.blog-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: box-shadow .25s, transform .25s;
}
.blog-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}
.blog-card-image {
  position: relative;
  overflow: hidden;
}
.blog-card-image img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  transition: transform .4s ease;
}
.blog-card:hover .blog-card-image img {
  transform: scale(1.04);
}
.blog-card-body { padding: 1.35rem; }

.blog-card-meta {
  display: flex;
  align-items: center;
  gap: .5rem;
  flex-wrap: wrap;
  margin-bottom: .75rem;
}
.blog-tag {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  background: var(--gold-pale);
  color: #8B6118;
  padding: .2rem .65rem;
  border-radius: 999px;
  border: 1px solid var(--border-dark);
}
.social-pill {
  font-size: .72rem;
  color: var(--mist);
  font-weight: 500;
}

.blog-card h3 { font-size: 1.05rem; margin-bottom: .5rem; color: var(--charcoal); }
.blog-card p  { font-size: .87rem; margin-bottom: 1rem; color: var(--smoke); }

/* ── PLAN SUMMARY CARDS (index page) ── */
.plan-summary-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: box-shadow .25s, transform .25s;
}
.blog-card-link:hover .plan-summary-card {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}

.plan-summary-head {
  background: linear-gradient(135deg, var(--charcoal) 0%, var(--ink) 55%, var(--charcoal) 100%);
  padding: 1.6rem 1.5rem 1.4rem;
}
.plan-summary-meta {
  display: flex;
  gap: .4rem;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: .7rem;
}
.plan-summary-meta span {
  font-family: var(--font-sans);
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold-light);
  background: rgba(201,146,42,.12);
  border: 1px solid rgba(201,146,42,.25);
  padding: .2rem .55rem;
  border-radius: 999px;
}
.plan-summary-head h3 {
  font-family: 'Cormorant Garamond', var(--font-serif);
  font-size: 1.45rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: .02em;
  line-height: 1.2;
  margin: 0;
}

.plan-summary-body {
  padding: 1.25rem 1.4rem 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.plan-summary-subtitle {
  font-size: .78rem;
  color: var(--gold);
  font-style: italic;
  margin-bottom: .55rem;
}
.plan-summary-desc {
  font-size: .87rem;
  color: var(--smoke);
  line-height: 1.7;
  flex: 1;
  margin-bottom: 1.1rem;
}
.plan-summary-price {
  display: flex;
  align-items: baseline;
  gap: .3rem;
  flex-wrap: wrap;
  margin-bottom: 1.1rem;
}
.plan-summary-from { font-size: .72rem; color: var(--mist); }
.plan-summary-price strong {
  font-family: 'Cormorant Garamond', var(--font-serif);
  font-size: 1.3rem;
  color: var(--charcoal);
  font-weight: 600;
  line-height: 1;
}
.plan-summary-range { font-size: .82rem; color: var(--smoke); }
.plan-summary-per   { font-size: .7rem; color: var(--mist); }

.blog-contact-button {
  display: block;
  width: 100%;
  margin: .5rem 0 1rem;
  text-align: center;
}

/* ══════════════════════════════════════════════════════════════
   BLOG POST PAGE
   ══════════════════════════════════════════════════════════════ */

/* ── Hero ─────────────────────────────────────────────────── */
.blog-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  background: var(--white);
  padding: 4.5rem max(1.5rem, calc((100% - var(--container)) / 2));
}

/* Full-width cinematic hero variant: add .blog-hero--full to the element */
.blog-hero--full {
  grid-template-columns: 1fr;
  position: relative;
  min-height: 520px;
  padding: 0;
  overflow: hidden;
  align-items: stretch;
}
.blog-hero--full .blog-hero-image {
  position: absolute;
  inset: 0;
}
.blog-hero--full .blog-hero-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  border-radius: 0;
  box-shadow: none;
}
.blog-hero--full .blog-hero-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(26,22,18,.72) 0%,
    rgba(26,22,18,.45) 55%,
    rgba(26,22,18,.15) 100%
  );
}
.blog-hero--full .blog-hero-copy {
  position: relative;
  z-index: 1;
  padding: 5rem max(1.5rem, calc((100% - var(--container)) / 2));
  max-width: 760px;
}
.blog-hero--full .blog-hero-copy h1,
.blog-hero--full .blog-hero-copy p { color: var(--white); }
.blog-hero--full .blog-hero-copy .blog-post-meta {
  border-color: rgba(255,255,255,.2);
}
.blog-hero--full .blog-meta-item { color: rgba(255,255,255,.7); }
.blog-hero--full .blog-meta-dot  { background: rgba(255,255,255,.4); }

.blog-hero-copy { display: flex; flex-direction: column; gap: 1.1rem; }
.blog-hero-copy h1 {
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  line-height: 1.18;
  color: var(--charcoal);
  letter-spacing: -.02em;
}
.blog-hero-copy .excerpt {
  font-size: 1.08rem;
  color: var(--smoke);
  line-height: 1.7;
  max-width: 520px;
}
.blog-hero-image img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
}

/* ── Post meta bar ────────────────────────────────────────── */
.blog-post-meta {
  display: flex;
  align-items: center;
  gap: .9rem;
  flex-wrap: wrap;
  padding: .85rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin: .75rem 0 0;
}
.blog-post-meta .blog-tag { margin: 0; }
.blog-meta-dot {
  width: 3px; height: 3px;
  border-radius: 50%;
  background: var(--mist);
  flex-shrink: 0;
}
.blog-meta-item {
  font-size: .8rem;
  color: var(--mist);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: .35rem;
}

/* ── Embedded video ───────────────────────────────────────── */
.blog-video { max-width: 840px; margin: 0 auto; }
.blog-video iframe {
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: var(--radius-lg);
  border: none;
  box-shadow: var(--shadow-md);
}

/* ══════════════════════════════════════════════════════════
   ARTICLE BODY
   ══════════════════════════════════════════════════════════ */
.blog-article {
  max-width: 720px;
  margin: 0 auto;
}

/* ── Paragraphs ───────────────────────────────────────────── */
.blog-article p {
  font-size: 1.07rem;
  line-height: 1.95;
  color: var(--ink);
  margin-bottom: 1.65rem;
  font-family: var(--font-serif);
}

/* Lead / intro paragraph */
.blog-article .lead,
.blog-article p.lead {
  font-size: 1.22rem;
  line-height: 1.8;
  color: var(--charcoal);
  padding: 1.35rem 1.5rem;
  background: linear-gradient(135deg, var(--gold-pale) 0%, rgba(251,243,228,0) 100%);
  border-left: 4px solid var(--gold);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  margin-bottom: 2.25rem;
  font-weight: 400;
}

/* Drop cap — opt-in via class */
.blog-article .drop-cap::first-letter {
  font-family: var(--font-serif);
  font-size: 4.2rem;
  font-weight: 700;
  color: var(--gold);
  float: left;
  line-height: 0.8;
  margin: 0.1em 0.12em 0 0;
  text-shadow: 1px 2px 0 rgba(201,146,42,.2);
}

/* ── Headings ─────────────────────────────────────────────── */

/* h2 — section title with a decorative gold accent */
.blog-article h2 {
  font-size: clamp(1.35rem, 2.5vw, 1.7rem);
  color: var(--charcoal);
  margin: 3rem 0 1.1rem;
  padding-left: 1rem;
  position: relative;
  letter-spacing: -.01em;
}
.blog-article h2::before {
  content: '';
  position: absolute;
  left: 0; top: .15em;
  width: 4px;
  height: calc(100% - .3em);
  background: linear-gradient(180deg, var(--gold) 0%, var(--gold-light) 100%);
  border-radius: 2px;
}

/* h3 — sub-section with a small gold diamond marker */
.blog-article h3 {
  font-size: 1.18rem;
  color: var(--charcoal);
  margin: 2.25rem 0 .8rem;
  display: flex;
  align-items: center;
  gap: .6rem;
}
.blog-article h3::before {
  content: '◆';
  font-size: .55em;
  color: var(--gold);
  flex-shrink: 0;
  position: relative;
  top: -1px;
}

/* h4 — eyebrow label */
.blog-article h4 {
  font-size: .82rem;
  font-family: var(--font-sans);
  font-weight: 700;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: .1em;
  margin: 2rem 0 .5rem;
  background: var(--gold-pale);
  display: inline-block;
  padding: .25rem .75rem;
  border-radius: 999px;
  border: 1px solid var(--border-dark);
}

/* ── Blockquote / pull-quote ──────────────────────────────── */
.blog-article blockquote {
  position: relative;
  margin: 2.5rem 0;
  padding: 1.75rem 1.75rem 1.75rem 2rem;
  background: var(--charcoal);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.blog-article blockquote::before {
  content: '\201C';               /* opening curly quote */
  position: absolute;
  top: -.25rem; left: .75rem;
  font-family: var(--font-serif);
  font-size: 6rem;
  line-height: 1;
  color: var(--gold);
  opacity: .25;
  pointer-events: none;
}
.blog-article blockquote::after {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 4px; height: 100%;
  background: linear-gradient(180deg, var(--gold) 0%, var(--gold-light) 100%);
}
.blog-article blockquote p {
  font-size: 1.15rem;
  color: var(--white);
  font-style: italic;
  line-height: 1.75;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.blog-article blockquote cite {
  display: block;
  margin-top: .85rem;
  font-size: .78rem;
  font-style: normal;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--gold-light);
  position: relative;
  z-index: 1;
}
.blog-article blockquote cite::before { content: '— '; }

/* ── Lists ────────────────────────────────────────────────── */
.blog-article ul {
  margin: 0 0 1.75rem 0;
  padding: 0;
  list-style: none;
}
.blog-article ol {
  margin: 0 0 1.75rem 0;
  padding-left: 1.5rem;
  list-style: decimal;
}
.blog-article ol li::marker {
  color: var(--gold);
  font-weight: 700;
  font-family: var(--font-serif);
}

/* Unordered list items — custom arrow marker */
.blog-article ul li {
  font-size: 1.02rem;
  line-height: 1.8;
  color: var(--smoke);
  font-family: var(--font-serif);
  margin-bottom: .55rem;
  padding-left: 1.5rem;
  position: relative;
}
.blog-article ul li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: .85em;
  top: .05em;
}
.blog-article ol li {
  font-size: 1.02rem;
  line-height: 1.8;
  color: var(--smoke);
  font-family: var(--font-serif);
  margin-bottom: .55rem;
  padding-left: .35rem;
}

/* ── Images & figures ─────────────────────────────────────── */
.blog-article figure {
  margin: 2.5rem 0;
}
.blog-article figure img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}
/* Wide / break-out image */
.blog-article figure.wide {
  margin-left: -3rem;
  margin-right: -3rem;
}
.blog-article figure.wide img {
  border-radius: var(--radius-xl);
}
.blog-article figcaption {
  margin-top: .65rem;
  font-size: .8rem;
  color: var(--mist);
  text-align: center;
  font-style: italic;
  font-family: var(--font-sans);
}

/* ── Inline code & blocks ─────────────────────────────────── */
.blog-article code {
  font-size: .88em;
  background: var(--gold-pale);
  border: 1px solid var(--border-dark);
  border-radius: 4px;
  padding: .12em .4em;
  font-family: 'Courier New', monospace;
  color: var(--rust);
}
.blog-article pre {
  background: var(--charcoal);
  border-radius: var(--radius-md);
  padding: 1.35rem 1.5rem;
  overflow-x: auto;
  margin: 1.75rem 0;
  box-shadow: var(--shadow-md);
}
.blog-article pre code {
  background: none; border: none;
  padding: 0;
  color: var(--gold-light);
  font-size: .9rem;
}

/* ── Section divider (hr) ─────────────────────────────────── */
.blog-article hr {
  border: none;
  text-align: center;
  margin: 3rem 0;
  position: relative;
}
.blog-article hr::before {
  content: '';
  display: block;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-dark) 20%, var(--border-dark) 80%, transparent);
  margin-bottom: -0.75em;
}
.blog-article hr::after {
  content: '✦';
  font-size: .85rem;
  color: var(--gold);
  background: var(--cream);
  padding: 0 .9rem;
  position: relative;
  letter-spacing: .4em;
}

/* ── Stat / highlight callout box ─────────────────────────── */
.blog-stat {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  justify-content: center;
  margin: 2.25rem 0;
  padding: 1.75rem;
  background: var(--charcoal);
  border-radius: var(--radius-xl);
}
.blog-stat-item {
  text-align: center;
  flex: 1 1 120px;
}
.blog-stat-item strong {
  display: block;
  font-family: var(--font-serif);
  font-size: 2.2rem;
  color: var(--gold);
  line-height: 1;
}
.blog-stat-item span {
  display: block;
  font-size: .75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: rgba(255,255,255,.55);
  margin-top: .35rem;
}

/* ── Tip / Practical note box ─────────────────────────────── */
.blog-note {
  position: relative;
  font-size: .93rem;
  color: var(--smoke);
  background: var(--cream);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-lg);
  padding: 1.35rem 1.5rem 1.35rem 3.25rem;
  font-family: var(--font-sans);
  line-height: 1.75;
  margin: 2.25rem 0;
}
.blog-note::before {
  content: '💡';
  position: absolute;
  left: 1.1rem;
  top: 1.2rem;
  font-size: 1.15rem;
  line-height: 1;
}
.blog-note-label {
  display: block;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .55rem;
}

/* ── Article footer (share strip) ────────────────────────── */
.blog-article-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 3.5rem;
  padding: 1.5rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
}
.blog-share-label {
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--mist);
}
.blog-share-links { display: flex; gap: .6rem; flex-wrap: wrap; }
.blog-share-links a {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  font-size: .82rem;
  font-weight: 600;
  color: var(--smoke);
  background: var(--cream);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  padding: .45rem .9rem;
  transition: border-color .2s, color .2s, background .2s;
}
.blog-share-links a:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: var(--gold-pale);
}

/* ── Author card ──────────────────────────────────────────── */
.blog-author-card {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  margin-top: 2rem;
  padding: 1.5rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
}
.blog-author-avatar {
  width: 56px; height: 56px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 2px solid var(--border-dark);
}
.blog-author-info { flex: 1; }
.blog-author-label {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .2rem;
}
.blog-author-name {
  font-size: 1rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: .35rem;
}
.blog-author-bio {
  font-size: .875rem;
  color: var(--smoke);
  line-height: 1.6;
  margin: 0;
  font-family: var(--font-sans);
}

/* ── Related posts strip ──────────────────────────────────── */
.blog-related { margin-top: 1rem; }
.blog-related .section-header { margin-bottom: 2rem; }


/* 10. GUIDES */
.guides-summary {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}
.guides-summary-copy { max-width: 520px; }
.guide-highlights {
  display: flex;
  flex-direction: column;
  gap: .5rem;
}
.guide-highlights span {
  font-size: .8rem;
  font-weight: 600;
  color: var(--gold);
  background: var(--gold-pale);
  padding: .35rem .85rem;
  border-radius: 999px;
  border: 1px solid var(--border-dark);
  white-space: nowrap;
}

.guides-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.25rem;
}

.guide-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  transition: box-shadow .2s;
}
.guide-card:hover { box-shadow: var(--shadow-md); }

.guide-card-head {
  display: flex;
  align-items: center;
  gap: .85rem;
  margin-bottom: 1rem;
}
.guide-avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: .85rem;
  color: var(--white);
  flex-shrink: 0;
}
.guide-card h4 { font-size: .95rem; margin-bottom: .15rem; color: var(--charcoal); }
.guide-role {
  font-size: .75rem;
  color: var(--mist);
  text-transform: uppercase;
  letter-spacing: .06em;
}
.g-desc { font-size: .85rem; margin-bottom: .85rem; }
.guide-card-footer { padding-top: .85rem; border-top: 1px solid var(--border); }
.guide-badge {
  display: inline-block;
  font-size: .7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .07em;
  color: var(--mist);
  margin-bottom: .3rem;
}
.guide-languages { font-size: .82rem; color: var(--smoke); }


/* 11. GALLERY */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.25rem;
}
.gallery-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
}
.gallery-card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  display: block;
  transition: transform .4s ease;
}
.gallery-card:hover img { transform: scale(1.04); }
.gallery-card-copy {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(26,22,18,.82) 0%, transparent 100%);
  padding: 2rem 1.1rem .9rem;
  color: var(--white);
}
.gallery-card-copy strong { display: block; font-size: .95rem; }
.gallery-card-copy span  { font-size: .78rem; color: rgba(255,255,255,.7); }


/* 12. REVIEWS */
.rev-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.25rem;
}
.rev-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  transition: box-shadow .2s;
}
.rev-card:hover { box-shadow: var(--shadow-md); }
.rev-stars {
  font-size: 1.1rem;
  letter-spacing: .12em;
  color: var(--gold);
  margin-bottom: .75rem;
}
.rev-text {
  font-size: .9rem;
  color: var(--ink);
  line-height: 1.65;
  margin-bottom: 1.1rem;
  font-style: italic;
}
.reviewer { display: flex; align-items: center; gap: .75rem; }
.rev-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: .78rem; color: var(--white);
  flex-shrink: 0;
}
.rev-name { font-size: .88rem; font-weight: 600; color: var(--charcoal); }
.rev-loc  { font-size: .75rem; color: var(--mist); }


/* 13. FAQ — accordion */
.faq-list { max-width: 780px; margin: 0 auto; display: flex; flex-direction: column; gap: .5rem; }
.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color .2s;
}
.faq-item.open { border-color: var(--border-dark); }
.faq-trigger {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  gap: 1rem;
  padding: 1.1rem 1.35rem;
  background: none; border: none; cursor: pointer; text-align: left;
}
.faq-trigger h3 {
  font-family: var(--font-sans);
  font-size: .95rem; font-weight: 600;
  color: var(--charcoal); margin: 0; line-height: 1.4;
}
.faq-chevron {
  width: 26px; height: 26px; flex-shrink: 0;
  border-radius: 50%;
  background: var(--gold-pale);
  border: 1px solid var(--border-dark);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); font-size: .75rem;
  transition: transform .25s, background .2s;
}
.faq-item.open .faq-chevron { transform: rotate(180deg); background: var(--gold); color: var(--white); }
.faq-body {
  max-height: 0; overflow: hidden;
  transition: max-height .3s ease, padding .3s ease;
  padding: 0 1.35rem;
}
.faq-item.open .faq-body { max-height: 300px; padding: 0 1.35rem 1.1rem; }
.faq-body p { font-size: .88rem; color: var(--smoke); border-top: 1px solid var(--border); padding-top: .85rem; margin: 0; }


/* 14. BOOKING PAGE */
.booking-page {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 3rem;
  align-items: start;
}

.booking-panel {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
}
.booking-panel h2 { margin-bottom: .5rem; }
.booking-panel > p { margin-bottom: 2rem; font-size: .95rem; }

.booking-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
}
.booking-form label,
.booking-field {
  display: flex;
  flex-direction: column;
  gap: .4rem;
  font-size: .85rem;
  font-weight: 600;
  color: var(--ink);
  text-transform: uppercase;
  letter-spacing: .05em;
}
.booking-field-full {
  grid-column: 1 / -1;
}
.booking-field {
  border: 0;
  min-width: 0;
}
.booking-field legend {
  margin-bottom: .4rem;
}
.required-label::after {
  content: ' *';
  color: var(--rust);
}
.booking-form input,
.booking-form select,
.booking-form textarea {
  font-family: var(--font-sans);
  font-size: .95rem;
  color: var(--ink);
  background: var(--cream);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  padding: .65rem .9rem;
  width: 100%;
  transition: border-color .2s, box-shadow .2s;
  outline: none;
}
.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,146,42,.12);
  background: var(--white);
}
.booking-form textarea { min-height: 100px; resize: vertical; }
.field-help {
  min-height: 1.1rem;
  color: var(--rust);
  font-size: .76rem;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.4;
  text-transform: none;
}
.calendar-field-help {
  display: block;
  margin: -.25rem 0 .55rem;
}
.tour-date-native-field {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  border: 0;
  white-space: nowrap;
}

.phone-input-group {
  display: grid;
  grid-template-columns: minmax(140px, .65fr) minmax(0, 1fr);
  gap: .75rem;
}
.phone-input-group select {
  min-width: 0;
}

.dob-field {
  display: flex;
  flex-direction: column;
  gap: .3rem;
}
.dob-selects {
  display: grid;
  grid-template-columns: minmax(70px, 80px) 1fr minmax(85px, 95px);
  gap: .5rem;
}

.availability-calendar {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: .85rem;
}
.availability-calendar::before {
  content: 'Tour date range *';
  display: block;
  margin-bottom: .45rem;
  color: var(--ink);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .05em;
  text-transform: uppercase;
}
.tour-date-range-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: .65rem;
  padding: .6rem .7rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
}
.tour-date-range-summary span {
  color: var(--mist);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
}
.tour-date-range-summary strong {
  color: var(--charcoal);
  font-size: .86rem;
  text-align: right;
}
.availability-calendar-head {
  display: grid;
  grid-template-columns: 30px 1fr 30px;
  align-items: center;
  gap: .5rem;
  margin-bottom: .6rem;
}
.availability-calendar-head strong {
  color: var(--charcoal);
  font-family: var(--font-sans);
  font-size: .95rem;
  font-weight: 700;
  text-align: center;
}
.calendar-nav-button {
  width: 30px;
  height: 30px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--white);
  color: var(--gold);
  cursor: pointer;
  font-size: 1.05rem;
  line-height: 1;
  transition: background .2s, border-color .2s, color .2s;
}
.calendar-nav-button:hover:not(:disabled) {
  background: var(--gold-pale);
  border-color: var(--gold);
}
.calendar-nav-button:disabled {
  color: var(--mist);
  cursor: not-allowed;
  opacity: .45;
}
.calendar-weekdays,
.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: .22rem;
}
.calendar-weekdays {
  margin-bottom: .25rem;
}
.calendar-weekdays span {
  color: var(--mist);
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .05em;
  text-align: center;
  text-transform: uppercase;
}
.calendar-day {
  min-height: 30px;
  border: 1px solid var(--border);
  border-radius: 5px;
  background: var(--white);
  color: var(--ink);
  cursor: pointer;
  font-size: .78rem;
  font-weight: 600;
  transition: transform .15s, background .2s, border-color .2s, color .2s;
}
.calendar-day-available:hover {
  background: var(--gold-pale);
  border-color: var(--gold);
  color: var(--charcoal);
  transform: translateY(-1px);
}
.calendar-day-selected {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--white);
  box-shadow: 0 2px 8px rgba(201,146,42,.24);
}
.calendar-day-in-range {
  background: var(--gold-pale);
  border-color: rgba(201,146,42,.42);
  color: var(--charcoal);
}
.calendar-day-range-end {
  box-shadow: inset 0 0 0 2px rgba(201,146,42,.48);
}
.calendar-day-blocked,
.calendar-day-past {
  background: #f7e9e4;
  border-color: rgba(184,74,42,.25);
  color: var(--rust);
  cursor: not-allowed;
  opacity: .78;
  position: relative;
}
.calendar-day-past {
  background: #eee8df;
  border-color: rgba(92,84,78,.18);
  color: var(--mist);
}
.calendar-day-blocked::after {
  content: '';
  position: absolute;
  left: 18%;
  right: 18%;
  top: 50%;
  height: 2px;
  background: currentColor;
  transform: rotate(-22deg);
}
.calendar-day-spacer {
  min-height: 30px;
  border: 0;
  background: transparent;
  pointer-events: none;
}
.calendar-legend {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: .65rem;
  margin-top: .65rem;
  color: var(--smoke);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: none;
}
.calendar-legend span {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
}
.legend-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  display: inline-block;
}
.legend-available { background: var(--cream); border: 1px solid var(--border-dark); }
.legend-selected { background: var(--gold); }
.legend-blocked { background: var(--rust); }

.payment-options {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.payment-options label {
  flex-direction: row;
  align-items: center;
  gap: .5rem;
  font-weight: 500;
  font-size: .9rem;
  text-transform: none;
  letter-spacing: 0;
  cursor: pointer;
  background: var(--cream);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  padding: .55rem 1rem;
  transition: border-color .2s, background .2s;
}
.payment-options label:has(input:checked) {
  border-color: var(--gold);
  background: var(--gold-pale);
  color: var(--ink);
}
.payment-options input[type="radio"] {
  width: auto;
  flex: 0 0 auto;
  margin: 0;
  padding: 0;
  accent-color: var(--gold);
  box-shadow: none;
}

.payment-summary {
  background: var(--gold-pale);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-lg);
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: .6rem;
}
.payment-summary-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1.25rem;
  font-size: .9rem;
}
.payment-summary-row span  { color: var(--smoke); min-width: 130px; }
.payment-summary-row strong{
  color: var(--charcoal);
  text-align: right;
  line-height: 1.45;
  overflow-wrap: anywhere;
}
.payment-summary-rate small {
  display: block;
  margin-top: .15rem;
  color: var(--mist);
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.35;
  text-transform: none;
}
.text-muted { opacity: .7; }

.payment-summary-note {
  font-size: .8rem;
  color: var(--mist);
  margin-top: -.5rem;
}

.booking-actions { margin-top: .5rem; display: flex; flex-direction: column; gap: .75rem; }
.booking-actions .btn-primary { width: 100%; justify-content: center; padding: .85rem; font-size: 1rem; }
.status-message { font-size: .88rem; text-align: center; min-height: 1.2em; }
.status-message.status-success { color: #2d7a3a; }
.status-message.status-error   { color: var(--rust); }
.status-message.status-loading { color: var(--gold); }

.booking-summary {
  background: var(--charcoal);
  border-radius: var(--radius-xl);
  padding: 2rem;
  color: rgba(255,255,255,.9);
  position: sticky;
  top: calc(var(--nav-h) + 1.5rem);
}
.booking-summary h3 { color: var(--gold-light); font-size: 1.15rem; margin-bottom: .75rem; }
.booking-summary p  { color: rgba(255,255,255,.7); font-size: .9rem; margin-bottom: 1.25rem; }
.booking-summary .plan-meta {
  display: flex;
  flex-direction: column;
  gap: .5rem;
  margin-bottom: 1.25rem;
}
.booking-summary .plan-meta span {
  font-size: .85rem;
  color: var(--gold-light);
  background: transparent;
  border: none;
  padding: 0;
  letter-spacing: 0;
  text-transform: none;
}
.booking-summary .plan-meta a { text-decoration: underline; color: var(--gold-light); }


/* 15. WHATSAPP POPUP */
.whatsapp-popup {
  position: fixed;
  inset: 0;
  background: rgba(26,22,18,.55);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 500;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s;
}
.whatsapp-popup.open { opacity: 1; pointer-events: auto; }

.whatsapp-popup-content {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 2rem;
  max-width: 400px;
  width: 90%;
  position: relative;
  box-shadow: var(--shadow-lg);
}
.whatsapp-close {
  position: absolute;
  top: .75rem; right: 1rem;
  background: none; border: none;
  font-size: 1.4rem; cursor: pointer;
  color: var(--mist); line-height: 1;
}
.whatsapp-popup-body h3   { color: var(--charcoal); margin-bottom: .5rem; }
.whatsapp-popup-body p    { font-size: .9rem; margin-bottom: .5rem; }
.whatsapp-popup-label     { font-weight: 600; color: var(--ink); }
.whatsapp-start { display: block; text-align: center; margin-top: 1rem; padding: .75rem; }
.whatsapp-cancel { display: block; text-align: center; width: 100%; margin-top: .5rem; cursor: pointer; }

.whatsapp-float-button {
  position: fixed;
  bottom: 1.75rem; right: 1.75rem;
  background: #25D366;
  color: var(--white);
  padding: .7rem 1.4rem;
  border-radius: 999px;
  font-size: .88rem;
  font-weight: 600;
  box-shadow: 0 4px 18px rgba(37,211,102,.38);
  z-index: 200;
  display: flex;
  align-items: center;
  gap: .45rem;
  transition: transform .2s, box-shadow .2s;
}
.whatsapp-float-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(37,211,102,.48);
}
.whatsapp-float-button::before {
  content: '';
  display: block;
  width: 18px; height: 18px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M17.472 14.382c-.297-.149-1.758-.867-2.03-.967-.273-.099-.471-.148-.67.15-.197.297-.767.966-.94 1.164-.173.199-.347.223-.644.075-.297-.15-1.255-.463-2.39-1.475-.883-.788-1.48-1.761-1.653-2.059-.173-.297-.018-.458.13-.606.134-.133.298-.347.446-.52.149-.174.198-.298.298-.497.099-.198.05-.371-.025-.52-.075-.149-.669-1.612-.916-2.207-.242-.579-.487-.5-.669-.51-.173-.008-.371-.01-.57-.01-.198 0-.52.074-.792.372-.272.297-1.04 1.016-1.04 2.479 0 1.462 1.065 2.875 1.213 3.074.149.198 2.096 3.2 5.077 4.487.709.306 1.262.489 1.694.625.712.227 1.36.195 1.871.118.571-.085 1.758-.719 2.006-1.413.248-.694.248-1.289.173-1.413-.074-.124-.272-.198-.57-.347m-5.421 7.403h-.004a9.87 9.87 0 01-5.031-1.378l-.361-.214-3.741.982.998-3.648-.235-.374a9.86 9.86 0 01-1.51-5.26c.001-5.45 4.436-9.884 9.888-9.884 2.64 0 5.122 1.03 6.988 2.898a9.825 9.825 0 012.893 6.994c-.003 5.45-4.437 9.884-9.885 9.884m8.413-18.297A11.815 11.815 0 0012.05 0C5.495 0 .16 5.335.157 11.892c0 2.096.547 4.142 1.588 5.945L.057 24l6.305-1.654a11.882 11.882 0 005.683 1.448h.005c6.554 0 11.89-5.335 11.893-11.893a11.821 11.821 0 00-3.48-8.413z'/%3E%3C/svg%3E") no-repeat center/contain;
}


/* 16. FOOTER */
.footer {
  background: var(--charcoal);
  padding: 3rem max(1.5rem, calc((100% - var(--container)) / 2)) 1.5rem;
  margin-top: auto;
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}
.footer-brand h3 { color: var(--gold-light); font-size: 1.1rem; margin-bottom: .4rem; }
.footer-brand p  { font-size: .85rem; color: rgba(255,255,255,.55); max-width: 320px; }

.footer-links {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  align-items: center;
}
.footer-links a {
  font-size: .85rem;
  color: rgba(255,255,255,.6);
  font-weight: 500;
  transition: color .15s;
}
.footer-links a:hover { color: var(--gold-light); }

.footer-copy {
  font-size: .78rem;
  color: rgba(255,255,255,.3);
  text-align: center;
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 1.25rem;
}


/* 18. BOOKING SUPPORT CARD */
.booking-support-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  max-width: 680px;
  margin: 0 auto;
}
.booking-support-card h3 { font-size: 1.3rem; margin-bottom: .5rem; }
.booking-support-card > p { margin-bottom: 1.75rem; }
.booking-support-channels {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1.75rem;
}
.bsc-channel {
  display: flex; flex-direction: column; gap: .25rem;
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1rem 1.1rem;
}
.bsc-channel .bsc-label {
  font-size: .72rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .07em;
  color: var(--mist);
}
.bsc-channel a {
  font-size: .9rem; font-weight: 600;
  color: var(--gold);
  word-break: break-all;
}
.bsc-channel a:hover { text-decoration: underline; }
.booking-support-actions { display: flex; gap: .75rem; flex-wrap: wrap; }

/* Keep old .contact-actions for anything else that uses it */
.contact-actions { display: flex; gap: .75rem; flex-wrap: wrap; margin-top: 1.25rem; }


/* HAMBURGER BUTTON */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 38px; height: 38px;
  background: transparent;
  border: 1.5px solid var(--border-dark);
  border-radius: var(--radius-md);
  cursor: pointer;
  padding: 6px;
  flex-shrink: 0;
  transition: border-color .2s;
}
.nav-hamburger:hover { border-color: var(--gold); }
.nav-hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform .25s ease, opacity .2s ease;
  transform-origin: center;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }


/* BACK-TO-TOP BUTTON */
.back-to-top {
  position: fixed;
  bottom: 5.5rem;
  right: 1.75rem;
  width: 40px; height: 40px;
  background: var(--charcoal);
  color: var(--gold);
  border: none;
  border-radius: 50%;
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s, transform .2s;
  z-index: 150;
  box-shadow: 0 4px 16px rgba(26,22,18,.25);
}
.back-to-top.visible { opacity: 1; pointer-events: auto; }
.back-to-top:hover { transform: translateY(-3px); }


/* 17b. TOUR DETAIL — ITINERARY */
.itinerary-section {
  background: var(--white);
  padding: 4rem 1.5rem;
}
.itinerary-section-header {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 3rem;
}
.itinerary-section-header .eyebrow {
  font-family: var(--font-sans);
  font-size: .63rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .75rem;
}
.itinerary-section-header h2 {
  font-family: 'Cormorant Garamond', var(--font-serif);
  font-size: clamp(1.9rem, 4vw, 2.6rem);
  font-weight: 600;
  color: var(--ink);
  margin: 0 0 .6rem;
}
.itinerary-section-header p {
  font-size: .9rem;
  color: var(--smoke);
  line-height: 1.7;
}

/* Tabs */
.itinerary-tabs {
  display: flex;
  gap: .5rem;
  max-width: 860px;
  margin: 0 auto 2.5rem;
  border-bottom: 2px solid var(--border);
  padding-bottom: 0;
  flex-wrap: wrap;
}
.itinerary-tab {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: .2rem;
  padding: .85rem 1.5rem;
  background: none;
  border: none;
  border-bottom: 3px solid transparent;
  margin-bottom: -2px;
  cursor: pointer;
  transition: all .2s ease;
  border-radius: var(--radius-sm) var(--radius-sm) 0 0;
}
.itinerary-tab:hover {
  background: var(--cream);
}
.itinerary-tab.active {
  border-bottom-color: var(--gold);
  background: var(--cream);
}
.itinerary-tab-label {
  font-family: 'Cormorant Garamond', var(--font-serif);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.2;
}
.itinerary-tab.active .itinerary-tab-label {
  color: var(--gold);
}
.itinerary-tab-hours {
  font-family: var(--font-sans);
  font-size: .62rem;
  color: var(--mist);
  letter-spacing: .04em;
}

/* Panels */
.itinerary-panels {
  max-width: 860px;
  margin: 0 auto;
}
.itinerary-panel { display: none; }
.itinerary-panel.active { display: block; }

.itinerary-day-intro {
  margin-bottom: 2rem;
}
.itinerary-day-theme {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: .67rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--rust);
  background: rgba(184,74,42,.07);
  border: 1px solid rgba(184,74,42,.15);
  padding: .3rem .8rem;
  border-radius: 999px;
}

/* Timeline */
.itinerary-timeline {
  display: flex;
  flex-direction: column;
}
.itinerary-stop {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 0 1.25rem;
  position: relative;
}
.itinerary-stop-left {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: .3rem;
}
.itinerary-stop-time {
  font-family: var(--font-sans);
  font-size: .67rem;
  font-weight: 700;
  letter-spacing: .04em;
  color: var(--gold);
  text-align: center;
  white-space: nowrap;
  line-height: 1.3;
  margin-bottom: .5rem;
}
.itinerary-stop-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
  border: 2px solid var(--white);
  box-shadow: 0 0 0 2px rgba(201,146,42,.3);
  z-index: 1;
}
.itinerary-stop-line {
  width: 2px;
  flex: 1;
  background: linear-gradient(to bottom, rgba(201,146,42,.3), rgba(201,146,42,.08));
  margin-top: .3rem;
}

.itinerary-stop-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.1rem 1.35rem;
  margin-bottom: 1rem;
  transition: box-shadow .2s ease;
}
.itinerary-stop-card:hover {
  box-shadow: 0 4px 20px rgba(26,22,18,.08);
}
.itinerary-stop-tag {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: .58rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(201,146,42,.09);
  border: 1px solid rgba(201,146,42,.2);
  padding: .18rem .55rem;
  border-radius: 999px;
  margin-bottom: .6rem;
}
.itinerary-stop-card h4 {
  font-family: 'Cormorant Garamond', var(--font-serif);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--ink);
  margin: 0 0 .5rem;
  line-height: 1.25;
}
.itinerary-stop-desc {
  font-size: .87rem;
  color: var(--smoke);
  line-height: 1.72;
  margin: 0 0 .5rem;
}
.itinerary-stop-notes {
  font-size: .77rem;
  color: var(--mist);
  font-style: italic;
  line-height: 1.6;
  margin: 0;
  border-top: 1px solid var(--border);
  padding-top: .5rem;
}

/* Operator notes grid */
.itinerary-notes-grid {
  max-width: 860px;
  margin: 3rem auto 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--border);
}
.itinerary-note-block {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.25rem 1.4rem;
}
.itinerary-note-block h4 {
  font-family: var(--font-sans);
  font-size: .67rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--charcoal);
  margin: 0 0 .85rem;
}
.itinerary-note-block ul {
  list-style: none;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: .6rem;
}
.itinerary-note-block li {
  font-size: .83rem;
  color: var(--smoke);
  line-height: 1.6;
  padding-left: 1rem;
  position: relative;
}
.itinerary-note-block li::before {
  content: '·';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 700;
}

@media (max-width: 600px) {
  .itinerary-stop { grid-template-columns: 72px 1fr; gap: 0 .85rem; }
  .itinerary-tab { padding: .7rem 1rem; }
  .itinerary-tab-label { font-size: .92rem; }
}


/* 18. RESPONSIVE */
@media (max-width: 900px) {
  .hero,
  .booking-page { grid-template-columns: 1fr; }
  .hero-visual { order: -1; }
  .hero-visual img { height: 300px; }
  .blog-hero { grid-template-columns: 1fr; padding: 2.5rem 1.5rem; gap: 2rem; }
  .blog-hero--full .blog-hero-copy { padding: 3rem 1.5rem; }
  .blog-article figure.wide { margin-left: 0; margin-right: 0; }
  .booking-summary { position: static; }
  :root { --section-gap: 56px; }
}

@media (max-width: 640px) {
  .nav-hamburger { display: flex; }

  /* Full-screen slide-down mobile nav */
  .nav-links {
    position: fixed;
    top: var(--nav-h);
    left: 0; right: 0;
    background: var(--white);
    border-top: 2px solid var(--gold);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s cubic-bezier(.4,0,.2,1), box-shadow .35s;
    z-index: 98;
    pointer-events: none;
  }
  .nav-links.mobile-open {
    max-height: 80vh;
    box-shadow: 0 12px 40px rgba(26,22,18,.15);
    pointer-events: auto;
    overflow-y: auto;
  }
  .nav-links a {
    display: flex !important;
    align-items: center;
    justify-content: center;
    padding: 1rem 1.5rem;
    font-size: .95rem;
    letter-spacing: .04em;
    text-transform: uppercase;
    font-weight: 600;
    color: var(--smoke);
    border-bottom: 1px solid var(--border);
    transition: background .15s, color .15s;
  }
  .nav-links a:hover { color: var(--gold); background: var(--gold-pale); }
  .nav-links a.active { color: var(--gold); background: var(--gold-pale); }
  .nav-links a.active::after { display: none; }
  .nav-links .btn-primary {
    margin: 1rem;
    border-radius: var(--radius-md);
    border-bottom: none;
    color: var(--white);
    background: var(--gold);
    border-color: var(--gold);
    justify-content: center;
  }

  .hero-stats { gap: 1.25rem; }
  .carousel-slide { height: 300px; }
  h1 { font-size: 1.75rem; }
  .booking-panel,
  .booking-summary { padding: 1.5rem; }
  .booking-form { grid-template-columns: 1fr; }
  .phone-input-group { grid-template-columns: 1fr; }
  .dob-selects { grid-template-columns: minmax(65px, 75px) 1fr minmax(80px, 90px); }
  .availability-calendar { padding: .75rem; }
  .calendar-weekdays,
  .calendar-grid { gap: .2rem; }
  .calendar-day,
  .calendar-day-spacer { min-height: 34px; }
  .calendar-day { font-size: .76rem; }
  .payment-summary-row {
    flex-direction: column;
    gap: .15rem;
  }
  .payment-summary-row strong { text-align: left; }
  .back-to-top { right: 1rem; bottom: 5rem; }

  /* ── Mobile header fixes ── */
  .nav-logo img { height: 52px; }
  .nav-logo-tag { display: none; }
  .nav-logo-name { font-size: 1.15rem; }
  .nav-logo { gap: .5rem; }
}

/* ============================================================
   BOOKING CONFIRMATION PAGE
   Append these rules to the bottom of styles.css
   ============================================================ */

/* ── Page shell ── */
.confirmation-page {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

/* ── Hero / success badge ── */
.conf-hero {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  padding: 3rem 1.5rem 1rem;
  animation: conf-fade-up .55s ease both;
}

.conf-checkmark {
  width: 72px;
  height: 72px;
  color: var(--gold);
  margin-bottom: .25rem;
}

/* SVG stroke animations */
.conf-circle {
  stroke-dasharray: 160;
  stroke-dashoffset: 160;
  animation: conf-draw-circle .6s .1s ease forwards;
}
.conf-tick {
  stroke-dasharray: 40;
  stroke-dashoffset: 40;
  animation: conf-draw-tick .4s .7s ease forwards;
}

@keyframes conf-draw-circle {
  to { stroke-dashoffset: 0; }
}
@keyframes conf-draw-tick {
  to { stroke-dashoffset: 0; }
}
@keyframes conf-fade-up {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0);    }
}

.conf-eyebrow {
  display: inline-flex;
  align-items: center;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
  background: var(--gold-pale);
  padding: .3rem .85rem;
  border-radius: 999px;
  border: 1px solid var(--border-dark);
}

.conf-heading {
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  font-family: var(--font-serif);
  color: var(--charcoal);
  max-width: 520px;
  line-height: 1.2;
}

.conf-sub {
  color: var(--smoke);
  font-size: .97rem;
  max-width: 480px;
  line-height: 1.7;
}

.conf-ref-badge {
  display: inline-flex;
  align-items: center;
  gap: .75rem;
  background: var(--charcoal);
  padding: .65rem 1.4rem;
  border-radius: var(--radius-lg);
  margin-top: .5rem;
}
.conf-ref-label {
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: rgba(255,255,255,.5);
}
.conf-ref-code {
  font-family: 'Courier New', monospace;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--gold-light);
  letter-spacing: .08em;
}

/* ── Summary card ── */
.conf-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 2rem 2.25rem;
  animation: conf-fade-up .55s .15s ease both;
}

.conf-card-title {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  padding-bottom: .75rem;
  border-bottom: 1px solid var(--border);
  color: var(--charcoal);
}

/* 2-column detail grid */
.conf-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .9rem 1.5rem;
  margin-bottom: 1.5rem;
}

.conf-detail {
  display: flex;
  flex-direction: column;
  gap: .18rem;
}
.conf-detail-label {
  font-size: .7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--mist);
}
.conf-detail strong {
  font-size: .95rem;
  color: var(--ink);
  font-weight: 600;
}

/* Financials block */
.conf-financials {
  border-top: 1px solid var(--border);
  padding-top: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: .5rem;
}

.conf-fin-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: .9rem;
  gap: 1rem;
}
.conf-fin-row span  { color: var(--smoke); }
.conf-fin-row strong{ color: var(--ink); font-weight: 600; }

.conf-fin-due {
  background: var(--gold-pale);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-md);
  padding: .65rem .9rem;
  margin-top: .25rem;
}
.conf-fin-due span,
.conf-fin-due strong { color: var(--charcoal); font-weight: 700; }
.conf-fin-due strong { color: var(--gold); font-size: 1rem; }

.conf-fin-discount strong { color: var(--rust); }

.conf-fin-balance span  { color: var(--mist); font-size: .85rem; }
.conf-fin-balance strong{ color: var(--mist); font-size: .85rem; font-weight: 500; }

/* Notes block */
.conf-notes {
  border-top: 1px solid var(--border);
  padding-top: 1.1rem;
  margin-top: .75rem;
  display: flex;
  flex-direction: column;
  gap: .35rem;
}
.conf-notes p { font-size: .9rem; line-height: 1.65; color: var(--smoke); }

/* ── Next steps ── */
.conf-steps {
  animation: conf-fade-up .55s .25s ease both;
}

.conf-steps-title {
  font-size: 1.15rem;
  color: var(--charcoal);
  margin-bottom: 1.5rem;
}

.conf-steps-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}
.conf-steps-list li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.1rem 1.25rem;
  transition: border-color .2s, box-shadow .2s;
}
.conf-steps-list li:hover {
  border-color: var(--border-dark);
  box-shadow: var(--shadow-sm);
}

.conf-step-num {
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--gold-pale);
  border: 1.5px solid var(--border-dark);
  color: var(--gold);
  font-size: .8rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: .1rem;
}
.conf-steps-list li > div strong {
  display: block;
  font-size: .95rem;
  color: var(--charcoal);
  margin-bottom: .2rem;
}
.conf-steps-list li > div p {
  font-size: .88rem;
  color: var(--smoke);
  margin: 0;
  line-height: 1.6;
}

/* ── CTA row ── */
.conf-cta {
  display: flex;
  gap: .75rem;
  flex-wrap: wrap;
  justify-content: center;
  padding-bottom: 1.5rem;
  animation: conf-fade-up .55s .35s ease both;
}

/* ── Responsive ── */
@media (max-width: 640px) {
  .conf-card { padding: 1.5rem; }
  .conf-grid { grid-template-columns: 1fr; gap: .75rem; }
  .conf-cta  { flex-direction: column; align-items: stretch; }
  .conf-cta a { text-align: center; justify-content: center; }
  .conf-ref-badge { flex-direction: column; gap: .3rem; }
}

/* ── LEGAL / CONTACT PAGES ── */
.legal-body {
  max-width: 760px;
  margin: 0 auto;
}

.legal-updated {
  font-size: .85rem;
  color: var(--muted, #888);
  margin-bottom: 2rem;
  text-align: center;
}

.legal-section,
.contact-block {
  margin-bottom: 2.25rem;
}

.legal-section h2,
.contact-block h2 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: .6rem;
  color: var(--charcoal, #1a1a2e);
}

.legal-section p,
.legal-section ol,
.legal-section ul,
.contact-block p {
  line-height: 1.75;
  margin-bottom: .6rem;
}

.legal-section ol,
.legal-section ul {
  padding-left: 1.5rem;
}

.legal-section li {
  margin-bottom: .4rem;
  line-height: 1.7;
}

/* Contact table */
.contact-table {
  width: 100%;
  border-collapse: collapse;
}
.contact-table th,
.contact-table td {
  padding: .55rem .75rem;
  text-align: left;
  border-bottom: 1px solid rgba(0,0,0,.07);
}
.contact-table th {
  width: 30%;
  font-weight: 600;
  color: var(--charcoal, #1a1a2e);
}

/* Policy table */
.policy-table-wrap {
  overflow-x: auto;
  margin: 1rem 0 1.25rem;
}
.policy-table {
  width: 100%;
  border-collapse: collapse;
  font-size: .95rem;
}
.policy-table th {
  background: var(--charcoal, #1a1a2e);
  color: #fff;
  padding: .65rem 1rem;
  text-align: left;
  font-weight: 600;
}
.policy-table td {
  padding: .6rem 1rem;
  border-bottom: 1px solid rgba(0,0,0,.08);
}
.policy-table tbody tr:nth-child(even) {
  background: rgba(0,0,0,.025);
}

@media (max-width: 480px) {
  .contact-table th { width: 40%; }
}


/* ============================================================
   COMPREHENSIVE MOBILE POLISH
   ============================================================ */

@media (max-width: 640px) {

  /* ── Global spacing ── */
  :root { --section-gap: 44px; }
  .section-header { margin-bottom: 2rem; }
  .section-header p { font-size: .92rem; }

  /* ── Hero ── */
  .hero { padding: 2.5rem 1.25rem; gap: 2rem; }
  .hero-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: .85rem 1.25rem;
    padding-top: 1.25rem;
  }
  .hero-stat strong { font-size: 1.35rem; }
  .hero-stat span { font-size: .7rem; }
  .hero-actions { flex-direction: column; }
  .hero-actions a { text-align: center; }

  /* ── Carousel ── */
  .carousel-copy { padding: 1.5rem; }
  .carousel-copy h3 { font-size: 1.15rem; }

  /* ── Tours hero ── */
  .tours-hero { padding: 3rem 1.25rem 2rem; }
  .tours-hero h1 { font-size: clamp(1.6rem, 6vw, 2.2rem); }

  /* ── Plan cards (index) ── */
  .plan-card-strip { padding: .85rem 1.1rem; }
  .plan-card-info { padding: 1.5rem 1.1rem; }

  /* ── Tour listing ── */
  .tour-listing-grid { grid-template-columns: 1fr; }
  .tour-listing-head { padding: 1.25rem; }
  .tour-listing-body { padding: 1.1rem 1.25rem 1.25rem; }

  /* ── Tour detail ── */
  .tdet-sidebar { gap: 1rem; }

  /* ── Itinerary tabs — scrollable row ── */
  .itinerary-tabs {
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: 0;
    gap: 0;
  }
  .itinerary-tabs::-webkit-scrollbar { display: none; }
  .itinerary-tab {
    flex-shrink: 0;
    padding: .7rem 1.1rem;
    min-width: 110px;
  }

  /* ── Itinerary timeline ── */
  .itinerary-section { padding: 2.5rem 1.25rem; }

  /* ── Guides ── */
  .guides-summary { flex-direction: column; gap: 1rem; }
  .guides-grid { grid-template-columns: 1fr; }

  /* ── Booking support card ── */
  .booking-support-card { padding: 1.5rem 1.25rem; }
  .booking-support-channels { grid-template-columns: 1fr; }

  /* ── Footer ── */
  .footer { padding: 2.5rem 1.25rem 1.25rem; }
  .footer-inner { flex-direction: column; gap: 1.5rem; }
  .footer-brand p { max-width: 100%; }
  .footer-links {
    flex-direction: row;
    flex-wrap: wrap;
    gap: .75rem 1.25rem;
    align-items: flex-start;
  }
  .footer-copy { font-size: .72rem; }

  /* ── Confirmation page ── */
  .conf-steps-list li { gap: 1rem; }
}

@media (max-width: 420px) {

  /* ── Even tighter spacing ── */
  :root { --section-gap: 36px; }

  /* ── Plan card strip ── */
  .plan-card-strip { flex-direction: column; align-items: flex-start; gap: .6rem; }
  .plan-card-price-range { margin-top: .15rem; }

  /* ── Buttons ── */
  .btn-primary, .btn-secondary, .btn-outline {
    padding: .7rem 1.1rem;
    font-size: .78rem;
  }

  /* ── Tour detail includes list ── */
  .tdet-includes-list { grid-template-columns: 1fr; }

  /* ── Hero stat numbers ── */
  .hero-stat strong { font-size: 1.2rem; }
}
