/* =========================================================================
   Divert Kigali — main stylesheet
   Modern, professional travel design.
   ========================================================================= */

:root {
  /* Chocolate & beige palette — drawn from the Divert logo */
  --c-green-900: #221806;   /* deep chocolate */
  --c-green-800: #33250a;
  --c-green-700: #3b2c06;   /* logo chocolate — primary dark */
  --c-green-600: #55420f;   /* primary */
  --c-green-500: #6f5a20;
  --c-gold-500: #f2b705;    /* sun gold — accent */
  --c-gold-600: #d9a404;
  --c-sky-500: #b08d4f;     /* warm tan highlight */
  --c-ink: #241c0d;
  --c-body: #5b5240;
  --c-line: #e7dfd0;
  --c-sand: #f5f0e6;        /* beige */
  --c-white: #ffffff;

  --font-display: "League Spartan", "Segoe UI", sans-serif;
  --font-body: "Raleway", "Segoe UI", sans-serif;

  --radius-lg: 22px;
  --radius-md: 14px;
  --radius-sm: 10px;
  --shadow-sm: 0 2px 10px rgba(36, 28, 13, 0.06);
  --shadow-md: 0 10px 32px rgba(36, 28, 13, 0.10);
  --shadow-lg: 0 24px 60px rgba(36, 28, 13, 0.16);
  --container: 1200px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---- Reset-ish ---- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16.5px;
  line-height: 1.7;
  color: var(--c-body);
  background: var(--c-white);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--c-green-600); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--c-green-800); }
h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--c-ink);
  line-height: 1.12;
  margin: 0 0 0.5em;
  font-weight: 700;
  letter-spacing: -0.01em;
}
p { margin: 0 0 1.1em; }
ul { padding: 0; }

.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.container--narrow { max-width: 820px; }

.skip-link {
  position: absolute; left: -9999px; top: 0; background: var(--c-ink); color: #fff;
  padding: 10px 18px; z-index: 200; border-radius: 0 0 10px 0;
}
.skip-link:focus { left: 0; color: #fff; }

/* ---- Buttons ---- */
.btn {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--font-display); font-weight: 600; font-size: 15.5px;
  letter-spacing: 0.02em; line-height: 1;
  padding: 15px 26px 13px; border-radius: 999px; border: 1.6px solid transparent;
  cursor: pointer; transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), background 0.2s, color 0.2s, border-color 0.2s;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn--lg { padding: 18px 32px 16px; font-size: 16.5px; }
.btn--sm { padding: 11px 18px 9px; font-size: 14px; }
.btn--block { width: 100%; justify-content: center; }

.btn--primary { background: linear-gradient(135deg, var(--c-gold-500), var(--c-gold-600)); color: var(--c-green-900); box-shadow: 0 8px 24px rgba(242, 183, 5, 0.35); }
.btn--primary:hover { color: var(--c-green-900); box-shadow: 0 12px 30px rgba(242, 183, 5, 0.45); }

.btn--dark { background: var(--c-green-600); color: #fff; box-shadow: 0 8px 24px rgba(85, 66, 15, 0.28); }
.btn--dark:hover { background: var(--c-green-700); color: #fff; }

.btn--ghost { background: transparent; color: var(--c-green-700); border-color: var(--c-green-600); }
.btn--ghost:hover { background: var(--c-green-600); color: #fff; }

.btn--glass { background: rgba(255, 255, 255, 0.14); color: #fff; border-color: rgba(255, 255, 255, 0.45); backdrop-filter: blur(8px); }
.btn--glass:hover { background: rgba(255, 255, 255, 0.26); color: #fff; }

.btn--light { background: #fff; color: var(--c-green-800); }
.btn--light:hover { color: var(--c-green-900); box-shadow: var(--shadow-md); }

.btn--outline-light { background: transparent; border-color: rgba(255,255,255,0.6); color: #fff; }
.btn--outline-light:hover { background: rgba(255,255,255,0.12); color: #fff; }

.icon { flex: none; vertical-align: -0.18em; }

/* ---- Topbar ---- */
.topbar { background: var(--c-green-900); color: rgba(255,255,255,0.85); font-size: 13.5px; }
.topbar__inner { display: flex; justify-content: space-between; align-items: center; gap: 16px; padding-top: 8px; padding-bottom: 8px; }
.topbar a { color: rgba(255,255,255,0.85); display: inline-flex; align-items: center; gap: 7px; }
.topbar a:hover { color: var(--c-gold-500); }
.topbar__contacts { display: flex; gap: 22px; }
.topbar__note { display: inline-flex; align-items: center; gap: 7px; color: rgba(255,255,255,0.65); }

/* ---- Header / nav ---- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(36, 28, 13, 0.07);
  transition: box-shadow 0.3s;
}
.site-header.is-scrolled { box-shadow: var(--shadow-sm); }
.site-header__inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; min-height: 78px; }

.site-brand__text { display: inline-flex; align-items: center; gap: 11px; }
.site-brand__mark {
  width: 44px; height: 44px; border-radius: 13px; display: grid; place-items: center;
  background: linear-gradient(135deg, var(--c-green-600), var(--c-green-800)); color: var(--c-gold-500);
  box-shadow: 0 6px 16px rgba(85, 66, 15, 0.3);
}
.site-brand__name { font-family: var(--font-display); font-weight: 800; font-size: 23px; color: var(--c-ink); letter-spacing: -0.01em; }
.site-brand__name span { color: var(--c-green-600); font-weight: 600; }
.custom-logo { max-height: 60px; width: auto; border-radius: 12px; display: block; }

.site-nav { display: flex; align-items: center; gap: 26px; }
.site-nav__list { display: flex; align-items: center; gap: 6px; list-style: none; margin: 0; padding: 0; }
.site-nav__list a {
  font-family: var(--font-display); font-weight: 600; font-size: 15.5px; color: var(--c-ink);
  padding: 10px 14px; border-radius: 999px; position: relative;
}
.site-nav__list a:hover { color: var(--c-green-600); background: rgba(85, 66, 15, 0.07); }
.site-nav__list .current-menu-item > a,
.site-nav__list .current_page_item > a { color: var(--c-green-600); background: rgba(85, 66, 15, 0.09); }

/* Contact block shown at the bottom of the mobile menu drawer */
.site-nav__contact {
  display: none; flex-direction: column; gap: 10px;
  margin-top: auto; padding-top: 22px; border-top: 1px solid rgba(255,255,255,0.1);
}
.site-nav__contact a { display: inline-flex; align-items: center; gap: 10px; color: rgba(255,255,255,0.85); font-size: 15px; }
.site-nav__contact a:hover { color: var(--c-gold-500); }
.site-nav__contact .icon { color: var(--c-gold-500); }

@keyframes navfade { from { opacity: 0; } to { opacity: 1; } }

.nav-toggle { display: none; background: none; border: 0; width: 46px; height: 46px; border-radius: 12px; cursor: pointer; padding: 12px 10px; }
.nav-toggle span { display: block; height: 2.4px; background: var(--c-ink); border-radius: 2px; margin: 4.5px 0; transition: transform 0.3s var(--ease), opacity 0.2s; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.9px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6.9px) rotate(-45deg); }

/* ---- Hero ---- */
.hero {
  position: relative; min-height: 92vh; display: flex; align-items: center;
  background:
    linear-gradient(115deg, rgba(30, 22, 8, 0.88) 0%, rgba(40, 29, 10, 0.62) 45%, rgba(40, 29, 10, 0.28) 100%),
    var(--hero-img, linear-gradient(135deg, var(--c-green-800), var(--c-green-600)));
  background-size: cover; background-position: center;
  color: #fff; overflow: hidden;
}
.hero::after {
  content: ""; position: absolute; inset: auto 0 0 0; height: 140px;
  background: linear-gradient(to top, rgba(30, 22, 8, 0.55), transparent);
  pointer-events: none;
}
.hero__inner { position: relative; z-index: 2; padding: 120px 24px; }
.hero__content { max-width: 720px; }
.hero__eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-display); font-weight: 600; font-size: 14px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--c-gold-500);
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.16);
  padding: 9px 16px 7px; border-radius: 999px; backdrop-filter: blur(6px);
  margin-bottom: 26px;
}
.hero__title {
  color: #fff; font-size: clamp(44px, 7vw, 84px); font-weight: 800; letter-spacing: -0.02em;
  margin-bottom: 12px; text-wrap: balance;
}
.hero__tagline {
  font-family: var(--font-display); font-weight: 600;
  font-size: clamp(20px, 2.6vw, 30px); color: var(--c-gold-500); margin-bottom: 18px;
}
.hero__lead { font-size: clamp(16px, 1.6vw, 19px); color: rgba(255,255,255,0.86); max-width: 560px; margin-bottom: 34px; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 42px; }
.hero__badges { display: flex; flex-wrap: wrap; gap: 26px; list-style: none; margin: 0; padding: 0; }
.hero__badges li { display: inline-flex; align-items: center; gap: 9px; font-size: 14.5px; color: rgba(255,255,255,0.82); }
.hero__badges .icon { color: var(--c-gold-500); }

.hero__scroll { position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%); z-index: 2; }
.hero__scroll span {
  display: block; width: 26px; height: 42px; border: 2px solid rgba(255,255,255,0.5); border-radius: 999px; position: relative;
}
.hero__scroll span::after {
  content: ""; position: absolute; top: 8px; left: 50%; width: 4px; height: 8px; margin-left: -2px;
  background: var(--c-gold-500); border-radius: 4px; animation: scrollhint 1.8s infinite var(--ease);
}
@keyframes scrollhint { 0% { transform: translateY(0); opacity: 1; } 70% { transform: translateY(12px); opacity: 0; } 100% { opacity: 0; } }

/* ---- Page hero (inner pages) ---- */
.page-hero {
  position: relative; padding: 110px 0 80px; color: #fff;
  background:
    linear-gradient(115deg, rgba(30, 22, 8, 0.9) 0%, rgba(40, 29, 10, 0.68) 55%, rgba(40, 29, 10, 0.4) 100%),
    var(--hero-img, linear-gradient(135deg, var(--c-green-800), var(--c-green-600)));
  background-size: cover; background-position: center;
}
.page-hero__title { color: #fff; font-size: clamp(36px, 5vw, 58px); font-weight: 800; margin: 10px 0 8px; }
.page-hero__subtitle { color: rgba(255,255,255,0.85); font-size: 18px; max-width: 640px; margin: 0; }
.breadcrumbs { font-size: 13.5px; color: rgba(255,255,255,0.65); display: flex; gap: 10px; align-items: center; }
.breadcrumbs a { color: var(--c-gold-500); }

/* ---- Sections ---- */
.section { padding: 96px 0; }
.section--muted { background: var(--c-sand); }
.section-cta { text-align: center; margin-top: 48px; }

.section-head { max-width: 720px; margin-bottom: 52px; }
.section-head--center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head--split { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; max-width: none; }
.eyebrow {
  display: inline-block; font-family: var(--font-display); font-weight: 700; font-size: 13px;
  letter-spacing: 0.18em; text-transform: uppercase; color: var(--c-green-600);
  margin-bottom: 12px; position: relative; padding-left: 34px;
}
.eyebrow::before { content: ""; position: absolute; left: 0; top: 50%; width: 24px; height: 2.5px; background: var(--c-gold-500); border-radius: 2px; transform: translateY(-60%); }
.section-head--center .eyebrow { padding-left: 0; }
.section-head--center .eyebrow::before { display: none; }
.section-title { font-size: clamp(30px, 3.6vw, 44px); letter-spacing: -0.015em; text-wrap: balance; }
.section-lead { font-size: 18px; color: var(--c-body); }

/* ---- Intro / about split ---- */
.intro__grid { display: grid; grid-template-columns: 1fr 1.05fr; gap: 72px; align-items: center; }
.intro__media { position: relative; }
.intro__media img { border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); aspect-ratio: 4 / 4.6; object-fit: cover; width: 100%; }
.intro__card {
  position: absolute; bottom: -26px; right: -20px;
  background: var(--c-green-600); color: #fff; border-radius: var(--radius-md);
  padding: 22px 26px 18px; box-shadow: var(--shadow-md); max-width: 220px;
}
.intro__card-number { display: block; font-family: var(--font-display); font-weight: 800; font-size: 38px; color: var(--c-gold-500); line-height: 1; }
.intro__card-label { font-size: 14px; color: rgba(255,255,255,0.85); }
.checklist { list-style: none; margin: 22px 0 30px; display: grid; gap: 13px; }
.checklist li { display: flex; align-items: center; gap: 12px; font-weight: 500; color: var(--c-ink); }
.checklist .icon { color: var(--c-white); background: var(--c-green-600); border-radius: 999px; padding: 4px; width: 26px; height: 26px; }

/* ---- Services ---- */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.service-card {
  background: #fff; border: 1px solid var(--c-line); border-radius: var(--radius-lg);
  padding: 36px 30px 30px; position: relative; overflow: hidden;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), border-color 0.3s;
}
.service-card::before {
  content: ""; position: absolute; inset: 0 auto auto 0; width: 100%; height: 4px;
  background: linear-gradient(90deg, var(--c-green-600), var(--c-gold-500));
  transform: scaleX(0); transform-origin: left; transition: transform 0.4s var(--ease);
}
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); border-color: transparent; }
.service-card:hover::before { transform: scaleX(1); }
.service-card__icon {
  width: 64px; height: 64px; border-radius: 18px; display: grid; place-items: center;
  background: linear-gradient(135deg, rgba(32,96,61,0.1), rgba(242,183,5,0.14));
  color: var(--c-green-600); margin-bottom: 22px;
  transition: background 0.3s, color 0.3s;
}
.service-card:hover .service-card__icon { background: var(--c-green-600); color: var(--c-gold-500); }
.service-card__title { font-size: 21px; margin-bottom: 10px; }
.service-card__text { font-size: 15.5px; margin-bottom: 18px; }
.service-card__link { font-family: var(--font-display); font-weight: 600; font-size: 15px; display: inline-flex; align-items: center; gap: 7px; }
.service-card__link:hover { gap: 11px; }
.service-card__link { transition: gap 0.25s var(--ease); }

/* ---- Tours ---- */
.tours-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.tour-card {
  background: #fff; border-radius: var(--radius-lg); overflow: hidden;
  border: 1px solid var(--c-line); display: flex; flex-direction: column;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.tour-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.tour-card__media { position: relative; display: block; aspect-ratio: 16 / 11; overflow: hidden; background: var(--c-sand); }
.tour-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.tour-card:hover .tour-card__media img { transform: scale(1.06); }
.tour-card__placeholder { display: grid; place-items: center; height: 100%; color: var(--c-green-600); opacity: 0.4; }
.tour-card__price {
  position: absolute; top: 16px; right: 16px;
  background: rgba(40, 29, 10, 0.82); color: var(--c-gold-500); backdrop-filter: blur(6px);
  font-family: var(--font-display); font-weight: 700; font-size: 14.5px;
  padding: 9px 15px 7px; border-radius: 999px;
}
.tour-card__body { padding: 24px 24px 22px; display: flex; flex-direction: column; flex: 1; }
.tour-card__location { display: inline-flex; align-items: center; gap: 6px; font-size: 13px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: var(--c-green-600); margin-bottom: 8px; }
.tour-card__title { font-size: 21px; margin-bottom: 8px; }
.tour-card__title a { color: var(--c-ink); }
.tour-card__title a:hover { color: var(--c-green-600); }
.tour-card__excerpt { font-size: 15px; flex: 1; }
.tour-card__footer { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-top: 14px; padding-top: 16px; border-top: 1px solid var(--c-line); }
.tour-card__duration { display: inline-flex; align-items: center; gap: 6px; font-size: 14px; color: var(--c-body); font-weight: 500; }

/* ---- Stats band ---- */
.stats-band { background: linear-gradient(120deg, var(--c-green-800), var(--c-green-600)); color: #fff; padding: 66px 0; }
.stats-band__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; text-align: center; }
.stat__number { display: block; font-family: var(--font-display); font-weight: 800; font-size: clamp(38px, 4.4vw, 56px); color: var(--c-gold-500); line-height: 1; margin-bottom: 6px; }
.stat__label { color: rgba(255,255,255,0.82); font-size: 15px; }

/* ---- Why cards ---- */
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.why-card {
  background: #fff; border-radius: var(--radius-lg); padding: 32px 26px; border: 1px solid var(--c-line);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.why-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.why-card__icon {
  width: 56px; height: 56px; border-radius: 16px; display: grid; place-items: center;
  background: rgba(242, 183, 5, 0.16); color: var(--c-green-700); margin-bottom: 18px;
}
.why-card h3 { font-size: 19px; }
.why-card p { font-size: 15px; margin: 0; }

/* ---- Steps ---- */
.steps__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.step { background: #fff; border-radius: var(--radius-lg); border: 1px solid var(--c-line); padding: 30px 26px; position: relative; }
.step__number {
  display: inline-grid; place-items: center; width: 46px; height: 46px; border-radius: 999px;
  background: var(--c-green-600); color: var(--c-gold-500);
  font-family: var(--font-display); font-weight: 800; font-size: 19px; margin-bottom: 16px;
}
.step h3 { font-size: 18.5px; }
.step p { font-size: 15px; margin: 0; }

/* ---- Rentals ---- */
.rentals-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.rental-card { background: #fff; border-radius: var(--radius-lg); border: 1px solid var(--c-line); padding: 30px 26px; transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease); }
.rental-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.rental-card__icon { width: 58px; height: 58px; border-radius: 16px; display: grid; place-items: center; background: rgba(32,96,61,0.09); color: var(--c-green-600); margin-bottom: 16px; }
.rental-card h3 { font-size: 19px; }
.rental-card p { font-size: 15px; margin: 0; }

/* ---- Founder ---- */
.founder { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 64px; align-items: center; }
.founder__media img { border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); aspect-ratio: 4/4.8; object-fit: cover; width: 100%; }
.founder__role { font-family: var(--font-display); font-weight: 600; color: var(--c-green-600); letter-spacing: 0.08em; text-transform: uppercase; font-size: 14px; }
.founder__quote {
  margin: 26px 0 0; padding: 24px 28px; background: #fff; border-left: 4px solid var(--c-gold-500);
  border-radius: 0 var(--radius-md) var(--radius-md) 0; box-shadow: var(--shadow-sm);
  font-style: italic; color: var(--c-ink); font-size: 17px;
}

/* ---- Gallery ---- */
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.gallery-item { border-radius: var(--radius-md); overflow: hidden; position: relative; display: block; aspect-ratio: 1 / 1; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s var(--ease); }
.gallery-item::after {
  content: "+"; position: absolute; inset: 0; display: grid; place-items: center;
  background: rgba(40, 29, 10, 0.45); color: #fff; font-size: 40px; font-weight: 300;
  opacity: 0; transition: opacity 0.3s;
}
.gallery-item:hover::after { opacity: 1; }
.gallery-item:hover img { transform: scale(1.07); }
.gallery-hint { text-align: center; margin-top: 28px; font-size: 14px; color: #8a978f; }

.lightbox {
  position: fixed; inset: 0; z-index: 300; background: rgba(28, 21, 8, 0.94);
  display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 40px;
}
.lightbox[hidden] { display: none; }
.lightbox img { max-width: min(1100px, 92vw); max-height: 80vh; border-radius: var(--radius-md); box-shadow: var(--shadow-lg); }
.lightbox__caption { color: rgba(255,255,255,0.8); margin-top: 16px; }
.lightbox__close {
  position: absolute; top: 22px; right: 30px; background: none; border: 0; color: #fff;
  font-size: 44px; line-height: 1; cursor: pointer; opacity: 0.8;
}
.lightbox__close:hover { opacity: 1; }

/* ---- Forms ---- */
.divert-form { background: #fff; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px 22px; margin-bottom: 26px; }
.form-field { display: flex; flex-direction: column; gap: 8px; }
.form-field--full { grid-column: 1 / -1; }
.form-field label { font-family: var(--font-display); font-weight: 600; font-size: 14.5px; color: var(--c-ink); }
.form-field input, .form-field select, .form-field textarea {
  font-family: var(--font-body); font-size: 15.5px; color: var(--c-ink);
  padding: 14px 16px; border: 1.6px solid var(--c-line); border-radius: var(--radius-sm);
  background: var(--c-sand); transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
  width: 100%;
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
  outline: none; border-color: var(--c-green-600); background: #fff;
  box-shadow: 0 0 0 4px rgba(85, 66, 15, 0.12);
}
.form-privacy { font-size: 13.5px; color: #8a978f; margin-top: 14px; }
.hp-field { position: absolute !important; left: -9999px !important; }
.form-notice { padding: 16px 20px; border-radius: var(--radius-sm); margin-bottom: 24px; font-size: 15px; }
.form-notice--success { background: rgba(85, 66, 15, 0.1); color: var(--c-green-800); border: 1px solid rgba(85, 66, 15, 0.25); }
.form-notice--error { background: rgba(196, 30, 58, 0.08); color: #a1273e; border: 1px solid rgba(196, 30, 58, 0.25); }

.form-panel { background: #fff; border: 1px solid var(--c-line); border-radius: var(--radius-lg); padding: 40px 38px; box-shadow: var(--shadow-sm); }
.form-panel__title { font-size: 26px; margin-bottom: 24px; }

/* ---- Booking page ---- */
.booking-layout { display: grid; grid-template-columns: 1.5fr 1fr; gap: 44px; align-items: start; }
.booking-layout__form { background: #fff; border: 1px solid var(--c-line); border-radius: var(--radius-lg); padding: 42px 40px; box-shadow: var(--shadow-sm); }
.contact-card, .assure-card {
  border-radius: var(--radius-lg); padding: 32px 30px; margin-bottom: 24px;
}
.contact-card { background: var(--c-green-900); color: #fff; }
.contact-card h3 { color: #fff; font-size: 21px; margin-bottom: 18px; }
.assure-card { background: var(--c-sand); border: 1px solid var(--c-line); }
.assure-card h3 { font-size: 20px; margin-bottom: 14px; }
.assure-list { margin: 0; padding-left: 20px; display: grid; gap: 10px; font-size: 15px; }

/* ---- Contact page ---- */
.contact-layout { display: grid; grid-template-columns: 1.05fr 1fr; gap: 52px; align-items: start; }
.contact-tiles { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-bottom: 28px; }
.contact-tile {
  display: flex; flex-direction: column; gap: 4px;
  background: #fff; border: 1px solid var(--c-line); border-radius: var(--radius-md); padding: 24px 22px;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.contact-tile:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.contact-tile__icon { color: var(--c-green-600); margin-bottom: 8px; }
.contact-tile__label { font-family: var(--font-display); font-weight: 700; font-size: 13px; letter-spacing: 0.1em; text-transform: uppercase; color: #8a978f; }
.contact-tile__value { font-weight: 600; color: var(--c-ink); font-size: 15.5px; }
.map-embed { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); border: 1px solid var(--c-line); }
.map-embed iframe { width: 100%; height: 320px; border: 0; display: block; background: var(--c-sand); }
.map-embed__link { display: inline-flex; align-items: center; gap: 7px; padding: 12px 18px; font-size: 14px; font-weight: 600; }

/* ---- Single tour ---- */
.page-hero--tour { padding: 130px 0 90px; }
.tour-meta { display: flex; flex-wrap: wrap; gap: 22px; margin-top: 18px; }
.tour-meta span { display: inline-flex; align-items: center; gap: 8px; color: rgba(255,255,255,0.88); font-size: 15px; }
.tour-meta__price {
  background: var(--c-gold-500); color: var(--c-green-900) !important;
  font-family: var(--font-display); font-weight: 700; padding: 8px 16px 6px; border-radius: 999px;
}
.tour-single { display: grid; grid-template-columns: 1.6fr 1fr; gap: 52px; align-items: start; }
.booking-box {
  position: sticky; top: 110px;
  background: #fff; border: 1px solid var(--c-line); border-radius: var(--radius-lg);
  padding: 32px 30px; box-shadow: var(--shadow-md);
}
.booking-box h3 { font-size: 21px; }
.booking-box__price { font-family: var(--font-display); font-weight: 800; font-size: 30px; color: var(--c-green-600); margin: 6px 0 16px; }
.booking-box__list { list-style: none; margin: 0 0 22px; display: grid; gap: 11px; }
.booking-box__list li { display: flex; align-items: center; gap: 10px; font-size: 15px; color: var(--c-ink); }
.booking-box__list .icon { color: var(--c-green-600); }
.booking-box .btn { margin-bottom: 10px; }

/* ---- Entry content (WYSIWYG) ---- */
.entry-content h2 { font-size: 30px; margin-top: 1.4em; }
.entry-content h3 { font-size: 23px; margin-top: 1.3em; }
.entry-content ul { padding-left: 22px; }
.entry-content li { margin-bottom: 8px; }
.entry-content img { border-radius: var(--radius-md); }
.entry-content blockquote { border-left: 4px solid var(--c-gold-500); margin: 1.4em 0; padding: 4px 0 4px 22px; color: var(--c-ink); font-style: italic; }

/* ---- CTA band ---- */
.cta-band {
  background:
    linear-gradient(115deg, rgba(40, 29, 10, 0.93), rgba(85, 66, 15, 0.88)),
    url('../img/cta.jpg') center / cover;
  color: #fff; padding: 78px 0;
}
.cta-band__inner { display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap; }
.cta-band__title { color: #fff; font-size: clamp(28px, 3.4vw, 42px); margin-bottom: 6px; }
.cta-band__text { color: var(--c-gold-500); font-family: var(--font-display); font-weight: 600; font-size: 19px; margin: 0; }
.cta-band__actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* ---- Footer ---- */
.site-footer { background: var(--c-green-900); color: rgba(255,255,255,0.78); }
.site-footer__grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1.2fr 1.2fr; gap: 48px;
  padding: 74px 24px 54px;
}
.site-brand__text--footer .site-brand__name { color: #fff; }
.site-brand__text--footer .site-brand__name span { color: var(--c-gold-500); }
.footer-col p { font-size: 15px; margin-top: 16px; }
.footer-col h3 { color: #fff; font-size: 17px; letter-spacing: 0.04em; text-transform: uppercase; margin-bottom: 20px; }
.footer-links { list-style: none; margin: 0; padding: 0; display: grid; gap: 11px; }
.footer-links a { color: rgba(255,255,255,0.78); font-size: 15px; }
.footer-links a:hover { color: var(--c-gold-500); }
.footer-contact { list-style: none; margin: 0; padding: 0; display: grid; gap: 13px; }
.footer-contact li { display: flex; align-items: flex-start; gap: 11px; font-size: 15px; }
.footer-contact .icon { color: var(--c-gold-500); margin-top: 3px; }
.footer-contact a { color: rgba(255,255,255,0.78); }
.footer-contact a:hover { color: var(--c-gold-500); }
.footer-contact--dark li, .footer-contact--dark a { color: rgba(255,255,255,0.85); }
.footer-social { display: flex; gap: 10px; margin-top: 20px; }
.footer-social a {
  width: 40px; height: 40px; border-radius: 12px; display: grid; place-items: center;
  background: rgba(255,255,255,0.08); color: #fff; transition: background 0.25s, color 0.25s, transform 0.25s;
}
.footer-social a:hover { background: var(--c-gold-500); color: var(--c-green-900); transform: translateY(-3px); }
.site-footer__bottom { border-top: 1px solid rgba(255,255,255,0.1); }
.site-footer__bottom-inner { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; padding-top: 22px; padding-bottom: 22px; font-size: 13.5px; color: rgba(255,255,255,0.55); }
.site-footer__bottom p { margin: 0; }

/* ---- WhatsApp FAB ---- */
.whatsapp-fab {
  position: fixed; right: 24px; bottom: 24px; z-index: 150;
  width: 60px; height: 60px; border-radius: 999px; display: grid; place-items: center;
  background: #25d366; color: #fff; box-shadow: 0 12px 30px rgba(37, 211, 102, 0.45);
  transition: transform 0.3s var(--ease), box-shadow 0.3s;
}
.whatsapp-fab:hover { transform: translateY(-4px) scale(1.05); color: #fff; box-shadow: 0 16px 36px rgba(37, 211, 102, 0.55); }

/* ---- Editable block content (pages built with the WordPress editor) ---- */
.entry-content--blocks { font-size: 16.5px; }
.entry-content--front { padding: 0; }
.section--page { padding: 0 0 40px; }

/* Full-width color bands */
.entry-content--blocks .band {
  padding: 88px 24px;
}
.entry-content--front .band { padding: 96px 24px; }
.entry-content--blocks .band__inner { max-width: var(--container); margin: 0 auto; }
.band--muted { background: var(--c-sand); }
.band--green { background: linear-gradient(120deg, var(--c-green-800), var(--c-green-600)); color: #fff; padding-top: 60px !important; padding-bottom: 60px !important; }
.band--green p { color: rgba(255,255,255,0.85); }

/* In the narrower page context, bands bleed full width */
.section--page .alignfull,
.entry-content--front .alignfull { margin-left: calc(50% - 50vw); margin-right: calc(50% - 50vw); width: 100vw; }

/* Eyebrow inside content */
.entry-content--blocks p.eyebrow { margin-bottom: 4px; }
.entry-content--blocks .eyebrow--center { text-align: center; padding-left: 0; }
.entry-content--blocks .eyebrow--center::before { display: none; }
.entry-content--blocks h2.section-title { margin-top: 0; margin-bottom: 18px; }
.entry-content--blocks .section-lead { max-width: 680px; }
.entry-content--blocks .has-text-align-center.section-lead { margin-left: auto; margin-right: auto; }

/* Cards built as group blocks */
.dcard {
  background: #fff; border: 1px solid var(--c-line); border-radius: var(--radius-lg);
  padding: 32px 28px; height: 100%; position: relative; overflow: hidden;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.dcard::before {
  content: ""; position: absolute; inset: 0 auto auto 0; width: 100%; height: 4px;
  background: linear-gradient(90deg, var(--c-green-600), var(--c-gold-500));
  transform: scaleX(0); transform-origin: left; transition: transform 0.4s var(--ease);
}
.dcard:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.dcard:hover::before { transform: scaleX(1); }
.dcard .dcard__title { font-size: 20px; margin: 0 0 10px; }
.dcard p { font-size: 15.5px; }
.dcard p:last-child { margin-bottom: 0; }
.dcard__number {
  display: inline-grid; place-items: center; width: 46px; height: 46px; border-radius: 999px;
  background: var(--c-green-600); color: var(--c-gold-500);
  font-family: var(--font-display); font-weight: 800; font-size: 19px; margin-bottom: 4px;
}
.band--green .stat-number,
.entry-content--blocks .stat-number {
  font-family: var(--font-display); font-weight: 800; font-size: clamp(38px, 4.4vw, 54px);
  color: var(--c-gold-500); text-align: center; margin: 0; line-height: 1;
}
.entry-content--blocks .stat-label { text-align: center; font-size: 15px; margin-top: 8px; }
.founder-role { font-family: var(--font-display); font-weight: 600; color: var(--c-green-600); letter-spacing: 0.08em; text-transform: uppercase; font-size: 14px; }

/* Core blocks styled to match the theme */
.entry-content .wp-block-columns { gap: 26px; }
.entry-content .wp-block-image img, .entry-content .rounded-img img { border-radius: var(--radius-lg); box-shadow: var(--shadow-md); }
.entry-content .wp-block-list.checklist { list-style: none; padding-left: 0; }
.entry-content .checklist li { position: relative; padding-left: 36px; margin-bottom: 12px; font-weight: 500; color: var(--c-ink); }
.entry-content .checklist li::before {
  content: "✓"; position: absolute; left: 0; top: 0;
  width: 26px; height: 26px; border-radius: 999px; display: grid; place-items: center;
  background: var(--c-green-600); color: #fff; font-size: 14px; font-weight: 700;
}
.entry-content .wp-block-button__link {
  font-family: var(--font-display); font-weight: 600; font-size: 15.5px;
  background: linear-gradient(135deg, var(--c-gold-500), var(--c-gold-600)); color: var(--c-green-900);
  border-radius: 999px; padding: 15px 26px 13px; text-decoration: none;
  box-shadow: 0 8px 24px rgba(242, 183, 5, 0.3);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
  display: inline-block; border: 1.6px solid transparent;
}
.entry-content .wp-block-button__link:hover { transform: translateY(-2px); color: var(--c-green-900); }
.entry-content .is-style-outline .wp-block-button__link {
  background: transparent; color: var(--c-green-700); border-color: var(--c-green-600); box-shadow: none;
}
.entry-content .is-style-outline .wp-block-button__link:hover { background: var(--c-green-600); color: #fff; }
.band--green .wp-block-button__link { box-shadow: none; }
.entry-content--blocks .form-panel { height: 100%; }
.entry-content--blocks .tours-grid { margin-bottom: 34px; }
.entry-content--blocks .gallery-grid { margin-top: 34px; }

/* Native WordPress Gallery block, styled to match the theme */
.entry-content .wp-block-gallery.divert-gallery,
.entry-content .wp-block-gallery { gap: 18px; margin-top: 34px; }
.entry-content .wp-block-gallery .wp-block-image {
  border-radius: var(--radius-md); overflow: hidden; position: relative; margin: 0;
}
.entry-content .wp-block-gallery .wp-block-image img {
  border-radius: var(--radius-md); box-shadow: none;
  transition: transform 0.5s var(--ease);
}
.entry-content .wp-block-gallery .wp-block-image:hover img { transform: scale(1.06); }
.entry-content .wp-block-gallery .wp-block-image a { display: block; }

@media (max-width: 781px) {
  .entry-content--blocks .band { padding: 64px 20px; }
  .entry-content .wp-block-columns { gap: 18px; }
}

/* ---- Reveal animation ---- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ---- Responsive ---- */
@media (max-width: 1080px) {
  .services-grid, .tours-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid, .rentals-grid, .steps__grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .site-footer__grid { grid-template-columns: 1fr 1fr; }
  .intro__grid, .founder { grid-template-columns: 1fr; gap: 56px; }
  .tour-single { grid-template-columns: 1fr; }
  .booking-box { position: static; }
  .contact-layout, .booking-layout { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
  .section { padding: 68px 0; }
  .topbar__note { display: none; }
  .nav-toggle { display: block; }

  /* Solid header on mobile: backdrop-filter would trap the fixed menu
     drawer inside the header box (it creates a containing block). */
  .site-header { background: rgba(255, 255, 255, 0.97); backdrop-filter: none; -webkit-backdrop-filter: none; }

  /* Dimmed backdrop behind the open menu */
  body.nav-open::after {
    content: ""; position: fixed; inset: 0; z-index: 90;
    background: rgba(20, 14, 4, 0.55);
    animation: navfade 0.3s var(--ease);
  }

  /* Modern full-height slide-in drawer */
  .site-nav {
    position: fixed; top: 0; right: 0; bottom: 0; left: auto;
    width: min(360px, 88vw); height: 100vh; height: 100dvh; z-index: 120;
    background: linear-gradient(170deg, var(--c-green-800), var(--c-green-900) 60%);
    flex-direction: column; align-items: stretch; justify-content: flex-start;
    padding: 88px 26px 28px; gap: 6px;
    border-radius: 24px 0 0 24px;
    transform: translateX(105%); transition: transform 0.38s var(--ease);
    box-shadow: -24px 0 60px rgba(20, 14, 4, 0.4);
    overflow-y: auto;
  }
  .site-nav.is-open { transform: none; }
  .site-nav__list { flex-direction: column; align-items: stretch; width: 100%; gap: 2px; }
  .site-nav__list li + li { border-top: 1px solid rgba(255, 255, 255, 0.08); }
  .site-nav__list a {
    color: #fff; display: block; font-size: 17.5px; padding: 15px 12px; border-radius: 10px;
  }
  .site-nav__list a:hover,
  .site-nav__list .current-menu-item > a,
  .site-nav__list .current_page_item > a { color: var(--c-gold-500); background: rgba(255,255,255,0.06); }
  .site-nav__cta { margin-top: 20px; justify-content: center; }
  .site-nav__contact { display: flex; }

  /* Keep the toggle (and its X state) above the backdrop and drawer */
  .site-header { z-index: 125; }
  .nav-toggle { position: relative; z-index: 130; }
  body.nav-open .site-header { background: transparent; border-bottom-color: transparent; box-shadow: none; }
  .nav-toggle[aria-expanded="true"] span { background: #fff; }
  body.nav-open { overflow: hidden; }

  .hero { min-height: 88vh; }
  .hero__inner { padding: 90px 24px; }
  .services-grid, .tours-grid, .why-grid, .rentals-grid, .steps__grid, .contact-tiles, .form-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .section-head--split { flex-direction: column; align-items: flex-start; }
  .site-footer__grid { grid-template-columns: 1fr; gap: 36px; }
  .intro__card { right: 12px; bottom: -20px; }
  .booking-layout__form, .form-panel { padding: 30px 22px; }
  .hero__badges { gap: 14px; }
  .whatsapp-fab { right: 16px; bottom: 16px; width: 54px; height: 54px; }
}
