/* ============================================================
   LUMINOUS TOURS — Main Stylesheet
   Design: Dark editorial, gold accent, Playfair + Source Sans 3
   WCAG 2.1 AA compliant
   ============================================================ */

/* ------------------------------------------------------------
   1. GOOGLE FONTS IMPORT
   ------------------------------------------------------------ */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;0,800;1,400;1,500;1,600;1,700&family=Source+Sans+3:wght@300;400;500;600;700&display=swap');

/* ------------------------------------------------------------
   2. CSS CUSTOM PROPERTIES (Design Tokens)
   ------------------------------------------------------------ */
:root {
  /* Colors */
  --bg:              #0d0d10;
  --bg-card:         #131316;
  --bg-muted:        #1a1a1e;
  --fg:              #f0ece3;
  --fg-muted:        #a09d96;
  --fg-subtle:       #6b6864;
  --gold:            #c9a84c;
  --gold-light:      #dbbf6e;
  --gold-dark:       #a8893a;
  --border:          rgba(255,255,255,0.10);
  --border-gold:     rgba(201,168,76,0.35);

  /* Typography */
  --font-display:    'Playfair Display', Georgia, serif;
  --font-body:       'Source Sans 3', system-ui, sans-serif;

  /* Spacing scale */
  --space-1:  0.25rem;
  --space-2:  0.5rem;
  --space-3:  0.75rem;
  --space-4:  1rem;
  --space-5:  1.25rem;
  --space-6:  1.5rem;
  --space-8:  2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;
  --space-32: 8rem;

  /* Layout */
  --max-width:    1280px;
  --content-width: 860px;
  --radius:       0.25rem;
  --radius-md:    0.5rem;
  --radius-lg:    1rem;

  /* Nav */
  --nav-height: 68px;

  /* Transitions */
  --transition: 200ms ease;
  --transition-slow: 400ms ease;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  background-color: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
}

img, video {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul, ol {
  list-style: none;
}

button {
  cursor: pointer;
  font-family: var(--font-body);
  border: none;
  background: none;
}

input, select, textarea {
  font-family: var(--font-body);
  font-size: 1rem;
}

/* ------------------------------------------------------------
   4. ACCESSIBILITY — Skip Navigation
   ------------------------------------------------------------ */
.skip-nav {
  position: absolute;
  top: -100%;
  left: var(--space-4);
  background: var(--gold);
  color: var(--bg);
  padding: var(--space-3) var(--space-6);
  font-weight: 700;
  font-size: 0.875rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  z-index: 9999;
  border-radius: 0 0 var(--radius) var(--radius);
  transition: top var(--transition);
}

.skip-nav:focus {
  top: 0;
}

/* WCAG Focus Indicators — all interactive elements */
:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: var(--radius);
}

/* ------------------------------------------------------------
   5. NAVIGATION
   ------------------------------------------------------------ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  background: rgba(13, 13, 16, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: background var(--transition-slow);
}

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

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  flex-shrink: 0;
  text-decoration: none;
  color: var(--fg);
}

.nav-logo:hover .logo-icon {
  border-color: var(--gold);
}

.logo-icon {
  width: 36px;
  height: 36px;
  border: 1.5px solid rgba(255,255,255,0.4);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color var(--transition);
  flex-shrink: 0;
}

.logo-icon svg {
  width: 18px;
  height: 18px;
  color: var(--fg);
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-name {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  line-height: 1.1;
  color: var(--fg);
}

.logo-tagline {
  font-family: var(--font-body);
  font-size: 0.6rem;
  font-weight: 400;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--fg-muted);
  line-height: 1.2;
}

/* Primary Nav */
.nav-primary {
  display: flex;
  align-items: center;
  gap: var(--space-1);
}

.nav-item {
  position: relative;
}

.nav-link {
  display: flex;
  align-items: center;
  gap: var(--space-1);
  padding: var(--space-2) var(--space-3);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fg-muted);
  transition: color var(--transition);
  white-space: nowrap;
  border-radius: var(--radius);
}

.nav-link:hover,
.nav-link[aria-current="page"] {
  color: var(--fg);
}

.nav-link svg {
  width: 12px;
  height: 12px;
  transition: transform var(--transition);
}

.nav-item:hover .nav-link svg,
.nav-item:focus-within .nav-link svg {
  transform: rotate(180deg);
}

/* Dropdown */
.nav-dropdown {
  position: absolute;
  top: calc(100% + var(--space-2));
  left: 50%;
  transform: translateX(-50%);
  min-width: 220px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: var(--space-2) 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity var(--transition), transform var(--transition);
  transform: translateX(-50%) translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.5);
}

.nav-item:hover .nav-dropdown,
.nav-item:focus-within .nav-dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.nav-dropdown a {
  display: block;
  padding: var(--space-3) var(--space-5);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--fg-muted);
  transition: color var(--transition), background var(--transition);
}

.nav-dropdown a:hover {
  color: var(--fg);
  background: rgba(255,255,255,0.04);
}

/* Mobile menu toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: var(--space-2);
  cursor: pointer;
  background: none;
  border: none;
  aria-label: "Toggle navigation";
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--fg);
  transition: transform var(--transition), opacity var(--transition);
  transform-origin: center;
}

.nav-toggle.is-open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile nav overlay */
.nav-mobile {
  display: none;
  position: fixed;
  inset: 0;
  top: var(--nav-height);
  background: var(--bg);
  z-index: 99;
  padding: var(--space-8);
  overflow-y: auto;
  flex-direction: column;
  gap: var(--space-2);
}

.nav-mobile.is-open {
  display: flex;
}

.nav-mobile a {
  display: block;
  padding: var(--space-4) 0;
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg-muted);
  border-bottom: 1px solid var(--border);
  transition: color var(--transition);
}

.nav-mobile a:hover { color: var(--fg); }

.nav-mobile-section {
  padding: var(--space-2) 0 var(--space-2) var(--space-4);
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
}

.nav-mobile-section a {
  font-size: 0.9rem;
  padding: var(--space-2) 0;
  border-bottom: none;
  color: var(--fg-subtle);
}

/* Substack sidebar widget */
.substack-widget {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%) rotate(90deg);
  transform-origin: right center;
  z-index: 50;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-bottom: none;
  border-radius: var(--radius) var(--radius) 0 0;
}

.substack-widget a {
  display: block;
  padding: var(--space-2) var(--space-4);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fg-muted);
  white-space: nowrap;
  transition: color var(--transition);
}

.substack-widget a:hover { color: var(--gold); }

/* ------------------------------------------------------------
   6. LAYOUT CONTAINERS
   ------------------------------------------------------------ */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-8);
}

.container--narrow {
  max-width: var(--content-width);
}

.page-main {
  padding-top: var(--nav-height);
}

/* Section spacing */
.section {
  padding: var(--space-24) 0;
}

.section--sm {
  padding: var(--space-16) 0;
}

.section--lg {
  padding: var(--space-32) 0;
}

/* ------------------------------------------------------------
   7. HERO SECTIONS
   ------------------------------------------------------------ */
.hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.hero--page {
  min-height: 55vh;
  align-items: flex-end;
}

.hero--short {
  min-height: 38vh;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* Gradient overlay */
.hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(13,13,16,0.25) 0%,
    rgba(13,13,16,0.15) 40%,
    rgba(13,13,16,0.60) 75%,
    rgba(13,13,16,0.95) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: var(--space-20) 0 var(--space-16);
}

.hero__eyebrow {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--space-4);
  display: block;
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 7vw, 5.5rem);
  font-weight: 700;
  line-height: 1.0;
  color: var(--fg);
  max-width: 700px;
  margin-bottom: var(--space-5);
}

.hero__title em {
  font-style: italic;
  color: var(--gold);
}

.hero__subtitle {
  font-size: clamp(1rem, 2vw, 1.15rem);
  font-weight: 400;
  color: var(--fg-muted);
  margin-bottom: var(--space-4);
}

.hero__body {
  font-size: 1rem;
  color: var(--fg-muted);
  max-width: 520px;
  margin-bottom: var(--space-8);
  line-height: 1.7;
}

.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  align-items: center;
  margin-bottom: var(--space-8);
}

.hero__exif {
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(240,236,227,0.35);
  display: block;
}

/* Page hero (shorter, for inner pages) */
.page-hero {
  position: relative;
  width: 100%;
  min-height: 45vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.page-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.page-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.page-hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(13,13,16,0.2) 0%,
    rgba(13,13,16,0.55) 65%,
    rgba(13,13,16,0.96) 100%
  );
}

.page-hero__content {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: var(--space-20) 0 var(--space-12);
}

.page-hero__eyebrow {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--space-3);
  display: block;
}

.page-hero__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.05;
  color: var(--fg);
  margin-bottom: var(--space-3);
}

.page-hero__exif {
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(240,236,227,0.3);
}

/* ------------------------------------------------------------
   8. BUTTONS
   ------------------------------------------------------------ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: 0.75rem 1.5rem;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background var(--transition), color var(--transition),
              border-color var(--transition), transform var(--transition);
  white-space: nowrap;
  text-decoration: none;
  border: 1.5px solid transparent;
  line-height: 1;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn:active {
  transform: translateY(0);
}

/* Primary — gold filled */
.btn--primary {
  background: var(--gold);
  color: var(--bg);
  border-color: var(--gold);
}

.btn--primary:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  color: var(--bg);
}

/* Outline — white border */
.btn--outline {
  background: transparent;
  color: var(--fg);
  border-color: rgba(255,255,255,0.4);
}

.btn--outline:hover {
  border-color: var(--fg);
  color: var(--fg);
}

/* Outline gold */
.btn--outline-gold {
  background: transparent;
  color: var(--gold);
  border-color: var(--gold);
}

.btn--outline-gold:hover {
  background: var(--gold);
  color: var(--bg);
}

/* Ghost — minimal */
.btn--ghost {
  background: transparent;
  color: var(--fg-muted);
  border-color: transparent;
  padding-left: 0;
  padding-right: 0;
}

.btn--ghost:hover {
  color: var(--fg);
}

.btn svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  transition: transform var(--transition);
}

.btn:hover svg {
  transform: translateX(2px);
}

/* ------------------------------------------------------------
   9. BADGES & EYEBROWS
   ------------------------------------------------------------ */
.eyebrow {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: var(--space-3);
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-1);
  padding: 0.25rem 0.6rem;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 999px;
  white-space: nowrap;
}

.badge--location {
  background: rgba(201,168,76,0.12);
  color: var(--gold);
  border: 1px solid rgba(201,168,76,0.25);
}

.badge--duration {
  background: rgba(255,255,255,0.06);
  color: var(--fg-muted);
  border: 1px solid var(--border);
}

.badge--type {
  background: rgba(255,255,255,0.06);
  color: var(--fg-muted);
  border: 1px solid var(--border);
}

.badge--price {
  background: rgba(201,168,76,0.12);
  color: var(--gold);
  border: 1px solid rgba(201,168,76,0.25);
  font-size: 0.8rem;
  padding: 0.3rem 0.75rem;
  font-weight: 700;
}

.badge svg {
  width: 11px;
  height: 11px;
}

/* ------------------------------------------------------------
   10. SECTION HEADERS
   ------------------------------------------------------------ */
.section-header {
  margin-bottom: var(--space-12);
}

.section-header--center {
  text-align: center;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--fg);
  margin-bottom: var(--space-3);
}

.section-title em {
  font-style: italic;
  color: var(--gold);
}

.section-subtitle {
  font-size: 0.95rem;
  color: var(--fg-muted);
  max-width: 560px;
  line-height: 1.65;
}

.section-header--center .section-subtitle {
  margin: 0 auto;
}

/* Section header with right-aligned link */
.section-header-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: var(--space-8);
  margin-bottom: var(--space-10);
  flex-wrap: wrap;
}

.section-header-row .section-header {
  margin-bottom: 0;
}

/* ------------------------------------------------------------
   11. TOUR CARDS
   ------------------------------------------------------------ */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
}

.cards-grid--2 {
  grid-template-columns: repeat(2, 1fr);
}

.cards-grid--4 {
  grid-template-columns: repeat(4, 1fr);
}

.tour-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color var(--transition), transform var(--transition);
  display: flex;
  flex-direction: column;
}

.tour-card:hover {
  border-color: rgba(201,168,76,0.3);
  transform: translateY(-3px);
}

.tour-card__image {
  position: relative;
  aspect-ratio: 3/2;
  overflow: hidden;
}

.tour-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.tour-card:hover .tour-card__image img {
  transform: scale(1.04);
}

.tour-card__location {
  position: absolute;
  top: var(--space-3);
  left: var(--space-3);
}

.tour-card__body {
  padding: var(--space-5);
  display: flex;
  flex-direction: column;
  flex: 1;
}

.tour-card__title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: var(--space-2);
  line-height: 1.2;
}

.tour-card__desc {
  font-size: 0.875rem;
  color: var(--fg-muted);
  line-height: 1.55;
  margin-bottom: var(--space-4);
  flex: 1;
}

.tour-card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: var(--space-4);
  border-top: 1px solid var(--border);
  gap: var(--space-3);
}

.tour-card__badges {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  flex-wrap: wrap;
}

.tour-card__link {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: var(--space-1);
  white-space: nowrap;
  transition: gap var(--transition);
}

.tour-card__link:hover {
  gap: var(--space-2);
}

.tour-card__link svg {
  width: 12px;
  height: 12px;
}

/* Special arrangement card variant */
.tour-card--special .tour-card__title::after {
  content: '';
  display: block;
  width: 24px;
  height: 1px;
  background: var(--gold);
  margin-top: var(--space-2);
  opacity: 0.5;
}

/* ------------------------------------------------------------
   12. STATS BAR
   ------------------------------------------------------------ */
.stats-bar {
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: var(--space-10) 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-8);
  text-align: center;
}

.stat__number {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: var(--space-2);
}

.stat__label {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--fg-subtle);
}

/* ------------------------------------------------------------
   13. GUIDE SECTION (Bio block)
   ------------------------------------------------------------ */
.guide-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-16);
  align-items: center;
}

.guide-section__image {
  position: relative;
}

.guide-section__image-wrap {
  aspect-ratio: 3/4;
  overflow: hidden;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
}

.guide-section__image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Frame accent */
.guide-section__image::before {
  content: '';
  position: absolute;
  inset: -8px;
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-md);
  z-index: -1;
  pointer-events: none;
}

.guide-section__content {
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
}

.guide-section__name {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--fg);
  line-height: 1.05;
}

.guide-section__bio {
  font-size: 0.95rem;
  color: var(--fg-muted);
  line-height: 1.75;
}

.guide-section__ctas {
  display: flex;
  gap: var(--space-3);
  flex-wrap: wrap;
}

/* ------------------------------------------------------------
   14. REVIEW CARDS
   ------------------------------------------------------------ */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-5);
}

.review-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: var(--space-6);
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.review-card__stars {
  display: flex;
  gap: 3px;
}

.review-card__stars svg {
  width: 14px;
  height: 14px;
  fill: var(--gold);
  color: var(--gold);
}

.review-card__quote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.95rem;
  color: var(--fg-muted);
  line-height: 1.65;
  flex: 1;
}

.review-card__author {
  border-top: 1px solid var(--border);
  padding-top: var(--space-4);
}

.review-card__name {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--fg);
}

.review-card__meta {
  font-size: 0.75rem;
  color: var(--fg-subtle);
  margin-top: var(--space-1);
}

.review-card__source {
  display: inline-flex;
  align-items: center;
  gap: var(--space-1);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg-subtle);
  margin-top: var(--space-2);
}

.review-card__source svg {
  width: 12px;
  height: 12px;
  color: #4285F4;
}

/* Google badge */
.google-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-2) var(--space-4);
  background: rgba(66,133,244,0.08);
  border: 1px solid rgba(66,133,244,0.2);
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: #7ab4f5;
}

/* ------------------------------------------------------------
   15. CTA SECTION
   ------------------------------------------------------------ */
.cta-section {
  text-align: center;
  padding: var(--space-24) 0;
}

.cta-section__eyebrow {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--space-5);
}

.cta-section__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.05;
  color: var(--fg);
  margin-bottom: var(--space-5);
}

.cta-section__title em {
  font-style: italic;
  color: var(--gold);
}

.cta-section__body {
  font-size: 1rem;
  color: var(--fg-muted);
  max-width: 520px;
  margin: 0 auto var(--space-8);
  line-height: 1.7;
}

.cta-section__buttons {
  display: flex;
  gap: var(--space-3);
  justify-content: center;
  flex-wrap: wrap;
}

/* ------------------------------------------------------------
   16. FOOTER
   ------------------------------------------------------------ */
.site-footer {
  border-top: 1px solid var(--border);
  padding: var(--space-16) 0 var(--space-8);
  margin-top: var(--space-8);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: var(--space-12);
  padding-bottom: var(--space-12);
  border-bottom: 1px solid var(--border);
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.footer-brand-desc {
  font-size: 0.875rem;
  color: var(--fg-muted);
  line-height: 1.65;
  max-width: 280px;
}

.footer-social {
  display: flex;
  gap: var(--space-3);
  margin-top: var(--space-2);
}

.footer-social a {
  width: 34px;
  height: 34px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--fg-muted);
  transition: border-color var(--transition), color var(--transition);
}

.footer-social a:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.footer-social a svg {
  width: 15px;
  height: 15px;
}

.footer-col__heading {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--fg-subtle);
  margin-bottom: var(--space-5);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.footer-links a {
  font-size: 0.875rem;
  color: var(--fg-muted);
  transition: color var(--transition);
}

.footer-links a:hover {
  color: var(--fg);
}

.footer-bottom {
  padding-top: var(--space-6);
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-copyright {
  font-size: 0.75rem;
  color: var(--fg-subtle);
  text-align: center;
  line-height: 1.5;
}

/* ------------------------------------------------------------
   17. FAQ ACCORDION
   ------------------------------------------------------------ */
.faq-section-label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--space-5);
  padding-bottom: var(--space-4);
  border-bottom: 1px solid var(--border-gold);
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.faq-section-label span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border: 1px solid var(--border-gold);
  border-radius: 50%;
  font-size: 0.7rem;
  color: var(--gold);
}

.faq-group {
  margin-bottom: var(--space-10);
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-6);
  padding: var(--space-5) 0;
  font-size: 1rem;
  font-weight: 600;
  color: var(--fg);
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  transition: color var(--transition);
}

.faq-question:hover {
  color: var(--gold);
}

.faq-question svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  color: var(--fg-muted);
  transition: transform var(--transition), color var(--transition);
}

.faq-item.is-open .faq-question {
  color: var(--gold);
}

.faq-item.is-open .faq-question svg {
  transform: rotate(45deg);
  color: var(--gold);
}

.faq-answer {
  display: none;
  padding: 0 0 var(--space-5);
  font-size: 0.95rem;
  color: var(--fg-muted);
  line-height: 1.75;
  max-width: 720px;
}

.faq-item.is-open .faq-answer {
  display: block;
}

/* ------------------------------------------------------------
   18. CONTACT FORM
   ------------------------------------------------------------ */
.contact-layout {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: var(--space-16);
  align-items: start;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  margin-bottom: var(--space-5);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-5);
}

.form-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--fg-muted);
}

.form-label .required {
  color: var(--gold);
  margin-left: 2px;
}

.form-input,
.form-select,
.form-textarea {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--fg);
  padding: 0.75rem 1rem;
  font-size: 0.95rem;
  font-family: var(--font-body);
  transition: border-color var(--transition);
  width: 100%;
  appearance: none;
  -webkit-appearance: none;
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--fg-subtle);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.15);
}

.form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23a09d96' stroke-width='2'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}

.form-select option {
  background: var(--bg-card);
  color: var(--fg);
}

.form-textarea {
  resize: vertical;
  min-height: 130px;
}

/* Quick info sidebar */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: var(--space-8);
}

.contact-info__heading {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--fg-subtle);
  margin-bottom: var(--space-4);
}

.contact-info__list {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.contact-info__item {
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
}

.contact-info__label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg-subtle);
}

.contact-info__value {
  font-size: 0.9rem;
  color: var(--fg-muted);
}

.contact-info__value a {
  color: var(--gold);
  transition: color var(--transition);
}

.contact-info__value a:hover {
  color: var(--gold-light);
}

/* Substack callout */
.substack-callout {
  background: var(--bg-muted);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: var(--space-6);
  text-align: center;
  margin-top: var(--space-4);
}

.substack-callout__label {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--fg-subtle);
  margin-bottom: var(--space-2);
}

.substack-callout__title {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: var(--space-2);
  line-height: 1.3;
}

.substack-callout__body {
  font-size: 0.8rem;
  color: var(--fg-muted);
  line-height: 1.55;
  margin-bottom: var(--space-4);
}

/* ------------------------------------------------------------
   19. SERVICE CARDS (Mentorship, Plan With Me)
   ------------------------------------------------------------ */
.service-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-5);
}

.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: var(--space-7);
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  transition: border-color var(--transition);
}

.service-card:hover {
  border-color: var(--border-gold);
}

.service-card__name {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--fg);
  line-height: 1.15;
}

.service-card__desc {
  font-size: 0.9rem;
  color: var(--fg-muted);
  line-height: 1.7;
  flex: 1;
}

.service-card__price {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gold);
  padding-top: var(--space-4);
  border-top: 1px solid var(--border);
}

.service-card__format {
  font-size: 0.75rem;
  color: var(--fg-subtle);
  margin-top: var(--space-1);
}

/* How it Works */
.how-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-8);
}

.how-step {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.how-step__number {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--gold);
  opacity: 0.4;
  line-height: 1;
}

.how-step__title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--fg);
}

.how-step__desc {
  font-size: 0.875rem;
  color: var(--fg-muted);
  line-height: 1.65;
}

/* ------------------------------------------------------------
   20. PORTFOLIO GALLERY + LIGHTBOX
   ------------------------------------------------------------ */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-2);
}

.portfolio-item {
  aspect-ratio: 1;
  overflow: hidden;
  cursor: pointer;
  border-radius: var(--radius);
  position: relative;
}

.portfolio-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.portfolio-item:hover img {
  transform: scale(1.06);
}

.portfolio-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(13,13,16,0);
  transition: background var(--transition);
}

.portfolio-item:hover::after {
  background: rgba(13,13,16,0.25);
}

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(0,0,0,0.95);
  align-items: center;
  justify-content: center;
}

.lightbox.is-open {
  display: flex;
}

.lightbox__img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: var(--radius);
}

.lightbox__close {
  position: absolute;
  top: var(--space-5);
  right: var(--space-5);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  color: var(--fg);
  cursor: pointer;
  transition: background var(--transition);
  border: none;
}

.lightbox__close:hover {
  background: rgba(255,255,255,0.2);
}

.lightbox__close svg { width: 18px; height: 18px; }

.lightbox__prev,
.lightbox__next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  color: var(--fg);
  cursor: pointer;
  transition: background var(--transition);
  border: none;
}

.lightbox__prev { left: var(--space-5); }
.lightbox__next { right: var(--space-5); }
.lightbox__prev:hover,
.lightbox__next:hover { background: rgba(255,255,255,0.2); }
.lightbox__prev svg,
.lightbox__next svg { width: 20px; height: 20px; }

/* ------------------------------------------------------------
   21. TOUR DETAIL PAGE
   ------------------------------------------------------------ */
.tour-detail {
  padding: var(--space-16) 0;
}

.tour-detail__header {
  margin-bottom: var(--space-10);
}

.tour-detail__badges {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  margin-bottom: var(--space-6);
}

.tour-detail__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--fg);
  margin-bottom: var(--space-4);
  line-height: 1.05;
}

.tour-detail__body {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: var(--space-16);
  align-items: start;
}

.tour-detail__desc {
  font-size: 1rem;
  color: var(--fg-muted);
  line-height: 1.8;
}

.tour-detail__desc p + p {
  margin-top: var(--space-4);
}

.tour-detail__sidebar {
  position: sticky;
  top: calc(var(--nav-height) + var(--space-8));
}

.tour-detail__card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: var(--space-7);
}

.tour-detail__card-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: var(--space-5);
}

.detail-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  margin-bottom: var(--space-6);
}

.detail-list li {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  font-size: 0.875rem;
  color: var(--fg-muted);
  line-height: 1.5;
}

.detail-list li::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
  margin-top: 0.45rem;
  flex-shrink: 0;
}

/* Breadcrumb */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: 0.75rem;
  color: var(--fg-subtle);
  margin-bottom: var(--space-5);
}

.breadcrumb a {
  color: var(--fg-subtle);
  transition: color var(--transition);
}

.breadcrumb a:hover { color: var(--fg-muted); }

.breadcrumb__sep {
  color: var(--fg-subtle);
  opacity: 0.4;
}

.breadcrumb__current {
  color: var(--fg-muted);
}

/* ------------------------------------------------------------
   22. DESTINATION GALLERY (Plan With Me)
   ------------------------------------------------------------ */
.destination-gallery {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: var(--space-3);
  margin: var(--space-12) 0;
}

.destination-gallery__item {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  border-radius: var(--radius-md);
}

.destination-gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.destination-gallery__item:hover img {
  transform: scale(1.05);
}

.destination-gallery__label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: var(--space-3) var(--space-3) var(--space-3);
  background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 100%);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fg);
}

/* ------------------------------------------------------------
   23. SPECIALTIES TAGS (Bio page)
   ------------------------------------------------------------ */
.specialties {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
}

.specialty-tag {
  padding: 0.4rem 0.9rem;
  background: var(--bg-muted);
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--fg-muted);
  letter-spacing: 0.04em;
}

/* ------------------------------------------------------------
   24. LEGAL PAGES
   ------------------------------------------------------------ */
.legal-content {
  max-width: 760px;
  margin: 0 auto;
  padding: var(--space-16) 0 var(--space-24);
}

.legal-content h2 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--fg);
  margin: var(--space-10) 0 var(--space-4);
  padding-top: var(--space-6);
  border-top: 1px solid var(--border);
}

.legal-content h2:first-child {
  border-top: none;
  margin-top: 0;
  padding-top: 0;
}

.legal-content p {
  font-size: 0.9rem;
  color: var(--fg-muted);
  line-height: 1.8;
  margin-bottom: var(--space-4);
}

.legal-content ul {
  list-style: disc;
  padding-left: var(--space-6);
  margin-bottom: var(--space-4);
}

.legal-content ul li {
  font-size: 0.9rem;
  color: var(--fg-muted);
  line-height: 1.7;
  margin-bottom: var(--space-2);
}

.legal-meta {
  font-size: 0.8rem;
  color: var(--fg-subtle);
  margin-bottom: var(--space-8);
}

.legal-download {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: var(--space-8);
  transition: color var(--transition);
}

.legal-download:hover { color: var(--gold-light); }

.legal-download svg { width: 14px; height: 14px; }

/* ------------------------------------------------------------
   25. COOKIE SETTINGS PAGE
   ------------------------------------------------------------ */
.cookie-pref {
  max-width: 600px;
  margin: 0 auto;
  padding: var(--space-16) 0 var(--space-24);
}

.cookie-pref__item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: var(--space-6);
  margin-bottom: var(--space-5);
  display: flex;
  align-items: flex-start;
  gap: var(--space-5);
}

.cookie-pref__text { flex: 1; }

.cookie-pref__name {
  font-weight: 600;
  color: var(--fg);
  margin-bottom: var(--space-2);
}

.cookie-pref__desc {
  font-size: 0.875rem;
  color: var(--fg-muted);
  line-height: 1.6;
}

.cookie-toggle {
  position: relative;
  width: 42px;
  height: 24px;
  flex-shrink: 0;
  margin-top: 2px;
}

.cookie-toggle input {
  opacity: 0;
  width: 0;
  height: 0;
  position: absolute;
}

.cookie-toggle__track {
  position: absolute;
  inset: 0;
  background: var(--bg-muted);
  border: 1px solid var(--border);
  border-radius: 999px;
  cursor: pointer;
  transition: background var(--transition);
}

.cookie-toggle__track::after {
  content: '';
  position: absolute;
  top: 2px;
  left: 2px;
  width: 18px;
  height: 18px;
  background: var(--fg-subtle);
  border-radius: 50%;
  transition: transform var(--transition), background var(--transition);
}

.cookie-toggle input:checked + .cookie-toggle__track {
  background: var(--gold);
  border-color: var(--gold);
}

.cookie-toggle input:checked + .cookie-toggle__track::after {
  transform: translateX(18px);
  background: var(--bg);
}

.cookie-toggle input:disabled + .cookie-toggle__track {
  opacity: 0.5;
  cursor: not-allowed;
}

.cookie-always {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  white-space: nowrap;
  margin-top: 4px;
}

.cookie-pref__actions {
  display: flex;
  gap: var(--space-3);
  margin-top: var(--space-6);
}

/* ------------------------------------------------------------
   26. AGGREGATE RATING DISPLAY
   ------------------------------------------------------------ */
.rating-display {
  display: flex;
  align-items: center;
  gap: var(--space-5);
  padding: var(--space-6) 0;
  border-bottom: 1px solid var(--border);
  margin-bottom: var(--space-10);
}

.rating-score {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}

.rating-details {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.rating-stars {
  display: flex;
  gap: 3px;
}

.rating-stars svg {
  width: 18px;
  height: 18px;
  fill: var(--gold);
  color: var(--gold);
}

.rating-count {
  font-size: 0.875rem;
  color: var(--fg-muted);
}

.rating-source {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--fg-subtle);
  letter-spacing: 0.06em;
}

/* ------------------------------------------------------------
   27. DIVIDERS
   ------------------------------------------------------------ */
.divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: var(--space-16) 0;
}

/* ------------------------------------------------------------
   28. RESPONSIVE — Tablet (max 1024px)
   ------------------------------------------------------------ */
@media (max-width: 1024px) {
  .cards-grid { grid-template-columns: repeat(2, 1fr); }
  .cards-grid--4 { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 2fr); gap: var(--space-8); }
  .guide-section { grid-template-columns: 1fr; gap: var(--space-10); }
  .guide-section__image { max-width: 400px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .service-cards { grid-template-columns: repeat(2, 1fr); }
  .how-steps { grid-template-columns: repeat(2, 1fr); gap: var(--space-8); }
  .contact-layout { grid-template-columns: 1fr; }
  .tour-detail__body { grid-template-columns: 1fr; }
  .tour-detail__sidebar { position: static; }
  .destination-gallery { grid-template-columns: repeat(3, 1fr); }
  .portfolio-grid { grid-template-columns: repeat(3, 1fr); }
}

/* ------------------------------------------------------------
   29. RESPONSIVE — Mobile (max 768px)
   ------------------------------------------------------------ */
@media (max-width: 768px) {
  :root {
    --nav-height: 60px;
  }

  .nav-inner { padding: 0 var(--space-5); }
  .nav-primary { display: none; }
  .nav-toggle { display: flex; }
  .substack-widget { display: none; }

  .container { padding: 0 var(--space-5); }

  .hero__content { padding: var(--space-16) 0 var(--space-10); }
  .hero__ctas { flex-direction: column; align-items: flex-start; }
  .hero__title { font-size: clamp(2rem, 9vw, 3rem); }

  .page-hero { min-height: 35vh; }
  .page-hero__content { padding: var(--space-16) 0 var(--space-8); }

  .section { padding: var(--space-16) 0; }
  .section--lg { padding: var(--space-20) 0; }

  .cards-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .service-cards { grid-template-columns: 1fr; }
  .how-steps { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; gap: var(--space-8); }
  .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
  .destination-gallery { grid-template-columns: repeat(2, 1fr); }
  .form-row { grid-template-columns: 1fr; }
  .section-header-row { flex-direction: column; align-items: flex-start; }
  .cta-section__buttons { flex-direction: column; align-items: center; }
  .guide-section__image::before { display: none; }
  .logo-tagline { display: none; }

  .rating-display { flex-direction: column; align-items: flex-start; gap: var(--space-3); }
}

/* ------------------------------------------------------------
   30. PRINT
   ------------------------------------------------------------ */
@media print {
  .site-header, .site-footer, .skip-nav, .substack-widget,
  .lightbox, .nav-toggle, .nav-mobile { display: none !important; }
  body { background: white; color: black; }
  .page-main { padding-top: 0; }
}

/* ============================================================
   SUPPLEMENT — Classes added during Phase 2–6 HTML build
   These extend the existing system with new BEM names and
   component variants used in the HTML pages.
   ============================================================ */

/* ── UTILITY ──────────────────────────────────────────────── */
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

.lead-text {
  font-size: clamp(1.1rem, 2.5vw, 1.3rem);
  line-height: 1.7;
  color: var(--fg);
  margin-bottom: var(--space-6);
  max-width: 72ch;
}

.section--narrow { padding: var(--space-12) 0; }

/* ── HERO SUPPLEMENT ──────────────────────────────────────── */
.hero__badges {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  margin-top: var(--space-5);
}

.hero__trademark {
  font-size: 0.55em;
  vertical-align: super;
  opacity: 0.7;
}

/* ── BEM FAQ (new HTML uses .faq__* naming) ───────────────── */
.faq__list { margin: 0; padding: 0; list-style: none; }

.faq__item { border-bottom: 1px solid var(--border); }

.faq__category { margin-bottom: var(--space-10); }

.faq__category-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gold);
  margin: var(--space-10) 0 var(--space-4);
  padding-bottom: var(--space-3);
  border-bottom: 1px solid var(--border-gold);
}

.faq__trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-6);
  padding: var(--space-5) 0;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--fg);
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  transition: color 0.2s;
}

.faq__trigger:hover,
.faq__item.is-open .faq__trigger { color: var(--gold); }

.faq__trigger:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

.faq__answer {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.3s ease;
  font-size: 0.95rem;
  color: var(--fg-muted);
  line-height: 1.75;
}

.faq__answer p { padding-bottom: var(--space-5); }

.faq__item.is-open .faq__answer { /* max-height set by JS */ }

/* ── BEM FORM FIELDS ──────────────────────────────────────── */
.form__group {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  margin-bottom: var(--space-5);
}

.form__label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--fg-muted);
}

.form__optional {
  font-weight: 400;
  font-size: 0.7rem;
  letter-spacing: 0.04em;
  color: var(--fg-muted);
  opacity: 0.6;
  text-transform: none;
}

.form__input,
.form__select,
.form__textarea {
  background: var(--bg-muted);
  border: 1px solid var(--border);
  border-radius: 4px;
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 0.95rem;
  padding: var(--space-3) var(--space-4);
  transition: border-color 0.2s;
  width: 100%;
}

.form__input::placeholder,
.form__textarea::placeholder { color: var(--fg-subtle); }

.form__input:focus,
.form__select:focus,
.form__textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.15);
}

.form__input.is-invalid,
.form__textarea.is-invalid { border-color: #c94c4c; }

.form__textarea { resize: vertical; min-height: 120px; }

.form__select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23a09d96' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}

.form__error {
  font-size: 0.8rem;
  color: #c94c4c;
  min-height: 1em;
}

/* ── BOOKING CARD ─────────────────────────────────────────── */
.booking-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: var(--space-8);
  position: sticky;
  top: calc(var(--header-h, 70px) + var(--space-6));
}

.booking-card--inline {
  position: static;
  margin-top: var(--space-8);
}

.booking-card__price {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: var(--space-5);
}

.booking-card__price span {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--fg-muted);
  font-weight: 400;
}

.booking-card__details {
  list-style: none;
  padding: 0;
  margin: 0 0 var(--space-6);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: var(--space-5) 0;
}

.booking-card__details li {
  font-size: 0.9rem;
  color: var(--fg-muted);
  padding: var(--space-2) 0;
}

.booking-card__details strong { color: var(--fg); }

.booking-card__note {
  font-size: 0.8rem;
  color: var(--fg-subtle);
  margin-top: var(--space-4);
  line-height: 1.6;
}

/* ── TOUR DETAIL LAYOUT ───────────────────────────────────── */
.tour-detail__layout {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: var(--space-16);
  align-items: start;
}

.tour-detail__main h2 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  margin: var(--space-8) 0 var(--space-4);
  color: var(--fg);
}

.tour-detail__intro {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--fg);
  margin-bottom: var(--space-6);
}

.tour-detail__note {
  font-size: 0.85rem;
  line-height: 1.7;
  color: var(--fg-muted);
  opacity: 0.75;
  margin-top: var(--space-8);
  font-style: italic;
}

.tour-detail__main p {
  color: var(--fg-muted);
  line-height: 1.75;
  margin-bottom: var(--space-4);
}

.tour-detail__list {
  padding-left: var(--space-5);
  margin: 0 0 var(--space-6);
  color: var(--fg-muted);
  line-height: 1.75;
}

.tour-detail__list li { margin-bottom: var(--space-2); }

/* ── BREADCRUMB SUPPLEMENT ────────────────────────────────── */
.breadcrumb__list {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  align-items: center;
  list-style: none;
  padding: 0;
  margin: 0 0 var(--space-5);
  font-size: 0.8rem;
  color: rgba(255,255,255,0.6);
}

.breadcrumb__item + .breadcrumb__item::before {
  content: '/';
  margin-right: var(--space-2);
  opacity: 0.5;
}

.breadcrumb__link {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  transition: color 0.2s;
}

.breadcrumb__link:hover { color: var(--gold); }

/* ── CITY INTRO ───────────────────────────────────────────── */
.city-intro {
  max-width: var(--content-width);
  margin: 0 auto;
}

.city-intro__tagline {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  color: var(--fg);
  margin-bottom: var(--space-8);
  line-height: 1.5;
}

.city-intro__h2 {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--space-4);
}

.city-intro__body p {
  color: var(--fg-muted);
  line-height: 1.75;
  margin-bottom: var(--space-4);
  max-width: 72ch;
}

/* ── SECTION HEADER ───────────────────────────────────────── */
.section__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: var(--space-6);
  margin-bottom: var(--space-10);
}

.section__header--centered {
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.section__header-left { flex: 1; }
.section__header-right { flex-shrink: 0; }

.section__title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  font-weight: 700;
  color: var(--fg);
  margin: var(--space-3) 0 0;
  line-height: 1.25;
}

.section__sub {
  font-size: 0.9rem;
  color: var(--fg-muted);
  margin-top: var(--space-3);
}

.section__cta {
  text-align: center;
  margin-top: var(--space-10);
}

/* ── AGGREGATE RATING ─────────────────────────────────────── */
.aggregate-rating {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-8);
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  border-radius: 8px;
  text-align: center;
}

.aggregate-rating--large .aggregate-rating__score {
  font-size: 4rem;
}

.aggregate-rating__score {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}

.aggregate-rating__stars { color: var(--gold); font-size: 1.2rem; }

.aggregate-rating__count {
  font-size: 0.8rem;
  color: var(--fg-subtle);
  margin-top: var(--space-2);
}

/* ── REVIEWS PAGE ─────────────────────────────────────────── */
.reviews-intro {
  display: flex;
  align-items: center;
  gap: var(--space-10);
  margin-bottom: var(--space-12);
  padding-bottom: var(--space-10);
  border-bottom: 1px solid var(--border);
}

.reviews-intro__text {
  flex: 1;
  font-size: 1.1rem;
  color: var(--fg-muted);
  line-height: 1.7;
}

.review-cards--full {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-6);
}

.review-card--full {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: var(--space-8);
}

.review-card--aggregate {
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  border-radius: 8px;
  padding: var(--space-8);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ── CTA SECTION SUPPLEMENT ───────────────────────────────── */
.cta-section--minimal {
  background: var(--bg-muted);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: var(--space-16) 0;
}

.cta-section--minimal .cta-section__content {
  text-align: center;
}

.cta-section--minimal .cta-section__title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin-bottom: var(--space-4);
}

.cta-section--minimal .cta-section__body {
  color: var(--fg-muted);
  margin-bottom: var(--space-8);
}

.cta-section--minimal .cta-section__actions {
  display: flex;
  gap: var(--space-4);
  justify-content: center;
  flex-wrap: wrap;
}

/* ── HOW IT WORKS ─────────────────────────────────────────── */
.how-it-works {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-10);
  list-style: none;
  padding: 0;
  margin: 0;
  counter-reset: none;
}

.how-it-works__step {
  position: relative;
  padding-top: var(--space-6);
  border-top: 2px solid var(--border-gold);
}

.how-it-works__num {
  display: block;
  font-size: 2.5rem;
  font-weight: 700;
  font-family: var(--font-display);
  color: var(--border-gold);
  line-height: 1;
  margin-bottom: var(--space-4);
}

.how-it-works__title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: var(--space-3);
}

.how-it-works__desc {
  font-size: 0.9rem;
  color: var(--fg-muted);
  line-height: 1.7;
}

/* ── DESTINATION GALLERY (Plan With Me) ───────────────────── */
.destination-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-4);
  margin-top: var(--space-6);
}

.destination-card {
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  aspect-ratio: 4/3;
}

.destination-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.destination-card:hover .destination-card__img {
  transform: scale(1.04);
}

.destination-card__name {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: var(--space-3) var(--space-4);
  background: linear-gradient(transparent, rgba(0,0,0,0.7));
  color: var(--fg);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* ── BIO PAGE ─────────────────────────────────────────────── */
.bio__pull {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  color: var(--gold);
  margin-bottom: var(--space-6);
  line-height: 1.5;
}

.bio__specialties { margin-top: var(--space-8); }

/* ── SUGGEST DESTINATION ──────────────────────────────────── */
.suggest-destination {
  margin-top: var(--space-12);
  padding-top: var(--space-10);
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: var(--space-6);
  flex-wrap: wrap;
}

.suggest-destination__text {
  flex: 1;
  font-size: 1rem;
  color: var(--fg-muted);
}

/* ── LEGAL PAGES ──────────────────────────────────────────── */
.legal-page { background: var(--bg); }

.legal-page__title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--fg);
  margin-bottom: var(--space-3);
}

.legal-page__updated {
  font-size: 0.8rem;
  color: var(--fg-subtle);
  margin-bottom: var(--space-10);
  padding-bottom: var(--space-6);
  border-bottom: 1px solid var(--border);
}

.legal-page .container--narrow h2 {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--fg);
  margin: var(--space-8) 0 var(--space-3);
}

.legal-page .container--narrow h3 {
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold);
  margin: var(--space-6) 0 var(--space-2);
}

.legal-page .container--narrow p,
.legal-page .container--narrow li {
  color: var(--fg-muted);
  line-height: 1.75;
  font-size: 0.95rem;
  margin-bottom: var(--space-4);
}

.legal-page .container--narrow ul {
  padding-left: var(--space-5);
}

.legal-page .container--narrow a { color: var(--gold); }
.legal-page .container--narrow a:hover { text-decoration: underline; }

.legal-page__download { margin-top: var(--space-10); }

/* ── COOKIE SETTINGS PAGE ─────────────────────────────────── */
.cookie-settings__form {
  margin-top: var(--space-8);
}

.cookie-settings__item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-8);
  padding: var(--space-6) 0;
  border-bottom: 1px solid var(--border);
}

.cookie-settings__item-info { flex: 1; }

.cookie-settings__item-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: var(--space-2);
}

.cookie-settings__item-desc {
  font-size: 0.85rem;
  color: var(--fg-muted);
  line-height: 1.6;
  margin: 0;
}

.cookie-settings__always-on {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}

.cookie-settings__saved {
  margin-top: var(--space-4);
  color: var(--gold);
  font-size: 0.9rem;
}

/* ── TOGGLE SWITCH ────────────────────────────────────────── */
.toggle {
  position: relative;
  display: inline-block;
  width: 44px;
  height: 24px;
  flex-shrink: 0;
}

.toggle input { opacity: 0; width: 0; height: 0; }

.toggle__track {
  position: absolute;
  inset: 0;
  background: var(--bg-muted);
  border: 1px solid var(--border);
  border-radius: 12px;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
}

.toggle__track::before {
  content: '';
  position: absolute;
  width: 16px;
  height: 16px;
  left: 3px;
  top: 3px;
  background: var(--fg-subtle);
  border-radius: 50%;
  transition: transform 0.2s, background 0.2s;
}

.toggle input:checked + .toggle__track {
  background: var(--gold-dark);
  border-color: var(--gold);
}

.toggle input:checked + .toggle__track::before {
  transform: translateX(20px);
  background: var(--gold);
}

.toggle input:focus-visible + .toggle__track {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

/* ── CONTACT FORM SUPPLEMENT ──────────────────────────────── */
.contact-form__title {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--fg);
  margin-bottom: var(--space-3);
}

.contact-form__sub {
  font-size: 0.95rem;
  color: var(--fg-muted);
  margin-bottom: var(--space-8);
  line-height: 1.65;
}

.contact-form-wrap { /* inherits contact-layout grid cell */ }

.contact-info__title {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--space-5);
}

.contact-info__link {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  color: var(--fg-muted);
  text-decoration: none;
  font-size: 0.95rem;
  padding: var(--space-3) 0;
  transition: color 0.2s;
}

.contact-info__link:hover { color: var(--gold); }

.contact-info__note {
  font-size: 0.8rem;
  color: var(--fg-subtle);
  margin-top: var(--space-6);
  line-height: 1.6;
}

/* ── NAV SUPPLEMENT (hamburger, logo, overlay) ─────────────── */
.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(2px);
  z-index: 99;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}

.nav-overlay.is-visible {
  opacity: 1;
  pointer-events: auto;
}

.nav__hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: 1px solid var(--border);
  border-radius: 4px;
  cursor: pointer;
  padding: 0;
  transition: border-color 0.2s;
}

.nav__hamburger:hover { border-color: var(--gold); }
.nav__hamburger:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }

.hamburger__line {
  display: block;
  width: 18px;
  height: 1.5px;
  background: var(--fg);
  border-radius: 2px;
  transition: transform 0.2s, opacity 0.2s;
}

.nav-open .hamburger__line:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-open .hamburger__line:nth-child(2) { opacity: 0; }
.nav-open .hamburger__line:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ── COOKIE BANNER ────────────────────────────────────────── */
.cookie-banner {
  position: fixed;
  bottom: var(--space-6);
  left: 50%;
  transform: translateX(-50%) translateY(calc(100% + var(--space-6)));
  z-index: 9000;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: var(--space-5) var(--space-6);
  max-width: 560px;
  width: calc(100% - 2rem);
  box-shadow: 0 8px 32px rgba(0,0,0,0.5);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  align-items: center;
  gap: var(--space-6);
  flex-wrap: wrap;
}

.cookie-banner.is-visible {
  transform: translateX(-50%) translateY(0);
}

.cookie-banner__text {
  flex: 1;
  font-size: 0.85rem;
  color: var(--fg-muted);
  margin: 0;
  min-width: 200px;
}

.cookie-banner__link { color: var(--gold); text-decoration: none; }
.cookie-banner__link:hover { text-decoration: underline; }

.cookie-banner__actions {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  flex-shrink: 0;
  flex-wrap: wrap;
}

.cookie-banner__settings {
  font-size: 0.75rem;
  color: var(--fg-subtle);
  text-decoration: none;
  white-space: nowrap;
}

.cookie-banner__settings:hover { color: var(--fg-muted); }

/* ── LIGHTBOX SUPPLEMENT ──────────────────────────────────── */
.lightbox__backdrop {
  position: absolute;
  inset: 0;
}

.lightbox__img-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 90vw;
  max-height: 85vh;
}

.lightbox__caption {
  color: var(--fg-muted);
  font-size: 0.85rem;
  margin-top: var(--space-3);
  text-align: center;
}

.lightbox__counter {
  color: var(--fg-subtle);
  font-size: 0.75rem;
  text-align: center;
  letter-spacing: 0.1em;
}

/* body lock when lightbox open */
body.lightbox-open { overflow: hidden; }

/* ── TOUR CARDS SUPPLEMENT ────────────────────────────────── */
.tour-cards--list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: var(--space-8);
}

.tour-card__badge--special {
  background: rgba(201,168,76,0.15);
  color: var(--gold);
  border: 1px solid var(--border-gold);
}

/* ── RESPONSIVE ADDITIONS ─────────────────────────────────── */
@media (max-width: 1024px) {
  .tour-detail__layout { grid-template-columns: 1fr; }
  .booking-card { position: static; }
  .how-it-works { grid-template-columns: repeat(2, 1fr); }
  .destination-gallery { grid-template-columns: repeat(3, 1fr); }
  .reviews-intro { flex-direction: column; }
}

@media (max-width: 768px) {
  .nav__hamburger { display: flex; }
  .nav__menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: min(320px, 85vw);
    height: 100vh;
    background: var(--bg-card);
    border-left: 1px solid var(--border);
    padding: var(--space-16) var(--space-6);
    overflow-y: auto;
    transition: right 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 100;
  }
  .nav__menu.is-open { right: 0; }
  .nav__list { flex-direction: column; gap: 0; }
  .nav__link { display: block; padding: var(--space-4) 0; border-bottom: 1px solid var(--border); }
  .nav__dropdown { position: static; border: none; background: var(--bg-muted); border-radius: 4px; margin: var(--space-2) 0; display: none; }
  .nav__dropdown.is-open { display: block; }
  .nav__link--cta { background: none; border-color: var(--border); border-radius: 0; }

  .section__header { flex-direction: column; align-items: flex-start; }
  .tour-detail__layout { grid-template-columns: 1fr; }
  .how-it-works { grid-template-columns: 1fr; }
  .destination-gallery { grid-template-columns: repeat(2, 1fr); }
  .suggest-destination { flex-direction: column; align-items: flex-start; }
  .cookie-settings__item { flex-direction: column; align-items: flex-start; gap: var(--space-4); }
  .reviews-intro { flex-direction: column; }
  .contact-layout { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .destination-gallery { grid-template-columns: 1fr 1fr; }
  .cta-section--minimal .cta-section__actions { flex-direction: column; align-items: center; }
}

/* ============================================================
   PHASE 3 — BEM FIX: Desktop aliases for all HTML BEM classes
   Adds missing rules so the live site renders correctly.
   ============================================================ */

/* ── NAV CONTAINER ─────────────────────────────────────────── */
.nav-container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-8);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-8);
}

/* ── NAV LOGO ──────────────────────────────────────────────── */
.nav__logo {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  flex-shrink: 0;
  text-decoration: none;
  color: var(--fg);
}

.nav__logo-icon {
  width: 36px;
  height: 36px;
  border: 1.5px solid rgba(255,255,255,0.4);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color var(--transition);
  flex-shrink: 0;
}

.nav__logo:hover .nav__logo-icon { border-color: var(--gold); }

.nav__logo-icon svg {
  width: 18px;
  height: 18px;
  color: var(--fg);
}

.nav__logo-text {
  display: flex;
  flex-direction: column;
}

.nav__logo-name {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  line-height: 1.1;
  color: var(--fg);
}

.nav__logo-sub {
  font-family: var(--font-body);
  font-size: 0.6rem;
  font-weight: 400;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--fg-muted);
  line-height: 1.2;
}

/* ── NAV MENU & LIST (desktop) ─────────────────────────────── */
.nav__menu {
  display: flex;
  align-items: center;
}

.nav__list {
  display: flex;
  align-items: center;
  gap: var(--space-1);
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav__item {
  position: relative;
}

.nav__link {
  display: flex;
  align-items: center;
  gap: var(--space-1);
  padding: var(--space-2) var(--space-3);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fg-muted);
  transition: color var(--transition);
  white-space: nowrap;
  border-radius: var(--radius);
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  text-decoration: none;
}

.nav__link:hover,
.nav__link[aria-current="page"] {
  color: var(--fg);
}

.nav__link--cta {
  color: var(--gold);
  border: 1px solid rgba(201,168,76,0.4);
  border-radius: var(--radius);
}

.nav__link--cta:hover {
  background: var(--gold);
  color: var(--bg);
  border-color: var(--gold);
}

.nav__chevron {
  width: 12px;
  height: 12px;
  transition: transform var(--transition);
  flex-shrink: 0;
}

.nav__item:hover .nav__chevron,
.nav__item:focus-within .nav__chevron {
  transform: rotate(180deg);
}

/* ── DROPDOWN ──────────────────────────────────────────────── */
.nav__dropdown {
  position: absolute;
  top: calc(100% + var(--space-2));
  left: 50%;
  transform: translateX(-50%) translateY(-4px);
  min-width: 220px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: var(--space-2) 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity var(--transition), transform var(--transition), visibility var(--transition);
  box-shadow: 0 16px 40px rgba(0,0,0,0.5);
  z-index: 200;
  list-style: none;
}

.nav__item:hover .nav__dropdown,
.nav__item:focus-within .nav__dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.nav__dropdown-link {
  display: block;
  padding: var(--space-3) var(--space-5);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--fg-muted);
  transition: color var(--transition), background var(--transition);
  text-decoration: none;
}

.nav__dropdown-link:hover {
  color: var(--fg);
  background: rgba(255,255,255,0.04);
}

/* ── HERO STRUCTURE ────────────────────────────────────────── */
.hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(13,13,16,0.15) 0%,
    rgba(13,13,16,0.10) 40%,
    rgba(13,13,16,0.65) 75%,
    rgba(13,13,16,0.96) 100%
  );
  pointer-events: none;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  align-items: center;
  margin-bottom: var(--space-8);
}

/* ── STATS BAR BEM ─────────────────────────────────────────── */
.stats-bar__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-8);
  text-align: center;
  list-style: none;
  margin: 0;
  padding: 0;
}

.stats-bar__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-2);
}

/* ── TOUR CARDS GRID ───────────────────────────────────────── */
.tour-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
}

.tour-card__media {
  position: relative;
  aspect-ratio: 3/2;
  overflow: hidden;
}

.tour-card__media img,
.tour-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
  display: block;
}

.tour-card:hover .tour-card__media img,
.tour-card:hover .tour-card__img {
  transform: scale(1.04);
}

.tour-card__badge {
  position: absolute;
  top: var(--space-3);
  left: var(--space-3);
  background: rgba(201,168,76,0.12);
  color: var(--gold);
  border: 1px solid rgba(201,168,76,0.25);
  border-radius: 999px;
  padding: 0.25rem 0.6rem;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  white-space: nowrap;
}

/* ── GUIDE SECTION BEM ─────────────────────────────────────── */
.guide-section__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-16);
  align-items: center;
}

.guide-section__media {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
}

.guide-section__media::before {
  content: '';
  position: absolute;
  inset: -8px;
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-md);
  z-index: -1;
  pointer-events: none;
}

.guide-section__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.guide-section__body {
  font-size: 0.95rem;
  color: var(--fg-muted);
  line-height: 1.75;
}

.guide-section__actions {
  display: flex;
  gap: var(--space-3);
  flex-wrap: wrap;
  margin-top: var(--space-5);
}

/* ── REVIEWS BEM ───────────────────────────────────────────── */
.review-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-5);
}

.review-card__text {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.95rem;
  color: var(--fg-muted);
  line-height: 1.65;
  flex: 1;
  margin: 0;
}

.review-card__text p { margin: 0; }

/* ── CTA SECTION WITH BACKGROUND IMAGE ─────────────────────── */
.cta-section {
  position: relative;
  text-align: center;
  padding: var(--space-24) 0;
  overflow: hidden;
}

.cta-section__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.cta-section__bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.cta-section__overlay {
  position: absolute;
  inset: 0;
  background: rgba(13,13,16,0.80);
}

.cta-section__content {
  position: relative;
  z-index: 1;
}

.cta-section__actions {
  display: flex;
  gap: var(--space-3);
  justify-content: center;
  flex-wrap: wrap;
}

/* ── FOOTER BEM ────────────────────────────────────────────── */
.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: var(--space-10);
  padding-bottom: var(--space-10);
  border-bottom: 1px solid var(--border);
}

.footer__col {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.footer__col--brand {
  gap: var(--space-4);
}

.footer__logo {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  text-decoration: none;
  color: var(--fg);
  flex-shrink: 0;
}

.footer__logo-text {
  display: flex;
  flex-direction: column;
}

.footer__tagline {
  font-size: 0.875rem;
  color: var(--fg-muted);
  line-height: 1.65;
  max-width: 260px;
}

.footer__nav-heading {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--fg-subtle);
  margin-bottom: var(--space-2);
}

.footer__nav-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer__nav-link {
  font-size: 0.875rem;
  color: var(--fg-muted);
  transition: color var(--transition);
  text-decoration: none;
}

.footer__nav-link:hover { color: var(--fg); }

.footer__social {
  display: flex;
  gap: var(--space-3);
  margin-top: var(--space-2);
}

.footer__social-link {
  width: 34px;
  height: 34px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--fg-muted);
  transition: border-color var(--transition), color var(--transition);
  text-decoration: none;
}

.footer__social-link:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.footer__social-link svg {
  width: 15px;
  height: 15px;
}

.footer__substack-text {
  font-size: 0.875rem;
  color: var(--fg-muted);
  line-height: 1.65;
}

.footer__bottom {
  padding-top: var(--space-6);
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer__copy {
  font-size: 0.75rem;
  color: var(--fg-subtle);
  text-align: center;
  line-height: 1.5;
}

/* ── BUTTON SMALL VARIANT ──────────────────────────────────── */
.btn--sm {
  padding: 0.5rem 1rem;
  font-size: 0.65rem;
}

/* ── RESPONSIVE: TABLET ────────────────────────────────────── */
@media (max-width: 1024px) {
  .tour-cards { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .guide-section__inner { gap: var(--space-10); }
}

/* ── RESPONSIVE: MOBILE ────────────────────────────────────── */
@media (max-width: 768px) {
  .nav-container { padding: 0 var(--space-5); }
  .nav__logo-sub { display: none; }
  .stats-bar__list { grid-template-columns: repeat(2, 1fr); gap: var(--space-5); }
  .tour-cards { grid-template-columns: 1fr; }
  .guide-section__inner { grid-template-columns: 1fr; gap: var(--space-8); }
  .guide-section__media { aspect-ratio: 4/3; }
  .review-cards { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; gap: var(--space-8); }
  .footer__tagline { max-width: 100%; }
  .cta-section { padding: var(--space-16) 0; }
}

@media (max-width: 480px) {
  .stats-bar__list { grid-template-columns: repeat(2, 1fr); }
  .hero__actions { flex-direction: column; align-items: flex-start; }
}

/* ── GUIDE SECTION GRID FIX ────────────────────────────────
   Original CSS applied 2-col grid to .guide-section itself,
   but HTML wraps content in .container > .guide-section__inner.
   Reset outer section so inner grid fills full container width.
   ─────────────────────────────────────────────────────────── */
.guide-section {
  display: block;
}

.guide-section__content {
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
}

/* ── STATS BAR — 3-item layout ──────────────────────────────── */
.stats-bar__list--3 {
  grid-template-columns: repeat(3, 1fr);
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 768px) {
  .stats-bar__list--3 {
    grid-template-columns: repeat(3, 1fr);
    max-width: 100%;
  }
}

/* ── 4-card tour grid ──────────────────────────────────────── */
.tour-cards--4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 1024px) { .tour-cards--4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px)  { .tour-cards--4 { grid-template-columns: 1fr; } }

/* ── DESTINATION FEATURES (Plan With Me — Beyond San Diego) ── */
.destination-features { display: flex; flex-direction: column; gap: var(--space-16); margin-top: var(--space-8); }

.destination-feature { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-12); align-items: center; }
.destination-feature:nth-child(even) .destination-feature__media { order: 2; }
.destination-feature:nth-child(even) .destination-feature__body  { order: 1; }

.destination-feature__media { aspect-ratio: 4/3; overflow: hidden; border-radius: var(--radius-md); border: 1px solid var(--border); }
.destination-feature__img   { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.6s ease; }
.destination-feature:hover .destination-feature__img { transform: scale(1.03); }

.destination-feature__name { font-family: var(--font-display); font-size: 1.75rem; font-weight: 700; color: var(--fg); margin-bottom: var(--space-4); }
.destination-feature__text { color: var(--fg-muted); line-height: 1.8; font-size: 0.95rem; }

@media (max-width: 768px) {
  .destination-feature { grid-template-columns: 1fr; gap: var(--space-6); }
  .destination-feature:nth-child(even) .destination-feature__media { order: 0; }
  .destination-feature:nth-child(even) .destination-feature__body  { order: 0; }
}
