/*
Theme Name: Mahale Mountains
Theme URI: https://mahalemountainstanzania.com
Author: Mahale Mountains National Park
Author URI: https://mahalemountainstanzania.com
Description: Elementor-compatible WordPress theme for Mahale Mountains National Park Tanzania. Custom post type: Safari. Designed to work with Elementor page builder for full layout control.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 8.1
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: mahale
Tags: custom-menu, custom-logo, elementor, safari, tourism, travel
*/

/* ================================================================
   MAHALE MOUNTAINS NATIONAL PARK – Shared Stylesheet
   Colour palette adapted from Sheldrick Wildlife Trust
   ================================================================ */

/* ---- CUSTOM PROPERTIES ---- */
:root {
  --color-charcoal:   #323232;
  --color-coral:      #E96559;
  --color-coral-dark: #d44e42;
  --color-teal:       #8EC1CA;
  --color-rust:       #982C15;
  --color-gold:       #996B33;
  --color-cream:      #F5F4F1;
  --color-cream-dark: #EAE8E3;
  --color-white:      #FFFFFF;
  --color-text:       #323232;
  --color-text-light: #60616A;
  --color-text-muted: #909090;
  --color-card-cta:   #1c1c1c;

  --font-heading: 'Lora', Georgia, 'Times New Roman', serif;
  --font-body:    'Lato', 'Helvetica Neue', Arial, sans-serif;

  --max-width:      1160px;
  --header-height:  80px;
  --t:              0.3s ease;
}

/* ---- 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(--color-text); background: var(--color-white); overflow-x: hidden; }
img { display: block; max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

.container { max-width: var(--max-width); margin: 0 auto; padding: 0 28px; }

/* ================================================================
   TOP BAR
   ================================================================ */
.topbar {
  background: var(--color-charcoal);
  color: rgba(255,255,255,0.65);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 9px 0;
}
.topbar .container { display: flex; justify-content: space-between; align-items: center; }
.topbar a { color: rgba(255,255,255,0.65); transition: color var(--t); }
.topbar a:hover { color: var(--color-coral); }
.topbar-left, .topbar-right { display: flex; gap: 20px; align-items: center; }
.topbar-left i, .topbar-right i { margin-right: 5px; font-size: 11px; }

/* ================================================================
   SITE HEADER — off-canvas hamburger style
   ================================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: var(--color-white);
  height: var(--header-height);
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--color-cream-dark);
  transition: box-shadow var(--t);
}
.site-header.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,0.1); }
.site-header .container { display: flex; align-items: center; justify-content: space-between; width: 100%; }

/* Logo */
.site-logo { display: flex; align-items: center; gap: 13px; }
.logo-emblem {
  width: 54px; height: 54px;
  border: 2px solid var(--color-gold);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--color-gold); font-size: 22px;
  flex-shrink: 0;
}
.logo-text strong { display: block; font-family: var(--font-heading); font-size: 15px; font-weight: 700; color: var(--color-charcoal); line-height: 1.2; }
.logo-text span { font-size: 10px; text-transform: uppercase; letter-spacing: 0.15em; color: var(--color-gold); }

/* Header right — CTA + hamburger */
.header-right { display: flex; align-items: center; gap: 12px; }
.btn-book {
  display: inline-block; padding: 11px 26px;
  background: var(--color-coral); color: var(--color-white);
  font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em;
  border-radius: 3px; transition: background var(--t);
}
.btn-book:hover { background: var(--color-coral-dark); }

/* Hamburger toggle */
.nav-toggle {
  display: flex; flex-direction: column; gap: 5px;
  cursor: pointer; padding: 8px; background: none; border: none;
}
.nav-toggle span { display: block; width: 26px; height: 2px; background: var(--color-charcoal); transition: all var(--t); border-radius: 1px; }

/* ================================================================
   OFF-CANVAS NAV OVERLAY
   ================================================================ */
.nav-overlay {
  position: fixed; inset: 0; z-index: 999;
  visibility: hidden; opacity: 0;
  transition: opacity var(--t), visibility var(--t);
}
.nav-overlay.open { visibility: visible; opacity: 1; }
.nav-overlay-bg {
  position: absolute; inset: 0;
  background: rgba(0,0,0,0.55);
}
.nav-panel {
  position: absolute; top: 0; right: 0; bottom: 0;
  width: 380px; max-width: 90vw;
  background: var(--color-white);
  padding: 0;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform 0.4s ease;
}
.nav-overlay.open .nav-panel { transform: translateX(0); }

.nav-panel-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px 28px;
  border-bottom: 1px solid var(--color-cream-dark);
  background: var(--color-cream);
}
.nav-panel-header .site-logo .logo-text strong { font-size: 13px; }

.nav-close {
  width: 38px; height: 38px; border: none; background: none;
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  font-size: 24px; color: var(--color-charcoal);
  border-radius: 50%; transition: background var(--t);
}
.nav-close:hover { background: var(--color-cream-dark); }

.nav-menu { padding: 16px 0; }
.nav-menu > li { border-bottom: 1px solid var(--color-cream-dark); }
.nav-menu > li > a {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 28px;
  font-size: 14px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em;
  color: var(--color-charcoal); transition: color var(--t), background var(--t);
}
.nav-menu > li > a:hover { color: var(--color-rust); background: var(--color-cream); }
.nav-menu > li > a i { font-size: 11px; color: var(--color-text-muted); transition: transform var(--t); }

/* Submenu */
.nav-submenu { display: none; background: var(--color-cream); border-top: 1px solid var(--color-cream-dark); }
.nav-submenu.open { display: block; }
.nav-submenu a {
  display: block; padding: 12px 28px 12px 42px;
  font-size: 13px; color: var(--color-text-light);
  border-bottom: 1px solid var(--color-cream-dark); transition: color var(--t);
}
.nav-submenu a:last-child { border-bottom: none; }
.nav-submenu a:hover { color: var(--color-rust); }

.nav-panel-footer {
  padding: 24px 28px;
  border-top: 1px solid var(--color-cream-dark);
  background: var(--color-cream);
}
.nav-panel-footer .btn-book { display: block; text-align: center; padding: 14px; }
.nav-social { display: flex; gap: 12px; margin-top: 16px; }
.nav-social a {
  width: 34px; height: 34px; border: 1px solid var(--color-cream-dark); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; color: var(--color-text-light); transition: all var(--t);
}
.nav-social a:hover { background: var(--color-coral); border-color: var(--color-coral); color: var(--color-white); }

/* ================================================================
   HERO — full-viewport with single CTA strip
   ================================================================ */
.hero {
  position: relative; height: 94vh; min-height: 600px; overflow: hidden;
}
.hero-slides { position: absolute; inset: 0; }
.hero-slide {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0; transition: opacity 1.4s ease;
}
.hero-slide.active { opacity: 1; }
.hero-slide::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.5) 65%, rgba(0,0,0,0.7) 100%);
}

.hero-content {
  position: absolute; bottom: 90px; left: 0; right: 0;
  z-index: 2; text-align: center; color: var(--color-white); padding: 0 20px;
}
.hero-eyebrow {
  font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.28em;
  color: rgba(255,255,255,0.75); margin-bottom: 18px;
}
.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.6rem, 5.5vw, 4.5rem);
  font-weight: 700; line-height: 1.12; margin-bottom: 18px;
  text-shadow: 0 2px 16px rgba(0,0,0,0.35);
}
.hero-subtitle {
  font-size: 17px; font-weight: 300; color: rgba(255,255,255,0.85);
  max-width: 560px; margin: 0 auto; line-height: 1.7;
}

/* Hero dot controls */
.hero-dots {
  position: absolute; bottom: 56px; left: 50%;
  transform: translateX(-50%); z-index: 3; display: flex; gap: 9px;
}
.hero-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(255,255,255,0.4); cursor: pointer; transition: background var(--t);
}
.hero-dot.active { background: var(--color-coral); }

/* Hero CTA strip */
.hero-cta-strip {
  position: absolute; bottom: 0; left: 0; right: 0; z-index: 3;
}
.hero-cta-strip a {
  display: block; padding: 20px;
  background: rgba(50,50,50,0.9); backdrop-filter: blur(4px);
  text-align: center;
  font-size: 14px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.14em; color: var(--color-white);
  transition: background var(--t);
  border: 1px solid rgba(255,255,255,0.1);
}
.hero-cta-strip a:hover { background: var(--color-coral); }

/* ================================================================
   INTRO BAR
   ================================================================ */
.intro-bar {
  padding: 28px 0 0;
  text-align: center;
}
.intro-bar-text {
  font-size: 15px; color: var(--color-text-light); max-width: 720px; margin: 0 auto 20px;
  line-height: 1.7;
}
.intro-bar-text a { color: var(--color-rust); font-weight: 700; border-bottom: 1px solid var(--color-rust); transition: color var(--t); }
.intro-bar-text a:hover { color: var(--color-coral); border-color: var(--color-coral); }
.intro-bar-link {
  display: inline-block; font-size: 12px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.14em; color: var(--color-rust);
  border-bottom: 2px solid var(--color-rust); padding-bottom: 2px; transition: color var(--t);
}
.intro-bar-link:hover { color: var(--color-coral); border-color: var(--color-coral); }
.intro-bar-divider { width: 1px; height: 40px; background: var(--color-cream-dark); margin: 18px auto 0; }
.intro-bar-chevron { text-align: center; font-size: 18px; color: var(--color-text-muted); padding: 8px 0 20px; }

/* ================================================================
   ABOUT PARAGRAPH
   ================================================================ */
.about-para {
  padding: 48px 0 52px;
  text-align: center;
  max-width: 680px; margin: 0 auto;
}
.about-para p {
  font-family: var(--font-heading);
  font-size: clamp(1.15rem, 2.2vw, 1.45rem);
  line-height: 1.75; color: var(--color-charcoal); font-weight: 400;
}
.about-para p em { color: var(--color-rust); font-style: italic; }

/* ================================================================
   ICON ROW
   ================================================================ */
.icon-row {
  padding: 16px 0 72px;
  border-top: 1px solid var(--color-cream-dark);
}
.icon-row .container { display: flex; justify-content: center; gap: 0; }
.icon-row-item {
  flex: 1; max-width: 300px; text-align: center; padding: 40px 20px;
  border-right: 1px solid var(--color-cream-dark);
  transition: background var(--t);
}
.icon-row-item:last-child { border-right: none; }
.icon-row-item:hover { background: var(--color-cream); }
.icon-row-item a { display: block; color: inherit; }
.icon-row-icon { font-size: 48px; color: var(--color-gold); margin-bottom: 16px; }
.icon-row-item h3 {
  font-family: var(--font-heading); font-size: 1.1rem; font-weight: 700;
  color: var(--color-charcoal); margin-bottom: 8px;
}
.icon-row-item h3 a { color: var(--color-charcoal); transition: color var(--t); }
.icon-row-item h3 a:hover { color: var(--color-rust); }
.icon-row-item p { font-size: 13px; color: var(--color-text-light); line-height: 1.6; }

/* ================================================================
   EXPERIENCE CARDS
   ================================================================ */
.cards-section { background: var(--color-cream); padding: 72px 0; }
.section-header { text-align: center; margin-bottom: 48px; }
.section-label {
  display: inline-block; font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.2em;
  color: var(--color-rust); margin-bottom: 14px;
}
.section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 700; color: var(--color-charcoal); line-height: 1.25;
}
.section-title em { font-style: italic; color: var(--color-rust); }
.section-body {
  font-size: 16px; color: var(--color-text-light); max-width: 640px;
  margin: 14px auto 0; line-height: 1.75;
}

/* Card grid */
.cards-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 0;
  border: 1px solid var(--color-cream-dark); border-radius: 4px; overflow: hidden;
}

/* Single card */
.exp-card {
  background: var(--color-white);
  border-right: 1px solid var(--color-cream-dark);
  display: flex; flex-direction: column;
  transition: box-shadow var(--t);
}
.exp-card:last-child { border-right: none; }
.exp-card:hover { box-shadow: 0 8px 32px rgba(0,0,0,0.1); z-index: 1; }

.exp-card-img { position: relative; height: 260px; overflow: hidden; flex-shrink: 0; }
.exp-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.exp-card:hover .exp-card-img img { transform: scale(1.06); }

.exp-card-tag {
  position: absolute; top: 14px; left: 14px;
  background: var(--color-coral); color: var(--color-white);
  font-size: 10px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.1em; padding: 4px 10px; border-radius: 2px;
}

.exp-card-body { padding: 28px 28px 0; text-align: center; flex: 1; }
.exp-card-name {
  font-family: var(--font-heading); font-size: 1.3rem; font-weight: 700;
  color: var(--color-charcoal); margin-bottom: 22px;
}
.exp-card-name a { color: var(--color-charcoal); transition: color var(--t); }
.exp-card-name a:hover { color: var(--color-rust); }

/* Meta row */
.exp-card-meta {
  display: flex; border-top: 1px solid var(--color-cream-dark);
  border-bottom: 1px solid var(--color-cream-dark); margin-bottom: 20px;
}
.meta-col {
  flex: 1; padding: 14px 8px; text-align: center;
  border-right: 1px solid var(--color-cream-dark);
}
.meta-col:last-child { border-right: none; }
.meta-label { display: block; font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em; color: var(--color-text-muted); margin-bottom: 4px; }
.meta-value { display: block; font-size: 13px; color: var(--color-charcoal); font-weight: 600; }

/* Best for row */
.exp-card-best { margin-bottom: 20px; }
.exp-card-best .best-label { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em; color: var(--color-text-muted); margin-bottom: 4px; }
.exp-card-best p { font-size: 13px; color: var(--color-text-light); line-height: 1.5; }

/* Dark full-width CTA button */
.exp-card-cta {
  display: block; padding: 18px; margin-top: auto;
  background: var(--color-card-cta); color: var(--color-white);
  font-size: 13px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.1em; text-align: center;
  transition: background var(--t);
}
.exp-card-cta:hover { background: var(--color-coral); }

/* ================================================================
   SAFARI PACKAGES
   ================================================================ */
.packages-section { padding: 80px 0; }
.packages-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 52px; }
.pkg-card { border: 1px solid var(--color-cream-dark); border-radius: 4px; overflow: hidden; display: flex; flex-direction: column; }
.pkg-card:hover { box-shadow: 0 6px 24px rgba(0,0,0,0.09); }
.pkg-img { height: 220px; overflow: hidden; }
.pkg-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.pkg-card:hover .pkg-img img { transform: scale(1.05); }
.pkg-body { padding: 26px; flex: 1; display: flex; flex-direction: column; }
.pkg-meta { display: flex; gap: 14px; margin-bottom: 14px; }
.pkg-meta span { font-size: 11px; text-transform: uppercase; letter-spacing: 0.1em; color: var(--color-text-muted); display: flex; align-items: center; gap: 5px; }
.pkg-meta i { color: var(--color-gold); }
.pkg-name { font-family: var(--font-heading); font-size: 1.25rem; font-weight: 700; color: var(--color-charcoal); margin-bottom: 8px; }
.pkg-name a { color: var(--color-charcoal); transition: color var(--t); }
.pkg-name a:hover { color: var(--color-rust); }
.pkg-desc { font-size: 14px; color: var(--color-text-light); line-height: 1.65; margin-bottom: 20px; flex: 1; }
.pkg-footer { display: flex; align-items: center; justify-content: space-between; padding-top: 16px; border-top: 1px solid var(--color-cream-dark); margin-top: auto; }
.pkg-price .from { font-size: 10px; color: var(--color-text-muted); display: block; text-transform: uppercase; letter-spacing: 0.08em; }
.pkg-price .amount { font-family: var(--font-heading); font-size: 1.5rem; font-weight: 700; color: var(--color-rust); }
.pkg-price .per { font-size: 11px; color: var(--color-text-muted); }

/* ================================================================
   PARALLAX FEATURE SECTION
   ================================================================ */
.feature-section {
  position: relative; padding: 110px 0;
  background-size: cover; background-position: center; background-attachment: fixed;
}
.feature-section::before { content: ''; position: absolute; inset: 0; background: rgba(40,35,30,0.78); }
.feature-section .container { position: relative; z-index: 1; text-align: center; }
.feature-section .section-label { color: var(--color-teal); }
.feature-section .section-title { color: var(--color-white); margin-bottom: 16px; }
.feature-section .section-body { color: rgba(255,255,255,0.75); max-width: 580px; margin: 0 auto; }
.feature-icons { display: flex; justify-content: center; gap: 52px; flex-wrap: wrap; margin: 52px 0; }
.feature-icon-item { text-align: center; color: var(--color-white); }
.feature-icon-item i { font-size: 38px; color: var(--color-gold); margin-bottom: 14px; display: block; }
.feature-icon-item span { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; }

/* ================================================================
   WHERE TO STAY
   ================================================================ */
.stay-section { padding: 80px 0; background: var(--color-cream); }
.stay-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4px; margin-top: 52px; }
.stay-card { position: relative; overflow: hidden; height: 360px; cursor: pointer; }
.stay-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s ease; }
.stay-card:hover img { transform: scale(1.06); }
.stay-card::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.78) 30%, rgba(0,0,0,0.1) 100%); }
.stay-info { position: absolute; bottom: 0; left: 0; right: 0; z-index: 1; padding: 28px; color: var(--color-white); }
.stay-type { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.2em; color: var(--color-teal); margin-bottom: 7px; }
.stay-name { font-family: var(--font-heading); font-size: 1.4rem; font-weight: 700; margin-bottom: 6px; }
.stay-name a { color: var(--color-white); transition: color var(--t); }
.stay-name a:hover { color: var(--color-teal); }
.stay-desc { font-size: 13px; color: rgba(255,255,255,0.75); line-height: 1.6; }
.stay-card-wide { grid-column: span 2; height: 300px; }

/* ================================================================
   BEST TIME / SEASONS
   ================================================================ */
.seasons-section { padding: 80px 0; }
.seasons-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: 52px; }
.season-card { padding: 32px 20px; border-top: 4px solid var(--color-cream-dark); text-align: center; transition: border-color var(--t); }
.season-card.best { border-color: var(--color-coral); }
.season-card:hover { border-color: var(--color-coral); }
.season-icon { font-size: 34px; color: var(--color-gold); margin-bottom: 14px; }
.season-name { font-family: var(--font-heading); font-size: 1.05rem; font-weight: 700; color: var(--color-charcoal); margin-bottom: 6px; }
.season-months { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em; color: var(--color-rust); margin-bottom: 12px; }
.season-text { font-size: 13px; color: var(--color-text-light); line-height: 1.65; }
.season-badge { display: inline-block; margin-top: 14px; padding: 4px 12px; background: var(--color-coral); color: var(--color-white); font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; border-radius: 20px; }

/* ================================================================
   GALLERY
   ================================================================ */
.gallery-section { padding: 80px 0; background: var(--color-charcoal); }
.gallery-section .section-label { color: var(--color-teal); }
.gallery-section .section-title { color: var(--color-white); }
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-template-rows: repeat(2, 200px); gap: 6px; margin-top: 40px; }
.gallery-item { overflow: hidden; cursor: pointer; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease, filter 0.3s ease; filter: brightness(0.82); }
.gallery-item:hover img { transform: scale(1.08); filter: brightness(1); }
.gallery-item:first-child { grid-column: span 2; grid-row: span 2; }

/* ================================================================
   TESTIMONIALS
   ================================================================ */
.testimonials-section { padding: 80px 0; background: var(--color-cream); }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 52px; }
.testimonial-card { background: var(--color-white); padding: 36px 28px; border-radius: 3px; box-shadow: 0 2px 14px rgba(0,0,0,0.06); position: relative; }
.testimonial-card::before { content: '\201C'; position: absolute; top: 20px; left: 24px; font-family: var(--font-heading); font-size: 5rem; line-height: 1; color: var(--color-cream-dark); }
.stars { color: var(--color-gold); font-size: 13px; margin-bottom: 4px; }
.testimonial-text { font-size: 14px; color: var(--color-text-light); line-height: 1.78; margin-bottom: 22px; padding-top: 22px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.testimonial-avatar { width: 46px; height: 46px; border-radius: 50%; object-fit: cover; border: 2px solid var(--color-coral); }
.author-name { font-weight: 700; font-size: 13px; color: var(--color-charcoal); }
.author-origin { font-size: 12px; color: var(--color-text-muted); }

/* ================================================================
   NEWSLETTER
   ================================================================ */
.newsletter-section { padding: 72px 0; text-align: center; }
.newsletter-section h2 { font-family: var(--font-heading); font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 400; color: var(--color-charcoal); margin-bottom: 8px; }
.newsletter-section h2 em { font-weight: 700; color: var(--color-rust); font-style: normal; }
.newsletter-section p { font-size: 15px; color: var(--color-text-light); margin-bottom: 28px; }
.newsletter-form { display: flex; max-width: 460px; margin: 0 auto; border: 1px solid var(--color-cream-dark); border-radius: 3px; overflow: hidden; }
.newsletter-form input { flex: 1; padding: 15px 18px; font-size: 14px; border: none; outline: none; font-family: var(--font-body); color: var(--color-text); }
.newsletter-form button { padding: 15px 22px; background: var(--color-coral); color: var(--color-white); border: none; cursor: pointer; font-size: 18px; transition: background var(--t); }
.newsletter-form button:hover { background: var(--color-coral-dark); }

/* ================================================================
   NEWS / BLOG PREVIEW
   ================================================================ */
.news-section { padding: 80px 0; }
.news-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 52px; }
.news-card { border: 1px solid var(--color-cream-dark); border-radius: 3px; overflow: hidden; }
.news-img { height: 200px; overflow: hidden; }
.news-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.news-card:hover .news-img img { transform: scale(1.05); }
.news-body { padding: 22px; }
.news-date { font-size: 11px; text-transform: uppercase; letter-spacing: 0.12em; color: var(--color-text-muted); margin-bottom: 8px; }
.news-title { font-family: var(--font-heading); font-size: 1.05rem; font-weight: 700; color: var(--color-charcoal); margin-bottom: 10px; line-height: 1.4; }
.news-title a { color: var(--color-charcoal); transition: color var(--t); }
.news-title a:hover { color: var(--color-rust); }
.news-excerpt { font-size: 13px; color: var(--color-text-light); line-height: 1.65; margin-bottom: 16px; }
.news-read { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--color-rust); border-bottom: 1px solid var(--color-rust); padding-bottom: 1px; transition: color var(--t); }
.news-read:hover { color: var(--color-coral); border-color: var(--color-coral); }

/* ================================================================
   FOOTER
   ================================================================ */
.site-footer { background: var(--color-charcoal); color: rgba(255,255,255,0.6); }
.footer-main { padding: 60px 0 48px; display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; }
.footer-brand .logo-text strong { color: var(--color-white); }
.footer-tagline { font-size: 13px; line-height: 1.7; margin: 14px 0 22px; color: rgba(255,255,255,0.55); }
.footer-social { display: flex; gap: 10px; }
.footer-social a { width: 34px; height: 34px; border: 1px solid rgba(255,255,255,0.18); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 13px; color: rgba(255,255,255,0.55); transition: all var(--t); }
.footer-social a:hover { background: var(--color-coral); border-color: var(--color-coral); color: var(--color-white); }
.footer-col h4 { font-family: var(--font-heading); font-size: 13px; font-weight: 700; color: var(--color-white); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 18px; }
.footer-col li { margin-bottom: 9px; }
.footer-col li a { font-size: 13px; color: rgba(255,255,255,0.5); transition: color var(--t); }
.footer-col li a:hover { color: var(--color-coral); }
.footer-contact-item { display: flex; gap: 11px; margin-bottom: 12px; font-size: 13px; color: rgba(255,255,255,0.5); align-items: flex-start; }
.footer-contact-item i { color: var(--color-gold); flex-shrink: 0; margin-top: 3px; font-size: 12px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding: 18px 0; display: flex; justify-content: space-between; align-items: center; font-size: 12px; color: rgba(255,255,255,0.3); }
.footer-bottom-links { display: flex; gap: 18px; }
.footer-bottom-links a { color: rgba(255,255,255,0.3); transition: color var(--t); }
.footer-bottom-links a:hover { color: var(--color-coral); }

/* ================================================================
   INNER PAGE — page hero
   ================================================================ */
.page-hero {
  position: relative; height: 360px;
  background-size: cover; background-position: center;
  display: flex; align-items: flex-end;
}
.page-hero::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.65) 100%); }
.page-hero-content { position: relative; z-index: 1; padding: 40px 0; color: var(--color-white); }
.page-hero-eyebrow { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.2em; color: var(--color-teal); margin-bottom: 10px; }
.page-hero-title { font-family: var(--font-heading); font-size: clamp(2rem, 4vw, 3rem); font-weight: 700; margin-bottom: 14px; }
.breadcrumb { font-size: 12px; color: rgba(255,255,255,0.6); }
.breadcrumb a { color: rgba(255,255,255,0.6); transition: color var(--t); }
.breadcrumb a:hover { color: var(--color-coral); }
.breadcrumb span { color: rgba(255,255,255,0.4); margin: 0 8px; }

/* ================================================================
   SAFARI DETAIL PAGE
   ================================================================ */
.safari-layout { display: grid; grid-template-columns: 1fr 340px; gap: 52px; padding: 72px 0; }
.safari-back { display: inline-flex; align-items: center; gap: 6px; font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--color-rust); text-decoration: none; margin-bottom: 28px; transition: gap .2s; }
.safari-back:hover { gap: 10px; }
.safari-meta-strip { display: flex; border: 1px solid var(--color-cream-dark); border-radius: 3px; overflow: hidden; margin: 0 0 32px; }
.safari-meta-item { flex: 1; padding: 14px 10px; text-align: center; border-right: 1px solid var(--color-cream-dark); }
.safari-meta-item:last-child { border-right: none; }
.safari-meta-item .mlabel { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: .12em; color: var(--color-text-muted); display: block; margin-bottom: 4px; }
.safari-meta-item .mval { font-size: 13px; font-weight: 700; color: var(--color-charcoal); }
.safari-intro { font-size: 16px; color: var(--color-text-light); line-height: 1.85; margin-bottom: 18px; }
.safari-body-text { font-size: 15px; color: var(--color-text-light); line-height: 1.8; margin-bottom: 28px; }
.safari-pullquote { border-left: 4px solid var(--color-rust); background: var(--color-cream); padding: 24px 28px; margin: 32px 0; border-radius: 0 3px 3px 0; }
.safari-pullquote p { font-family: var(--font-heading); font-size: 1.05rem; font-style: italic; color: var(--color-charcoal); margin: 0; line-height: 1.6; }
.itinerary-heading { font-family: var(--font-heading); font-size: 1.2rem; font-weight: 700; color: var(--color-charcoal); margin: 32px 0 16px; }
.day-list { list-style: none; margin: 0 0 32px; padding: 0; }
.day-list li { padding: 14px 0; border-bottom: 1px solid var(--color-cream-dark); font-size: 14px; color: var(--color-text-light); display: flex; gap: 14px; line-height: 1.65; }
.day-list li:last-child { border-bottom: none; }
.day-num { font-weight: 700; color: var(--color-rust); font-family: var(--font-heading); flex-shrink: 0; min-width: 52px; }
.excludes-heading { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .12em; color: var(--color-text-muted); margin: 24px 0 10px; }
.excludes-list { list-style: none; padding: 0; margin: 0 0 24px; }
.excludes-list li { font-size: 13px; color: var(--color-text-light); padding: 6px 0; border-bottom: 1px solid var(--color-cream-dark); display: flex; gap: 8px; }
.excludes-list li:last-child { border-bottom: none; }
.excludes-list i { color: var(--color-text-muted); flex-shrink: 0; margin-top: 3px; font-size: 11px; }

/* Sidebar */
.safari-sidebar > * { position: sticky; top: 100px; }
.sidebar-widget { background: var(--color-cream); border: 1px solid var(--color-cream-dark); border-radius: 4px; padding: 28px; margin-bottom: 20px; }
.sidebar-widget h3 { font-family: var(--font-heading); font-size: 11px; font-weight: 700; color: var(--color-charcoal); margin-bottom: 16px; text-transform: uppercase; letter-spacing: .06em; }
.sidebar-price { font-family: var(--font-heading); text-align: center; margin-bottom: 20px; padding-bottom: 20px; border-bottom: 1px solid var(--color-cream-dark); }
.sidebar-price .from { font-size: 11px; text-transform: uppercase; letter-spacing: .08em; color: var(--color-text-muted); display: block; margin-bottom: 4px; }
.sidebar-price .amount { font-size: 2.4rem; font-weight: 700; color: var(--color-rust); display: block; line-height: 1; }
.sidebar-price .per { font-size: 13px; color: var(--color-text-muted); display: block; margin-top: 4px; }
.btn-book-pkg { display: block; text-align: center; background: var(--color-rust); color: #fff; padding: 15px; border-radius: 3px; font-family: var(--font-body); font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; text-decoration: none; margin-bottom: 10px; transition: background .2s; }
.btn-book-pkg:hover { background: #7a1f0d; }
.btn-enquire-pkg { display: block; text-align: center; border: 2px solid var(--color-charcoal); color: var(--color-charcoal); padding: 13px; border-radius: 3px; font-family: var(--font-body); font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; text-decoration: none; margin-bottom: 24px; transition: all .2s; }
.btn-enquire-pkg:hover { background: var(--color-charcoal); color: #fff; }
.includes-heading { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .12em; color: var(--color-rust); margin: 0 0 12px; }
.includes-list { list-style: none; padding: 0; margin: 0; }
.includes-list li { font-size: 13px; color: var(--color-text-light); padding: 7px 0; border-bottom: 1px solid var(--color-cream-dark); display: flex; gap: 10px; align-items: flex-start; }
.includes-list li:last-child { border-bottom: none; }
.includes-list i { color: var(--color-gold); flex-shrink: 0; margin-top: 3px; font-size: 12px; }

/* Related packages */
.related-section { padding: 64px 0; background: var(--color-cream); }
.related-section h2 { font-family: var(--font-heading); font-size: 1.7rem; font-weight: 700; color: var(--color-charcoal); text-align: center; margin-bottom: 36px; }
.related-section h2 em { color: var(--color-rust); font-style: italic; }
.related-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.rel-pkg-card { background: #fff; border-radius: 4px; overflow: hidden; box-shadow: 0 2px 12px rgba(0,0,0,.06); transition: transform .3s, box-shadow .3s; display: flex; flex-direction: column; }
.rel-pkg-card:hover { transform: translateY(-5px); box-shadow: 0 10px 32px rgba(0,0,0,.12); }
.rel-pkg-img { height: 200px; overflow: hidden; }
.rel-pkg-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.rel-pkg-card:hover .rel-pkg-img img { transform: scale(1.05); }
.rel-pkg-body { padding: 20px 22px; flex: 1; display: flex; flex-direction: column; }
.rel-pkg-body h3 { font-family: var(--font-heading); font-size: 1.1rem; font-weight: 700; color: var(--color-charcoal); margin-bottom: 8px; }
.rel-pkg-body h3 a { color: inherit; text-decoration: none; }
.rel-pkg-body h3 a:hover { color: var(--color-rust); }
.rel-pkg-meta { display: flex; gap: 16px; margin-bottom: 14px; }
.rel-pkg-meta span { font-size: 12px; font-weight: 700; color: var(--color-text-muted); }
.rel-pkg-price { font-family: var(--font-heading); font-size: 1.15rem; font-weight: 700; color: var(--color-rust); margin-bottom: 14px; }
.rel-pkg-link { font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: var(--color-rust); text-decoration: none; display: inline-flex; align-items: center; gap: 5px; margin-top: auto; }
.rel-pkg-link:hover { gap: 9px; }

/* Safari archive page */
.itinerary { background: var(--color-cream); padding: 80px 0; }
.pkg-detail { background: var(--color-white); border: 1px solid var(--color-cream-dark); border-radius: 4px; overflow: hidden; margin-bottom: 40px; }
.pkg-detail-hero { height: 380px; overflow: hidden; position: relative; }
.pkg-detail-hero img { width: 100%; height: 100%; object-fit: cover; }
.pkg-detail-hero::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to right, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0.1) 60%); }
.pkg-detail-label { position: absolute; bottom: 0; left: 0; z-index: 1; padding: 36px; color: var(--color-white); }
.pkg-detail-label .pkg-tag { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: .2em; color: var(--color-teal); margin-bottom: 8px; }
.pkg-detail-label h2 { font-family: var(--font-heading); font-size: 2rem; font-weight: 700; margin-bottom: 8px; }
.pkg-detail-body { display: grid; grid-template-columns: 2fr 1fr; }
.pkg-detail-text { padding: 36px; }
.pkg-detail-text p { font-size: 15px; color: var(--color-text-light); line-height: 1.8; margin-bottom: 16px; }
.pkg-detail-sidebar { padding: 36px; background: var(--color-cream); border-left: 1px solid var(--color-cream-dark); }

/* ================================================================
   SCROLL TO TOP
   ================================================================ */
.scroll-top {
  position: fixed; bottom: 26px; right: 26px;
  width: 42px; height: 42px; background: var(--color-coral); color: var(--color-white);
  border: none; border-radius: 50%; font-size: 15px; cursor: pointer;
  display: none; align-items: center; justify-content: center; z-index: 500;
  box-shadow: 0 4px 14px rgba(233,101,89,0.45); transition: all var(--t);
}
.scroll-top:hover { background: var(--color-coral-dark); transform: translateY(-3px); }
.scroll-top.visible { display: flex; }

/* ================================================================
   GENERIC BUTTONS
   ================================================================ */
.btn { display: inline-block; padding: 14px 32px; font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; border-radius: 3px; cursor: pointer; transition: all var(--t); border: none; }
.btn-primary { background: var(--color-coral); color: var(--color-white); }
.btn-primary:hover { background: var(--color-coral-dark); }
.btn-secondary { background: var(--color-teal); color: var(--color-white); }
.btn-secondary:hover { background: #6aaab4; }
.btn-outline-dark { background: transparent; color: var(--color-charcoal); border: 2px solid var(--color-charcoal); }
.btn-outline-dark:hover { background: var(--color-charcoal); color: var(--color-white); }
.btn-ghost { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--color-rust); border-bottom: 2px solid var(--color-rust); padding-bottom: 2px; transition: color var(--t), border-color var(--t); }
.btn-ghost:hover { color: var(--color-coral); border-color: var(--color-coral); }
.section-cta { text-align: center; margin-top: 44px; }

/* ================================================================
   ELEMENTOR OVERRIDES — ensure theme styles work inside Elementor
   ================================================================ */
.elementor-section .container { max-width: var(--max-width); margin: 0 auto; padding: 0 28px; }
.elementor-widget-html .container { max-width: var(--max-width); margin: 0 auto; padding: 0 28px; }

/* Elementor canvas/full-width support */
body.elementor-template-canvas { margin: 0; padding: 0; }
body.elementor-template-full-width .site-header { width: 100%; }

/* ================================================================
   RESPONSIVE
   ================================================================ */
@media (max-width: 1024px) {
  .cards-grid { grid-template-columns: repeat(2, 1fr); }
  .packages-grid { grid-template-columns: repeat(2, 1fr); }
  .seasons-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-template-rows: repeat(4, 180px); }
  .gallery-item:first-child { grid-column: span 1; grid-row: span 1; }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-main { grid-template-columns: 1fr 1fr; gap: 36px; }
  .news-grid { grid-template-columns: repeat(2, 1fr); }
  .safari-layout { grid-template-columns: 1fr; }
  .safari-sidebar > * { position: static; }
}

@media (max-width: 768px) {
  .topbar { display: none; }
  .btn-book { display: none; }
  .hero { height: 78vh; }
  .hero-content { bottom: 72px; }
  .icon-row .container { flex-direction: column; align-items: center; }
  .icon-row-item { border-right: none; border-bottom: 1px solid var(--color-cream-dark); max-width: 100%; width: 100%; }
  .icon-row-item:last-child { border-bottom: none; }
  .cards-grid { grid-template-columns: 1fr; }
  .exp-card { border-right: none; border-bottom: 1px solid var(--color-cream-dark); }
  .packages-grid { grid-template-columns: 1fr; }
  .stay-grid { grid-template-columns: 1fr; }
  .stay-card-wide { grid-column: span 1; }
  .seasons-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .gallery-item { height: 150px; }
  .gallery-item:first-child { grid-column: span 2; height: 200px; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .news-grid { grid-template-columns: 1fr; }
  .footer-main { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .feature-icons { gap: 32px; }
  .nav-panel { width: 100%; max-width: 100vw; }
  .pkg-detail-body { grid-template-columns: 1fr; }
  .pkg-detail-sidebar { border-left: none; border-top: 1px solid var(--color-cream-dark); }
}

@media (max-width: 640px) {
  .related-grid { grid-template-columns: 1fr; }
  .safari-meta-strip { flex-wrap: wrap; }
  .safari-meta-item { min-width: 50%; }
}

@media (max-width: 480px) {
  .seasons-grid { grid-template-columns: 1fr; }
  .page-hero { height: 260px; }
}

/* ================================================================
   ABOUT PAGE — two-column text/image layouts
   ================================================================ */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; padding: 72px 0; }
.two-col.reverse { direction: rtl; }
.two-col.reverse > * { direction: ltr; }
.two-col img { width: 100%; height: 380px; object-fit: cover; border-radius: 3px; }
.two-col-text h2 { font-family: var(--font-heading); font-size: 2rem; font-weight: 700; color: var(--color-charcoal); margin-bottom: 16px; }
.two-col-text h2 em { font-style: italic; color: var(--color-rust); }
.two-col-text p { font-size: 15px; color: var(--color-text-light); line-height: 1.8; margin-bottom: 14px; }
.two-col-text p:last-child { margin-bottom: 0; }
.border-top-section { border-top: 1px solid var(--color-cream-dark); }
@media (max-width: 768px) { .two-col { grid-template-columns: 1fr; gap: 32px; } }

/* ================================================================
   BEST TIME PAGE — month bar
   ================================================================ */
.month-bar { display: flex; margin: 48px 0; border: 1px solid var(--color-cream-dark); border-radius: 3px; overflow: hidden; }
.month { flex: 1; padding: 16px 6px; text-align: center; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: var(--color-text-muted); border-right: 1px solid var(--color-cream-dark); background: var(--color-white); transition: background .3s; }
.month:last-child { border-right: none; }
.month.peak { background: var(--color-coral); color: var(--color-white); }
.month.good { background: var(--color-teal); color: var(--color-white); }
.month.wet { background: var(--color-cream-dark); color: var(--color-text-muted); }
.month-name { font-size: 12px; margin-bottom: 4px; }
.month-status { font-size: 9px; }
.tip-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 48px; }
.tip-card { padding: 32px 24px; background: var(--color-white); border: 1px solid var(--color-cream-dark); border-radius: 3px; }
.tip-icon { font-size: 32px; color: var(--color-gold); margin-bottom: 16px; }
.tip-title { font-family: var(--font-heading); font-size: 1.1rem; font-weight: 700; color: var(--color-charcoal); margin-bottom: 10px; }
.tip-text { font-size: 14px; color: var(--color-text-light); line-height: 1.7; }
.legend { display: flex; gap: 24px; justify-content: center; margin-bottom: 16px; font-size: 12px; }
.legend-item { display: flex; align-items: center; gap: 8px; }
.legend-dot { width: 14px; height: 14px; border-radius: 2px; }
@media(max-width:768px){ .tip-grid{grid-template-columns:1fr;} .month { padding: 10px 3px; font-size: 9px; } }

/* ================================================================
   ACTIVITIES PAGE — cards grid + filter
   ================================================================ */
.activities-intro { padding: 72px 0 48px; text-align: center; }
.activities-intro .section-label { display: inline-block; margin-bottom: 12px; }
.activities-intro h2 { font-family: var(--font-heading); font-size: 2.1rem; font-weight: 700; color: var(--color-charcoal); margin-bottom: 18px; }
.activities-intro h2 em { color: var(--color-rust); font-style: italic; }
.activities-intro p { font-size: 15px; color: var(--color-text-light); line-height: 1.8; max-width: 660px; margin: 0 auto; }
.act-filter-bar { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; padding: 0 0 48px; }
.act-filter-btn { padding: 9px 20px; border: 1.5px solid var(--color-cream-dark); border-radius: 30px; background: transparent; font-family: var(--font-body); font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--color-charcoal); cursor: pointer; transition: all .2s; }
.act-filter-btn:hover, .act-filter-btn.active { background: var(--color-rust); border-color: var(--color-rust); color: #fff; }
.activities-grid-wrap { padding: 0 0 80px; background: var(--color-cream); }
.activities-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.act-card { background: #fff; border-radius: 4px; overflow: hidden; box-shadow: 0 2px 12px rgba(0,0,0,.06); transition: transform .3s, box-shadow .3s; display: flex; flex-direction: column; }
.act-card:hover { transform: translateY(-5px); box-shadow: 0 10px 32px rgba(0,0,0,.12); }
.act-card-img { height: 220px; overflow: hidden; position: relative; }
.act-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.act-card:hover .act-card-img img { transform: scale(1.06); }
.act-card-tag { position: absolute; top: 14px; left: 14px; background: var(--color-rust); color: #fff; font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; padding: 4px 10px; border-radius: 2px; }
.act-card-body { padding: 22px 24px 20px; flex: 1; display: flex; flex-direction: column; }
.act-card-body h3 { font-family: var(--font-heading); font-size: 1.2rem; font-weight: 700; color: var(--color-charcoal); margin-bottom: 10px; line-height: 1.35; }
.act-card-body h3 a { color: inherit; text-decoration: none; }
.act-card-body h3 a:hover { color: var(--color-rust); }
.act-card-body h3 em { color: var(--color-rust); font-style: italic; }
.act-card-body p { font-size: 14px; color: var(--color-text-light); line-height: 1.7; margin-bottom: 16px; flex: 1; }
.act-card-meta { display: flex; gap: 0; border-top: 1px solid var(--color-cream-dark); padding-top: 14px; margin-bottom: 16px; }
.act-card-meta-item { flex: 1; text-align: center; }
.act-card-meta-item:not(:last-child) { border-right: 1px solid var(--color-cream-dark); }
.act-card-meta-item .mlabel { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: var(--color-text-muted); display: block; margin-bottom: 3px; }
.act-card-meta-item .mval { font-size: 12px; font-weight: 700; color: var(--color-charcoal); }
.act-card-link { display: inline-flex; align-items: center; gap: 6px; font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--color-rust); text-decoration: none; transition: gap .2s; }
.act-card-link:hover { gap: 10px; }
.act-card-link i { font-size: 11px; }
.activities-cta-strip { padding: 64px 0; text-align: center; }
.activities-cta-strip h2 { font-family: var(--font-heading); font-size: 1.9rem; font-weight: 700; color: var(--color-charcoal); margin-bottom: 14px; }
.activities-cta-strip p { font-size: 15px; color: var(--color-text-light); line-height: 1.8; max-width: 600px; margin: 0 auto 28px; }
@media(max-width:1024px){ .activities-grid { grid-template-columns: repeat(2, 1fr); } }
@media(max-width:640px){ .activities-grid { grid-template-columns: 1fr; } .act-card-img { height: 200px; } }

/* ================================================================
   WHERE TO STAY PAGE — lodge sections
   ================================================================ */
.lodge-section { padding: 80px 0; border-bottom: 1px solid var(--color-cream-dark); }
.lodge-section.alt { background: var(--color-cream); }
.lodge-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 52px; align-items: center; }
.lodge-grid.flip { direction: rtl; }
.lodge-grid.flip > * { direction: ltr; }
.lodge-photos { display: grid; grid-template-columns: 1fr 1fr; grid-template-rows: 220px 180px; gap: 6px; }
.lodge-photos img { width: 100%; height: 100%; object-fit: cover; }
.lodge-photos .main-photo { grid-column: span 2; height: 280px; }
.lodge-text h2 { font-family: var(--font-heading); font-size: 1.8rem; font-weight: 700; color: var(--color-charcoal); margin-bottom: 8px; }
.lodge-text h2 em { color: var(--color-rust); font-style: italic; }
.lodge-type-tag { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: .2em; color: var(--color-teal); margin-bottom: 14px; display: block; }
.lodge-text p { font-size: 15px; color: var(--color-text-light); line-height: 1.8; margin-bottom: 14px; }
.amenities { display: flex; flex-wrap: wrap; gap: 10px; margin: 20px 0 24px; }
.amenity { font-size: 12px; color: var(--color-text-light); display: flex; align-items: center; gap: 7px; }
.amenity i { color: var(--color-gold); font-size: 11px; }
@media(max-width:768px){ .lodge-grid,.lodge-grid.flip{grid-template-columns:1fr;direction:ltr;} .lodge-photos{grid-template-rows:auto;} .lodge-photos .main-photo{grid-column:1;height:220px;} }

/* ================================================================
   CONTACT PAGE — form + info grid
   ================================================================ */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; padding: 80px 0; align-items: start; }
.form-group { margin-bottom: 22px; }
.form-group label { display: block; font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--color-text-light); margin-bottom: 8px; }
.form-group input, .form-group select, .form-group textarea { width: 100%; padding: 13px 16px; border: 1px solid var(--color-cream-dark); font-family: var(--font-body); font-size: 14px; color: var(--color-text); outline: none; transition: border-color var(--t); border-radius: 2px; background: var(--color-white); }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--color-rust); }
.form-group textarea { height: 140px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.contact-info h3 { font-family: var(--font-heading); font-size: 1.4rem; font-weight: 700; color: var(--color-charcoal); margin-bottom: 24px; }
.contact-block { margin-bottom: 32px; }
.contact-block h4 { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.14em; color: var(--color-rust); margin-bottom: 12px; }
.ci { display: flex; gap: 12px; margin-bottom: 12px; font-size: 14px; color: var(--color-text-light); align-items: flex-start; }
.ci i { color: var(--color-gold); margin-top: 3px; }
@media(max-width:768px){ .contact-grid,.form-row{grid-template-columns:1fr;} }

/* ================================================================
   OPERATORS PAGE — filter + cards + join section
   ================================================================ */
.filter-bar { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 40px; }
.filter-btn { padding: 9px 22px; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .12em; border: 1px solid var(--color-cream-dark); background: var(--color-white); cursor: pointer; border-radius: 2px; transition: all .2s; font-family: var(--font-body); color: var(--color-text-light); }
.filter-btn:hover, .filter-btn.active { background: var(--color-charcoal); color: var(--color-white); border-color: var(--color-charcoal); }
.operator-card { display: grid; grid-template-columns: 190px 1fr; border: 1px solid var(--color-cream-dark); border-radius: 4px; overflow: hidden; margin-bottom: 28px; background: var(--color-white); transition: box-shadow .3s; }
.operator-card:hover { box-shadow: 0 6px 30px rgba(0,0,0,.1); }
.operator-logo-col { background: var(--color-cream); display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 32px 20px; border-right: 1px solid var(--color-cream-dark); text-align: center; }
.operator-initials { width: 76px; height: 76px; border-radius: 50%; color: var(--color-white); display: flex; align-items: center; justify-content: center; font-family: var(--font-heading); font-size: 1.3rem; font-weight: 700; margin-bottom: 14px; }
.operator-stars { display: flex; gap: 3px; justify-content: center; color: var(--color-gold); font-size: 12px; margin-bottom: 8px; }
.operator-type-badge { font-size: 9px; font-weight: 700; text-transform: uppercase; letter-spacing: .18em; color: var(--color-teal); }
.operator-content { padding: 28px 32px; }
.operator-header { display: flex; align-items: flex-start; justify-content: space-between; margin-bottom: 4px; gap: 16px; }
.operator-name { font-family: var(--font-heading); font-size: 1.35rem; font-weight: 700; color: var(--color-charcoal); }
.operator-name a { color: inherit; transition: color .2s; }
.operator-name a:hover { color: var(--color-rust); }
.operator-verified { font-size: 11px; color: var(--color-teal); font-weight: 700; white-space: nowrap; flex-shrink: 0; }
.operator-verified i { margin-right: 3px; }
.operator-est { font-size: 12px; color: var(--color-text-muted); margin-bottom: 12px; }
.operator-desc { font-size: 14px; color: var(--color-text-light); line-height: 1.8; margin-bottom: 16px; }
.operator-tags { display: flex; flex-wrap: wrap; gap: 7px; margin-bottom: 20px; }
.operator-tag { font-size: 11px; background: var(--color-cream); border: 1px solid var(--color-cream-dark); padding: 4px 10px; border-radius: 2px; color: var(--color-text-light); }
.operator-stats { display: flex; gap: 0; border-top: 1px solid var(--color-cream-dark); border-bottom: 1px solid var(--color-cream-dark); margin-bottom: 20px; }
.operator-stat { flex: 1; text-align: center; padding: 14px 8px; border-right: 1px solid var(--color-cream-dark); }
.operator-stat:last-child { border-right: none; }
.stat-val { font-family: var(--font-heading); font-size: 1.25rem; font-weight: 700; color: var(--color-rust); display: block; }
.stat-label { font-size: 9px; text-transform: uppercase; letter-spacing: .1em; color: var(--color-text-muted); }
.operator-cta-row { display: flex; gap: 12px; }
.btn-op-primary { display: inline-block; padding: 11px 24px; background: var(--color-rust); color: var(--color-white); font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; border-radius: 2px; transition: background .2s; }
.btn-op-primary:hover { background: var(--color-coral); color: var(--color-white); }
.btn-op-secondary { display: inline-block; padding: 11px 24px; border: 1px solid var(--color-cream-dark); color: var(--color-text-light); font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; border-radius: 2px; transition: all .2s; }
.btn-op-secondary:hover { border-color: var(--color-charcoal); color: var(--color-charcoal); }
.how-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; margin-top: 48px; }
.how-step { text-align: center; padding: 36px 28px; }
.step-num { font-family: var(--font-heading); font-size: 3rem; font-weight: 700; color: var(--color-cream-dark); line-height: 1; margin-bottom: 16px; }
.step-title { font-family: var(--font-heading); font-size: 1.1rem; font-weight: 700; color: var(--color-charcoal); margin-bottom: 10px; }
.step-text { font-size: 14px; color: var(--color-text-light); line-height: 1.7; }
.join-section { background: var(--color-charcoal); padding: 80px 0; color: var(--color-white); }
.join-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.join-label { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: .2em; color: var(--color-teal); margin-bottom: 14px; }
.join-title { font-family: var(--font-heading); font-size: 2rem; font-weight: 700; margin-bottom: 18px; line-height: 1.25; }
.join-title em { color: var(--color-coral); font-style: italic; }
.join-body { font-size: 15px; color: rgba(255,255,255,.65); line-height: 1.8; }
.join-benefits { list-style: none; margin: 32px 0; }
.join-benefits li { display: flex; align-items: flex-start; gap: 14px; padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,.1); font-size: 14px; color: rgba(255,255,255,.75); }
.join-benefits li:first-child { border-top: 1px solid rgba(255,255,255,.1); }
.join-benefits i { color: var(--color-gold); font-size: 14px; flex-shrink: 0; margin-top: 3px; }
.btn-join { display: inline-block; padding: 15px 34px; background: var(--color-coral); color: var(--color-white); font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: .12em; border-radius: 2px; transition: background .2s; margin-top: 8px; }
.btn-join:hover { background: var(--color-coral-dark); color: var(--color-white); }
@media(max-width:768px){ .operator-card { grid-template-columns: 1fr; } .operator-logo-col { border-right: none; border-bottom: 1px solid var(--color-cream-dark); flex-direction: row; gap: 20px; padding: 24px; justify-content: flex-start; } .operator-header { flex-direction: column; gap: 6px; } .join-grid { grid-template-columns: 1fr; gap: 40px; } .how-grid { grid-template-columns: 1fr; } }

/* ================================================================
   BLOG PAGE — featured post + grid + sidebar
   ================================================================ */
.blog-layout { display: grid; grid-template-columns: 1fr 340px; gap: 52px; padding: 80px 0; align-items: start; }
.blog-featured { margin-bottom: 48px; border-radius: 3px; overflow: hidden; border: 1px solid var(--color-cream-dark); }
.blog-featured-img { height: 420px; overflow: hidden; }
.blog-featured-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.blog-featured:hover .blog-featured-img img { transform: scale(1.04); }
.blog-featured-body { padding: 36px; }
.blog-tag { display: inline-block; background: var(--color-coral); color: var(--color-white); font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; padding: 4px 10px; border-radius: 2px; margin-bottom: 14px; }
.blog-featured-body h2 { font-family: var(--font-heading); font-size: 1.7rem; font-weight: 700; color: var(--color-charcoal); margin-bottom: 14px; line-height: 1.3; }
.blog-featured-body h2 a { color: var(--color-charcoal); transition: color var(--t); }
.blog-featured-body h2 a:hover { color: var(--color-rust); }
.blog-featured-body p { font-size: 15px; color: var(--color-text-light); line-height: 1.8; margin-bottom: 20px; }
.blog-meta { font-size: 12px; color: var(--color-text-muted); margin-bottom: 12px; }
.blog-meta span { margin-right: 16px; }
.blog-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.blog-card { border: 1px solid var(--color-cream-dark); border-radius: 3px; overflow: hidden; }
.blog-card-img { height: 200px; overflow: hidden; }
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.blog-card:hover .blog-card-img img { transform: scale(1.05); }
.blog-card-body { padding: 22px; }
.blog-card-body h3 { font-family: var(--font-heading); font-size: 1.1rem; font-weight: 700; color: var(--color-charcoal); margin-bottom: 10px; line-height: 1.35; }
.blog-card-body h3 a { color: var(--color-charcoal); transition: color var(--t); }
.blog-card-body h3 a:hover { color: var(--color-rust); }
.blog-card-body p { font-size: 13px; color: var(--color-text-light); line-height: 1.65; margin-bottom: 14px; }
.blog-sidebar { position: sticky; top: 100px; }
.cat-list li { padding: 9px 0; border-bottom: 1px solid var(--color-cream-dark); font-size: 13px; }
.cat-list li:last-child { border-bottom: none; }
.cat-list a { color: var(--color-text-light); display: flex; justify-content: space-between; align-items: center; transition: color var(--t); }
.cat-list a:hover { color: var(--color-rust); }
.cat-list a span { font-size: 11px; background: var(--color-white); padding: 2px 8px; border-radius: 20px; color: var(--color-text-muted); }
.recent-post { display: flex; gap: 14px; padding: 12px 0; border-bottom: 1px solid var(--color-cream-dark); align-items: flex-start; }
.recent-post:last-child { border-bottom: none; }
.recent-thumb { width: 68px; height: 68px; object-fit: cover; border-radius: 2px; flex-shrink: 0; }
.recent-title { font-size: 13px; font-weight: 700; color: var(--color-charcoal); line-height: 1.4; margin-bottom: 4px; }
.recent-title a { color: var(--color-charcoal); transition: color var(--t); }
.recent-title a:hover { color: var(--color-rust); }
.recent-date { font-size: 11px; color: var(--color-text-muted); }
@media(max-width:1024px){ .blog-layout{grid-template-columns:1fr;} .blog-sidebar{position:static;} }
@media(max-width:768px){ .blog-grid{grid-template-columns:1fr;} }
