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

:root {
  --stone: #2c2c2c;
  --bark: #3d3228;
  --moss: #4a5a3a;
  --sage: #7a8b6a;
  --sand: #c8b89a;
  --cream: #f5f0e8;
  --ivory: #faf8f4;
  --gold: #b8944a;
  --white: #ffffff;
  --font-display: 'DM Serif Display', Georgia, serif;
  --font-body: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
  --max-width: 1200px;
  --section-pad: 100px 0;
}

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

body {
  font-family: var(--font-body);
  color: var(--stone);
  background: var(--ivory);
  line-height: 1.7;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s;
}

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

ul { list-style: none; }

.container {
  width: 90%;
  max-width: var(--max-width);
  margin: 0 auto;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.2;
}

h1 { font-size: clamp(2.4rem, 5vw, 4rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.6rem); }
h4 { font-size: 1.1rem; }

.section-label {
  font-size: 0.7rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 16px;
  font-family: var(--font-body);
  font-weight: 500;
}

.section-title {
  margin-bottom: 20px;
  color: var(--bark);
}

.section-subtitle {
  font-size: 1.1rem;
  color: #666;
  max-width: 600px;
  line-height: 1.8;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  padding: 14px 36px;
  font-size: 0.75rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-family: var(--font-body);
  font-weight: 500;
  border: none;
  cursor: pointer;
  transition: all 0.4s ease;
}

.btn-primary {
  background: var(--bark);
  color: var(--cream);
}

.btn-primary:hover {
  background: var(--moss);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.6);
}

.btn-outline:hover {
  background: var(--white);
  color: var(--bark);
}

.btn-outline-dark {
  background: transparent;
  color: var(--bark);
  border: 1px solid var(--bark);
}

.btn-outline-dark:hover {
  background: var(--bark);
  color: var(--cream);
}

/* ===== NAVIGATION ===== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 20px 0;
  transition: all 0.4s ease;
}

.nav.scrolled {
  background: rgba(250, 248, 244, 0.97);
  padding: 14px 0;
  box-shadow: 0 1px 20px rgba(0,0,0,0.06);
}

.nav.scrolled .nav-logo,
.nav.scrolled .nav-links a,
.nav.scrolled .nav-cta {
  color: var(--stone);
}

.nav.scrolled .nav-cta {
  border-color: var(--bark);
}

.nav.scrolled .nav-cta:hover {
  background: var(--bark);
  color: var(--cream);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 90%;
  max-width: var(--max-width);
  margin: 0 auto;
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--white);
  letter-spacing: 1px;
  font-weight: 400;
}

.nav-logo span {
  display: block;
  font-size: 0.55rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  font-family: var(--font-body);
  opacity: 0.7;
  margin-top: 2px;
}

.nav-links {
  display: flex;
  gap: 36px;
  align-items: center;
}

.nav-links a {
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--white);
  font-weight: 400;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: currentColor;
  transition: width 0.3s;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-cta {
  padding: 10px 24px !important;
  border: 1px solid rgba(255,255,255,0.5) !important;
  font-size: 0.7rem !important;
  letter-spacing: 2px !important;
}

.nav-cta:hover {
  background: var(--white) !important;
  color: var(--bark) !important;
}

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

.nav-toggle span {
  display: block;
  width: 26px;
  height: 2.5px;
  background: var(--white);
  transition: all 0.3s;
  border-radius: 2px;
}

.nav.scrolled .nav-toggle span {
  background: var(--stone);
}

/* ===== HERO ===== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

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

/* Hero slideshow */
.hero-slideshow {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.2s ease;
}

.hero-slide.active {
  opacity: 1;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: kenburns 8s ease forwards;
}

.hero-slide:nth-child(1) img { transform-origin: center center; }
.hero-slide:nth-child(2) img { transform-origin: left top; }
.hero-slide:nth-child(3) img { transform-origin: right bottom; }
.hero-slide:nth-child(4) img { transform-origin: left center; }

@keyframes kenburns {
  0% { transform: scale(1); }
  100% { transform: scale(1.12); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(15, 12, 10, 0.45);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  color: var(--white);
  width: 90%;
  max-width: var(--max-width);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: end;
  padding-bottom: 80px;
}

.hero-left h1 {
  font-weight: 400;
  font-size: clamp(2.8rem, 5.5vw, 4.5rem);
  line-height: 1.05;
  letter-spacing: -0.5px;
}

.hero-right {
  padding-bottom: 8px;
}

.hero-right p {
  font-size: 1rem;
  opacity: 0.85;
  line-height: 1.8;
  margin-bottom: 32px;
  max-width: 400px;
  font-weight: 300;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: var(--white);
  font-size: 0.65rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  opacity: 0.6;
}

.hero-scroll .line {
  width: 1px;
  height: 40px;
  background: var(--white);
  animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
  0%, 100% { transform: scaleY(0.4); opacity: 0.3; }
  50% { transform: scaleY(1); opacity: 1; }
}

/* ===== PAGE HERO (inner pages) ===== */
.page-hero {
  position: relative;
  height: 55vh;
  min-height: 400px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.page-hero .hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-hero .hero-overlay {
  background: rgba(20, 18, 15, 0.35);
}

.page-hero-content {
  position: relative;
  z-index: 2;
  width: 90%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding-bottom: 60px;
  color: var(--white);
}

.page-hero-content h1 {
  font-size: clamp(2.2rem, 4.5vw, 3.5rem);
  line-height: 1.1;
}

.page-hero-content p {
  margin-top: 16px;
  font-size: 1rem;
  opacity: 0.85;
  max-width: 500px;
  font-weight: 300;
  line-height: 1.7;
}

/* ===== INTRO / ABOUT STRIP ===== */
.intro {
  padding: var(--section-pad);
}

.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.intro-text .section-subtitle {
  margin-bottom: 32px;
}

.intro-image {
  position: relative;
}

.intro-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}

.intro-image .accent-border {
  position: absolute;
  top: -16px;
  right: -16px;
  width: 100%;
  height: 100%;
  border: 1px solid var(--sand);
  z-index: -1;
}

/* ===== FEATURED EXPERIENCES (home) ===== */
.featured {
  padding: var(--section-pad);
  background: var(--cream);
}

.featured-header {
  text-align: center;
  margin-bottom: 60px;
}

.featured-header .section-subtitle {
  margin: 0 auto;
}

.featured-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.featured-card {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  height: 480px;
}

.featured-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.featured-card:hover img {
  transform: scale(1.05);
}

.featured-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.65) 0%, transparent 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 32px;
  color: var(--white);
  transition: background 0.4s;
}

.featured-card:hover .featured-card-overlay {
  background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.1) 70%);
}

.featured-card-overlay .tag {
  font-size: 0.65rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  opacity: 0.8;
  margin-bottom: 8px;
}

.featured-card-overlay h3 {
  margin-bottom: 8px;
}

.featured-card-overlay p {
  font-size: 0.9rem;
  opacity: 0.85;
  line-height: 1.6;
}

/* ===== VALUES / WHY US ===== */
.values {
  padding: var(--section-pad);
}

.values-header {
  text-align: center;
  margin-bottom: 60px;
}

.values-header .section-subtitle {
  margin: 0 auto;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

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

.value-icon {
  display: none;
}

.value-item h4 {
  font-family: var(--font-display);
  margin-bottom: 12px;
  color: var(--bark);
}

.value-item p {
  font-size: 0.95rem;
  color: #777;
  line-height: 1.8;
}

/* ===== PACKAGES SECTION ===== */
.packages {
  padding: var(--section-pad);
}

.packages-header {
  text-align: center;
  margin-bottom: 60px;
}

.packages-header .section-subtitle {
  margin: 0 auto;
}

.package-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin-bottom: 40px;
  background: var(--white);
  overflow: hidden;
  box-shadow: 0 2px 30px rgba(0,0,0,0.05);
}

.package-card:nth-child(even) {
  direction: rtl;
}

.package-card:nth-child(even) > * {
  direction: ltr;
}

.package-image {
  height: 100%;
  min-height: 400px;
  overflow: hidden;
}

.package-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s;
}

.package-card:hover .package-image img {
  transform: scale(1.03);
}

.package-info {
  padding: 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.package-info .tag {
  font-size: 0.65rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 12px;
}

.package-info h3 {
  font-size: 1.6rem;
  margin-bottom: 8px;
  color: var(--bark);
}

.package-info .best-for {
  font-size: 0.85rem;
  color: var(--gold);
  font-style: italic;
  margin-bottom: 16px;
}

.package-info p {
  font-size: 0.97rem;
  color: #666;
  margin-bottom: 20px;
  line-height: 1.8;
}

.package-highlights {
  margin-bottom: 24px;
}

.package-highlights li {
  font-size: 0.85rem;
  color: #555;
  padding: 4px 0;
  padding-left: 18px;
  position: relative;
}

.package-highlights li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 12px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--sage);
}

.package-price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 24px;
}

.package-price .from {
  font-size: 0.75rem;
  color: #999;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.package-price .amount {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--bark);
}

.package-price .per {
  font-size: 0.8rem;
  color: #999;
}

/* ===== ITINERARY ACCORDION ===== */
.itinerary-section {
  padding: var(--section-pad);
  background: var(--cream);
}

.itinerary-section .container {
  max-width: 800px;
}

.itinerary-header {
  text-align: center;
  margin-bottom: 48px;
}

.accordion-item {
  border-bottom: 1px solid rgba(0,0,0,0.08);
  background: var(--white);
  margin-bottom: 8px;
}

.accordion-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 28px;
  cursor: pointer;
  user-select: none;
}

.accordion-header h4 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--bark);
}

.accordion-header .toggle {
  font-size: 1.4rem;
  color: var(--sage);
  transition: transform 0.3s;
  font-weight: 300;
}

.accordion-item.active .accordion-header .toggle {
  transform: rotate(45deg);
}

.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.accordion-body-inner {
  padding: 0 28px 24px;
  font-size: 0.92rem;
  color: #555;
  line-height: 1.8;
}

/* ===== DESTINATIONS GRID ===== */
.destinations {
  padding: var(--section-pad);
}

.dest-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.dest-card {
  position: relative;
  overflow: hidden;
  height: 350px;
  cursor: pointer;
}

.dest-card.tall {
  grid-row: span 2;
  height: auto;
}

.dest-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s;
}

.dest-card:hover img {
  transform: scale(1.04);
}

.dest-card-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 32px;
  background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, transparent 100%);
  color: var(--white);
}

.dest-card-info h3 {
  margin-bottom: 6px;
}

.dest-card-info p {
  font-size: 0.85rem;
  opacity: 0.85;
}

/* ===== COMMUNITY SECTION ===== */
.community {
  padding: var(--section-pad);
}

.community-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 80px;
}

.community-intro img {
  width: 100%;
  height: 450px;
  object-fit: cover;
}

.community-experiences {
  margin-bottom: 60px;
}

.experience-item {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 32px;
  padding: 32px 0;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  align-items: start;
}

.experience-item h4 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--bark);
  padding-top: 4px;
}

.experience-item p {
  font-size: 0.97rem;
  color: #555;
  line-height: 1.8;
}

.impact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 40px;
}

.impact-card {
  background: var(--cream);
  padding: 36px;
  text-align: center;
}

.impact-card .percentage {
  font-family: var(--font-display);
  font-size: 2.4rem;
  color: var(--moss);
  margin-bottom: 8px;
}

.impact-card p {
  font-size: 0.85rem;
  color: #666;
}

/* ===== ABOUT PAGE ===== */
.story {
  padding: var(--section-pad);
}

.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.story-text h3 {
  font-size: 1.4rem;
  color: var(--bark);
  margin-bottom: 16px;
}

.story-text p {
  font-size: 1rem;
  color: #555;
  margin-bottom: 16px;
  line-height: 1.8;
}

.story-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}

.expertise {
  padding: var(--section-pad);
  background: var(--cream);
}

.expertise-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  margin-top: 48px;
}

.expertise-item {
  background: var(--white);
  padding: 36px;
}

.expertise-item h4 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--bark);
  margin-bottom: 12px;
}

.expertise-item p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.8;
}

/* ===== SERVICES LIST ===== */
.services-list {
  padding: var(--section-pad);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}

.service-tag {
  padding: 20px 24px;
  background: var(--cream);
  font-size: 0.85rem;
  color: var(--bark);
  text-align: center;
  font-family: var(--font-display);
  font-size: 1rem;
  transition: all 0.3s;
}

.service-tag:hover {
  background: var(--bark);
  color: var(--cream);
}

/* ===== CONTACT ===== */
.contact {
  padding: var(--section-pad);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.contact-info h3 {
  font-size: 1.4rem;
  color: var(--bark);
  margin-bottom: 24px;
}

.contact-detail {
  margin-bottom: 24px;
}

.contact-detail .label {
  font-size: 0.7rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 6px;
}

.contact-detail p, .contact-detail a {
  font-size: 0.95rem;
  color: #555;
}

.contact-detail a:hover {
  color: var(--moss);
}

.contact-form {
  background: var(--cream);
  padding: 48px;
}

.contact-form h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--bark);
  margin-bottom: 28px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--bark);
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  border: 1px solid rgba(0,0,0,0.1);
  background: var(--white);
  color: var(--stone);
  outline: none;
  transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--sage);
}

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

/* Contact page image column */
.contact-image-col {
  position: relative;
  overflow: hidden;
}

.contact-image-col img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 500px;
}

.contact-image-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 40px;
  background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, transparent 100%);
  color: var(--white);
}

.contact-image-overlay h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  margin-bottom: 8px;
}

.contact-image-overlay p {
  font-size: 0.85rem;
  opacity: 0.8;
  line-height: 1.6;
}

/* Three column contact layout */
.contact-three-col {
  display: grid;
  grid-template-columns: 1fr 1.4fr 1fr;
  gap: 0;
  min-height: 600px;
}

.form-status {
  margin-top: 12px;
  font-size: 0.85rem;
  color: var(--moss);
  display: none;
}

/* ===== CTA BANNER ===== */
.cta-banner {
  position: relative;
  padding: 100px 0;
  text-align: center;
  overflow: hidden;
}

.cta-banner .hero-bg {
  position: absolute;
  inset: 0;
}

.cta-banner .hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cta-banner .hero-overlay {
  background: rgba(44, 50, 40, 0.75);
}

.cta-banner-content {
  position: relative;
  z-index: 2;
  color: var(--white);
}

.cta-banner-content h2 {
  margin-bottom: 16px;
}

.cta-banner-content p {
  font-size: 1.05rem;
  opacity: 0.85;
  margin-bottom: 32px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--bark);
  color: rgba(255,255,255,0.7);
  padding: 80px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 60px;
}

.footer-brand .nav-logo {
  margin-bottom: 16px;
}

.footer-brand p {
  font-size: 0.95rem;
  line-height: 1.8;
  max-width: 300px;
}

.footer h4 {
  font-size: 0.7rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--sand);
  margin-bottom: 20px;
  font-family: var(--font-body);
  font-weight: 500;
}

.footer ul li {
  margin-bottom: 10px;
}

.footer ul li a {
  font-size: 0.85rem;
  transition: color 0.3s;
}

.footer ul li a:hover {
  color: var(--white);
}

.footer-social {
  display: flex;
  gap: 14px;
  margin-top: 24px;
  align-items: center;
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s;
  opacity: 0.7;
}

.footer-social a:hover {
  opacity: 1;
}

.footer-social a svg {
  width: 20px;
  height: 20px;
}

.footer-payments {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.footer-payments .pay-label {
  font-size: 0.65rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  margin-bottom: 14px;
}

.payment-icons {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  align-items: center;
}

.pay-badge {
  display: inline-block;
  padding: 5px 12px;
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  border-radius: 4px;
  background: rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.6);
  white-space: nowrap;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
}

/* ===== MOBILE MENU ===== */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: #2a2520;
  z-index: 9999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}

.mobile-menu.open {
  opacity: 1;
  pointer-events: all;
}

.mobile-menu a {
  color: var(--white);
  font-size: 1.1rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 300;
}

.mobile-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 12px;
  z-index: 10;
}

.mobile-close svg {
  stroke: #ffffff;
  width: 28px;
  height: 28px;
}

/* ===== TESTIMONIALS (CMS) ===== */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial-card {
  padding: 0;
}

.testimonial-text {
  font-size: 0.97rem;
  color: #555;
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 20px;
}

.testimonial-author strong {
  display: block;
  font-family: var(--font-display);
  color: var(--bark);
  font-size: 1rem;
  font-weight: 400;
}

.testimonial-author span {
  font-size: 0.8rem;
  color: #999;
}

@media (max-width: 768px) {
  .testimonials-grid { grid-template-columns: 1fr; }
}

/* ===== FLOATING REVIEW BUTTON & MODAL ===== */
.floating-review-btn {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 900;
  background: var(--bark);
  color: var(--cream);
  padding: 14px 24px;
  font-family: var(--font-body);
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 500;
  border: none;
  cursor: pointer;
  transition: background 0.3s, transform 0.3s;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.floating-review-btn:hover {
  background: var(--moss);
  transform: translateY(-2px);
}

.review-modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 1500;
  align-items: center;
  justify-content: center;
}

.review-modal-overlay.open {
  display: flex;
}

.review-modal {
  background: var(--ivory);
  width: 90%;
  max-width: 480px;
  max-height: 90vh;
  overflow-y: auto;
  padding: 48px 40px;
  position: relative;
}

.review-modal-close {
  position: absolute;
  top: 16px;
  right: 20px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.review-modal-close svg {
  stroke: var(--stone);
  width: 22px;
  height: 22px;
}

.review-modal h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--bark);
  margin-bottom: 8px;
}

.review-modal > p {
  font-size: 0.9rem;
  color: #777;
  margin-bottom: 28px;
  line-height: 1.6;
}

.review-stars {
  display: flex;
  gap: 6px;
  margin-bottom: 20px;
  flex-direction: row-reverse;
  justify-content: flex-end;
}

.review-stars input {
  display: none;
}

.review-stars label {
  cursor: pointer;
  font-size: 1.6rem;
  color: #ddd;
  transition: color 0.2s;
}

.review-stars label:hover,
.review-stars label:hover ~ label,
.review-stars input:checked ~ label {
  color: var(--gold);
}

.review-status {
  margin-top: 12px;
  font-size: 0.85rem;
  display: none;
}

/* ===== GALLERY STRIP ===== */
.gallery-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4px;
  padding: 4px;
}

.gallery-strip img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: opacity 0.3s;
  cursor: pointer;
}

.gallery-strip img:hover {
  opacity: 0.85;
}

/* ===== LIGHTBOX ===== */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.92);
  z-index: 2000;
  align-items: center;
  justify-content: center;
}

.lightbox.open {
  display: flex;
}

.lightbox img {
  max-width: 90%;
  max-height: 85vh;
  object-fit: contain;
}

.lightbox-close {
  position: absolute;
  top: 24px;
  right: 32px;
  background: none;
  border: none;
  color: var(--white);
  font-size: 2rem;
  cursor: pointer;
}

/* ===== ANIMATIONS ===== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

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

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .featured-grid { grid-template-columns: repeat(2, 1fr); }
  .featured-card:last-child { grid-column: span 2; height: 350px; }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .expertise-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  :root { --section-pad: 64px 0; }

  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .mobile-menu { display: flex; }

  .hero-content {
    grid-template-columns: 1fr;
    gap: 20px;
    padding-bottom: 60px;
  }
  .hero-left h1 { font-size: 2.2rem; }

  .intro-grid,
  .story-grid,
  .community-intro,
  .contact-grid,
  .package-card {
    grid-template-columns: 1fr;
  }

  .package-card:nth-child(even) { direction: ltr; }

  .package-image { min-height: 280px; }

  .intro-image { order: -1; }
  .intro-image img { height: 300px; }

  .featured-grid { grid-template-columns: 1fr; }
  .featured-card { height: 360px; }
  .featured-card:last-child { grid-column: span 1; }

  .values-grid { grid-template-columns: 1fr; gap: 32px; }

  .dest-grid { grid-template-columns: 1fr; }
  .dest-card.tall { grid-row: span 1; height: 350px; }

  .experience-item { grid-template-columns: 1fr; gap: 8px; }

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

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

  .contact-three-col { grid-template-columns: 1fr; }
  .contact-image-col { display: none; }
  .contact-image-col:first-child { display: block; min-height: 250px; }
  .contact-details-strip { grid-template-columns: 1fr 1fr !important; }

  .form-row { grid-template-columns: 1fr; }

  .gallery-strip { grid-template-columns: repeat(2, 1fr); }

  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }

  .story-image img { height: 300px; }
  .community-intro img { height: 300px; }
}

@media (max-width: 480px) {
  .services-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; align-items: center; }
}
