@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@400;600;700;800;900&display=swap');

/* ─── Reset & Base ──────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

/* ═══════════════════════════════════════════════════════════
   COLOR PALETTE — Red / Lemon Yellow / Black
   Royal Blue  → Lemon Yellow  (#FFE600)
   Gold        → Red           (#CC0000)
   Purple      → Black         (#111111)
   ═══════════════════════════════════════════════════════════ */
:root {
  /* Primary accent: Lemon Yellow (was Royal Blue) */
  --blue:       #111111;   /* Header/dark-bg — now near-black */
  --blue-mid:   #CC0000;   /* Links/accents   — now red       */
  --blue-lt:    #FF5555;   /* Light accent    — now light red  */
  --blue-dark:  #0A0A0A;   /* Darkest bg      — very dark      */

  /* Secondary accent: Red (was Gold) */
  --gold:       #FFE600;   /* Highlights/sparkles — now lemon yellow */
  --gold-dark:  #CDB800;   /* Darker yellow                         */

  /* Tertiary: Black (was Purple) */
  --purple:     #1A1A1A;   /* Dark sections   — now dark-gray  */
  --purple-lt:  #3A3A3A;   /* Mid dark        — charcoal       */

  /* Semantic aliases — use these going forward */
  --red:         #CC0000;
  --red-dark:    #990000;
  --red-lt:      #FF5555;
  --yellow:      #FFE600;
  --yellow-dark: #CDB800;
  --black:       #111111;
  --black-mid:   #2A2A2A;

  --white:       #FFFFFF;
  --off-white:   #FFFDF0;   /* Warm cream-white */
  --light-blue:  #FFF8CC;   /* Now very light yellow */
  --mid-gray:    #8A94A6;
  --text:        #1A1A1A;
  --text-mid:    #4A4A4A;

  --font: 'Nunito', 'Helvetica Neue', Arial, sans-serif;

  --radius-sm:  6px;
  --radius-md:  12px;
  --radius-lg:  20px;
  --radius-xl:  32px;

  --shadow-card:  0 4px 20px rgba(0,0,0,.13), 0 1px 4px rgba(0,0,0,.07);
  --shadow-hover: 0 12px 40px rgba(0,0,0,.24), 0 4px 12px rgba(0,0,0,.11);
  --transition:   0.22s ease;
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
  scrollbar-gutter: stable;
  overflow-x: hidden;
}

/* ── Minimum 1.8rem body text for readability ── */
body {
  font-family: var(--font);
  font-size: 1.9rem;
  line-height: 1.75;
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { display: block; width: 100%; height: 100%; object-fit: cover; }

/* ─── Header ────────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--black);
  box-shadow: 0 3px 16px rgba(0,0,0,.45);
}
.header-inner {
  width: 100%;
  padding: 0 60px;
  height: 70px;
  display: flex;
  align-items: center;
  gap: 24px;
}

/* ── Text wordmark (logo removed from header) ── */
.header-wordmark {
  font-family: var(--font);
  font-size: 1.7rem;
  font-weight: 900;
  color: var(--white);
  text-decoration: none;
  letter-spacing: 0.01em;
  white-space: nowrap;
  flex-shrink: 0;
  transition: opacity var(--transition);
}
.header-wordmark em { color: var(--gold); font-style: normal; }
.header-wordmark:hover { opacity: 0.85; }

/* ── Logo image kept for footer & hero use only ── */
.header-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  text-decoration: none;
  transition: opacity var(--transition);
}
.header-logo:hover { opacity: 0.88; }
.header-logo img {
  height: 108px;
  width: auto;
  object-fit: contain;
  display: block;
}

/* ── Primary Nav ── */
.primary-nav {
  display: flex;
  gap: 2px;
  flex: 1;
  justify-content: center;
  align-items: center;
}
.primary-nav a {
  font-family: var(--font);
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: rgba(255,255,255,.90);
  padding: 7px 11px;
  border-radius: var(--radius-md);
  transition: background var(--transition), color var(--transition);
  white-space: nowrap;
}
.primary-nav a:hover { background: rgba(255,255,255,.12); color: var(--yellow); }
.primary-nav a.active { color: var(--yellow); }

.nav-cta {
  font-size: 1.85rem !important;
  font-weight: 900 !important;
  color: var(--white) !important;
  background: var(--red) !important;
  padding: 11px 24px !important;
  border-radius: var(--radius-xl) !important;
  box-shadow: 0 3px 14px rgba(204,0,0,.42);
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition) !important;
  margin-left: 8px;
  flex-shrink: 0;
}
.nav-cta:hover {
  background: var(--red-dark) !important;
  color: var(--white) !important;
  transform: translateY(-1px);
  box-shadow: 0 6px 22px rgba(204,0,0,.58) !important;
}

/* ── Podcast button (left side of header + top of mobile drawer) ── */
.header-podcast-btn {
  margin-left: 0 !important;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.header-plan-btn {
  margin-left: 0 !important;
  flex-shrink: 0;
}
.mobile-podcast-btn {
  margin-top: 0 !important;
  margin-bottom: 16px !important;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

/* ── Hamburger ── */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  margin-left: auto;
}
.nav-hamburger span {
  display: block;
  width: 28px;
  height: 3px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}

/* ─── Mobile Nav ────────────────────────────────────────── */
.mobile-nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.62);
  z-index: 200;
  backdrop-filter: blur(2px);
}
.mobile-nav-drawer {
  display: none;
  position: fixed;
  top: 0; right: 0;
  width: 300px;
  height: 100%;
  background: var(--black);
  z-index: 201;
  flex-direction: column;
  padding: 24px 28px;
  transform: translateX(100%);
  transition: transform 0.34s ease;
  overflow-y: auto;
}
body.nav-open .mobile-nav-overlay { display: block; }
body.nav-open .mobile-nav-drawer  { display: flex; transform: translateX(0); }

.mobile-nav-close {
  align-self: flex-end;
  background: none;
  border: none;
  color: var(--white);
  font-size: 3.4rem;
  cursor: pointer;
  line-height: 1;
  padding: 4px;
  margin-bottom: 20px;
}
.mobile-nav-links { display: flex; flex-direction: column; gap: 4px; }
.mobile-nav-links a {
  font-size: 1.9rem;
  font-weight: 700;
  color: rgba(255,255,255,.90);
  padding: 14px 16px;
  border-radius: var(--radius-md);
  transition: background var(--transition), color var(--transition);
}
.mobile-nav-links a:hover,
.mobile-nav-links a.active { background: rgba(255,255,255,.10); color: var(--yellow); }

.mobile-nav-cta {
  display: block;
  margin-top: 20px !important;
  text-align: center;
  background: var(--red) !important;
  color: var(--white) !important;
  font-weight: 900 !important;
  border-radius: var(--radius-xl) !important;
}

/* ─── Buttons ───────────────────────────────────────────── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font);
  font-size: 1.85rem;
  font-weight: 800;
  color: var(--white);
  background: var(--red);
  border: none;
  border-radius: var(--radius-xl);
  padding: 16px 38px;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  box-shadow: 0 4px 18px rgba(204,0,0,.40);
  text-decoration: none;
  white-space: nowrap;
}
.btn-primary:hover {
  background: var(--red-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(204,0,0,.55);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font);
  font-size: 1.85rem;
  font-weight: 700;
  color: var(--white);
  background: transparent;
  border: 2.5px solid rgba(255,255,255,.65);
  border-radius: var(--radius-xl);
  padding: 14px 36px;
  cursor: pointer;
  transition: border-color var(--transition), background var(--transition), transform var(--transition);
  text-decoration: none;
  white-space: nowrap;
}
.btn-outline:hover {
  border-color: var(--white);
  background: rgba(255,255,255,.14);
  transform: translateY(-2px);
}

/* btn-blue → now dark/black button */
.btn-blue,
.btn-dark {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font);
  font-size: 1.85rem;
  font-weight: 800;
  color: var(--white);
  background: var(--black);
  border: none;
  border-radius: var(--radius-xl);
  padding: 16px 38px;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  box-shadow: 0 4px 18px rgba(0,0,0,.28);
  text-decoration: none;
  white-space: nowrap;
}
.btn-blue:hover,
.btn-dark:hover {
  background: var(--black-mid);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0,0,0,.38);
}

/* ─── Free Service Banner ───────────────────────────────── */
.free-banner {
  background: var(--red);
  padding: 18px 40px;
  text-align: center;
}
.free-banner p {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: 0.02em;
}
.free-banner p strong { font-weight: 900; text-transform: uppercase; }

/* ─── Under-Construction Banner ─────────────────────────── */
.construction-banner {
  background: repeating-linear-gradient(
    135deg,
    var(--yellow) 0px, var(--yellow) 22px,
    var(--black) 22px, var(--black) 24px
  );
  padding: 3px;
}
.construction-banner-inner {
  background: var(--yellow);
  padding: 13px 40px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.construction-banner-inner i { color: var(--black); font-size: 1.6rem; }
.construction-banner-inner p {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--black);
  letter-spacing: 0.01em;
}

/* ─── Section Headers ───────────────────────────────────── */
.section-header {
  max-width: 1280px;
  margin: 0 auto;
  padding: 72px 40px 0;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}
.section-eyebrow {
  font-size: 1.55rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--red);
  display: block;
  margin-bottom: 8px;
}
.section-title {
  font-size: 3.4rem;
  font-weight: 900;
  color: var(--text);
  line-height: 1.2;
}
.section-link {
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--red);
  text-decoration: underline;
  white-space: nowrap;
  transition: color var(--transition);
  padding-bottom: 4px;
}
.section-link:hover { color: var(--red-dark); }

/* ─── Destination Cards ─────────────────────────────────── */
.destinations-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1280px;
  margin: 40px auto 0;
  padding: 0 40px 80px;
}
.dest-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
  background: var(--white);
}
.dest-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); }

.dest-card-img {
  height: 210px;
  position: relative;
  display: flex;
  align-items: flex-end;
  padding: 20px;
}
.dest-card-img::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
}
.dest-card:hover .dest-card-img::before { opacity: 0; }
.dest-card-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.58) 0%, transparent 65%);
  pointer-events: none;
}
.dest-card-label {
  position: relative;
  z-index: 1;
  font-size: 1.45rem;
  font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: rgba(255,255,255,.95);
  background: rgba(255,255,255,.14);
  backdrop-filter: blur(4px);
  padding: 5px 14px;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,.30);
}
.dest-card-body {
  padding: 26px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.dest-card-title {
  font-size: 2.3rem;
  font-weight: 900;
  color: var(--text);
  line-height: 1.2;
}
.dest-card-desc {
  font-size: 1.65rem;
  color: var(--text-mid);
  line-height: 1.68;
  flex: 1;
}
.dest-card-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 4px; }
.dest-tag {
  font-size: 1.4rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 20px;
  background: var(--light-blue);   /* light yellow */
  color: var(--black);
}
.dest-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 1.65rem;
  font-weight: 800;
  color: var(--red);
  transition: color var(--transition), gap var(--transition);
  margin-top: 6px;
}
.dest-card-link:hover { color: var(--red-dark); gap: 10px; }

/* Destination photo backgrounds, with a brand-color tint layer (::before) that fades on hover */
.dest-wdw    { background: url('images/castle-florida.jpg') center/cover no-repeat; }
.dest-wdw::before    { background: linear-gradient(145deg, rgba(13,13,13,.55) 0%, rgba(58,0,0,.45) 55%, rgba(204,0,0,.35) 100%); }
.dest-dl     { background: url('images/castle-california.jpg') center/cover no-repeat; }
.dest-dl::before     { background: linear-gradient(145deg, rgba(58,0,0,.50) 0%, rgba(204,0,0,.40) 55%, rgba(255,102,0,.30) 100%); }
.dest-dcl    { background: url('images/ship-fantasy.jpg') center/cover no-repeat; }
.dest-dcl::before    { background: linear-gradient(145deg, rgba(0,31,64,.55) 0%, rgba(0,59,111,.45) 55%, rgba(0,102,179,.35) 100%); }
.dest-aulani { background: url('images/aulani-beach.jpg') center/cover no-repeat; }
.dest-aulani::before { background: linear-gradient(145deg, rgba(0,107,107,.50) 0%, rgba(0,163,163,.40) 55%, rgba(71,201,201,.30) 100%); }
.dest-paris  { background: url('images/castle-paris.jpg') center/cover no-repeat; }
.dest-paris::before  { background: linear-gradient(145deg, rgba(26,0,0,.55) 0%, rgba(90,0,0,.45) 55%, rgba(204,0,0,.35) 100%); }
.dest-abd    { background: url('images/vatican.jpg') center/cover no-repeat; }
.dest-abd::before    { background: linear-gradient(145deg, rgba(26,58,26,.55) 0%, rgba(46,125,50,.45) 55%, rgba(139,195,74,.35) 100%); }
.dest-intl   { background: url('images/castle-hongkong.jpg') center/cover no-repeat; }
.dest-intl::before   { background: linear-gradient(145deg, rgba(26,20,0,.55) 0%, rgba(74,56,0,.45) 55%, rgba(204,153,0,.35) 100%); }

/* ─── Editorial / Why Us ────────────────────────────────── */
.editorial-section {
  background: linear-gradient(135deg, #0D0D0D 0%, #1A1A1A 50%, #2A0000 100%);
  padding: 88px 40px;
  position: relative;
  overflow: hidden;
}
.editorial-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,230,0,.06) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
}
.editorial-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.editorial-eyebrow {
  font-size: 1.55rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--yellow);
  display: block;
  margin-bottom: 14px;
}
.editorial-heading {
  font-size: clamp(3.2rem, 4vw, 4.6rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 20px;
}
.editorial-body p {
  font-size: 1.8rem;
  line-height: 1.78;
  color: rgba(255,255,255,.82);
  margin-bottom: 14px;
}
.editorial-benefits {
  list-style: none;
  margin: 16px 0 28px;
  display: flex;
  flex-direction: column;
  gap: 13px;
}
.editorial-benefits li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 1.75rem;
  color: rgba(255,255,255,.90);
  line-height: 1.5;
}
.editorial-benefits li i { color: var(--yellow); font-size: 1.55rem; flex-shrink: 0; margin-top: 3px; }
.editorial-visual-wrap {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.editorial-visual {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: 0 24px 64px rgba(0,0,0,.55);
  background: url('images/editorial-epcot-wand.jpg') center/cover no-repeat;
}
.editorial-visual-text {
  font-size: 2.1rem;
  font-weight: 800;
  color: rgba(255,255,255,.95);
  line-height: 1.4;
  text-align: center;
}

/* ─── How It Works ──────────────────────────────────────── */
.how-section { background: var(--off-white); padding: 88px 40px; }
.how-inner { max-width: 1200px; margin: 0 auto; }
.how-header { text-align: center; margin-bottom: 56px; }
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }

.step-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 38px 30px 34px;
  text-align: center;
  box-shadow: var(--shadow-card);
  transition: transform var(--transition), box-shadow var(--transition);
}
.step-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-hover); }
.step-number {
  width: 66px; height: 66px;
  border-radius: 50%;
  background: var(--red);
  color: var(--white);
  font-size: 2.8rem; font-weight: 900;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 18px;
  box-shadow: 0 8px 24px rgba(204,0,0,.32);
}
.step-icon { font-size: 3.2rem; color: var(--red); margin-bottom: 14px; }
.step-title { font-size: 2.2rem; font-weight: 900; color: var(--text); margin-bottom: 10px; }
.step-desc  { font-size: 1.7rem; color: var(--text-mid); line-height: 1.68; }

/* ─── Events / Specials ─────────────────────────────────── */
.events-section { background: var(--light-blue); padding: 88px 40px; }  /* light yellow */
.events-inner { max-width: 1280px; margin: 0 auto; }
.events-header {
  display: flex; align-items: flex-end; justify-content: space-between;
  margin-bottom: 40px;
}
.events-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.event-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: transform var(--transition), box-shadow var(--transition);
  background: var(--white);
}
.event-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-hover); }
.event-card-img {
  height: 160px;
  display: flex; align-items: center; justify-content: center;
  font-size: 5rem; position: relative;
}
.event-card-body { padding: 22px; }
.event-card-title { font-size: 1.85rem; font-weight: 900; color: var(--text); line-height: 1.25; margin-bottom: 7px; }
.event-card-dates { font-size: 1.55rem; color: var(--red); font-weight: 700; margin-bottom: 8px; }
.event-card-desc  { font-size: 1.55rem; color: var(--text-mid); line-height: 1.62; }

.event-halloween  { background: linear-gradient(145deg, rgba(26,10,48,.55) 0%, rgba(74,14,143,.40) 50%, rgba(139,26,58,.35) 100%), url('images/event-halloween.jpg') center/cover no-repeat; }
.event-christmas  { background: linear-gradient(145deg, rgba(13,59,31,.50) 0%, rgba(27,107,58,.35) 50%, rgba(139,0,0,.30) 100%), url('images/event-christmas.jpg') center/cover no-repeat; }
.event-foodwine   { background: linear-gradient(145deg, rgba(91,26,0,.50) 0%, rgba(176,58,16,.35) 50%, rgba(212,134,10,.30) 100%), url('images/event-foodwine.jpg') center/cover no-repeat; }
.event-flower     { background: linear-gradient(145deg, rgba(13,59,13,.40) 0%, rgba(46,125,50,.30) 50%, rgba(174,214,57,.25) 100%), url('images/event-flower.jpg') center/cover no-repeat; }
.event-arts       { background: linear-gradient(145deg, #1A0A5E 0%, #3B1A9F 50%, #9B3A8A 100%); }
.event-holidays   { background: linear-gradient(145deg, #0D1F3A 0%, #1B3A6B 50%, #8B0000 100%); }
.event-oogie      { background: linear-gradient(145deg, #2A1A00 0%, #6B3A00 50%, #1A5E1A 100%); }
.event-afterhours { background: linear-gradient(145deg, #0A0A0A 0%, #1A1A1A 50%, #2D2D2D 100%); }
.event-intl       { background: linear-gradient(145deg, #1A0A0A 0%, #3A0000 50%, #CC0000 100%); }

/* ─── Stats Row ─────────────────────────────────────────── */
.stats-row { background: var(--black); padding: 56px 40px; }
.stats-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
}
.stat-item { text-align: center; }
.stat-number {
  font-size: 5.4rem; font-weight: 900;
  color: var(--yellow);
  display: block; line-height: 1; margin-bottom: 8px;
}
.stat-label {
  font-size: 1.6rem; font-weight: 700;
  letter-spacing: 0.09em; text-transform: uppercase;
  color: rgba(255,255,255,.75);
}

/* ─── Testimonials ──────────────────────────────────────── */
.testimonials-section { background: var(--white); padding: 88px 40px; }
.testimonials-inner { max-width: 1200px; margin: 0 auto; }
.testimonials-header { text-align: center; margin-bottom: 52px; }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.testimonial-card {
  background: var(--off-white);
  border-radius: var(--radius-lg); padding: 34px;
  transition: transform var(--transition), box-shadow var(--transition);
}
.testimonial-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.testimonial-stars { color: var(--red); font-size: 1.9rem; letter-spacing: 2px; margin-bottom: 14px; }
.testimonial-quote {
  font-size: 1.7rem; line-height: 1.75;
  color: var(--text); margin-bottom: 22px; font-style: italic;
}
.testimonial-quote::before { content: '\201C'; }
.testimonial-quote::after  { content: '\201D'; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar {
  width: 50px; height: 50px; border-radius: 50%;
  background: var(--red);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: var(--white); font-weight: 900; font-size: 1.9rem;
}
.testimonial-name { font-weight: 800; font-size: 1.75rem; color: var(--text); }
.testimonial-trip  { font-size: 1.55rem; color: var(--text-mid); }

/* ─── CTA Banner ────────────────────────────────────────── */
.cta-banner {
  background: linear-gradient(135deg, #1A0000 0%, #111111 55%, #2A0000 100%);
  padding: 88px 40px; text-align: center;
  position: relative; overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(255,230,0,.07) 1px, transparent 1px);
  background-size: 36px 36px;
  pointer-events: none;
}
.cta-banner-inner { position: relative; z-index: 1; max-width: 820px; margin: 0 auto; }
.cta-banner-eyebrow {
  font-size: 1.55rem; font-weight: 800; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--yellow); display: block; margin-bottom: 12px;
}
.cta-banner-title {
  font-size: clamp(3.2rem, 5vw, 5.6rem);
  font-weight: 900; color: var(--white); line-height: 1.12; margin-bottom: 16px;
}
.cta-banner-sub {
  font-size: 1.9rem; color: rgba(255,255,255,.82);
  line-height: 1.65; margin-bottom: 36px;
}
.cta-banner-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ─── Footer ────────────────────────────────────────────── */
.site-footer { background: #0A0A0A; padding: 64px 40px 40px; }
.footer-inner { max-width: 1280px; margin: 0 auto; }
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.10);
  margin-bottom: 32px;
}
.footer-brand-desc { font-size: 1.6rem; line-height: 1.72; color: rgba(255,255,255,.58); margin: 16px 0 24px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 42px; height: 42px; border-radius: 50%;
  background: rgba(255,255,255,.10);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.72); font-size: 1.65rem;
  transition: background var(--transition), color var(--transition);
}
.footer-social a:hover { background: var(--red); color: var(--white); }
.footer-contact { display: flex; flex-direction: column; gap: 9px; margin-top: 20px; }
.footer-contact a {
  display: inline-flex; align-items: center; gap: 9px;
  font-size: 1.6rem; font-weight: 700;
  color: rgba(255,255,255,.72);
  transition: color var(--transition);
}
.footer-contact a i { color: var(--yellow); width: 18px; text-align: center; }
.footer-contact a:hover { color: var(--white); }
.footer-col h4 {
  font-size: 1.55rem; font-weight: 800;
  letter-spacing: 0.13em; text-transform: uppercase;
  color: var(--yellow); margin-bottom: 16px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.footer-col ul li a { font-size: 1.6rem; color: rgba(255,255,255,.62); transition: color var(--transition); line-height: 1.5; }
.footer-col ul li a:hover { color: var(--white); }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.footer-copy { font-size: 1.5rem; color: rgba(255,255,255,.40); }
.footer-disclaimer { font-size: 1.4rem; color: rgba(255,255,255,.32); max-width: 500px; text-align: right; line-height: 1.55; }
.footer-photo-credits { font-size: 1.3rem; color: rgba(255,255,255,.28); text-align: center; line-height: 1.55; margin-top: 14px; }
.footer-photo-credits a { color: rgba(255,255,255,.45); text-decoration: underline; }
.footer-photo-credits a:hover { color: rgba(255,255,255,.7); }

/* ─── Form Styles ───────────────────────────────────────── */
.form-group { display: flex; flex-direction: column; gap: 7px; }
.form-group label { font-size: 1.7rem; font-weight: 700; color: var(--text); }
.form-group input,
.form-group select,
.form-group textarea {
  font-family: var(--font);
  font-size: 1.75rem;
  color: var(--text);
  background: var(--white);
  border: 2px solid #E0D090;
  border-radius: var(--radius-md);
  padding: 13px 17px;
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
  width: 100%;
  appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(204,0,0,.14);
}
.form-group textarea { resize: vertical; min-height: 130px; }

/* ─── Animations ────────────────────────────────────────── */
@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes sparkle {
  0%, 100% { opacity: 0; transform: scale(0.5); }
  50%       { opacity: 1; transform: scale(1); }
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-9px); }
}

/* ─── Page Hero (shared inner pages) ───────────────────── */
.page-hero {
  position: relative;
  padding: 100px 40px 80px;
  text-align: center;
  overflow: hidden;
  background: linear-gradient(135deg, #0D0D0D 0%, #1A0000 35%, #3A0000 65%, #CC0000 100%);
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(255,230,0,.08) 1px, transparent 1px);
  background-size: 36px 36px;
  pointer-events: none;
}
.page-hero-content { position: relative; z-index: 1; max-width: 900px; margin: 0 auto; }
.page-hero-eyebrow {
  font-size: 1.55rem; font-weight: 800; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--yellow); display: block; margin-bottom: 14px;
  animation: fadeSlideUp 0.8s ease 0.2s both;
}
.page-hero-title {
  font-size: clamp(4rem, 7vw, 7.2rem);
  font-weight: 900; color: var(--white); line-height: 1.08; margin-bottom: 20px;
  animation: fadeSlideUp 0.8s ease 0.4s both;
}
.page-hero-title em { color: var(--yellow); font-style: normal; }
.page-hero-sub {
  font-size: 2rem;
  color: rgba(255,255,255,.82); line-height: 1.65;
  max-width: 700px; margin: 0 auto 36px;
  animation: fadeSlideUp 0.8s ease 0.6s both;
}

/* ─── Utilities ─────────────────────────────────────────── */
.text-center { text-align: center; }
.text-red    { color: var(--red); }
.text-yellow { color: var(--yellow); }
.text-blue   { color: var(--red); }   /* alias for old references */
.mt-8  { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-32 { margin-top: 32px; }

/* ─── Responsive ────────────────────────────────────────── */
@media (max-width: 1100px) {
  .header-inner { padding: 0 32px; gap: 12px; }
  .primary-nav a { font-size: 1.6rem; padding: 6px 8px; }
  .destinations-grid { grid-template-columns: repeat(2, 1fr); }
  .events-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 820px) {
  html { font-size: 57%; }
  .primary-nav { display: none; }
  .header-plan-btn { display: none; }
  .nav-hamburger { display: flex; }
  .header-inner { padding: 0 24px; height: 60px; }
  .header-wordmark { font-size: 1.5rem; }
  .section-header { flex-direction: column; align-items: flex-start; gap: 8px; padding: 56px 24px 0; }
  .destinations-grid { grid-template-columns: 1fr; padding: 0 24px 60px; }
  .editorial-inner { grid-template-columns: 1fr; gap: 40px; }
  .editorial-visual { aspect-ratio: 16/9; }
  .steps-grid { grid-template-columns: 1fr; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr; }
  .events-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-disclaimer { text-align: center; max-width: 100%; }
  .cta-banner-btns { flex-direction: column; align-items: center; }
  .editorial-section, .how-section, .events-section,
  .testimonials-section, .cta-banner { padding: 64px 24px; }
  .stats-row { padding: 48px 24px; }
  .free-banner { padding: 15px 24px; }
  .construction-banner-inner { padding: 12px 24px; text-align: center; }
  .page-hero { padding: 80px 24px 60px; }
  .events-header { flex-direction: column; align-items: flex-start; gap: 8px; }
}
@media (max-width: 480px) {
  html { font-size: 53%; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .stat-number { font-size: 4.4rem; }
  .header-wordmark { font-size: 1.4rem; }
}
