/*
Theme Name: TourwithChe
Author: TourwithChe
Description: Official theme for TourwithChe Rwanda — Adventure, Nature & Community
Version: 1.1
*/

/* ============================================
   VARIABLES
============================================ */
:root {
  --sage:       #c5ddd3;
  --sage-dark:  #a8c9bb;
  --brown:      #3a2b1a;
  --brown-mid:  #5c4433;
  --cream:      #f7f3ee;
  --cream-dark: #ede7de;
  --white:      #ffffff;
  --text:       #2a1f14;
  --muted:      #7a6a5a;
  --gold:       #b8965a;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'DM Sans', system-ui, -apple-system, sans-serif;
  --max:          1200px;
  --pad:          96px 0;
  --radius:       4px;
}

/* ============================================
   RESET
============================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ============================================
   TYPOGRAPHY
============================================ */
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.15;
  color: var(--brown);
}
h1 { font-size: clamp(2.6rem, 5.5vw, 4.8rem); }
h2 { font-size: clamp(1.9rem, 3.5vw, 3rem); }
h3 { font-size: clamp(1.3rem, 2vw, 1.9rem); }
h4 { font-size: 1.2rem; }
p  { max-width: 66ch; }

.eyebrow {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 0.6rem;
}

/* ============================================
   LAYOUT
============================================ */
.container { max-width: var(--max); margin: 0 auto; padding: 0 32px; }
.section    { padding: var(--pad); }
.sec-head   { margin-bottom: 56px; }
.sec-head p { margin-top: 0.8rem; color: var(--muted); font-size: 1.05rem; }

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; }
.grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }

/* ============================================
   BUTTONS
============================================ */
.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 15px 38px;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: all 0.22s ease;
}
.btn-primary { background: var(--brown); color: var(--white); }
.btn-primary:hover { background: var(--brown-mid); transform: translateY(-1px); }
.btn-outline { background: transparent; color: var(--white); border: 1.5px solid rgba(255,255,255,0.6); }
.btn-outline:hover { background: rgba(255,255,255,0.1); }
.btn-gold { background: var(--gold); color: var(--white); }
.btn-gold:hover { background: #a07848; transform: translateY(-1px); }

/* ============================================
   NAVIGATION
============================================ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 20px 0;
  transition: background 0.3s ease, padding 0.3s ease;
}
.site-header.scrolled {
  background: var(--brown);
  padding: 12px 0;
  box-shadow: 0 2px 24px rgba(0,0,0,0.2);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.site-logo {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.02em;
  flex-shrink: 0;
}
.site-logo span { color: var(--sage); }

.nav-links {
  display: flex !important;
  align-items: center;
  gap: 32px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.nav-links a {
  font-size: 0.76rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.82);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--white); }
.nav-cta {
  background: var(--sage) !important;
  color: var(--brown) !important;
  padding: 9px 20px !important;
  border-radius: var(--radius) !important;
  letter-spacing: 0.08em !important;
}
.nav-cta:hover { background: var(--sage-dark) !important; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.hamburger span {
  width: 24px;
  height: 1.5px;
  background: var(--white);
  display: block;
}

/* ============================================
   HERO
============================================ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 680px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: var(--brown);
}
.hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.78;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(20,10,2,0.95) 0%,
    rgba(20,10,2,0.4) 50%,
    rgba(20,10,2,0.08) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 0 72px;
  width: 100%;
}
.hero-content h1 {
  color: var(--white);
  max-width: 860px;
  font-style: italic;
  margin-bottom: 20px;
}
.hero-content h1 em { font-style: normal; color: var(--sage); }
.hero-content p {
  color: rgba(255,255,255,0.78);
  font-size: 1.08rem;
  max-width: 500px;
  margin-bottom: 36px;
}
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }

/* ============================================
   TRUST BAR
============================================ */
.trust-bar { background: var(--brown); padding: 24px 0; }
.trust-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 52px;
  flex-wrap: wrap;
}
.trust-item {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.65);
  display: flex;
  align-items: center;
  gap: 8px;
}
.trust-item strong { color: var(--sage); font-weight: 500; }

/* ============================================
   INTRO
============================================ */
.intro-section { background: var(--cream); }
.intro-text { padding-right: 56px; }
.intro-text blockquote {
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-style: italic;
  color: var(--brown);
  line-height: 1.5;
  margin: 20px 0;
  padding-left: 18px;
  border-left: 2px solid var(--gold);
}
.intro-img { position: relative; }
.intro-img img {
  width: 100%; height: 520px;
  object-fit: cover;
  border-radius: var(--radius);
}
.intro-badge {
  position: absolute;
  bottom: -20px; left: -20px;
  background: var(--brown);
  color: var(--white);
  padding: 18px 22px;
  border-radius: var(--radius);
  font-size: 0.78rem;
}
.intro-badge strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--sage);
}

/* ============================================
   GORILLA SECTION
============================================ */
.gorilla-section { background: var(--brown); overflow: hidden; position: relative; }
.gorilla-text { color: var(--white); padding-right: 40px; }
.gorilla-text h2 { color: var(--white); }
.gorilla-text .eyebrow { color: var(--sage); }
.gorilla-text p { color: rgba(255,255,255,0.72); margin: 18px 0 28px; }
.gorilla-stats { display: flex; gap: 28px; margin: 24px 0 32px; }
.stat { border-left: 2px solid var(--gold); padding-left: 14px; }
.stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 500;
  color: var(--sage);
  line-height: 1;
}
.stat span { font-size: 0.76rem; color: rgba(255,255,255,0.55); letter-spacing: 0.06em; }
.gorilla-img img {
  width: 100%; height: 560px;
  object-fit: cover;
  border-radius: var(--radius);
}

/* ============================================
   TOUR CARDS
============================================ */
.tours-section { background: var(--white); }
.tour-card { position: relative; border-radius: var(--radius); overflow: hidden; }
.tour-card img {
  width: 100%; height: 420px;
  object-fit: cover;
  transition: transform 0.55s ease;
  display: block;
}
.tour-card:hover img { transform: scale(1.04); }
.tour-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(20,10,2,0.9) 0%, transparent 55%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 26px;
  transition: background 0.3s;
}
.tour-card:hover .tour-overlay {
  background: linear-gradient(to top, rgba(20,10,2,0.96) 0%, rgba(20,10,2,0.25) 55%);
}
.tour-overlay h3 { color: var(--white); font-size: 1.45rem; margin-bottom: 6px; }
.tour-overlay p {
  color: rgba(255,255,255,0.68);
  font-size: 0.86rem;
  max-width: 100%;
  opacity: 0;
  transform: translateY(8px);
  transition: all 0.28s ease;
  margin-bottom: 12px;
}
.tour-card:hover .tour-overlay p { opacity: 1; transform: translateY(0); }
.tour-link {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sage);
}
.tour-link::after { content: ' →'; }

/* Tour placeholder backgrounds (shown when no photo) */
.tour-gorilla-bg  { background: linear-gradient(135deg, #2d3a1e 0%, #1a2412 100%); }
.tour-safari-bg   { background: linear-gradient(135deg, #5c3d1a 0%, #3a2408 100%); }
.tour-nyungwe-bg  { background: linear-gradient(135deg, #1e3d2d 0%, #122414 100%); }
.tour-culture-bg  { background: linear-gradient(135deg, #3d2b1a 0%, #241808 100%); }

/* ============================================
   EXPERIENCE CALLOUT
============================================ */
.exp-section { background: var(--brown); text-align: center; padding: 80px 0; }
.exp-section h2 { color: var(--white); margin-bottom: 14px; }
.exp-section > .container > p { color: rgba(255,255,255,0.68); margin: 0 auto 36px; }
.exp-logos {
  display: flex;
  justify-content: center;
  gap: 52px;
  flex-wrap: wrap;
  margin: 36px 0;
}
.exp-item { text-align: center; }
.exp-item strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.08rem;
  font-weight: 500;
  color: var(--sage);
  margin-bottom: 4px;
}
.exp-item span {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
}

/* ============================================
   PACKAGES
============================================ */
.pkg-section { background: var(--cream); }
.pkg-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; margin-top: 48px; }
.pkg-card { background: var(--white); border-radius: var(--radius); overflow: hidden; border: 1px solid var(--cream-dark, #ede7de); }
.pkg-card.featured { border: 2px solid var(--gold); }
.pkg-header { background: var(--brown); padding: 30px; color: var(--white); }
.pkg-card.featured .pkg-header { background: var(--gold); }
.pkg-label { font-size: 0.68rem; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(255,255,255,0.55); margin-bottom: 6px; }
.pkg-header h3 { color: var(--white); font-size: 1.9rem; margin-bottom: 4px; }
.pkg-price { font-size: 0.85rem; color: rgba(255,255,255,0.7); }
.pkg-price strong { font-family: var(--font-display); font-size: 1.9rem; color: var(--sage); font-weight: 500; }
.pkg-card.featured .pkg-price strong { color: var(--white); }
.pkg-body { padding: 30px; }
.pkg-features { display: flex; flex-direction: column; gap: 11px; margin-bottom: 26px; }
.pkg-features li { display: flex; gap: 10px; font-size: 0.88rem; color: var(--muted); align-items: flex-start; }
.pkg-features li::before { content: '✓'; color: var(--gold); font-weight: 700; flex-shrink: 0; margin-top: 2px; }

/* ============================================
   TESTIMONIALS
============================================ */
.testi-section { background: var(--cream); }
.testi-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-top: 48px; }
.testi-card { background: var(--white); padding: 30px; border-radius: var(--radius); border: 1px solid #ede7de; }
.stars { color: var(--gold); font-size: 0.9rem; letter-spacing: 2px; margin-bottom: 14px; }
.testi-card blockquote {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-style: italic;
  color: var(--brown);
  line-height: 1.65;
  margin-bottom: 18px;
}
.testi-author { font-size: 0.8rem; color: var(--muted); }
.testi-author strong { display: block; color: var(--text); font-weight: 500; }

/* ============================================
   CTA
============================================ */
.cta-section { background: var(--sage); padding: 96px 0; text-align: center; }
.cta-section h2 { color: var(--brown); margin-bottom: 14px; }
.cta-section p { color: var(--brown-mid); margin: 0 auto 32px; }
.cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ============================================
   FOOTER
============================================ */
.site-footer { background: var(--brown); color: rgba(255,255,255,0.62); padding: 72px 0 28px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 44px; margin-bottom: 52px; }
.footer-brand h3 { font-family: var(--font-display); font-size: 1.45rem; color: var(--white); margin-bottom: 10px; }
.footer-brand p { font-size: 0.86rem; line-height: 1.7; max-width: 260px; }
.footer-col h4 {
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 18px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 9px; }
.footer-col ul a { font-size: 0.86rem; color: rgba(255,255,255,0.58); transition: color 0.2s; }
.footer-col ul a:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.76rem;
}
.footer-bottom a { color: var(--sage); }

/* Photo credits */
.photo-credits { margin-top: 8px; font-size: 0.7rem; color: rgba(255,255,255,0.35); }
.photo-credits a { color: rgba(255,255,255,0.45); text-decoration: underline; }

/* ============================================
   PAGE HERO (inner pages)
============================================ */
.page-hero {
  height: 58vh;
  min-height: 400px;
  display: flex;
  align-items: flex-end;
  position: relative;
  overflow: hidden;
}
.page-hero-bg { position: absolute; inset: 0; background: var(--brown); }
.page-hero-bg img { width: 100%; height: 100%; object-fit: cover; opacity: 0.75; }
.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(20,10,2,0.88) 0%, rgba(20,10,2,0.25) 100%);
}
.page-hero-content { position: relative; z-index: 2; padding: 0 0 56px; color: var(--white); }
.page-hero-content h1 { color: var(--white); }

/* ============================================
   CONTACT FORM
============================================ */
.form-wrap { background: var(--white); border-radius: var(--radius); padding: 44px; border: 1px solid #ede7de; max-width: 660px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-group { display: flex; flex-direction: column; gap: 5px; margin-bottom: 18px; }
.form-group label { font-size: 0.72rem; font-weight: 500; letter-spacing: 0.09em; text-transform: uppercase; color: var(--muted); }
.form-group input,
.form-group select,
.form-group textarea {
  padding: 11px 14px;
  border: 1px solid #ede7de;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.94rem;
  color: var(--text);
  background: var(--cream);
  transition: border 0.2s;
  width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { outline: none; border-color: var(--gold); background: var(--white); }
.form-group textarea { height: 110px; resize: vertical; }

/* ============================================
   RESPONSIVE
============================================ */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  :root { --pad: 60px 0; }
  .container { padding: 0 20px; }
  .grid-2, .grid-3, .pkg-grid, .testi-grid { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr; }
  .nav-links { display: none !important; }
  .hamburger { display: flex; }
  .hero-content h1 { font-size: 2.3rem; }
  .intro-text { padding-right: 0; }
  .intro-badge { position: static; margin-top: 20px; display: inline-block; }
  .gorilla-stats { flex-direction: column; gap: 18px; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }
  .trust-inner { gap: 24px; }
  .exp-logos { gap: 28px; }
}





/* ============================================
   DROPDOWN NAV
============================================ */
.has-dropdown { position: relative; }

.has-dropdown > a { display: flex; align-items: center; gap: 4px; }

.chevron-sm {
  display: inline-block;
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid rgba(255,255,255,0.7);
  margin-left: 5px;
  vertical-align: middle;
  transition: transform 0.2s;
  position: relative;
  top: -1px;
}

.has-dropdown:hover .chevron-sm,
.has-dropdown.open .chevron-sm { transform: rotate(180deg); }

.dropdown {
  position: absolute;
  top: calc(100% + 14px);
  left: -16px;
  background: var(--brown);
  border-radius: var(--radius);
  padding: 8px 0;
  min-width: 200px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-6px);
  transition: all 0.18s ease;
  box-shadow: 0 8px 32px rgba(0,0,0,0.28);
  z-index: 200;
}

.has-dropdown:hover .dropdown,
.has-dropdown.open .dropdown {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}

.dropdown li a {
  display: block;
  padding: 10px 20px;
  font-size: 0.8rem !important;
  letter-spacing: 0.08em !important;
  color: rgba(255,255,255,0.75) !important;
  transition: color 0.15s, background 0.15s;
  text-transform: uppercase;
}

.dropdown li a:hover {
  color: var(--white) !important;
  background: rgba(255,255,255,0.07);
}

/* ============================================
   HEADER NAV OVERFLOW FIX
============================================ */
.nav-inner {
  flex-wrap: nowrap;
  min-height: 56px;
}

.nav-links {
  flex-shrink: 0;
  gap: 24px;
}

.nav-links a {
  white-space: nowrap;
}



@media (max-width: 1100px) {
  .nav-links { gap: 16px; }
  .nav-links a { font-size: 0.7rem; }
}



/* ============================================
   INTRO BADGE — REDESIGNED
============================================ */
.intro-badge {
  background: var(--brown);
  color: var(--white);
  padding: 18px 24px;
  border-radius: var(--radius);
  font-size: 0.82rem;
  display: inline-block;
  margin-top: 24px;
}
.intro-badge strong {
  display: block;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--sage);
  letter-spacing: 0.04em;
  margin-bottom: 3px;
}

/* ============================================
   WILDLIFE COUNTER SECTION
============================================ */
.counter-section {
  background: var(--brown);
  padding: 80px 0;
}

.counter-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0;
}

.counter-item {
  text-align: center;
  padding: 32px 20px;
  border-right: 1px solid rgba(255,255,255,0.08);
}

.counter-item:last-child { border-right: none; }

.counter-num {
  font-family: var(--font-display);
  font-size: 2.6rem;
  font-weight: 500;
  color: var(--sage);
  line-height: 1;
  display: block;
  margin-bottom: 8px;
}

.counter-label {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  display: block;
  margin-bottom: 4px;
}

.counter-sub {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.35);
  display: block;
}

@media (max-width: 1024px) {
  .counter-grid { grid-template-columns: repeat(3, 1fr); }
  .counter-item:nth-child(3) { border-right: none; }
}

@media (max-width: 600px) {
  .counter-grid { grid-template-columns: repeat(2, 1fr); }
  .counter-num { font-size: 2rem; }
}

/* ============================================
   PKG PRICE — NO AMOUNT STYLING
============================================ */
.pkg-price {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.04em;
  margin-top: 6px;
}

/* ============================================
   WILDLIFE STATS GRID — RESPONSIVE
============================================ */
@media (max-width: 900px) {
  .twc-stat-item {
    border-right: none !important;
    border-bottom: 1px solid rgba(255,255,255,0.07) !important;
  }
}

/* ============================================
   LOGO — DEFINITIVE
============================================ */
.site-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  text-decoration: none;
}
.logo-img {
  height: 90px;
  width: auto;
  max-width: 220px;
  display: block;
  object-fit: contain;
}
@media (max-width: 1024px) {
  .logo-img { height: 70px; }
}
@media (max-width: 768px) {
  .logo-img { height: 56px; }
}

/* ============================================
   LOGO — ICON + TEXT (FINAL)
============================================ */
.site-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  text-decoration: none;
}
.logo-icon {
  height: 46px;
  width: auto;
  display: block;
  flex-shrink: 0;
}
.logo-text {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.02em;
  line-height: 1;
  white-space: nowrap;
}
.logo-text em {
  font-style: normal;
  color: var(--sage);
}

@media (max-width: 480px) {
  .logo-icon { height: 36px; }
  .logo-text { font-size: 1.1rem; }
}

/* ============================================
   MOBILE — FULL AUDIT & FIX
============================================ */

/* Stats grid: 6col → 3col → 2col */
@media (max-width: 900px) {
  .twc-stat-item {
    border-right: none !important;
    border-bottom: 1px solid rgba(255,255,255,0.07) !important;
  }
}

/* Hero */
@media (max-width: 768px) {
  .hero { min-height: 100svh; }
  .hero-content { padding: 0 0 56px; }
  .hero-content h1 { font-size: 2.2rem; line-height: 1.2; }
  .hero-content p { font-size: 0.95rem; }
  .hero-btns { flex-direction: column; align-items: flex-start; gap: 12px; }
  .hero-btns .btn { width: 100%; text-align: center; }
}

/* Intro section */
@media (max-width: 768px) {
  .intro-section .grid-2 { grid-template-columns: 1fr; }
  .intro-text { padding-right: 0; }
  .intro-text blockquote { font-size: 1.3rem; }
  .intro-img img { height: 320px; }
  .intro-badge { position: static; margin-top: 16px; display: inline-block; }
}

/* Gorilla section */
@media (max-width: 768px) {
  .gorilla-section .grid-2 { grid-template-columns: 1fr; }
  .gorilla-text { padding-right: 0; }
  .gorilla-img img { height: 280px; }
  .gorilla-stats { flex-direction: row; flex-wrap: wrap; gap: 16px; }
  .stat { min-width: 120px; }
  .stat strong { font-size: 1.6rem; }
}

/* Tour cards */
@media (max-width: 768px) {
  .tours-section .grid-3 { grid-template-columns: 1fr; }
  .tour-card img { height: 260px; }
  .tour-card p { opacity: 1; transform: none; }
}

/* Experiences */
@media (max-width: 768px) {
  .exp-logos { grid-template-columns: 1fr 1fr; gap: 20px; }
  .exp-section { padding: 60px 0; }
}

/* Packages */
@media (max-width: 768px) {
  .pkg-grid { grid-template-columns: 1fr; }
  .pkg-header { padding: 24px; }
  .pkg-header h3 { font-size: 1.6rem; }
  .pkg-body { padding: 24px; }
}

/* Testimonials */
@media (max-width: 768px) {
  .testi-grid { grid-template-columns: 1fr; }
  .testi-card blockquote { font-size: 1rem; }
}

/* CTA */
@media (max-width: 768px) {
  .cta-section { padding: 64px 0; }
  .cta-btns { flex-direction: column; align-items: center; }
  .cta-btns .btn { width: 100%; max-width: 320px; text-align: center; }
}

/* Footer */
@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .site-footer { padding: 56px 0 24px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; font-size: 0.72rem; }
}

/* General mobile padding */
@media (max-width: 480px) {
  .container { padding: 0 16px; }
  :root { --pad: 52px 0; }
  h1 { font-size: 2rem; }
  h2 { font-size: 1.7rem; }
}

/* Akagera wildlife grid mobile */
@media (max-width: 768px) {
  .grid-4 { grid-template-columns: 1fr 1fr; gap: 12px; }
}

/* Contact form mobile */
@media (max-width: 600px) {
  .form-wrap { padding: 28px 20px; }
  .form-row { grid-template-columns: 1fr; }
}

/* Page hero inner pages */
@media (max-width: 768px) {
  .page-hero { height: 45vh; min-height: 280px; }
  .page-hero-content h1 { font-size: 2rem; }
  .page-hero-content { padding: 0 0 32px; }
}

/* Section grids on inner pages */
@media (max-width: 768px) {
  .grid-2 { grid-template-columns: 1fr !important; gap: 28px; }
  .grid-3 { grid-template-columns: 1fr !important; }
}

/* Dropdown on mobile — not needed (handled by hamburger) */
@media (max-width: 768px) {
  .has-dropdown .dropdown { display: none !important; }
}

/* Fix nav overflow on medium screens */
@media (max-width: 1080px) and (min-width: 769px) {
  .nav-links { gap: 18px; }
  .nav-links a { font-size: 0.68rem; }
  .logo-text { font-size: 1.15rem; }
  .logo-icon { height: 38px; }
}

/* Logo Che highlight — no italic */
.logo-che {
  color: var(--sage);
  font-style: normal;
  font-weight: 600;
}

/* ============================================
   OVERFLOW FIX — prevents horizontal scroll
============================================ */
html, body {
  overflow-x: hidden;
  max-width: 100%;
}

* { box-sizing: border-box; }

/* ============================================
   STATS GRID — RESPONSIVE
============================================ */
/* Stats grid — desktop inline, mobile override */
@media (max-width: 900px) {
  .stats-grid {
    grid-template-columns: repeat(3, 1fr) !important;
  }
  .twc-stat-item {
    border-right: 1px solid rgba(255,255,255,0.07) !important;
    border-bottom: 1px solid rgba(255,255,255,0.07) !important;
  }
  .twc-stat-item:nth-child(3n) { border-right: none !important; }
}

@media (max-width: 520px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
  .twc-stat-item { padding: 20px 12px !important; }
  .twc-stat-num  { font-size: 2rem !important; }
  .twc-stat-item:nth-child(3n) { border-right: 1px solid rgba(255,255,255,0.07) !important; }
  .twc-stat-item:nth-child(2n) { border-right: none !important; }
}
