/* ============================================================
   Grand Canyon Express — Main Stylesheet
   Palette: Forest Green · Canyon Red · Parchment · Track Gold
   Fonts: Big Shoulders Display (headings) · Lato (body)
   Aesthetic: Vintage railway poster meets national park heritage
   ============================================================ */

/* ── CSS Variables ────────────────────────────────────────── */
:root {
  --green:        #1B3D2F;
  --green-mid:    #2D6147;
  --green-light:  #3E7F5C;
  --red:          #8C2020;
  --red-light:    #B03030;
  --parchment:    #F5EDD8;
  --parchment-dk: #E8D9B8;
  --gold:         #C8960A;
  --gold-light:   #E5B520;
  --smoke:        #5A5248;
  --dark:         #1A1510;
  --text:         #2A221A;
  --text-muted:   #7A6E60;
  --border:       #D8CAAA;
  --white:        #FDFAF3;

  --font-display: 'Big Shoulders Display', 'Arial Narrow', sans-serif;
  --font-body:    'Lato', 'Helvetica Neue', sans-serif;

  --radius:    8px;
  --radius-lg: 14px;
  --shadow:    0 4px 20px rgba(26,21,16,.12);
  --shadow-lg: 0 12px 44px rgba(26,21,16,.20);
  --transition: all .25s ease;
}

/* ── Reset & Base ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
}

h1,h2,h3,h4,h5,h6 {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--dark);
  line-height: 1.1;
  letter-spacing: .5px;
  text-transform: uppercase;
}

a { color: var(--green-mid); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--green); }

img { max-width: 100%; height: auto; }

.bg-parchment { background: var(--parchment) !important; }
.bg-green      { background: var(--green) !important; }

/* ── Vintage Texture Utility ──────────────────────────────── */
.texture-overlay {
  position: relative;
}
.texture-overlay::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='4' height='4'%3E%3Crect width='1' height='1' fill='%23000' opacity='.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 1;
}

/* ── Buttons ──────────────────────────────────────────────── */
.btn-primary {
  background: var(--green);
  border-color: var(--green);
  color: #fff;
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: var(--radius);
  padding: .6rem 1.6rem;
  transition: var(--transition);
}
.btn-primary:hover, .btn-primary:focus {
  background: var(--green-mid);
  border-color: var(--green-mid);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(27,61,47,.35);
}
.btn-outline-primary {
  border: 2px solid var(--green);
  color: var(--green);
  font-family: var(--font-display);
  font-size: .95rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: var(--radius);
  padding: .55rem 1.4rem;
}
.btn-outline-primary:hover {
  background: var(--green);
  border-color: var(--green);
  color: #fff;
}
.btn-gold {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--dark);
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: var(--radius);
  padding: .6rem 1.6rem;
  font-weight: 700;
  transition: var(--transition);
}
.btn-gold:hover { background: var(--gold-light); border-color: var(--gold-light); color: var(--dark); transform: translateY(-1px); }
.btn-outline-light { border-width: 2px; font-family: var(--font-display); letter-spacing: 1px; text-transform: uppercase; }
.btn-sale {
  background: var(--red);
  border-color: var(--red);
  color: #fff;
  font-family: var(--font-display);
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: var(--radius);
}
.btn-sale:hover { background: var(--red-light); border-color: var(--red-light); color: #fff; }
.btn-xs { font-size: .78rem; padding: .2rem .55rem; border-radius: 5px; }

/* ── Topbar ───────────────────────────────────────────────── */
.topbar {
  background: var(--dark);
  color: #a09080;
  font-size: .8rem;
  padding: .4rem 0;
  border-bottom: 2px solid var(--green);
}
.topbar a { color: #a09080; }
.topbar a:hover { color: var(--gold-light); }

/* ── Navigation ───────────────────────────────────────────── */
.main-nav {
  background: var(--parchment);
  border-bottom: 3px solid var(--green);
  padding: .6rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 3px 16px rgba(26,21,16,.10);
}

.navbar-brand {
  display: flex;
  flex-direction: column;
  line-height: 1;
  gap: 1px;
}
.brand-line1 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 900;
  color: var(--green);
  text-transform: uppercase;
  letter-spacing: 2px;
  line-height: 1;
}
.brand-line2 {
  font-family: var(--font-display);
  font-size: .85rem;
  font-weight: 700;
  color: var(--red);
  text-transform: uppercase;
  letter-spacing: 3px;
  line-height: 1;
}
/* keep legacy class names working */
.brand-canyon { font-family: var(--font-display); font-size: 1.35rem; font-weight: 900; color: var(--green); text-transform: uppercase; letter-spacing: 2px; }
.brand-tours  { font-family: var(--font-display); font-size: 1rem; font-weight: 700; color: var(--red); text-transform: uppercase; letter-spacing: 3px; }
.brand-sub    { font-size: .65rem; letter-spacing: 3px; color: var(--text-muted); text-transform: uppercase; font-family: var(--font-body); }

.main-nav .nav-link {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .95rem;
  letter-spacing: .8px;
  text-transform: uppercase;
  color: var(--smoke);
  padding: .45rem .85rem;
  border-radius: 5px;
  transition: var(--transition);
}
.main-nav .nav-link:hover, .main-nav .nav-link.active {
  color: var(--green);
  background: rgba(27,61,47,.08);
}
.train-link { color: var(--red) !important; }
.sale-link  { color: var(--red) !important; font-weight: 900 !important; }

/* Mega Menu */
.megamenu {
  min-width: 540px;
  padding: 1.5rem;
  border: 2px solid var(--border);
  border-top: 3px solid var(--green);
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  box-shadow: var(--shadow-lg);
  background: var(--white);
  top: calc(100% + 4px) !important;
}
.megamenu-inner { display: flex; gap: 2rem; }
.megamenu-col   { flex: 1; }
.megamenu-heading {
  font-family: var(--font-display);
  font-size: .72rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--green);
  margin-bottom: .65rem;
  padding-bottom: .4rem;
  border-bottom: 1px solid var(--border);
}
.megamenu-heading.red { color: var(--red); border-color: var(--red); }
.megamenu-col a { display: block; font-size: .88rem; padding: .3rem 0; color: var(--smoke); font-family: var(--font-body); }
.megamenu-col a em { font-size: .77rem; color: var(--text-muted); font-style: normal; display: block; }
.megamenu-col a:hover { color: var(--green); }
.megamenu-all { color: var(--green) !important; font-weight: 700 !important; margin-top: .5rem !important; }

.nav-phone { font-family: var(--font-display); font-size: .9rem; font-weight: 700; color: var(--smoke); text-transform: uppercase; letter-spacing: .5px; }
.nav-phone:hover { color: var(--green); }

.nav-cart-btn {
  position: relative;
  display: flex;
  align-items: center;
  font-size: 1.2rem;
  color: var(--green);
  background: rgba(27,61,47,.1);
  width: 38px;
  height: 38px;
  border-radius: 50%;
  justify-content: center;
  transition: var(--transition);
}
.nav-cart-btn:hover { background: var(--green); color: #fff; }
.cart-badge {
  position: absolute;
  top: -4px; right: -4px;
  background: var(--red);
  color: #fff;
  font-size: .62rem;
  font-weight: 700;
  min-width: 16px;
  height: 16px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 3px;
}
.cart-badge:empty { display: none; }
/* ── Hero ─────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: url('../img/hero-canyon.jpg') center/cover no-repeat;
  background-attachment: fixed;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(26,21,16,.80) 0%,
    rgba(27,61,47,.50) 45%,
    rgba(26,21,16,.70) 100%
  );
}
/* Vintage poster border effect on hero */
.hero::after {
  content: '';
  position: absolute;
  inset: 16px;
  border: 2px solid rgba(200,150,10,.3);
  pointer-events: none;
  z-index: 3;
}
.hero-content {
  position: relative;
  z-index: 4;
  text-align: center;
  color: #fff;
  padding: 4rem 1rem;
}
.hero-badge {
  display: inline-block;
  background: var(--red);
  color: #fff;
  font-family: var(--font-display);
  font-size: .75rem;
  font-weight: 900;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: .35rem 1.1rem;
  border-radius: 3px;
  margin-bottom: 1.25rem;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 900;
  color: #fff;
  line-height: 1;
  margin-bottom: .75rem;
  text-shadow: 0 3px 30px rgba(0,0,0,.5);
  text-transform: uppercase;
  letter-spacing: 2px;
}
.hero-title em { color: var(--gold-light); font-style: normal; display: block; font-size: .7em; letter-spacing: 4px; }
.hero-sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,.85);
  max-width: 580px;
  margin: 0 auto 2rem;
  font-family: var(--font-body);
}
.hero-trust { color: rgba(255,255,255,.7); font-size: .86rem; flex-wrap: wrap; }
.hero-trust i { color: var(--gold-light); margin-right: .3rem; }

/* ── Train Schedule Strip ─────────────────────────────────── */
.train-strip {
  background: var(--green);
  color: rgba(255,255,255,.9);
  padding: .9rem 0;
  border-bottom: 3px solid var(--gold);
}
.train-strip-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  flex-wrap: wrap;
  font-size: .88rem;
}
.train-strip-label {
  font-family: var(--font-display);
  font-size: .85rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--gold-light);
  display: flex;
  align-items: center;
  gap: .5rem;
}
.train-strip-item { display: flex; align-items: center; gap: .4rem; }
.train-strip-item i { color: var(--gold-light); }
.train-strip a { color: rgba(255,255,255,.7); text-decoration: underline; }
.train-strip a:hover { color: var(--gold-light); }

/* ── Section Styles ───────────────────────────────────────── */
.section-tag {
  font-family: var(--font-display);
  font-size: .75rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--green-mid);
  margin-bottom: .4rem;
}
.section-tag.red { color: var(--red); }
.section-tag.gold { color: var(--gold); }
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: .5rem;
  letter-spacing: 1px;
}
.section-sub { color: var(--text-muted); max-width: 580px; margin: 0 auto; font-family: var(--font-body); }

/* Vintage ruled divider */
.ruled-divider {
  display: flex;
  align-items: center;
  gap: .75rem;
  margin: .75rem 0;
  color: var(--border);
}
.ruled-divider::before, .ruled-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}
.ruled-divider span { font-size: .8rem; color: var(--text-muted); white-space: nowrap; }

/* ── Tour Cards ───────────────────────────────────────────── */
.tour-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1.5px solid var(--border);
  overflow: hidden;
  transition: var(--transition);
  height: 100%;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow);
}
.tour-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--green-light);
}
.tour-card-img {
  height: 210px;
  background: var(--parchment) center/cover no-repeat;
  position: relative;
  overflow: hidden;
  transition: transform .4s ease;
}
.tour-card:hover .tour-card-img { transform: scale(1.05); }

/* Train card special styling */
.tour-card.is-train { border-color: var(--gold); }
.tour-card.is-train .tour-card-img::after {
  content: '🚂 Railway';
  position: absolute;
  top: .65rem; right: .65rem;
  background: var(--green);
  color: #fff;
  font-family: var(--font-display);
  font-size: .68rem;
  font-weight: 900;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: .2rem .55rem;
  border-radius: 3px;
}

.tour-badge-sale {
  position: absolute;
  top: .7rem; left: .7rem;
  background: var(--red);
  color: #fff;
  font-family: var(--font-display);
  font-size: .7rem;
  font-weight: 900;
  padding: .2rem .55rem;
  border-radius: 3px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.tour-badge-lg { font-size: .85rem; padding: .3rem .8rem; }
.tour-badge-pickup {
  position: absolute;
  bottom: .7rem; left: .7rem;
  background: rgba(26,21,16,.72);
  color: #fff;
  font-size: .7rem;
  padding: .2rem .5rem;
  border-radius: 3px;
  backdrop-filter: blur(4px);
}

.tour-card-body { padding: 1.1rem; flex: 1; display: flex; flex-direction: column; }
.tour-card-title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .5px;
  margin-bottom: .35rem;
  line-height: 1.2;
}
.tour-card-title a { color: var(--dark); }
.tour-card-title a:hover { color: var(--green); }
.tour-card-desc { font-size: .86rem; color: var(--text-muted); margin-bottom: .35rem; }
.tour-meta { font-size: .82rem; color: var(--text-muted); }
.tour-meta i { color: var(--green-mid); margin-right: .25rem; }
.tour-price { font-family: var(--font-display); font-weight: 900; color: var(--green); font-size: 1.1rem; letter-spacing: .5px; }
.price-original { text-decoration: line-through; color: var(--text-muted); font-weight: 400; font-size: .9em; font-family: var(--font-body); }
.price-sale { color: var(--red); }

/* ── Train Classes Section ────────────────────────────────── */
.train-classes-section { background: var(--green); }
.train-class-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  transition: var(--transition);
  height: 100%;
}
.train-class-card:hover {
  background: rgba(255,255,255,.12);
  border-color: var(--gold-light);
  transform: translateY(-3px);
}
.train-class-icon { font-size: 2.2rem; margin-bottom: .75rem; }
.train-class-name {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--gold-light);
  margin-bottom: .5rem;
}
.train-class-price { font-family: var(--font-display); font-size: 1.3rem; color: #fff; font-weight: 900; }
.train-class-desc { font-size: .84rem; color: rgba(255,255,255,.65); margin: .5rem 0 1rem; }
.train-class-card .btn-gold { width: 100%; text-align: center; }

/* ── Reviews ──────────────────────────────────────────────── */
.reviews-carousel { display: flex; gap: 1.25rem; overflow-x: auto; scroll-snap-type: x mandatory; padding-bottom: 1rem; -webkit-overflow-scrolling: touch; }
.reviews-carousel::-webkit-scrollbar { height: 6px; }
.reviews-carousel::-webkit-scrollbar-track { background: var(--parchment-dk); border-radius: 3px; }
.reviews-carousel::-webkit-scrollbar-thumb { background: var(--green-light); border-radius: 3px; }
.review-card { flex: 0 0 min(340px, 80vw); scroll-snap-align: start; background: #fff; border: 1.5px solid var(--border); border-top: 3px solid var(--green); border-radius: var(--radius-lg); padding: 1.5rem; box-shadow: var(--shadow); }
.review-stars { color: var(--gold); font-size: 1.1rem; margin-bottom: .6rem; }
.review-body { font-size: .9rem; color: var(--text); font-style: italic; margin-bottom: .75rem; }
.review-author { font-family: var(--font-display); font-weight: 700; font-size: .85rem; color: var(--green); text-transform: uppercase; letter-spacing: .5px; }

.review-card-full { background: #fff; border: 1.5px solid var(--border); border-top: 3px solid var(--green); border-radius: var(--radius-lg); padding: 1.5rem; height: 100%; }
.review-stars-full { color: var(--gold); font-size: 1.1rem; margin-bottom: .75rem; }
.review-body-full { font-size: .92rem; font-style: italic; margin-bottom: 1rem; }
.review-author-full { font-family: var(--font-display); font-weight: 900; color: var(--green); text-transform: uppercase; letter-spacing: .5px; }

/* ── Destinations Grid ────────────────────────────────────── */
.destinations-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(230px, 1fr)); gap: 1rem; }
.dest-card { position: relative; border-radius: var(--radius-lg); overflow: hidden; height: 290px; display: block; border: 2px solid var(--border); transition: var(--transition); }
.dest-card:hover { border-color: var(--gold); transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.dest-card-img { position: absolute; inset: 0; background: var(--parchment) center/cover no-repeat; transition: transform .4s ease; }
.dest-card:hover .dest-card-img { transform: scale(1.05); }
.dest-card::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(26,21,16,.85) 0%, rgba(26,21,16,.1) 55%); }
.dest-card-body { position: absolute; bottom: 0; left: 0; right: 0; padding: 1.25rem; z-index: 1; }
.dest-tagline { display: block; font-family: var(--font-display); font-size: .68rem; text-transform: uppercase; letter-spacing: 2px; color: var(--gold-light); margin-bottom: .2rem; }
.dest-card-body h3 { font-family: var(--font-display); color: #fff; font-size: 1.2rem; text-transform: uppercase; letter-spacing: 1px; margin-bottom: .25rem; }
.dest-cta { font-size: .8rem; color: rgba(255,255,255,.65); }

/* Dest section page */
.dest-section-img { height: 360px; border-radius: var(--radius-lg); background: var(--parchment) center/cover no-repeat; position: relative; overflow: hidden; }
.dest-section-label { position: absolute; bottom: 0; left: 0; right: 0; padding: 1.5rem; background: linear-gradient(to top, rgba(26,21,16,.88), transparent); color: #fff; }
.dest-section-label h2 { color: #fff; margin: 0; }

/* ── Tour Types Grid ─────────────────────────────────────── */
.types-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(170px, 1fr)); gap: 1rem; }
.type-card { display: flex; flex-direction: column; align-items: center; gap: .5rem; padding: 1.5rem 1rem; background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.14); border-radius: var(--radius-lg); color: rgba(255,255,255,.8); font-family: var(--font-display); font-size: .9rem; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; transition: var(--transition); text-align: center; }
.type-card:hover { background: rgba(200,150,10,.2); border-color: var(--gold-light); color: #fff; transform: translateY(-3px); }
.type-icon { font-size: 2.2rem; }
.type-card.type-train { border-color: var(--gold-light); background: rgba(200,150,10,.1); }
.type-card.type-train:hover { background: rgba(200,150,10,.25); }

/* ── Tour Styles Grid ─────────────────────────────────────── */
.styles-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: .75rem; }
.style-card { display: flex; flex-direction: column; align-items: center; gap: .4rem; padding: 1.2rem .75rem; background: var(--white); border: 1.5px solid var(--border); border-radius: var(--radius-lg); color: var(--smoke); font-family: var(--font-display); font-size: .88rem; font-weight: 700; text-transform: uppercase; letter-spacing: .5px; text-align: center; transition: var(--transition); }
.style-card:hover { border-color: var(--green); color: var(--green); transform: translateY(-2px); box-shadow: var(--shadow); }
.style-icon { font-size: 1.8rem; }

/* ── CTA Strip ────────────────────────────────────────────── */
.cta-strip {
  background: var(--red);
  padding: 4rem 1rem;
  color: #fff;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-strip::before {
  content: '— GRAND CANYON EXPRESS — WILLIAMS, AZ — EST. 1901 — GRAND CANYON SOUTH RIM —';
  position: absolute;
  bottom: .75rem;
  left: 0; right: 0;
  font-family: var(--font-display);
  font-size: .6rem;
  letter-spacing: 5px;
  color: rgba(255,255,255,.25);
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.cta-strip h2 { font-family: var(--font-display); color: #fff; font-size: clamp(1.8rem, 4vw, 2.8rem); text-transform: uppercase; letter-spacing: 2px; margin-bottom: .75rem; }
.cta-strip p { color: rgba(255,255,255,.8); margin-bottom: 1.5rem; }

/* ── Page Hero (small) ────────────────────────────────────── */
.page-hero-sm { background: linear-gradient(135deg, var(--green) 0%, var(--green-mid) 100%); padding: 2.5rem 0; color: #fff; border-bottom: 3px solid var(--gold); }
.page-hero-title { font-family: var(--font-display); color: #fff; font-size: clamp(1.75rem, 4vw, 2.8rem); text-transform: uppercase; letter-spacing: 2px; margin-bottom: .35rem; }
.page-hero-sm p { color: rgba(255,255,255,.75); margin: 0; }
.breadcrumb-item a { color: rgba(255,255,255,.65); }
.breadcrumb-item.active { color: rgba(255,255,255,.9); }
.breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,.35); }

/* ── Tour Detail ──────────────────────────────────────────── */
.tour-detail-img { height: 440px; border-radius: var(--radius-lg); background: var(--parchment) center/cover no-repeat; position: relative; overflow: hidden; }
.tour-thumbs { }
.tour-thumb { width: 80px; height: 60px; border-radius: 6px; background: var(--parchment) center/cover no-repeat; cursor: pointer; border: 2px solid transparent; transition: var(--transition); }
.tour-thumb:hover { border-color: var(--green); }
.tour-detail-title { font-family: var(--font-display); font-size: clamp(1.5rem, 3.5vw, 2.2rem); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 1rem; }
.tour-detail-meta { color: var(--text-muted); font-size: .88rem; }
.tour-detail-meta span { display: flex; align-items: center; gap: .35rem; }
.tour-detail-meta i { color: var(--green-mid); }
.tour-lead { font-size: 1.05rem; font-weight: 500; border-left: 3px solid var(--green); padding-left: 1rem; }
.tour-body { font-size: .95rem; line-height: 1.8; }

.includes-box, .excludes-box { background: var(--parchment); border-radius: var(--radius); padding: 1rem 1.25rem; border-left: 3px solid var(--green); }
.excludes-box { border-left-color: var(--red); }
.includes-box h5, .excludes-box h5 { font-family: var(--font-display); font-size: .9rem; margin-bottom: .5rem; text-transform: uppercase; letter-spacing: .5px; }
.includes-box ul, .excludes-box ul { padding-left: 1.25rem; margin: 0; font-size: .88rem; }
.includes-box li, .excludes-box li { margin-bottom: .25rem; }

/* Booking Widget */
.booking-widget { background: #fff; border: 2px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); }
.booking-widget-header { background: var(--green); color: #fff; padding: 1.25rem 1.5rem; }
.booking-price { font-family: var(--font-display); font-size: 1.7rem; font-weight: 900; }
.booking-price .price-original { color: rgba(255,255,255,.5); font-size: 1rem; font-family: var(--font-body); }
.booking-price .price-sale { color: var(--gold-light); }
.booking-per { font-size: .8rem; color: rgba(255,255,255,.6); }
.booking-form { padding: 1.25rem 1.5rem; }
.booking-field { margin-bottom: 1rem; }
.booking-field label { font-family: var(--font-display); font-size: .8rem; font-weight: 700; display: block; margin-bottom: .35rem; color: var(--smoke); text-transform: uppercase; letter-spacing: .5px; }
.booking-field .form-control, .booking-field .form-select { border-color: var(--border); border-radius: var(--radius); font-size: .9rem; background: var(--white); }
.booking-field .form-control:focus, .booking-field .form-select:focus { border-color: var(--green); box-shadow: 0 0 0 3px rgba(27,61,47,.12); }

.qty-control { display: flex; align-items: center; border: 1.5px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.qty-btn { background: var(--parchment); border: none; width: 38px; height: 38px; font-size: 1.1rem; font-weight: 700; cursor: pointer; color: var(--smoke); transition: var(--transition); }
.qty-btn:hover { background: var(--parchment-dk); color: var(--green); }
.qty-control input { border: none; text-align: center; width: 50px; font-weight: 700; font-size: .95rem; background: #fff; }

.booking-subtotal { display: flex; justify-content: space-between; align-items: center; padding: .75rem 0; border-top: 1px solid var(--border); font-size: 1rem; }
.booking-subtotal strong { font-family: var(--font-display); color: var(--green); font-size: 1.2rem; }

.booking-reassurance { padding: 1rem 1.5rem; border-top: 1px solid var(--border); background: var(--parchment); font-size: .8rem; color: var(--text-muted); display: flex; flex-direction: column; gap: .3rem; }
.booking-reassurance i { color: var(--green); margin-right: .35rem; }

/* ── Filter Panel ─────────────────────────────────────────── */
.filter-panel { background: #fff; border: 1.5px solid var(--border); border-top: 3px solid var(--green); border-radius: var(--radius-lg); padding: 1.25rem; position: sticky; top: 90px; }
.filter-panel-title { font-family: var(--font-display); font-weight: 900; font-size: .9rem; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 1rem; color: var(--green); }
.filter-group { margin-bottom: 1.25rem; padding-bottom: 1.25rem; border-bottom: 1px solid var(--border); }
.filter-group:last-of-type { border-bottom: none; }
.filter-group h6 { font-family: var(--font-display); font-size: .72rem; text-transform: uppercase; letter-spacing: 2px; color: var(--text-muted); font-weight: 900; margin-bottom: .6rem; }
.filter-label { display: flex; align-items: center; gap: .5rem; font-size: .88rem; cursor: pointer; padding: .2rem 0; }
.filter-label input { accent-color: var(--green); }

/* ── Cart & Checkout ──────────────────────────────────────── */
.cart-item { display: flex; gap: 1rem; padding: 1.25rem; background: #fff; border: 1.5px solid var(--border); border-left: 4px solid var(--green); border-radius: var(--radius-lg); margin-bottom: 1rem; align-items: flex-start; }
.cart-item-img { width: 100px; min-width: 100px; height: 75px; border-radius: var(--radius); background: var(--parchment) center/cover no-repeat; }
.cart-item-title { font-family: var(--font-display); font-size: 1rem; font-weight: 900; text-transform: uppercase; letter-spacing: .5px; margin-bottom: .25rem; }
.cart-item-variant { font-size: .85rem; color: var(--text-muted); margin-bottom: .25rem; }
.cart-item-meta { font-size: .82rem; color: var(--text-muted); display: flex; flex-wrap: wrap; gap: .75rem; }
.cart-item-price { margin-left: auto; text-align: right; min-width: 100px; font-family: var(--font-display); }
.btn-remove { display: block; font-size: .78rem; color: var(--red); background: none; border: none; cursor: pointer; margin-top: .5rem; padding: 0; }
.btn-remove:hover { text-decoration: underline; }

.order-summary { background: #fff; border: 2px solid var(--border); border-top: 3px solid var(--green); border-radius: var(--radius-lg); padding: 1.5rem; box-shadow: var(--shadow); }
.order-summary-title { font-family: var(--font-display); font-size: 1.1rem; font-weight: 900; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 1rem; padding-bottom: .75rem; border-bottom: 1px solid var(--border); }
.summary-line { display: flex; justify-content: space-between; font-size: .88rem; padding: .4rem 0; }
.summary-total { display: flex; justify-content: space-between; font-family: var(--font-display); font-size: 1.2rem; font-weight: 900; padding: .75rem 0; margin-top: .5rem; border-top: 2px solid var(--green); color: var(--green); }
.summary-note { font-size: .8rem; color: var(--text-muted); background: var(--parchment); padding: .75rem; border-radius: 6px; margin-top: .75rem; }
.summary-trust { font-size: .82rem; color: var(--text-muted); display: flex; flex-direction: column; gap: .3rem; }

.checkout-section { background: #fff; border: 1.5px solid var(--border); border-radius: var(--radius-lg); padding: 1.5rem; margin-bottom: 1.25rem; }
.checkout-section-title { font-family: var(--font-display); font-weight: 900; font-size: 1rem; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 1.25rem; display: flex; align-items: center; gap: .6rem; }
.checkout-section-title span { background: var(--green); color: #fff; width: 26px; height: 26px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: .8rem; font-weight: 700; }
.checkout-item { display: flex; justify-content: space-between; align-items: flex-start; padding: .6rem 0; border-bottom: 1px solid var(--border); font-size: .9rem; }
.checkout-item:last-child { border-bottom: none; }
.checkout-total { display: flex; justify-content: space-between; font-family: var(--font-display); font-weight: 900; font-size: 1.1rem; padding-top: .75rem; margin-top: .5rem; border-top: 2px solid var(--green); color: var(--green); }
.payment-note { display: flex; gap: .75rem; background: #e8f5e9; border-radius: var(--radius); padding: 1rem; font-size: .88rem; }
.payment-note i { color: var(--green-mid); font-size: 1.25rem; flex-shrink: 0; margin-top: .1rem; }

/* ── Confirmation ─────────────────────────────────────────── */
.confirmation-box { max-width: 800px; margin: 0 auto; padding: 2rem 1rem; }
.confirmation-icon { font-size: 4rem; margin-bottom: 1rem; }
.confirmation-title { font-family: var(--font-display); font-size: clamp(2rem, 4vw, 3rem); text-transform: uppercase; letter-spacing: 2px; }
.confirmation-number { display: inline-block; background: var(--parchment); border: 1.5px solid var(--border); border-radius: 6px; padding: .5rem 1.25rem; font-family: var(--font-display); font-size: 1rem; font-weight: 900; letter-spacing: 1px; margin: 1rem 0; }
.conf-info-card { background: #fff; border: 1.5px solid var(--border); border-top: 3px solid var(--green); border-radius: var(--radius-lg); padding: 1.5rem; text-align: left; height: 100%; }
.conf-info-card h5 { font-family: var(--font-display); font-weight: 900; text-transform: uppercase; letter-spacing: .5px; margin-bottom: 1rem; }
.conf-item { padding: .5rem 0; border-bottom: 1px solid var(--border); }
.conf-item:last-child { border-bottom: none; }
.conf-total { font-family: var(--font-display); font-weight: 900; font-size: 1.1rem; color: var(--green); }

/* ── Blog ─────────────────────────────────────────────────── */
.blog-card { display: block; color: var(--text); background: #fff; border: 1.5px solid var(--border); border-top: 3px solid var(--green); border-radius: var(--radius-lg); overflow: hidden; transition: var(--transition); height: 100%; }
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); color: var(--text); }
.blog-card-img { height: 200px; background: var(--parchment) center/cover no-repeat; transition: transform .4s ease; }
.blog-card:hover .blog-card-img { transform: scale(1.04); }
.blog-card-body { padding: 1.25rem; }
.blog-card-date { font-family: var(--font-display); font-size: .72rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 2px; margin-bottom: .4rem; }
.blog-card-title { font-family: var(--font-display); font-size: 1.05rem; font-weight: 900; text-transform: uppercase; letter-spacing: .5px; margin-bottom: .5rem; line-height: 1.25; }
.blog-card-excerpt { font-size: .88rem; color: var(--text-muted); margin-bottom: .5rem; }
.blog-read-more { font-family: var(--font-display); font-size: .82rem; font-weight: 900; color: var(--green); text-transform: uppercase; letter-spacing: 1px; }

.post-hero-img { width: 100%; height: 380px; object-fit: cover; border-radius: var(--radius-lg); }
.post-title { font-family: var(--font-display); font-size: clamp(1.75rem, 3.5vw, 2.5rem); text-transform: uppercase; letter-spacing: 1px; }
.post-lead { font-size: 1.1rem; font-weight: 500; color: var(--text-muted); border-left: 3px solid var(--green); padding-left: 1rem; margin: 1.5rem 0; }
.post-body { font-size: .97rem; line-height: 1.8; }
.sidebar-cta { background: var(--green); color: #fff; border-radius: var(--radius-lg); padding: 1.5rem; }
.sidebar-cta h4 { font-family: var(--font-display); color: #fff; text-transform: uppercase; letter-spacing: 1px; }
.sidebar-cta p { color: rgba(255,255,255,.7); font-size: .9rem; margin-bottom: 1rem; }
.sidebar-recent h5 { font-family: var(--font-display); font-weight: 900; text-transform: uppercase; letter-spacing: .5px; margin-bottom: .75rem; }
.sidebar-post { display: block; padding: .6rem 0; border-bottom: 1px solid var(--border); color: var(--text); }
.sidebar-post:hover .sidebar-post-title { color: var(--green); }
.sidebar-post-title { font-family: var(--font-display); font-size: .88rem; font-weight: 700; text-transform: uppercase; }
.sidebar-post-date { font-size: .78rem; color: var(--text-muted); }

/* ── Contact ──────────────────────────────────────────────── */
.contact-item { display: flex; gap: 1rem; align-items: flex-start; margin-bottom: 1.25rem; }
.contact-item i { font-size: 1.4rem; color: var(--green); margin-top: .1rem; }
.contact-form-card { background: #fff; border: 1.5px solid var(--border); border-top: 3px solid var(--green); border-radius: var(--radius-lg); padding: 2rem; }

/* ── About ────────────────────────────────────────────────── */
.stat-number { font-family: var(--font-display); font-size: 2.8rem; font-weight: 900; color: var(--green); letter-spacing: 1px; }
.stat-label { font-family: var(--font-display); font-size: .72rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 2px; }
.why-card { background: #fff; border: 1.5px solid var(--border); border-top: 3px solid var(--green); border-radius: var(--radius-lg); padding: 1.5rem; height: 100%; }
.why-icon { font-size: 2.2rem; margin-bottom: .75rem; }
.why-card h4 { font-family: var(--font-display); font-size: 1rem; font-weight: 900; text-transform: uppercase; letter-spacing: .5px; margin-bottom: .5rem; }
.why-card p { font-size: .88rem; color: var(--text-muted); margin: 0; }

/* ── Reviews Page ─────────────────────────────────────────── */
.review-form-card { background: #fff; border: 1.5px solid var(--border); border-top: 3px solid var(--green); border-radius: var(--radius-lg); padding: 2rem; }
.star-rating { display: flex; flex-direction: row-reverse; gap: .25rem; font-size: 1.75rem; }
.star-rating input { display: none; }
.star-rating label { color: #ddd; cursor: pointer; transition: color .15s; }
.star-rating input:checked ~ label, .star-rating label:hover, .star-rating label:hover ~ label { color: var(--gold); }

/* ── Status Badges ────────────────────────────────────────── */
.status-badge { display: inline-block; font-family: var(--font-display); font-size: .68rem; font-weight: 700; padding: .2rem .6rem; border-radius: 3px; text-transform: uppercase; letter-spacing: .5px; }
.status-pending   { background: #fff3cd; color: #856404; }
.status-confirmed { background: #d1e7dd; color: #0f5132; }
.status-completed { background: #e2e3e5; color: #495057; }
.status-cancelled { background: #f8d7da; color: #721c24; }

/* ── Footer ───────────────────────────────────────────────── */
.site-footer { background: var(--dark); color: rgba(255,255,255,.7); }
.footer-top { padding: 3.5rem 0 2rem; border-top: 3px solid var(--green); }
.footer-brand { font-family: var(--font-display); margin-bottom: .75rem; line-height: 1.1; }
.footer-brand .brand-canyon { font-size: 1.5rem; font-weight: 900; color: var(--green-light); text-transform: uppercase; letter-spacing: 2px; display: block; }
.footer-brand .brand-tours  { font-size: .9rem; font-weight: 900; color: var(--gold); text-transform: uppercase; letter-spacing: 3px; display: block; }
.footer-about { font-size: .86rem; color: rgba(255,255,255,.5); line-height: 1.65; margin-bottom: 1rem; }
.footer-social { display: flex; gap: .6rem; }
.footer-social a { width: 34px; height: 34px; background: rgba(255,255,255,.07); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,.55); transition: var(--transition); }
.footer-social a:hover { background: var(--green-mid); color: #fff; }
.footer-trust { display: flex; flex-direction: column; gap: .3rem; font-size: .82rem; color: rgba(255,255,255,.5); }
.footer-heading { font-family: var(--font-display); font-size: .68rem; text-transform: uppercase; letter-spacing: 3px; color: rgba(255,255,255,.35); font-weight: 900; margin-bottom: .75rem; }
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: .4rem; }
.footer-links a { color: rgba(255,255,255,.55); font-size: .86rem; transition: var(--transition); }
.footer-links a:hover { color: rgba(255,255,255,.9); }
.footer-newsletter-form { display: flex; }
.footer-newsletter-form input { flex: 1; background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.14); border-right: none; border-radius: 5px 0 0 5px; padding: .4rem .75rem; color: #fff; font-size: .82rem; outline: none; }
.footer-newsletter-form input::placeholder { color: rgba(255,255,255,.3); }
.footer-newsletter-form button { background: var(--green-mid); border: none; border-radius: 0 5px 5px 0; padding: 0 .75rem; color: #fff; cursor: pointer; transition: var(--transition); }
.footer-newsletter-form button:hover { background: var(--green-light); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.07); padding: 1.25rem 0; font-size: .78rem; color: rgba(255,255,255,.35); }
.footer-legal { display: flex; gap: 1.25rem; }
.footer-legal a { color: rgba(255,255,255,.35); }
.footer-legal a:hover { color: rgba(255,255,255,.75); }

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 767px) {
  .hero::after { display: none; }
  .destinations-grid { grid-template-columns: repeat(2, 1fr); }
  .dest-card { height: 220px; }
  .types-grid { grid-template-columns: repeat(4, 1fr); }
  .styles-grid { grid-template-columns: repeat(4, 1fr); }
  .cart-item { flex-wrap: wrap; }
  .cart-item-price { margin-left: 0; }
  .megamenu { min-width: unset; width: 100%; }
  .megamenu-inner { flex-direction: column; gap: 1rem; }
  .train-strip-inner { gap: 1rem; font-size: .82rem; }
}
@media (max-width: 479px) {
  .types-grid  { grid-template-columns: repeat(2, 1fr); }
  .styles-grid { grid-template-columns: repeat(2, 1fr); }
}
