/* ============================================================
   ONIIPA GUESTHOUSE | WILD LION TOURS & TRANSFERS
   styles.css — Main Stylesheet
   Colour palette: Deep Earth Brown, Warm Sand, Heritage Gold,
   African Sunset Orange, Forest Green, Clean Cream
   ============================================================ */

/* ===== CSS CUSTOM PROPERTIES ===== */
:root {
  --brown:       #4B2E1F;
  --sand:        #E8D3AA;
  --gold:        #C79A3B;
  --gold-light:  #E8C16A;
  --orange:      #C8642B;
  --green:       #2F5D50;
  --cream:       #FFF8EC;
  --light-sand:  #F5ECD7;
  --charcoal:    #222222;
  --brown-mid:   #7A4E35;
  --text-muted:  #666666;

  --font-serif:  'Cormorant Garamond', Georgia, serif;
  --font-sans:   'Jost', 'Helvetica Neue', sans-serif;

  --radius:      4px;
  --shadow-sm:   0 2px 20px rgba(75,46,31,0.08);
  --shadow-md:   0 4px 30px rgba(75,46,31,0.12);
  --shadow-lg:   0 8px 40px rgba(75,46,31,0.18);

  --transition:  0.3s ease;
  --max-width:   1200px;
}

/* ===== RESET & BASE ===== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-sans);
  background: var(--cream);
  color: var(--charcoal);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

ul { list-style: none; }

h1, h2, h3, h4, h5 {
  font-family: var(--font-serif);
  letter-spacing: 0.02em;
  line-height: 1.15;
}

/* ===== UTILITY CLASSES ===== */
.max-w {
  max-width: var(--max-width);
  margin-left: auto;
  margin-right: auto;
}

.text-center { text-align: center; }

/* ===== SCROLL REVEAL ANIMATION ===== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== SHARED SECTION ELEMENTS ===== */
section {
  padding: 6rem 5%;
}

.section-tag {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.8rem;
}

.section-tag--light { color: var(--gold-light); }

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--brown);
  font-weight: 400;
  margin-bottom: 1rem;
}

.section-title em {
  font-style: italic;
  color: var(--gold);
}

.section-title--light { color: var(--sand); }

.section-lead {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 640px;
  line-height: 1.8;
  font-weight: 300;
}

.section-lead--light { color: rgba(232,211,170,0.75); }

.divider-gold {
  width: 50px;
  height: 2px;
  background: var(--gold);
  margin: 1.5rem 0;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-header .divider-gold {
  margin: 1rem auto;
}

.section-header .section-lead {
  margin: 0 auto;
  text-align: center;
}

/* ===== IMAGE PLACEHOLDERS ===== */
/* Shown when real images are missing — replace img src with your photos */
.img-placeholder {
  background: linear-gradient(135deg, var(--brown) 0%, var(--green) 100%);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.45);
  font-family: var(--font-sans);
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-align: center;
  padding: 1rem;
  line-height: 1.6;
}

.img-placeholder::before {
  content: '📷';
  font-size: 1.8rem;
  opacity: 0.4;
  margin-bottom: 0.5rem;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  padding: 0.85rem 2rem;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition), border-color var(--transition);
  text-decoration: none;
  line-height: 1;
}

.btn-primary {
  background: var(--orange);
  color: #fff;
}
.btn-primary:hover {
  background: #a84f22;
  transform: translateY(-1px);
}

.btn-outline {
  border: 1.5px solid rgba(255,255,255,0.5);
  color: #fff;
  background: transparent;
}
.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.btn-gold {
  background: var(--gold);
  color: var(--brown);
}
.btn-gold:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
}

.btn-brown {
  background: var(--brown);
  color: #fff;
}
.btn-brown:hover {
  background: #3a2216;
}

.btn-green {
  background: var(--green);
  color: #fff;
}
.btn-green:hover {
  background: #224840;
}

/* ===== NAVIGATION ===== */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: 72px;
  padding: 0 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255,248,236,0.97);
  border-bottom: 1px solid rgba(199,154,59,0.2);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: height var(--transition), box-shadow var(--transition);
}

nav.scrolled {
  height: 60px;
  box-shadow: 0 2px 20px rgba(75,46,31,0.12);
}

.nav-logo {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.nav-logo-top {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--brown);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  line-height: 1;
}

.nav-logo-sub {
  font-family: var(--font-sans);
  font-size: 0.6rem;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-links a {
  font-family: var(--font-sans);
  font-size: 0.77rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brown);
  transition: color var(--transition);
}

.nav-links a:hover { color: var(--gold); }

.nav-cta {
  background: var(--orange);
  color: #fff !important;
  padding: 0.5rem 1.2rem;
  border-radius: var(--radius);
}

.nav-cta:hover {
  background: var(--brown) !important;
  color: #fff !important;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--brown);
  transition: all var(--transition);
}

.hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger.open span:nth-child(2) {
  opacity: 0;
}
.hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile nav panel */
.mobile-nav {
  display: none;
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--cream);
  z-index: 999;
  flex-direction: column;
  padding: 2rem 5%;
  overflow-y: auto;
}

.mobile-nav.open {
  display: flex;
}

.mobile-nav a {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  color: var(--brown);
  padding: 1rem 0;
  border-bottom: 1px solid rgba(199,154,59,0.2);
  transition: color var(--transition);
}

.mobile-nav a:hover { color: var(--gold); }

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--brown);
  padding: 0;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #2a1a0e 0%, #4B2E1F 40%, #2F5D50 100%);
  opacity: 0.92;
  z-index: 1;
}

.hero-pattern {
  position: absolute;
  inset: 0;
  z-index: 2;
  opacity: 0.06;
  background-image:
    repeating-linear-gradient(60deg, transparent, transparent 30px, rgba(199,154,59,1) 30px, rgba(199,154,59,1) 31px),
    repeating-linear-gradient(-60deg, transparent, transparent 30px, rgba(199,154,59,1) 30px, rgba(199,154,59,1) 31px);
}

/* Hero background image — sits beneath the overlay */
.hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-img-placeholder {
  position: absolute;
  inset: 2rem;
  z-index: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.12);
  border: 1px dashed rgba(255,255,255,0.08);
  pointer-events: none;
}

.hero-img-placeholder::before { display: none; }

.hero-content {
  position: relative;
  z-index: 3;
  width: 90%;
  max-width: 900px;
  margin: 0 auto;
  padding: 120px 0 100px;
  text-align: center;
}

.hero-tag {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}

.hero-title {
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  color: #fff;
  font-weight: 300;
  margin-bottom: 0.5rem;
}

.hero-title em {
  font-style: italic;
  color: var(--gold-light);
}

.hero-divider {
  width: 60px;
  height: 2px;
  background: var(--gold);
  margin: 1.5rem auto;
}

.hero-sub {
  font-family: var(--font-sans);
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  font-weight: 300;
  color: var(--sand);
  letter-spacing: 0.04em;
  max-width: 620px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Hero stats bar */
.hero-stats {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 3;
  display: flex;
  justify-content: center;
  background: rgba(75,46,31,0.88);
  backdrop-filter: blur(4px);
  border-top: 1px solid rgba(199,154,59,0.3);
}

.hero-stat {
  flex: 1;
  max-width: 200px;
  padding: 1.2rem 1rem;
  text-align: center;
  border-right: 1px solid rgba(199,154,59,0.2);
}

.hero-stat:last-child { border-right: none; }

.hero-stat-num {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.9rem;
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
}

.hero-stat-label {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.6rem;
  font-weight: 300;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sand);
  margin-top: 0.3rem;
}

/* ===== ABOUT ===== */
.about {
  background: var(--light-sand);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  max-width: var(--max-width);
  margin: 0 auto;
}

.about-body {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.85;
  margin-top: 1rem;
}

.about-img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: var(--radius);
}

/* Hide placeholder if real image loaded */
.about-img:not(.img-error) + .img-placeholder { display: none; }

#aboutImgPlaceholder {
  height: 500px;
}

/* Hide placeholders when real images load successfully
   (rooms, facilities, tours, culture — same pattern as about/gallery above) */
.room-img:not([style*="display: none"]) + .room-img-placeholder,
.facility-img:not([style*="display: none"]) + .facility-img-ph,
.tours-intro-img:not([style*="display: none"]) + .tours-intro-img-ph,
.tour-img:not([style*="display: none"]) + .tour-img-ph,
.culture-img:not([style*="display: none"]) + .culture-ph {
  display: none;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
  margin-top: 2rem;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.feature-icon {
  width: 38px;
  height: 38px;
  background: var(--gold);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.feature-text strong {
  display: block;
  font-family: var(--font-serif);
  font-size: 1rem;
  color: var(--brown);
  font-weight: 600;
  line-height: 1.3;
}

.feature-text span {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ===== ACCOMMODATION ===== */
.accommodation {
  background: var(--cream);
}

.room-single {
  max-width: 640px;
  margin: 0 auto;
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.room-img {
  width: 100%;
  height: 280px;
  object-fit: cover;
}

.room-img-placeholder {
  height: 280px;
}

.room-body {
  padding: 2rem;
}

.room-type {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.4rem;
}

.room-title {
  font-size: 1.7rem;
  color: var(--brown);
  margin-bottom: 0.8rem;
}

.room-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 1.2rem;
}

.room-amenities {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 1.5rem;
}

.amenity-tag {
  background: var(--light-sand);
  color: var(--brown-mid);
  font-size: 0.72rem;
  padding: 0.3rem 0.7rem;
  border-radius: var(--radius);
  letter-spacing: 0.04em;
}

/* ===== FACILITIES ===== */
.facilities {
  background: var(--brown);
  color: #fff;
}

.facilities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  max-width: var(--max-width);
  margin: 0 auto;
}

.facility-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(199,154,59,0.25);
  border-radius: var(--radius);
  overflow: hidden;
  transition: background var(--transition), border-color var(--transition), transform var(--transition);
}

.facility-card:hover {
  background: rgba(255,255,255,0.12);
  border-color: var(--gold);
  transform: translateY(-3px);
}

.facility-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.facility-img-ph {
  height: 200px;
  background: linear-gradient(135deg, rgba(199,154,59,0.3) 0%, rgba(47,93,80,0.5) 100%);
}

.facility-body {
  padding: 1.5rem;
}

.facility-icon-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.facility-icon {
  font-size: 1.5rem;
}

.facility-title {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  color: var(--sand);
}

.facility-desc {
  font-size: 0.85rem;
  color: rgba(232,211,170,0.65);
  line-height: 1.75;
  margin-bottom: 1.2rem;
}

/* ===== TOURS ===== */
.tours {
  background: var(--light-sand);
}

.tours-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  max-width: var(--max-width);
  margin: 0 auto 5rem;
}

.tours-intro-img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  border-radius: var(--radius);
}

.tours-intro-img-ph {
  height: 360px;
}

.tour-packages {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.tour-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  transition: box-shadow var(--transition);
}

.tour-card:hover {
  box-shadow: var(--shadow-lg);
}

.tour-img-side {
  position: relative;
  min-height: 380px;
}

.tour-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tour-img-ph {
  height: 100%;
  min-height: 380px;
  background: linear-gradient(160deg, var(--brown) 0%, var(--green) 100%);
}

.tour-badge {
  position: absolute;
  top: 1.5rem;
  left: 1.5rem;
  background: var(--orange);
  color: #fff;
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius);
}

.tour-body {
  padding: 2.5rem;
}

.tour-category {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.tour-title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--brown);
  margin-bottom: 0.3rem;
}

.tour-subtitle {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1rem;
  color: var(--gold);
  margin-bottom: 1rem;
}

.tour-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem 1.5rem;
  padding: 1.2rem 0;
  border-top: 1px solid var(--light-sand);
  border-bottom: 1px solid var(--light-sand);
  margin-bottom: 1.2rem;
}

.meta-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  color: #555;
}

.meta-item strong { color: var(--brown); }
.meta-icon { font-size: 0.9rem; }

.tour-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.85;
  margin-bottom: 1.2rem;
}

.quote-block {
  border-left: 3px solid var(--gold);
  padding: 0.9rem 1.4rem;
  margin: 1rem 0 1.2rem;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 0.95rem;
  color: #555;
  line-height: 1.7;
  background: rgba(199,154,59,0.05);
}

.tour-highlights {
  margin-bottom: 1.4rem;
}

.tour-highlights h4 {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brown-mid);
  margin-bottom: 0.6rem;
}

.highlights-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.highlight-tag {
  background: var(--light-sand);
  color: var(--brown);
  font-size: 0.75rem;
  padding: 0.3rem 0.7rem;
  border-radius: var(--radius);
  border-left: 2px solid var(--gold);
}

/* Route timeline */
.route-timeline {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.3rem;
  margin-top: 0.6rem;
}

.route-stop {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.78rem;
  color: var(--brown);
  font-weight: 500;
}

.route-dot {
  width: 7px;
  height: 7px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
}

.route-arrow {
  color: var(--gold);
  font-size: 0.85rem;
}

/* Pricing table */
.pricing-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.83rem;
  margin: 1rem 0 1.5rem;
}

.pricing-table th {
  background: var(--brown);
  color: var(--sand);
  padding: 0.6rem 1rem;
  text-align: left;
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pricing-table td {
  padding: 0.6rem 1rem;
  color: #444;
  border-bottom: 1px solid var(--light-sand);
}

.pricing-table tr:nth-child(even) td {
  background: var(--light-sand);
}

.price-highlight {
  color: var(--orange);
  font-weight: 600;
}

/* Inclusions checklist */
.inclusions-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
  margin: 1rem 0 1.4rem;
}

.inclusion-item {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.82rem;
  color: #555;
  line-height: 1.5;
}

.inclusion-item::before {
  content: '✓';
  color: var(--green);
  font-weight: 700;
  flex-shrink: 0;
}

/* Tour price display */
.tour-price {
  font-family: var(--font-serif);
  font-size: 1.9rem;
  font-weight: 600;
  color: var(--orange);
  margin-bottom: 0.25rem;
}

.price-per {
  font-size: 1rem;
  color: #999;
  font-weight: 400;
}

.tour-price-note {
  font-size: 0.75rem;
  color: #999;
  margin-bottom: 1.2rem;
}

.tour-buttons {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

/* ===== CULTURE ===== */
.culture {
  background: var(--green);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.culture::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -8%;
  width: 550px;
  height: 550px;
  border-radius: 50%;
  background: rgba(199,154,59,0.05);
  pointer-events: none;
}

.culture-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 5rem;
  max-width: var(--max-width);
  margin: 0 auto 4rem;
  align-items: start;
}

.culture-body {
  font-size: 0.93rem;
  color: rgba(255,255,255,0.72);
  line-height: 1.85;
  margin-top: 1rem;
}

.culture-blocks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
  margin-top: 2.5rem;
}

.culture-block {
  padding: 1.4rem;
  border: 1px solid rgba(199,154,59,0.3);
  border-radius: var(--radius);
  background: rgba(255,255,255,0.05);
  transition: background var(--transition);
}

.culture-block:hover {
  background: rgba(255,255,255,0.09);
}

.culture-block-icon {
  font-size: 1.7rem;
  margin-bottom: 0.7rem;
}

.culture-block h4 {
  font-family: var(--font-serif);
  font-size: 1rem;
  color: var(--sand);
  margin-bottom: 0.4rem;
}

.culture-block p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.58);
  line-height: 1.7;
}

/* Culture images */
.culture-imgs-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.culture-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: var(--radius);
}

.culture-img--main {
  grid-column: 1 / -1;
  height: 240px;
}

.culture-ph {
  height: 180px;
  background: rgba(199,154,59,0.15);
}

.culture-ph--main {
  grid-column: 1 / -1;
  height: 240px;
}

/* Community benefits */
.community-benefits {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.2rem;
  max-width: var(--max-width);
  margin: 0 auto;
}

.benefit-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(199,154,59,0.25);
  border-radius: var(--radius);
  padding: 1.4rem;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  transition: background var(--transition);
}

.benefit-card:hover {
  background: rgba(255,255,255,0.11);
}

.benefit-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.benefit-card h4 {
  font-family: var(--font-serif);
  font-size: 1rem;
  color: var(--sand);
  margin-bottom: 0.3rem;
}

.benefit-card p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
}

/* ===== GALLERY ===== */
.gallery {
  background: var(--cream);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(3, 200px);
  gap: 0.75rem;
  max-width: var(--max-width);
  margin: 0 auto;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.gallery-item:hover img {
  transform: scale(1.04);
}

.gallery-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.3rem;
  color: rgba(255,255,255,0.55);
  font-family: var(--font-sans);
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-align: center;
  padding: 0.75rem;
  background: linear-gradient(135deg, var(--brown) 0%, var(--green) 100%);
  transition: color var(--transition);
}

.gallery-placeholder::before {
  content: '📷';
  font-size: 1.4rem;
  opacity: 0.45;
}

/* Hide placeholder when real image loads */
.gallery-item img:not([style*="display:none"]) + .gallery-placeholder {
  display: none;
}

.gallery-item:hover .gallery-placeholder { color: rgba(255,255,255,0.8); }

/* Gallery grid positions */
.gi-1 { grid-column: 1 / 3; grid-row: 1 / 3; background: linear-gradient(135deg, #4B2E1F, #7A4E35); }
.gi-2 { grid-column: 3;     grid-row: 1;     background: linear-gradient(135deg, #2F5D50, #4B7A6E); }
.gi-3 { grid-column: 4;     grid-row: 1;     background: linear-gradient(135deg, #C79A3B, #A67C28); }
.gi-4 { grid-column: 3;     grid-row: 2;     background: linear-gradient(135deg, #C8642B, #A04E1F); }
.gi-5 { grid-column: 4;     grid-row: 2;     background: linear-gradient(135deg, #4B2E1F, #2F5D50); }
.gi-6 { grid-column: 1;     grid-row: 3;     background: linear-gradient(135deg, #C79A3B, #C8642B); }
.gi-7 { grid-column: 2;     grid-row: 3;     background: linear-gradient(135deg, #2F5D50, #4B2E1F); }
.gi-8 { grid-column: 3 / 5; grid-row: 3;     background: linear-gradient(135deg, #7A4E35, #C79A3B); }

/* ===== BOOKING ===== */
.booking {
  background: var(--light-sand);
}

.booking-wrapper {
  max-width: 800px;
  margin: 0 auto;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.booking-header {
  background: var(--brown);
  padding: 2.5rem;
  text-align: center;
}

.booking-header h2 {
  font-size: 2rem;
  color: var(--sand);
  font-weight: 400;
}

.booking-header p {
  color: rgba(232,211,170,0.7);
  font-size: 0.88rem;
  margin-top: 0.4rem;
}

.booking-form {
  padding: 2.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-group--full {
  grid-column: 1 / -1;
}

.form-group label {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--brown-mid);
}

.form-group input,
.form-group select,
.form-group textarea {
  border: 1.5px solid rgba(199,154,59,0.3);
  border-radius: var(--radius);
  padding: 0.72rem 1rem;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  color: var(--charcoal);
  background: var(--cream);
  outline: none;
  transition: border-color var(--transition), background var(--transition);
  appearance: none;
  -webkit-appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  background: #fff;
}

.form-group input.error,
.form-group select.error,
.form-group textarea.error {
  border-color: #c0392b;
}

.form-group textarea {
  resize: vertical;
  min-height: 110px;
}

.form-submit {
  grid-column: 1 / -1;
  text-align: center;
  margin-top: 0.5rem;
}

.form-submit .btn {
  padding: 1rem 3rem;
  font-size: 0.85rem;
  min-width: 200px;
}

.form-note {
  font-size: 0.75rem;
  color: #aaa;
  margin-top: 0.75rem;
  letter-spacing: 0.05em;
}

/* ===== CONTACT ===== */
.contact {
  background: var(--cream);
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 960px;
  margin: 0 auto;
}

.contact-card {
  background: #fff;
  border: 1px solid rgba(199,154,59,0.2);
  border-radius: var(--radius);
  padding: 2rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition), transform var(--transition);
}

.contact-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.contact-icon {
  font-size: 2.2rem;
  margin-bottom: 1rem;
}

.contact-card h3 {
  font-size: 1.15rem;
  color: var(--brown);
  margin-bottom: 0.75rem;
}

.contact-card a {
  display: block;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 0.4rem;
  transition: color var(--transition);
}

.contact-card a:hover { color: var(--gold); }

.contact-location {
  font-size: 0.82rem;
  color: #aaa;
  line-height: 1.7;
  margin-top: 0.5rem;
}

.whatsapp-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1rem !important;
  background: #25D366;
  color: #fff !important;
  padding: 0.6rem 1.3rem;
  border-radius: var(--radius);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: background var(--transition) !important;
}

.whatsapp-btn:hover {
  background: #1da851 !important;
  color: #fff !important;
}

/* ===== FOOTER ===== */
footer {
  background: var(--charcoal);
  color: rgba(255,255,255,0.55);
  padding: 4rem 5% 2rem;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  max-width: var(--max-width);
  margin: 0 auto 3rem;
}

.footer-brand-name {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  color: var(--sand);
  margin-bottom: 0.25rem;
}

.footer-brand-sub {
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.footer-brand-desc {
  font-size: 0.82rem;
  line-height: 1.85;
  max-width: 280px;
}

.footer-col h4 {
  font-family: var(--font-serif);
  font-size: 1rem;
  color: var(--sand);
  margin-bottom: 1rem;
  letter-spacing: 0.04em;
}

.footer-col a {
  display: block;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.48);
  margin-bottom: 0.5rem;
  line-height: 1.6;
  transition: color var(--transition);
}

.footer-col a:hover { color: var(--gold); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  max-width: var(--max-width);
  margin: 0 auto;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.footer-bottom p {
  font-size: 0.78rem;
}

.footer-tags {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  align-items: center;
}

.footer-tags span {
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(199,154,59,0.55);
}

/* ===== RESPONSIVE — TABLET ===== */
@media (max-width: 1024px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .about-img,
  #aboutImgPlaceholder {
    height: 380px;
  }

  .tours-intro {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    margin-bottom: 3.5rem;
  }

  .tour-card {
    grid-template-columns: 1fr;
  }

  .tour-img-side {
    min-height: 260px;
  }

  .tour-img-ph {
    min-height: 260px;
  }

  .culture-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}

/* ===== RESPONSIVE — MOBILE ===== */
@media (max-width: 768px) {
  section {
    padding: 4rem 5%;
  }

  /* Nav */
  .nav-links {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  /* Hero stats */
  .hero-stats {
    flex-wrap: wrap;
  }

  .hero-stat {
    flex: 1 1 45%;
    max-width: none;
    border-right: none;
    border-bottom: 1px solid rgba(199,154,59,0.2);
  }

  .hero-stat:nth-child(odd) {
    border-right: 1px solid rgba(199,154,59,0.2);
  }

  /* About */
  .about-features {
    grid-template-columns: 1fr;
  }

  /* Facilities */
  .facilities-grid {
    grid-template-columns: 1fr;
  }

  /* Culture */
  .culture-blocks {
    grid-template-columns: 1fr;
  }

  .culture-imgs-wrap {
    grid-template-columns: 1fr;
  }

  .culture-img--main,
  .culture-ph--main {
    grid-column: 1;
  }

  /* Gallery */
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }

  .gi-1 { grid-column: 1 / -1; grid-row: auto; height: 200px; }
  .gi-2 { grid-column: 1; grid-row: auto; }
  .gi-3 { grid-column: 2; grid-row: auto; }
  .gi-4 { grid-column: 1; grid-row: auto; }
  .gi-5 { grid-column: 2; grid-row: auto; }
  .gi-6 { grid-column: 1; grid-row: auto; }
  .gi-7 { grid-column: 2; grid-row: auto; }
  .gi-8 { grid-column: 1 / -1; grid-row: auto; height: 180px; }

  /* Booking form */
  .booking-form {
    grid-template-columns: 1fr;
    padding: 1.5rem;
  }

  .form-group--full {
    grid-column: 1;
  }

  /* Contact */
  .contact-grid {
    grid-template-columns: 1fr;
  }

  /* Footer */
  .footer-top {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  /* Inclusions grid */
  .inclusions-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== RESPONSIVE — SMALL MOBILE ===== */
@media (max-width: 480px) {
  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .tour-buttons {
    flex-direction: column;
  }

  .tour-buttons .btn {
    text-align: center;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gi-1, .gi-8 {
    grid-column: 1;
  }

  .hero-stat {
    flex: 1 1 100%;
    border-right: none;
  }
}
