:root {
  --primary-green: #2C4A35;
  --dark-green: #1a2e20;
  --secondary-gray: #4A5568;
  --accent-blue: #5B8FA8;
  --accent-blue-dark: #4a7a91;
  --accent-orange: #C0392B;
  --accent-orange-dark: #992D22;
  --logo-gold: #E6B020;
  --bg-cream: #F5F0E8;
  --bg-white: #ffffff;
  --text-dark: #1A202C;
  --text-light: #F5F0E8;
  --border-light: #E2E8F0;
}

*, *::before, *::after { box-sizing: border-box; }

body {
  margin: 0;
  font-family: 'Inter', -apple-system, sans-serif;
  background-color: var(--bg-white);
  color: var(--text-dark);
  font-size: 16px;
  line-height: 1.6;
}

h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
  color: var(--primary-green);
  line-height: 1.2;
}

img { max-width: 100%; display: block; }
a { transition: color 0.2s, background-color 0.2s; }

/* =====================
   HEADER & NAV
   ===================== */
.header {
  position: sticky;
  top: 0;
  background-color: var(--bg-white);
  box-shadow: 0 1px 0 rgba(0,0,0,0.08), 0 4px 16px rgba(0,0,0,0.06);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 5%;
  z-index: 1000;
  gap: 1rem;
  height: 64px;
}

.logo {
  text-decoration: none;
  flex-shrink: 0;
  display: flex;
  align-items: center;
}
.logo-img {
  height: 56px;
  width: auto;
  display: block;
}

.nav-links {
  display: flex;
  gap: 1.75rem;
  align-items: center;
  flex-wrap: nowrap;
}

.nav-links a {
  text-decoration: none;
  color: var(--secondary-gray);
  font-weight: 500;
  font-size: 0.9rem;
  white-space: nowrap;
  letter-spacing: 0.01em;
}
.nav-links a:hover,
.nav-links a.active { color: var(--primary-green); }

/* CTA Buttons */
.btn {
  display: inline-block;
  background-color: var(--primary-green);
  color: white;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 4px;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
  letter-spacing: 0.03em;
  transition: background-color 0.2s, transform 0.15s, box-shadow 0.2s;
}
.btn:hover {
  background-color: var(--dark-green);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.btn-orange {
  background-color: var(--accent-orange);
}
.btn-orange:hover { background-color: var(--accent-orange-dark); }

.btn-outline {
  background-color: transparent;
  border: 2px solid white;
  color: white;
}
.btn-outline:hover { background-color: rgba(255,255,255,0.12); }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
  z-index: 1100;
}
.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background-color: var(--primary-green);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav drawer */
.mobile-nav {
  display: none;
  flex-direction: column;
  background: var(--bg-white);
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 999;
  padding: 6rem 2rem 2rem;
  gap: 0;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  text-decoration: none;
  color: var(--text-dark);
  font-size: 1.5rem;
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  padding: 1rem 0;
  border-bottom: 1px solid var(--border-light);
}
.mobile-nav a:last-child { border-bottom: none; }
.mobile-nav .btn {
  margin-top: 1.5rem;
  text-align: center;
  font-size: 1.1rem;
  padding: 1rem;
}

/* =====================
   HERO
   ===================== */
.hero {
  position: relative;
  height: 92vh;
  min-height: 540px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}
.hero-short { height: 52vh; min-height: 360px; }
.hero-medium { height: 64vh; min-height: 420px; }

/* Hero background image — any direct img child */
.hero > img,
.hero img.hero-bg {
  position: absolute;
  top: 0; left: 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(
    to bottom,
    rgba(0,0,0,0.22) 0%,
    rgba(0,0,0,0.48) 60%,
    rgba(0,0,0,0.65) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  color: white;
  max-width: 900px;
  padding: 2rem 1.5rem;
}
.hero-content h1 {
  color: white;
  font-size: clamp(2.4rem, 5.5vw, 4.2rem);
  margin-bottom: 1.25rem;
  text-shadow: 0 2px 12px rgba(0,0,0,0.35);
  letter-spacing: -0.01em;
  line-height: 1.1;
}
.hero-content p {
  font-size: clamp(1.05rem, 2.2vw, 1.35rem);
  margin-bottom: 2.25rem;
  opacity: 0.9;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.65;
}
.hero-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* =====================
   SECTIONS
   ===================== */
.section { padding: 5.5rem 5%; }
.section-sm { padding: 3rem 5%; }
.section-cream { background-color: var(--bg-cream); }
.section-dark {
  background-color: var(--primary-green);
  color: var(--text-light);
}
.section-dark h2, .section-dark h3 { color: var(--bg-cream); }
.section-dark p { color: rgba(245,240,232,0.85); }
.section-charcoal {
  background-color: #1A1A1A;
  color: var(--text-light);
}
.section-charcoal h2, .section-charcoal h3 { color: var(--bg-cream); }
.section-charcoal p { color: rgba(245,240,232,0.85); }

.section-eyebrow {
  display: block;
  text-align: center;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent-orange);
  margin-bottom: 0.6rem;
}

.section-title {
  text-align: center;
  font-size: clamp(1.9rem, 4vw, 2.7rem);
  margin-bottom: 0.75rem;
  margin-top: 0;
}
.section-subtitle {
  text-align: center;
  color: var(--secondary-gray);
  max-width: 600px;
  margin: 0 auto 3.5rem;
  line-height: 1.7;
  font-size: 1.05rem;
}

/* =====================
   GRID & CARDS
   ===================== */
/* Canonical grid classes */
.grid-3, .grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}
.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.card {
  background: var(--bg-white);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06), 0 8px 24px rgba(0,0,0,0.05);
  transition: transform 0.25s, box-shadow 0.25s;
}
.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.1), 0 20px 40px rgba(0,0,0,0.08);
}
.card > img,
.card img:first-child {
  width: 100%;
  height: 260px;
  object-fit: cover;
  object-position: top center;
  display: block;
}
.card-content { padding: 1.75rem; }
.card-content h3 { margin-top: 0; font-size: 1.3rem; margin-bottom: 0.6rem; color: var(--primary-green); }
.card-content p { color: var(--secondary-gray); margin-bottom: 1.25rem; font-size: 0.97rem; line-height: 1.65; }

/* =====================
   SPLIT SECTIONS
   ===================== */
/* canonical classes */
.split,
.split-section {
  display: flex;
  align-items: center;
  gap: 5rem;
  padding: 5.5rem 5%;
  background: var(--bg-white);
}
.split-reverse { flex-direction: row-reverse; }

.split-img,
.split-image {
  flex: 1;
  min-width: 0;
}
.split-img img,
.split-image img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 16px 40px rgba(0,0,0,0.14);
  object-fit: cover;
  object-position: top center;
  max-height: 560px;
  display: block;
}

.split-text,
.split-content {
  flex: 1;
  min-width: 0;
}
.split-text h2,
.split-content h2 {
  font-size: clamp(1.9rem, 3.5vw, 2.6rem);
  margin-top: 0;
  margin-bottom: 1.25rem;
}
.split-text p,
.split-content p {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--secondary-gray);
  margin-bottom: 1.25rem;
}

/* =====================
   FEATURE BLOCKS
   ===================== */
.features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.5rem;
  padding: 5rem 5%;
}
.feature { text-align: center; }
.feature-icon { font-size: 2rem; margin-bottom: 1rem; }
.feature h3 { font-size: 1.1rem; margin-bottom: 0.5rem; }
.feature p { font-size: 0.95rem; color: var(--secondary-gray); line-height: 1.6; margin: 0; }

/* =====================
   STATS BAR
   ===================== */
.stats-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  background: var(--primary-green);
  text-align: center;
}
.stat-item {
  padding: 2.5rem 1rem;
  border-right: 1px solid rgba(255,255,255,0.12);
}
.stat-item:last-child { border-right: none; }
.stat-number {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 700;
  color: var(--logo-gold);
  line-height: 1;
  margin-bottom: 0.4rem;
}
.stat-label {
  display: block;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.65);
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

/* =====================
   TESTIMONIALS
   ===================== */
.testimonials-section {
  background: #1A2920;
  padding: 5.5rem 5%;
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}
.testimonial-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  padding: 2.25rem;
  display: flex;
  flex-direction: column;
}
.t-stars {
  color: var(--logo-gold);
  font-size: 1rem;
  letter-spacing: 2px;
  margin-bottom: 1.25rem;
}
.t-quote {
  flex: 1;
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1.02rem;
  line-height: 1.72;
  color: rgba(245,240,232,0.9);
  margin: 0 0 1.5rem;
}
.t-preview { display: block; }
.t-more { display: none; }
.t-read-more {
  background: none;
  border: none;
  color: rgba(154,230,180,0.8);
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  padding: 0;
  text-align: left;
  margin-top: -0.75rem;
  margin-bottom: 1rem;
  letter-spacing: 0.05em;
  transition: color 0.2s;
}
.t-read-more:hover { color: #9AE6B4; }
.testimonial-card.expanded .t-preview { display: none; }
.testimonial-card.expanded .t-more { display: block; }
.testimonial-card.expanded .t-read-more-label::after { content: ' ↑ less'; }
.t-name {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.88rem;
  color: rgba(245,240,232,0.6);
  font-style: normal;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: auto;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255,255,255,0.1);
}
/* old structure compat */
.testimonial-card .stars { color: var(--logo-gold); font-size: 1rem; letter-spacing: 2px; margin-bottom: 1rem; }
.testimonial-card blockquote {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(245,240,232,0.88);
  margin: 0 0 1.25rem;
  padding: 0;
  border: none;
}
.testimonial-card cite {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  color: rgba(245,240,232,0.55);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-style: normal;
}

/* =====================
   CTA CALLOUT SECTIONS
   ===================== */
.cta-section {
  background: var(--bg-cream);
  padding: 5rem 5%;
  text-align: center;
}
.cta-section h2 { font-size: clamp(1.8rem, 4vw, 2.5rem); margin-bottom: 1rem; }
.cta-section p { color: var(--secondary-gray); max-width: 580px; margin: 0 auto 2rem; line-height: 1.7; font-size: 1.05rem; }
.cta-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* Sidebar callout box */
.callout {
  border-left: 4px solid var(--accent-blue);
  background: rgba(91,143,168,0.08);
  border-radius: 0 6px 6px 0;
  padding: 1.25rem 1.5rem;
  margin: 2rem 0;
}
.callout-green {
  border-left-color: var(--primary-green);
  background: rgba(44,74,53,0.07);
}
.callout p { margin: 0; font-size: 0.95rem; color: var(--secondary-gray); }
.callout strong { color: var(--text-dark); }

/* =====================
   FULL-WIDTH BANNER
   ===================== */
.banner {
  position: relative;
  padding: 7rem 5%;
  text-align: center;
  overflow: hidden;
  background: var(--dark-green);
}
.banner > img,
.banner img.banner-bg {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}
.banner::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26,46,32,0.82) 0%, rgba(0,0,0,0.65) 100%);
  z-index: 1;
}
.banner-content {
  position: relative;
  z-index: 2;
  color: white;
  max-width: 680px;
  margin: 0 auto;
}
.banner-content h2 { color: white; font-size: clamp(1.9rem, 4vw, 3rem); margin-bottom: 1rem; }
.banner-content p { opacity: 0.88; font-size: 1.12rem; margin-bottom: 0; line-height: 1.7; }

/* =====================
   RIVER / TRIP DETAIL BLOCKS
   ===================== */
.detail-block {
  display: flex;
  align-items: stretch;
  gap: 0;
  margin-bottom: 3rem;
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0,0,0,0.07);
}
.detail-block:nth-child(even) { flex-direction: row-reverse; }
.detail-block-img { flex: 1; min-height: 380px; }
.detail-block-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.detail-block-text { flex: 1; padding: 3rem; display: flex; flex-direction: column; justify-content: center; }
.detail-block-text h2 { font-size: 2rem; margin-top: 0; margin-bottom: 0.75rem; }
.detail-block-text p { color: var(--secondary-gray); line-height: 1.7; margin-bottom: 1rem; }
.detail-meta { display: flex; gap: 2rem; border-top: 1px solid var(--border-light); padding-top: 1.5rem; margin-top: 1rem; flex-wrap: wrap; }
.meta-item strong { display: block; font-size: 0.75rem; text-transform: uppercase; letter-spacing: 1px; color: var(--secondary-gray); margin-bottom: 0.2rem; }
.meta-item span { color: var(--primary-green); font-weight: 600; font-size: 0.95rem; }

/* =====================
   RATES TABLE
   ===================== */
.rates-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 2rem;
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
}
.rates-table th {
  background: var(--primary-green);
  color: white;
  padding: 1rem 1.5rem;
  text-align: left;
  font-family: 'Inter', sans-serif;
  font-size: 0.82rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}
.rates-table td {
  padding: 1rem 1.5rem;
  border-bottom: 1px solid var(--border-light);
  font-size: 0.95rem;
}
.rates-table tr:last-child td { border-bottom: none; }
.rates-table tr:nth-child(even) td { background: rgba(245,240,232,0.45); }
.rate-price { font-weight: 700; color: var(--primary-green); font-size: 1.1rem; }
.price-note { font-size: 0.8rem; font-weight: 400; color: var(--secondary-gray); font-family: 'Inter', sans-serif; }

/* Included list */
.include-list { list-style: none; padding: 0; margin: 0; }
.include-list li {
  padding: 0.65rem 0;
  border-bottom: 1px solid var(--border-light);
  font-size: 0.97rem;
  color: var(--secondary-gray);
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  line-height: 1.5;
}
.include-list li:last-child { border-bottom: none; }
.include-list li::before { content: "✓"; color: var(--primary-green); font-weight: 700; flex-shrink: 0; margin-top: 1px; }
.include-list li.not-included::before { content: "✗"; color: #E53E3E; }

/* =====================
   FAQ
   ===================== */
.faq-list { max-width: 820px; margin: 0 auto; }
.faq-item {
  background: white;
  border-radius: 6px;
  margin-bottom: 0.75rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  overflow: hidden;
  border: 1px solid var(--border-light);
}
.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 1.25rem 1.5rem;
  cursor: pointer;
  font-weight: 600;
  color: var(--text-dark);
  font-size: 0.97rem;
  gap: 1rem;
  user-select: none;
  line-height: 1.4;
}
.faq-q::-webkit-details-marker { display: none; }
.faq-icon { color: var(--accent-orange); font-size: 1.3rem; flex-shrink: 0; transition: transform 0.2s; margin-top: 1px; }
details[open] .faq-icon { transform: rotate(45deg); }
.faq-a { padding: 0 1.5rem 1.25rem; color: var(--secondary-gray); line-height: 1.75; font-size: 0.95rem; }
.faq-a a { color: var(--primary-green); }

/* =====================
   CONTACT FORM
   ===================== */
.form-group { margin-bottom: 1.5rem; }
.form-group label { display: block; margin-bottom: 0.4rem; font-weight: 500; font-size: 0.9rem; color: var(--text-dark); }
.form-control {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 1.5px solid var(--border-light);
  border-radius: 5px;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  color: var(--text-dark);
  background: white;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.form-control:focus {
  outline: none;
  border-color: var(--primary-green);
  box-shadow: 0 0 0 3px rgba(44,74,53,0.1);
}
textarea.form-control { resize: vertical; min-height: 130px; }
.form-row { display: flex; gap: 1.5rem; }
.form-row .form-group { flex: 1; }

/* =====================
   FOOTER
   ===================== */
.footer {
  background-color: var(--dark-green);
  color: var(--text-light);
  padding: 5rem 5% 2.5rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-brand { color: var(--bg-cream); font-family: 'Playfair Display', serif; font-size: 1.4rem; margin: 0 0 1rem; }
.footer-col p { color: rgba(245,240,232,0.65); font-size: 0.9rem; line-height: 1.65; margin: 0 0 0.5rem; }
.footer-col h4 {
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(245,240,232,0.4);
  margin: 0 0 1.25rem;
}
.footer-col nav a,
.footer-col a {
  display: block;
  color: rgba(245,240,232,0.75);
  text-decoration: none;
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--bg-cream); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
  color: rgba(245,240,232,0.35);
  flex-wrap: wrap;
  gap: 0.5rem;
}

/* =====================
   MISC UTILITIES
   ===================== */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.price-tag { font-size: 1.5rem; font-weight: 700; color: var(--primary-green); margin-bottom: 0.5rem; }

/* Inline Instagram grid */
.ig-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0.5rem;
}
.ig-grid a { display: block; aspect-ratio: 1; overflow: hidden; border-radius: 4px; }
.ig-grid img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s; }
.ig-grid a:hover img { transform: scale(1.05); }

/* =====================
   RESPONSIVE — TABLET
   ===================== */
@media (max-width: 1024px) {
  .features { grid-template-columns: repeat(2, 1fr); gap: 2rem; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .ig-grid { grid-template-columns: repeat(3, 1fr); }
  .stats-bar { grid-template-columns: repeat(2, 1fr); }
  .stat-item { border-bottom: 1px solid rgba(255,255,255,0.12); }
  .split, .split-section { gap: 3rem; }
}

/* =====================
   RESPONSIVE — MOBILE
   ===================== */
@media (max-width: 768px) {
  /* Show hamburger, hide desktop nav */
  .hamburger { display: flex; }
  .nav-links { display: none; }
  .header .btn { display: none; }

  /* Layout */
  .grid-3, .grid { grid-template-columns: 1fr; }
  .grid-2 { grid-template-columns: 1fr; }
  .features { grid-template-columns: 1fr; gap: 2rem; padding: 3rem 5%; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .stats-bar { grid-template-columns: 1fr 1fr; }

  /* Split sections stack */
  .split, .split-section { flex-direction: column !important; gap: 2.5rem; padding: 3.5rem 5%; }

  /* Detail blocks stack */
  .detail-block { flex-direction: column !important; }
  .detail-block-img { min-height: 240px; }
  .detail-block-text { padding: 2rem; }

  /* Form */
  .form-row { flex-direction: column; gap: 0; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }

  /* Table scroll */
  .table-wrap { overflow-x: auto; }

  /* IG grid */
  .ig-grid { grid-template-columns: repeat(3, 1fr); }

  /* Hero */
  .hero { height: 82vh; }
  .hero-short { height: 48vh; }
  .hero-medium { height: 56vh; }

  /* CTA */
  .cta-section h2 { font-size: 1.9rem; }
  .cta-btns { flex-direction: column; align-items: center; }

  /* Banner */
  .banner { padding: 5rem 5%; }
}
