/* =============================================================
   Chicago Helicopter Tour — chicagohelicopter.tours
   Design system: design-elegant + user palette/fonts
   Mobile-first, WCAG AA contrast, sharp corners, no emojis
   ============================================================= */

:root {
  /* Palette (user-supplied — Deep Navy / Sunset Orange / Soft Gold / Warm Grey / Text Dark) */
  --c-charcoal: #1A2A3A;          /* deep navy — primary dark surface */
  --c-charcoal-90: rgba(26, 42, 58, 0.92);
  --c-gold: #FFD27D;              /* soft gold accent (button bg, dark-section accent) */
  --c-gold-bright: #FFD27D;       /* same — soft gold reads bright on navy already */
  --c-gold-deep: #C49B4A;         /* deeper gold for stars / decorative on light bg */
  --c-beige: #E8E5E0;             /* warm grey alt sections */
  --c-orange: #FF7A3D;            /* sunset orange (CTA bg + dark-section accent) */
  --c-orange-deep: #D85820;       /* hover/darker orange */
  --c-orange-text: #C04F1A;       /* AA-safe rust for orange text on light bg (5.1:1 on white) */
  --c-white: #FFFFFF;
  --c-cream: #FFFDF7;             /* near-white text on dark */
  --c-cream-92: rgba(255, 253, 247, 0.92);
  --c-cream-78: rgba(255, 253, 247, 0.78);
  --c-cream-18: rgba(255, 253, 247, 0.18);

  /* Body text (must measure ≥4.5:1 on white — verified) */
  --c-body: #1C1C1C;              /* text dark — 17:1 on white */
  --c-muted: #5A5A5A;             /* 7.5:1 on white, 5.4:1 on warm grey */
  --c-border: #D8D3CB;
  --c-divider: rgba(26, 42, 58, 0.10);

  /* Typography */
  --font-heading: 'Sora', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-body: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Layout */
  --container: min(1240px, 100% - 2rem);
  --container-narrow: min(800px, 100% - 2rem);
  --section-py: clamp(3rem, 6vw, 5.5rem);

  /* Effects */
  --transition: all 0.18s cubic-bezier(0.455, 0.03, 0.515, 0.955);
  --shadow-card: 0 12px 28px -10px rgba(17, 17, 17, 0.18);
  --shadow-soft: 0 6px 18px -8px rgba(17, 17, 17, 0.12);
}

/* ---------- reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  color: var(--c-body);
  background: var(--c-white);
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--c-charcoal); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--c-gold-deep); }
a:focus-visible { outline: 2px solid var(--c-gold); outline-offset: 2px; }
button { font-family: inherit; cursor: pointer; }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--c-charcoal);
  font-weight: 700;
  line-height: 1.18;
  letter-spacing: -0.01em;
  margin: 0 0 0.6em;
}
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.65rem, 3.6vw, 2.4rem); }
h3 { font-size: clamp(1.2rem, 2.2vw, 1.45rem); }
p { margin: 0 0 1em; }
strong { font-weight: 600; color: inherit; }

ul, ol { margin: 0 0 1em; padding-left: 1.25rem; }
li { margin-bottom: 0.35em; }

@media (max-width: 640px) {
  body { font-size: 16px; }
}

/* scroll offset for sticky header */
section[id] { scroll-margin-top: 5rem; }
@media (min-width: 980px) {
  section[id] { scroll-margin-top: 7rem; }
}

/* shared section + container */
.section { padding: var(--section-py) 0; }
.section--alt { background: var(--c-beige); }
.section--dark { background: var(--c-charcoal); color: var(--c-cream); }
.container { width: var(--container); margin: 0 auto; }
.container--narrow { width: var(--container-narrow); margin: 0 auto; }

.section-head { text-align: center; max-width: 720px; margin: 0 auto 2.5rem; }
.section-head--prose { text-align: center; }
.section-head--prose p { text-align: left; margin: 0 auto 1rem; max-width: 640px; }
.section-head--prose p:last-of-type { margin-bottom: 0; }
.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-orange-text);
  margin-bottom: 0.85rem;
}
.section-head p { color: var(--c-muted); font-size: 1.05rem; margin-top: 0.4rem; }

/* dark-section overrides — every dark-bg class needs all three (eyebrow, h2/h3, .section-head p) */
.section--dark .eyebrow,
.gallery .eyebrow,
.cta-banner .eyebrow,
.site-footer .eyebrow { color: var(--c-gold-bright); }

.section--dark h1, .section--dark h2, .section--dark h3,
.gallery h2, .gallery h3,
.cta-banner h2, .cta-banner h3,
.site-footer h2, .site-footer h3 { color: var(--c-cream); }

.section--dark .section-head p,
.gallery .section-head p,
.cta-banner .section-head p { color: var(--c-cream-78); }

/* sr-only */
.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;
}

/* =============================================================
   BUTTONS
   ============================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.95rem 1.85rem;
  border-radius: 0;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.98rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  border: 2px solid transparent;
  transition: var(--transition);
  cursor: pointer;
  min-height: 52px;
  text-align: center;
  line-height: 1.2;
}
.btn--primary {
  background: var(--c-gold);
  color: var(--c-charcoal);
  border-color: var(--c-gold);
}
.btn--primary:hover {
  background: #E8B95E;
  color: var(--c-body);
  border-color: #E8B95E;
  transform: translateY(-2px);
}
.btn--secondary {
  background: transparent;
  color: var(--c-cream);
  border-color: var(--c-cream-92);
}
.btn--secondary:hover {
  background: var(--c-cream);
  color: var(--c-charcoal);
}
.btn--orange {
  background: var(--c-orange);
  color: var(--c-charcoal);
  border-color: var(--c-orange);
}
.btn--orange:hover {
  background: var(--c-orange-deep);
  color: var(--c-body);
  border-color: var(--c-orange-deep);
  transform: translateY(-2px);
}
.btn--lg { padding: 1.1rem 2.4rem; font-size: 1.05rem; }
.btn--block { display: flex; width: 100%; }

/* =============================================================
   HEADER
   ============================================================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(26, 42, 58, 0.96);
  backdrop-filter: saturate(180%) blur(8px);
  -webkit-backdrop-filter: saturate(180%) blur(8px);
  border-bottom: 1px solid rgba(255, 210, 125, 0.20);
}
.brand-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: var(--container);
  margin: 0 auto;
  padding: 0.85rem 0;
  gap: 1rem;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--c-cream);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: 0.01em;
}
.brand:hover { color: var(--c-gold-bright); }
.brand img, .brand svg { width: 32px; height: 32px; flex-shrink: 0; }

.primary-nav {
  display: flex;
  align-items: center;
  gap: 1.6rem;
}
.primary-nav a {
  color: var(--c-cream-92);
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.5rem 0;
  border-bottom: 1px solid transparent;
}
.primary-nav a:hover { color: var(--c-gold-bright); border-bottom-color: var(--c-gold-bright); }

/* CTA in nav — defensive override, same specificity as .primary-nav a */
.primary-nav .btn { color: var(--c-charcoal); padding: 0.6rem 1.25rem; min-height: 0; font-size: 0.85rem; }
.primary-nav .btn:hover { color: var(--c-body); background: #E8B95E; border-color: #E8B95E; border-bottom-color: #E8B95E; }

.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--c-cream-78);
  color: var(--c-cream);
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  padding: 0;
}
.nav-toggle__bars { display: block; width: 22px; height: 2px; background: var(--c-cream); position: relative; }
.nav-toggle__bars::before, .nav-toggle__bars::after {
  content: ''; display: block; width: 22px; height: 2px; background: var(--c-cream); position: absolute; left: 0;
}
.nav-toggle__bars::before { top: -7px; }
.nav-toggle__bars::after { top: 7px; }

@media (max-width: 980px) {
  .nav-toggle { display: inline-flex; }
  .primary-nav {
    display: none;
    position: absolute;
    top: 100%; left: 0; right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--c-charcoal);
    border-top: 1px solid rgba(201, 169, 110, 0.2);
    padding: 0.5rem 1rem 1.5rem;
  }
  .primary-nav.is-open { display: flex; }
  .primary-nav a { padding: 0.95rem 0.5rem; border-bottom: 1px solid rgba(201, 169, 110, 0.15); }
  .primary-nav a:last-child { border-bottom: none; }
  .primary-nav .btn { margin-top: 0.85rem; min-height: 52px; font-size: 0.95rem; }
}

/* =============================================================
   HERO (full-bleed image with overlay)
   ============================================================= */
.hero {
  position: relative;
  min-height: clamp(620px, 88vh, 880px);
  overflow: hidden;
  color: var(--c-cream);
  display: flex;
  align-items: stretch;
}
.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  z-index: 0;
}
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8,16,28,0.55) 0%, rgba(10,18,30,0.65) 35%, rgba(12,20,34,0.85) 100%);
  z-index: 1;
}
.hero-overlay {
  position: relative;
  z-index: 2;
  width: var(--container);
  margin: 0 auto;
  padding: 4.5rem 0 clamp(7rem, 13vw, 10rem);  /* extra bottom padding so pillars overlap doesn't clip CTAs */
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  max-width: 920px;
}
.hero .eyebrow { color: var(--c-gold-bright); margin-bottom: 1.1rem; }
.hero h1 { color: var(--c-cream); margin: 0 0 1.1rem; font-size: clamp(2.2rem, 5.5vw, 4rem); }
.hero strong { color: inherit; }
.hero-lede {
  font-size: clamp(1.05rem, 1.9vw, 1.25rem);
  line-height: 1.55;
  color: var(--c-cream-92);
  max-width: 780px;
  margin-bottom: 1.5rem;
}
.hero-rating {
  display: flex; flex-wrap: wrap; align-items: baseline; gap: 0.65rem;
  margin-bottom: 1.5rem;
  font-size: 0.98rem;
  color: var(--c-cream-92);
}
.hero-rating__stars { color: var(--c-gold-bright); letter-spacing: 0.08em; font-size: 1.15rem; }
.hero-rating__score { font-weight: 700; color: var(--c-cream); }

.hero-bullets {
  list-style: none;
  padding: 0;
  margin: 0 0 1.6rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.5rem;
  max-width: 720px;
}
.hero-bullets li {
  position: relative;
  padding-left: 1.4rem;
  font-size: 0.98rem;
  color: var(--c-cream-92);
  line-height: 1.5;
}
.hero-bullets li::before {
  content: '';
  position: absolute;
  left: 0; top: 0.6em;
  width: 8px; height: 2px;
  background: var(--c-gold-bright);
}
@media (min-width: 720px) {
  .hero-bullets { grid-template-columns: repeat(2, 1fr); gap: 0.55rem 1.5rem; }
}

.hero-pills {
  display: flex; flex-wrap: wrap; gap: 0.55rem;
  margin-bottom: 1.7rem;
}
.hero-pill {
  display: inline-flex;
  align-items: center;
  padding: 0.4rem 0.85rem;
  background: rgba(255, 253, 247, 0.10);
  border: 1px solid rgba(255, 253, 247, 0.22);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  color: var(--c-cream-92);
}
.hero-ctas {
  display: flex; flex-wrap: wrap; gap: 0.85rem;
}

@media (max-width: 720px) {
  .hero { min-height: 720px; align-items: flex-start; }
  /* padding-bottom must clear the -40px pillars overlap (mobile) + breathing room */
  .hero-overlay { padding-top: 2.5rem; padding-bottom: 5rem; justify-content: flex-start; }
  .hero-bg { object-position: center 35%; }
  .hero-ctas .btn { flex: 1 1 100%; }
}

/* =============================================================
   HERO PILLARS (clickable cards — overlap the hero's bottom edge)
   ============================================================= */
.pillars {
  background: var(--c-beige);
  padding: 0 0 var(--section-py);   /* no top padding — grid pulls itself up */
}
.pillars__grid {
  width: var(--container);
  margin: -40px auto 0;             /* negative margin-top creates the overlap */
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  box-shadow: 0 18px 40px -14px rgba(0, 0, 0, 0.45);  /* deeper shadow lifts cards off hero */
  position: relative;
  z-index: 5;
}
@media (min-width: 720px) {
  .pillars__grid { margin-top: -56px; }
}
@media (min-width: 1080px) {
  .pillars__grid { margin-top: -80px; }
}
@media (min-width: 720px) {
  .pillars__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1080px) {
  .pillars__grid { grid-template-columns: repeat(4, 1fr); }
}

.hero-pillar {
  display: block;
  padding: 2.2rem 1.85rem;
  background: var(--c-white);
  color: var(--c-charcoal);
  text-decoration: none;
  border-right: 1px solid var(--c-divider);
  transition: filter 0.18s ease, transform 0.18s ease, background 0.18s ease;
}
.hero-pillar:last-child { border-right: none; }
@media (max-width: 1079px) and (min-width: 720px) {
  .hero-pillar:nth-child(2n) { border-right: none; }
  .hero-pillar:nth-child(-n+2) { border-bottom: 1px solid var(--c-divider); }
}
@media (max-width: 719px) {
  .hero-pillar { border-right: none; border-bottom: 1px solid var(--c-divider); }
  .hero-pillar:last-child { border-bottom: none; }
}
.hero-pillar:hover { filter: brightness(1.04); transform: translateY(-2px); background: var(--c-cream); }
.hero-pillar:focus-visible { outline: 2px solid var(--c-gold); outline-offset: -3px; }

.hero-pillar--gold { background: var(--c-gold); color: var(--c-charcoal); }
.hero-pillar--gold:hover { background: var(--c-gold-deep); color: var(--c-white); filter: none; }
.hero-pillar--charcoal { background: var(--c-charcoal); color: var(--c-cream); }
.hero-pillar--charcoal:hover { background: #243648; color: var(--c-gold-bright); filter: none; }
.hero-pillar--orange { background: var(--c-orange); color: var(--c-charcoal); }
.hero-pillar--orange:hover { background: var(--c-orange-deep); color: var(--c-white); filter: none; }

.hero-pillar__eyebrow {
  font-family: var(--font-body);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 0.7rem;
  color: inherit;
  opacity: 0.78;
}
.hero-pillar__title {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  margin: 0 0 0.6rem;
  line-height: 1.25;
  color: inherit;
}
.hero-pillar__body {
  font-size: 0.96rem;
  line-height: 1.55;
  margin: 0;
  color: inherit;
  opacity: 0.92;
}

/* =============================================================
   INTRO SECTION (now carries 3 quick facts inline)
   ============================================================= */
.intro { background: var(--c-white); }
.intro__body { max-width: 720px; margin: 0 auto; }
.intro__body p { font-size: 1.05rem; line-height: 1.75; color: var(--c-body); margin-bottom: 1.1rem; }
.intro__body p:last-child { margin-bottom: 0; }

.intro__facts {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
  margin: 0 auto 2.25rem;
  max-width: 720px;
}
@media (min-width: 640px) {
  .intro__facts { grid-template-columns: repeat(3, 1fr); gap: 0.85rem; }
}
.intro__fact {
  padding: 1.1rem 1.15rem;
  background: var(--c-beige);
  border-left: 3px solid var(--c-gold);
  text-align: left;
}
.intro__fact-label {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-orange-text);
  margin: 0 0 0.4rem;
}
.intro__fact-value {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--c-charcoal);
  line-height: 1.3;
  margin: 0;
}
.intro__fact-sub {
  display: block;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.78rem;
  color: var(--c-muted);
  margin-top: 0.2rem;
  letter-spacing: 0.02em;
}

.intro__meta {
  margin-top: 1.5rem;
  padding: 0.85rem 1rem 0.85rem 1.15rem;
  border-left: 3px solid var(--c-gold);
  background: var(--c-beige);
  font-size: 0.95rem;
  color: var(--c-charcoal);
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 1rem;
  font-weight: 500;
}
.intro__meta .dot { color: var(--c-gold-deep); font-weight: 700; }

/* =============================================================
   TOUR HIGHLIGHTS (4 subsections)
   ============================================================= */
.highlights { background: var(--c-beige); }
.highlights__intro { max-width: 720px; margin: 0 auto 2.8rem; text-align: center; color: var(--c-muted); font-size: 1.05rem; }
.highlights__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 720px) { .highlights__grid { grid-template-columns: repeat(2, 1fr); } }
.highlight-card {
  background: var(--c-white);
  padding: 2rem 1.85rem;
  border-top: 3px solid var(--c-gold);
  box-shadow: var(--shadow-soft);
}
.highlight-card .eyebrow { color: var(--c-orange-text); margin-bottom: 0.7rem; }
.highlight-card h3 { color: var(--c-charcoal); margin-bottom: 0.7rem; font-size: 1.25rem; }
.highlight-card p { font-size: 0.97rem; line-height: 1.6; color: var(--c-body); margin: 0; }

/* =============================================================
   EXPERIENCE NARRATIVE
   ============================================================= */
.experience { background: var(--c-white); }
.experience__body { max-width: 740px; margin: 0 auto; }
.experience__body p { font-size: 1.04rem; line-height: 1.75; color: var(--c-body); margin-bottom: 1.15rem; }
.experience-best {
  margin-top: 2rem;
  padding: 1.6rem 1.8rem 1.7rem;
  background: var(--c-beige);
  border-left: 4px solid var(--c-orange);
  color: var(--c-charcoal);
}
.experience-best h3 {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--c-orange-text);
  margin: 0 0 0.85rem;
}
.experience-best ul { list-style: none; padding: 0; margin: 0; color: var(--c-charcoal); }
.experience-best li {
  position: relative;
  padding-left: 1.4rem;
  margin-bottom: 0.55rem;
  font-size: 1rem;
  color: var(--c-charcoal);
  line-height: 1.55;
}
.experience-best li::before {
  content: '';
  position: absolute;
  left: 0; top: 0.65em;
  width: 8px; height: 2px;
  background: var(--c-gold-deep);
}

/* =============================================================
   GALLERY (horizontal-scroll strip — flex carousel)
   ============================================================= */
.gallery { background: var(--c-charcoal); color: var(--c-cream); }

/* wrapper holds the strip + edge fades + arrow buttons */
.gallery__wrapper {
  position: relative;
}

.gallery__strip {
  display: flex;
  flex-wrap: nowrap;
  gap: 0.85rem;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 1rem;
  padding-left: max(1rem, calc((100vw - 1240px) / 2));
  padding-right: max(1rem, calc((100vw - 1240px) / 2));

  /* visible-but-subtle scrollbar — gives a scroll affordance */
  scrollbar-width: thin;
  scrollbar-color: var(--c-gold) rgba(255, 253, 247, 0.08);
}
.gallery__strip::-webkit-scrollbar { height: 8px; }
.gallery__strip::-webkit-scrollbar-track { background: rgba(255, 253, 247, 0.08); }
.gallery__strip::-webkit-scrollbar-thumb { background: var(--c-gold); border-radius: 0; }
.gallery__strip::-webkit-scrollbar-thumb:hover { background: #E8B95E; }

/* right-edge fade — visual hint that more content exists off-screen */
.gallery__wrapper::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 1rem;
  width: 80px;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(26, 42, 58, 0) 0%, var(--c-charcoal) 100%);
  z-index: 2;
}

.gallery__item {
  flex: 0 0 78vw;            /* don't grow, don't shrink, fixed basis */
  aspect-ratio: 3 / 2;
  overflow: hidden;
  background: #000;
  scroll-snap-align: start;
}
@media (min-width: 720px) {
  .gallery__item { flex-basis: 46vw; }
}
@media (min-width: 1080px) {
  .gallery__item { flex-basis: 30vw; max-width: 480px; }
}
.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.32s ease;
}
.gallery__item:hover img { transform: scale(1.04); }

/* arrow buttons — desktop only (touch users get native swipe) */
.gallery__arrow {
  display: none;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  background: var(--c-gold);
  color: var(--c-charcoal);
  border: none;
  cursor: pointer;
  z-index: 3;
  font-size: 1.4rem;
  font-weight: 700;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.35);
}
.gallery__arrow:hover { background: #E8B95E; transform: translateY(-50%) scale(1.05); }
.gallery__arrow:focus-visible { outline: 2px solid var(--c-cream); outline-offset: 2px; }
.gallery__arrow--prev { left: 1rem; }
.gallery__arrow--next { right: 1rem; }
@media (min-width: 1080px) {
  .gallery__arrow { display: inline-flex; }
}

/* =============================================================
   ITINERARY (5 numbered steps)
   ============================================================= */
.itinerary { background: var(--c-white); }
.itinerary__list {
  list-style: none;
  padding: 0;
  margin: 0;
  max-width: 800px;
  margin: 0 auto;
  counter-reset: step;
}
.itinerary__step {
  position: relative;
  padding: 1.3rem 0 1.5rem 4.5rem;
  border-bottom: 1px solid var(--c-divider);
  counter-increment: step;
}
.itinerary__step:last-child { border-bottom: none; }
.itinerary__step::before {
  content: counter(step);
  position: absolute;
  left: 0; top: 1.25rem;
  width: 3rem;
  height: 3rem;
  background: var(--c-charcoal);
  color: var(--c-gold-bright);
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}
.itinerary__step h3 { color: var(--c-charcoal); margin: 0 0 0.4rem; font-size: 1.2rem; }
.itinerary__step p { margin: 0; color: var(--c-body); font-size: 0.99rem; line-height: 1.6; }

/* =============================================================
   WHAT'S INCLUDED (2-col)
   ============================================================= */
.included { background: var(--c-beige); }
.included__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 900px;
  margin: 0 auto;
}
@media (min-width: 720px) { .included__grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; } }
.included__col h3 {
  font-size: 1.05rem;
  font-family: var(--font-body);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin: 0 0 1.1rem;
  padding-bottom: 0.6rem;
  border-bottom: 2px solid var(--c-charcoal);
  color: var(--c-charcoal);
}
.included__col--no h3 { border-bottom-color: var(--c-orange); color: var(--c-orange-text); }
.included__col ul { list-style: none; padding: 0; margin: 0; }
.included__col li {
  position: relative;
  padding: 0.55rem 0 0.55rem 1.6rem;
  font-size: 0.98rem;
  color: var(--c-body);
  border-bottom: 1px dashed var(--c-divider);
  line-height: 1.5;
}
.included__col li:last-child { border-bottom: none; }
.included__col--yes li::before {
  content: '';
  position: absolute;
  left: 0; top: 1.05em;
  width: 10px; height: 2px;
  background: var(--c-gold-deep);
}
.included__col--no li::before {
  content: '';
  position: absolute;
  left: 0; top: 0.95em;
  width: 10px; height: 10px;
  border: 2px solid var(--c-orange);
}

/* =============================================================
   WHY CHOOSE THIS TOUR (4 cards)
   ============================================================= */
.why-choose { background: var(--c-charcoal); color: var(--c-cream); }
.why-choose__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.4rem;
}
@media (min-width: 720px) { .why-choose__grid { grid-template-columns: repeat(2, 1fr); } }
.why-card {
  padding: 1.85rem 1.6rem;
  background: rgba(255, 253, 247, 0.05);
  border: 1px solid rgba(201, 169, 110, 0.25);
}
.why-card .eyebrow { color: var(--c-gold-bright); margin-bottom: 0.7rem; }
.why-card h3 { color: var(--c-cream); margin: 0 0 0.6rem; font-size: 1.2rem; }
.why-card p { color: var(--c-cream-92); font-size: 0.98rem; line-height: 1.55; margin: 0; }

/* =============================================================
   REVIEWS (3 cards)
   ============================================================= */
.reviews { background: var(--c-white); }
.reviews__source {
  text-align: center;
  font-size: 0.86rem;
  color: var(--c-muted);
  margin: -1.5rem auto 2.5rem;
  font-style: italic;
}
.reviews__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 720px) { .reviews__grid { grid-template-columns: repeat(3, 1fr); } }
.review-card {
  background: var(--c-beige);
  padding: 1.85rem 1.7rem;
  border-top: 3px solid var(--c-gold);
  display: flex;
  flex-direction: column;
}
.review-card__stars { color: var(--c-gold-deep); letter-spacing: 0.08em; font-size: 1.1rem; margin-bottom: 0.85rem; }
.review-card blockquote {
  margin: 0 0 1rem;
  font-style: italic;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--c-body);
  flex: 1;
}
.review-card__translation {
  display: block;
  margin-top: 0.6rem;
  font-style: normal;
  font-size: 0.92rem;
  color: var(--c-muted);
  border-left: 2px solid var(--c-gold);
  padding-left: 0.7rem;
}
.review-card__attr {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--c-charcoal);
  letter-spacing: 0.02em;
}
.review-card__attr-sub { font-weight: 400; color: var(--c-muted); display: block; font-size: 0.82rem; margin-top: 0.15rem; }

/* =============================================================
   PRACTICAL INFO (6 subsections)
   ============================================================= */
.practical { background: var(--c-beige); }
.practical__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem 2rem;
  max-width: 980px;
  margin: 0 auto;
}
@media (min-width: 720px) { .practical__grid { grid-template-columns: repeat(2, 1fr); } }
.practical-item {
  padding: 1.4rem 1.5rem;
  background: var(--c-white);
  border-left: 3px solid var(--c-gold);
}
.practical-item h3 {
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--c-orange-text);
  margin: 0 0 0.55rem;
}
.practical-item p { margin: 0; color: var(--c-body); font-size: 0.98rem; line-height: 1.6; }

/* =============================================================
   FAQ (accordion)
   ============================================================= */
.faq { background: var(--c-white); }
.faq__list { max-width: 820px; margin: 0 auto; }
.faq__item {
  border-bottom: 1px solid var(--c-divider);
  padding: 0;
}
.faq__item summary {
  list-style: none;
  cursor: pointer;
  padding: 1.4rem 2.5rem 1.4rem 0;
  position: relative;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--c-charcoal);
  line-height: 1.35;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: '+';
  position: absolute;
  right: 0; top: 50%;
  transform: translateY(-50%);
  width: 28px; height: 28px;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 1.5rem;
  color: var(--c-gold-deep);
  transition: transform 0.2s ease;
}
.faq__item[open] summary::after { content: '−'; }
.faq__item summary:hover { color: var(--c-gold-deep); }
.faq__answer {
  padding: 0 0 1.4rem;
  color: var(--c-body);
  font-size: 1rem;
  line-height: 1.7;
}
.faq__answer p:last-child { margin-bottom: 0; }

/* =============================================================
   FINAL CTA
   ============================================================= */
.cta-banner {
  background: linear-gradient(160deg, var(--c-charcoal) 0%, #0e1a26 100%);
  color: var(--c-cream);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('../img/chicago-helicopter-tour-skyline-hero-800.webp');
  background-size: cover;
  background-position: center;
  opacity: 0.18;
  z-index: 0;
}
.cta-banner > .container { position: relative; z-index: 1; }
.cta-banner h2 { font-size: clamp(1.8rem, 4vw, 2.6rem); margin-bottom: 1rem; max-width: 760px; margin-left: auto; margin-right: auto; }
.cta-banner__lede { color: var(--c-cream-92); font-size: 1.08rem; max-width: 660px; margin: 0 auto 2rem; line-height: 1.6; }
.cta-banner__widget {
  max-width: 720px;
  margin: 0 auto;
}
.cta-banner__disclosure {
  margin-top: 1.6rem;
  font-size: 0.82rem;
  color: var(--c-cream-78);
  font-style: italic;
}

/* =============================================================
   FOOTER (full-bleed dark)
   ============================================================= */
.site-footer {
  background: var(--c-charcoal);
  color: var(--c-cream-92);
  padding: clamp(2.5rem, 5vw, 4rem) 0 1.75rem;
}
.footer-grid {
  width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  padding-bottom: 2.2rem;
}
@media (min-width: 720px) {
  .footer-grid { grid-template-columns: 1.6fr 1fr 1fr; gap: clamp(2rem, 4vw, 3.5rem); }
}
.footer-brand { display: flex; flex-direction: column; gap: 0.85rem; }
.footer-brand .brand { font-size: 1.25rem; }
.footer-brand p { color: var(--c-cream-78); font-size: 0.93rem; line-height: 1.6; max-width: 360px; margin: 0; }

.footer-col h3 {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--c-gold-bright);
  margin: 0 0 1rem;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li { margin-bottom: 0.55rem; }
.footer-col a {
  color: var(--c-cream-92);
  font-size: 0.94rem;
  border-bottom: 1px solid transparent;
  transition: var(--transition);
}
.footer-col a:hover { color: var(--c-cream); border-bottom-color: var(--c-gold-bright); }

.footer-bottom {
  width: var(--container);
  margin: 0 auto;
  padding-top: 1.5rem;
  border-top: 1px solid var(--c-cream-18);
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  font-size: 0.85rem;
  color: var(--c-cream-78);
  line-height: 1.55;
}
.footer-bottom p { margin: 0; }

/* =============================================================
   UTILITY
   ============================================================= */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
