/* ============================================================
   MORNI HILLS RETREAT — Stylesheet
   ============================================================ */

/* ---------- CSS Custom Properties ---------- */
:root {
  --green-dark:   #1B3A0D;
  --green-mid:    #2C5A1A;
  --green-light:  #4A7C59;
  --cream:        #F8F3EA;
  --sand:         #EAD9B8;
  --amber:        #B87A2E;
  --amber-light:  #D4973E;
  --text-dark:    #1A1A1A;
  --text-mid:     #4A4A4A;
  --text-light:   #767676;
  --white:        #FFFFFF;
  --black:        #000000;

  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body:    'Inter', system-ui, sans-serif;

  --shadow-sm:  0 2px 8px rgba(0,0,0,.08);
  --shadow-md:  0 8px 32px rgba(0,0,0,.14);
  --shadow-lg:  0 20px 60px rgba(0,0,0,.22);

  --radius-sm:  6px;
  --radius-md:  12px;
  --radius-lg:  20px;

  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---------- Reset & Base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--cream);
  line-height: 1.65;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a  { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul, ol { list-style: none; }

/* ---------- Typography ---------- */
.h-display {
  font-family: var(--font-heading);
  font-size: clamp(2.8rem, 6vw, 5.5rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
}
.h1 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3.4rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.01em;
}
.h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 3vw, 2.6rem);
  font-weight: 600;
  line-height: 1.2;
}
.h3 {
  font-family: var(--font-heading);
  font-size: clamp(1.2rem, 2vw, 1.7rem);
  font-weight: 600;
  line-height: 1.25;
}
.overline {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.lead {
  font-size: 1.1rem;
  line-height: 1.75;
  color: var(--text-mid);
}

/* ---------- Utility ---------- */
.container {
  width: min(1200px, 92vw);
  margin-inline: auto;
}
.text-center { text-align: center; }
.text-white  { color: var(--white); }
.text-amber  { color: var(--amber); }
.text-green  { color: var(--green-mid); }

.sr-only {
  position: absolute; width: 1px; height: 1px;
  overflow: hidden; clip: rect(0,0,0,0);
}

/* ---------- Scroll-reveal animations ---------- */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.12s; }
.reveal-delay-2 { transition-delay: 0.24s; }
.reveal-delay-3 { transition-delay: 0.36s; }
.reveal-delay-4 { transition-delay: 0.48s; }

/* ============================================================
   NAVIGATION
   ============================================================ */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1.4rem 0;
  transition: background var(--transition), padding var(--transition), box-shadow var(--transition);
}
#navbar.scrolled {
  background: rgba(27, 58, 13, 0.97);
  backdrop-filter: blur(12px);
  padding: 0.9rem 0;
  box-shadow: 0 2px 20px rgba(0,0,0,.25);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.nav-logo {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.65rem;
  line-height: 1;
}
.nav-logo-img {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 1.5px solid rgba(255,255,255,0.2);
}
.nav-logo-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.nav-logo .logo-name {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.01em;
}
.nav-logo .logo-tagline {
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sand);
  font-weight: 400;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-links a {
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.88);
  transition: color var(--transition);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0; right: 100%;
  height: 1.5px;
  background: var(--amber-light);
  transition: right var(--transition);
}
.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { right: 0; }

.nav-book-btn {
  padding: 0.6rem 1.5rem;
  background: var(--amber);
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 50px;
  transition: background var(--transition), transform var(--transition);
}
.nav-book-btn:hover {
  background: var(--amber-light);
  transform: translateY(-1px);
}

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 820px) {
  .nav-links {
    position: fixed;
    top: 0; right: -100%; bottom: 0;
    width: min(320px, 80vw);
    flex-direction: column;
    align-items: flex-start;
    padding: 5rem 2rem 2rem;
    background: var(--green-dark);
    gap: 1.5rem;
    transition: right var(--transition);
    z-index: 999;
    box-shadow: -4px 0 30px rgba(0,0,0,.3);
  }
  .nav-links.open { right: 0; }
  .nav-links a { font-size: 1rem; }
  .nav-toggle { display: flex; z-index: 1001; }
  .nav-book-btn { width: 100%; text-align: center; padding: 0.9rem; }
}

/* ============================================================
   HERO
   ============================================================ */
#hero {
  position: relative;
  height: 100svh;
  min-height: 600px;
  display: flex;
  align-items: flex-start; /* pin from top — never overlaps navbar */
  overflow: hidden;
  box-sizing: border-box;
  padding-top: 140px;    /* navbar height + comfortable clearance */
  padding-bottom: 110px; /* room above booking strip */
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/WhatsApp Image 2026-05-07 at 12.02.07 PM.jpeg');
  background-size: cover;
  background-position: center 30%;
  transform: scale(1.06);
  transition: transform 8s ease-out;
  will-change: transform;
}
.hero-bg.loaded { transform: scale(1); }

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(10, 28, 5, 0.68) 0%,
    rgba(10, 28, 5, 0.38) 50%,
    rgba(10, 28, 5, 0.72) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 820px;
}

.hero-overline {
  color: var(--sand);
  margin-bottom: 1.2rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.hero-overline::before {
  content: '';
  display: inline-block;
  width: 36px;
  height: 1.5px;
  background: var(--amber-light);
}

.hero-headline {
  color: var(--white);
  margin-bottom: 1.4rem;
  text-shadow: 0 2px 20px rgba(0,0,0,.3);
}
.hero-headline em {
  font-style: italic;
  color: var(--sand);
}

.hero-sub {
  color: rgba(255,255,255,0.82);
  font-size: 1.1rem;
  max-width: 540px;
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}

/* ---------- Quick Availability Strip ---------- */
.hero-booking-strip {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  z-index: 10;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(8px);
  box-shadow: 0 -4px 24px rgba(0,0,0,.12);
}
.booking-strip-inner {
  display: flex;
  align-items: stretch;
  gap: 0;
}
.booking-field {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 1rem 1.4rem;
  border-right: 1px solid rgba(0,0,0,.08);
  cursor: pointer;
  transition: background var(--transition);
}
.booking-field:hover { background: var(--cream); }
.booking-field label {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 0.2rem;
}
.booking-field input,
.booking-field select {
  border: none;
  background: transparent;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-dark);
  cursor: pointer;
  outline: none;
  width: 100%;
}
.booking-field input[type="date"]::-webkit-calendar-picker-indicator {
  opacity: 0.4;
}
.booking-strip-btn {
  padding: 0 2.4rem;
  background: var(--green-dark);
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: background var(--transition);
  white-space: nowrap;
}
.booking-strip-btn:hover { background: var(--green-mid); }

@media (max-width: 768px) {
  .hero-booking-strip { display: none; }
  #hero { height: 100svh; }
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.9rem 2rem;
  border-radius: 50px;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: all var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
}
.btn-primary {
  background: var(--amber);
  color: var(--white);
  border-color: var(--amber);
}
.btn-primary:hover {
  background: var(--amber-light);
  border-color: var(--amber-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(184, 122, 46, 0.4);
}
.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.6);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,0.12);
  border-color: var(--white);
}
.btn-outline-green {
  background: transparent;
  color: var(--green-dark);
  border-color: var(--green-dark);
}
.btn-outline-green:hover {
  background: var(--green-dark);
  color: var(--white);
  transform: translateY(-2px);
}
.btn-green {
  background: var(--green-dark);
  color: var(--white);
  border-color: var(--green-dark);
}
.btn-green:hover {
  background: var(--green-mid);
  border-color: var(--green-mid);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(27,58,13,0.35);
}

.btn-icon { font-size: 1rem; }

/* ============================================================
   USP STRIP
   ============================================================ */
#usp {
  background: var(--green-dark);
  padding: 0;
}
.usp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.usp-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.6rem 2rem;
  border-right: 1px solid rgba(255,255,255,.1);
  color: var(--white);
}
.usp-item:last-child { border-right: none; }
.usp-icon {
  font-size: 1.8rem;
  flex-shrink: 0;
  opacity: 0.9;
}
.usp-text strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 0.1rem;
}
.usp-text span {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.65);
}

@media (max-width: 640px) {
  .usp-grid { grid-template-columns: 1fr; }
  .usp-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,.1); }
  .usp-item:last-child { border-bottom: none; }
}

/* ============================================================
   ABOUT / STORY
   ============================================================ */
#about {
  padding: 6rem 0;
  background: var(--cream);
  overflow: hidden;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.about-image-wrap {
  position: relative;
}
.about-image-main {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.about-image-accent {
  position: absolute;
  width: 55%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  bottom: -2.5rem;
  right: -2.5rem;
  border: 5px solid var(--white);
}
.about-badge {
  position: absolute;
  top: 2rem;
  left: -2rem;
  background: var(--green-dark);
  color: var(--white);
  padding: 1rem 1.2rem;
  border-radius: var(--radius-md);
  text-align: center;
  box-shadow: var(--shadow-md);
}
.about-badge .badge-number {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
  display: block;
}
.about-badge .badge-label {
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sand);
  margin-top: 0.2rem;
}
.about-content .overline {
  color: var(--amber);
  margin-bottom: 1rem;
}
.about-content .h1 {
  margin-bottom: 1.4rem;
  color: var(--green-dark);
}
.about-content .lead {
  margin-bottom: 1.2rem;
}
.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin: 2rem 0;
  padding: 1.5rem 0;
  border-top: 1px solid var(--sand);
  border-bottom: 1px solid var(--sand);
}
.stat-item .stat-num {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--green-dark);
  line-height: 1;
}
.stat-item .stat-label {
  font-size: 0.75rem;
  color: var(--text-light);
  margin-top: 0.3rem;
}

@media (max-width: 820px) {
  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .about-image-accent { right: 1rem; }
  .about-badge { left: 1rem; }
}

/* ============================================================
   ACCOMMODATIONS
   ============================================================ */
#accommodations {
  padding: 6rem 0 7rem;
  background: var(--white);
}
.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}
.section-header .overline {
  color: var(--amber);
  margin-bottom: 0.8rem;
}
.section-header .h1 { color: var(--green-dark); margin-bottom: 0.8rem; }
.section-header .lead { max-width: 560px; margin-inline: auto; }

.rooms-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.room-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
}
.room-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}
.room-card-image {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
}
.room-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}
.room-card:hover .room-card-image img { transform: scale(1.07); }

.room-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  padding: 0.35rem 0.85rem;
  background: var(--green-dark);
  color: var(--white);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 50px;
}
.room-badge.best { background: var(--amber); }

.room-card-body {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.room-card-body .h3 { color: var(--green-dark); margin-bottom: 0.5rem; }
.room-card-body p {
  font-size: 0.9rem;
  color: var(--text-mid);
  margin-bottom: 1rem;
  flex: 1;
}
.room-amenities {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 1.2rem;
}
.amenity-tag {
  padding: 0.25rem 0.7rem;
  background: var(--cream);
  border-radius: 50px;
  font-size: 0.72rem;
  color: var(--text-mid);
  font-weight: 500;
}
.room-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.5rem;
  border-top: 1px solid var(--sand);
  background: var(--cream);
}
.room-price {
  display: flex;
  flex-direction: column;
}
.room-price .from {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-light);
}
.room-price .amount {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--green-dark);
  line-height: 1;
}
.room-price .per-night {
  font-size: 0.7rem;
  color: var(--text-light);
}

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

/* ============================================================
   SACHIN'S STORY SECTION
   ============================================================ */
#our-story {
  background: var(--cream);
}

.story-layout {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
}

/* ---- Left image column ---- */
.story-image-col {
  display: flex;
  flex-direction: column;
  background: var(--green-dark);
}

.story-photo-wrap {
  position: relative;
  overflow: hidden;
  max-height: 720px;
  flex-shrink: 0;
}
.story-photo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  display: block;
  transition: transform 8s ease-out;
}
#our-story:hover .story-photo-wrap img {
  transform: scale(1.04);
}
.story-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(10, 28, 5, 0.88) 0%,
    rgba(10, 28, 5, 0.3) 45%,
    rgba(10, 28, 5, 0.1) 100%
  );
}
.story-image-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 3rem 2.5rem;
}

/* ---- Property stats strip (between photo and book card) ---- */
.story-stats {
  display: flex;
  background: rgba(0, 0, 0, 0.25);
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  flex-shrink: 0;
}
.story-stat {
  flex: 1;
  padding: 1.25rem 1rem;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, 0.07);
}
.story-stat:last-child { border-right: none; }
.story-stat-value {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--amber-light);
  line-height: 1;
}
.story-stat-label {
  display: block;
  font-size: 0.6rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  margin-top: 0.35rem;
}

/* ---- Retreat story block (below book card) ---- */
.retreat-story {
  padding: 2rem 2rem 2.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  flex: 1;
}
.retreat-story-overline {
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--amber-light);
  font-weight: 600;
  margin-bottom: 0.6rem;
}
.retreat-story-heading {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  font-style: italic;
  color: var(--white);
  line-height: 1.25;
  margin-bottom: 1rem;
}
.retreat-story-body {
  font-size: 0.83rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.75;
  margin-bottom: 0.75rem;
}
.retreat-story-body:last-child { margin-bottom: 0; }

/* Book card when placed in the left column */
.book-card--left {
  margin: 0;
  border-radius: 0;
  box-shadow: none;
}
.story-pull-quote {
  font-family: var(--font-heading);
  font-size: clamp(1.1rem, 2vw, 1.45rem);
  font-style: italic;
  color: var(--white);
  line-height: 1.5;
  margin-bottom: 1rem;
  border: none;
  padding: 0;
  position: relative;
}
.story-pull-quote::before {
  content: '\201C';
  font-size: 5rem;
  line-height: 0;
  color: var(--amber);
  opacity: 0.5;
  position: absolute;
  top: 1.2rem;
  left: -0.5rem;
  font-family: var(--font-heading);
}
.story-cite {
  display: block;
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sand);
  font-style: normal;
  font-weight: 500;
}

/* ---- Right content column ---- */
.story-content-col {
  display: flex;
  align-items: center;
  background: var(--white);
}
.story-content-inner {
  padding: 5rem 4rem;
  max-width: 620px;
}
.story-content-inner .overline {
  margin-bottom: 0.75rem;
}
.story-content-inner .h1 {
  color: var(--green-dark);
  margin-bottom: 1.5rem;
}
.story-content-inner .lead {
  margin-bottom: 2rem;
}

/* ---- Milestones timeline ---- */
.story-milestones {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin: 0.5rem 0 0;
  position: relative;
}
.story-milestones::before {
  content: '';
  position: absolute;
  left: 3.2rem;
  top: 0.6rem;
  bottom: 0.6rem;
  width: 2px;
  background: linear-gradient(to bottom, var(--amber) 0%, var(--green-light) 100%);
  opacity: 0.35;
}

.milestone {
  display: grid;
  grid-template-columns: 6.5rem 1fr;
  gap: 0 1.5rem;
  padding: 1.25rem 0;
  align-items: start;
  position: relative;
}
.milestone:not(:last-child) {
  border-bottom: 1px dashed rgba(0,0,0,0.07);
}

.milestone-year {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--amber);
  text-align: right;
  padding-right: 1.5rem;
  padding-top: 0.15rem;
  position: relative;
  white-space: nowrap;
}
.milestone-year::after {
  content: '';
  position: absolute;
  right: -5px;
  top: 0.55rem;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--amber);
  border: 2px solid var(--white);
  box-shadow: 0 0 0 2px var(--amber);
}

.milestone-content h4 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  color: var(--green-dark);
  margin-bottom: 0.3rem;
}
.milestone-content p {
  font-size: 0.86rem;
  color: var(--text-mid);
  line-height: 1.65;
}

/* ---- Values row ---- */
.story-values {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  margin: 1.75rem 0 2rem;
  padding: 1.5rem;
  background: var(--cream);
  border-radius: var(--radius-md);
  border-left: 3px solid var(--amber);
}
.story-value {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
}
.story-value-icon {
  font-size: 1.2rem;
  flex-shrink: 0;
  margin-top: 2px;
}
.story-value strong {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.1rem;
}
.story-value p {
  font-size: 0.8rem;
  color: var(--text-light);
  margin: 0;
}

/* ---- Book card ---- */
.book-card {
  display: flex;
  gap: 0;
  background: var(--green-dark);
  border-radius: var(--radius-md);
  overflow: hidden;
  margin: 1.75rem 0 2rem;
  box-shadow: var(--shadow-md);
  transition: transform var(--transition), box-shadow var(--transition);
}
.book-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.book-card-spine {
  width: 7px;
  flex-shrink: 0;
  background: linear-gradient(to bottom, var(--amber), var(--amber-light));
}

.book-card-body {
  padding: 1.4rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.book-card-top { display: flex; flex-direction: column; gap: 0.3rem; }

.book-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--amber-light);
  margin-bottom: 0.1rem;
}

.book-title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  font-style: italic;
  color: var(--white);
  line-height: 1.25;
}

.book-subtitle {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
}

.book-blurb {
  font-size: 0.84rem;
  color: rgba(255,255,255,0.72);
  line-height: 1.65;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 0.65rem;
  margin: 0;
}

.book-link {
  display: inline-flex;
  align-items: center;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--amber-light);
  text-transform: uppercase;
  transition: color var(--transition), letter-spacing var(--transition);
  align-self: flex-start;
  margin-top: 0.1rem;
}
.book-link:hover {
  color: var(--white);
  letter-spacing: 0.14em;
}

/* ---- CTAs ---- */
.story-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}

/* ---- Responsive ---- */
@media (max-width: 1024px) {
  .story-content-inner { padding: 4rem 2.5rem; }
}
@media (max-width: 820px) {
  .story-layout {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .story-image-col {
    height: auto;
  }
  .story-photo-wrap {
    height: 100vw;
    min-height: 420px;
    max-height: none;
  }
  .story-image-caption { padding: 0 1.5rem 1.25rem; }
  .story-pull-quote { font-size: 0.82rem; line-height: 1.3; margin-bottom: 0.25rem; }
  .story-pull-quote::before { font-size: 2rem; top: 0.3rem; }
  .story-content-inner { padding: 3rem 1.5rem; max-width: 100%; }
  .story-milestones::before { left: 2.8rem; }
  .milestone { grid-template-columns: 5rem 1fr; }
}
@media (max-width: 480px) {
  .story-photo-wrap { height: 110vw; }
  .story-image-caption { padding: 0 1.25rem 0.75rem; }
  .story-pull-quote { font-size: 0.75rem; line-height: 1.3; margin-bottom: 0.2rem; }
  .story-pull-quote::before { font-size: 1.8rem; top: 0.25rem; }
  .story-cite { font-size: 0.62rem; }
  .milestone { grid-template-columns: 4.5rem 1fr; gap: 0 1rem; }
  .milestone-year { font-size: 0.9rem; }
  .story-cta { flex-direction: column; align-items: stretch; }
  .story-cta .btn { text-align: center; justify-content: center; }
}

/* ============================================================
   EXPERIENCES
   ============================================================ */
#experiences {
  padding: 6rem 0;
  background: var(--green-dark);
  position: relative;
  overflow: hidden;
}
#experiences::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('../images/WhatsApp Image 2026-05-07 at 12.02.07 PM (1).jpeg');
  background-size: cover;
  background-position: center;
  opacity: 0.12;
}
.experiences-inner { position: relative; z-index: 1; }
.experiences-inner .section-header .overline { color: var(--sand); }
.experiences-inner .section-header .h1 { color: var(--white); }
.experiences-inner .section-header .lead { color: rgba(255,255,255,0.7); }

.exp-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.exp-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-md);
  padding: 2rem 1.5rem;
  text-align: center;
  backdrop-filter: blur(6px);
  transition: background var(--transition), transform var(--transition);
}
.exp-card:hover {
  background: rgba(255,255,255,0.13);
  transform: translateY(-4px);
}
.exp-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  display: block;
}
.exp-card h3 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  color: var(--white);
  margin-bottom: 0.6rem;
}
.exp-card p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.6;
}

@media (max-width: 980px) { .exp-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .exp-grid { grid-template-columns: 1fr; } }

/* ============================================================
   GALLERY
   ============================================================ */
#gallery {
  padding: 6rem 0;
  background: var(--cream);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto;
  gap: 0.75rem;
  margin-top: 3rem;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-sm);
  cursor: pointer;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item::after {
  content: '⊕';
  position: absolute;
  inset: 0;
  background: rgba(27, 58, 13, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--white);
  opacity: 0;
  transition: opacity var(--transition);
}
.gallery-item:hover::after { opacity: 1; }

/* Grid layout variations */
.gallery-item:nth-child(1) { grid-column: span 2; aspect-ratio: 16/9; }
.gallery-item:nth-child(2) { aspect-ratio: 3/4; }
.gallery-item:nth-child(3) { aspect-ratio: 3/4; }
.gallery-item:nth-child(4) { aspect-ratio: 1; }
.gallery-item:nth-child(5) { aspect-ratio: 1; }
.gallery-item:nth-child(6) { grid-column: span 2; aspect-ratio: 16/9; }
.gallery-item:nth-child(7) { aspect-ratio: 4/3; }
.gallery-item:nth-child(8) { aspect-ratio: 4/3; }

@media (max-width: 820px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item:nth-child(1),
  .gallery-item:nth-child(6) { grid-column: span 2; }
  .gallery-item { aspect-ratio: 4/3 !important; }
}
@media (max-width: 520px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item:nth-child(1),
  .gallery-item:nth-child(6) { grid-column: span 1; }
}

/* ---------- Lightbox ---------- */
#lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0,0,0,.93);
  align-items: center;
  justify-content: center;
  padding: 2rem;
}
#lightbox.open { display: flex; }
#lightbox img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: var(--radius-sm);
  box-shadow: 0 0 80px rgba(0,0,0,.8);
}
.lightbox-close {
  position: absolute;
  top: 1.5rem; right: 1.5rem;
  color: var(--white);
  font-size: 2rem;
  line-height: 1;
  opacity: 0.7;
  transition: opacity var(--transition);
}
.lightbox-close:hover { opacity: 1; }
.lightbox-prev, .lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: var(--white);
  font-size: 2.5rem;
  opacity: 0.6;
  padding: 1rem;
  transition: opacity var(--transition);
}
.lightbox-prev:hover, .lightbox-next:hover { opacity: 1; }
.lightbox-prev { left: 1rem; }
.lightbox-next { right: 1rem; }

/* ============================================================
   REVIEWS / TESTIMONIALS
   ============================================================ */
#reviews {
  padding: 6rem 0;
  background: var(--white);
}
.reviews-header { margin-bottom: 3rem; }
.rating-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--cream);
  border: 1px solid var(--sand);
  border-radius: 50px;
  padding: 0.5rem 1.2rem;
  margin-bottom: 1rem;
}
.rating-stars { color: #F5A623; font-size: 1rem; letter-spacing: 2px; }
.rating-score {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--green-dark);
}
.rating-platform { font-size: 0.75rem; color: var(--text-light); }

.reviews-carousel {
  position: relative;
  overflow: hidden;
}
.reviews-track {
  display: flex;
  gap: 1.5rem;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.review-card {
  flex: 0 0 calc(33.33% - 1rem);
  background: var(--cream);
  border-radius: var(--radius-md);
  padding: 2rem;
  border: 1px solid var(--sand);
  position: relative;
}
.review-quote {
  font-size: 3rem;
  font-family: var(--font-heading);
  color: var(--sand);
  line-height: 0.6;
  margin-bottom: 0.8rem;
}
.review-text {
  font-size: 0.92rem;
  line-height: 1.7;
  color: var(--text-mid);
  margin-bottom: 1.2rem;
  font-style: italic;
}
.review-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.review-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--green-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  flex-shrink: 0;
}
.review-name {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text-dark);
}
.review-date {
  font-size: 0.75rem;
  color: var(--text-light);
}
.review-stars { color: #F5A623; font-size: 0.75rem; letter-spacing: 1px; margin-top: 0.1rem; }

.carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}
.carousel-btn {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 2px solid var(--green-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--green-dark);
  cursor: pointer;
  transition: all var(--transition);
}
.carousel-btn:hover { background: var(--green-dark); color: var(--white); }
.carousel-dots { display: flex; gap: 0.5rem; }
.carousel-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--sand);
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
}
.carousel-dot.active { background: var(--green-dark); transform: scale(1.3); }

@media (max-width: 820px) {
  .review-card { flex: 0 0 calc(80vw); }
}
@media (max-width: 540px) {
  .review-card { flex: 0 0 calc(90vw); }
}

/* ============================================================
   LOCATION
   ============================================================ */
#location {
  padding: 6rem 0;
  background: var(--cream);
}
.location-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 4rem;
  align-items: start;
}
.location-info .overline { color: var(--amber); margin-bottom: 0.8rem; }
.location-info .h2 { color: var(--green-dark); margin-bottom: 1.2rem; }
.location-info p { color: var(--text-mid); margin-bottom: 1.5rem; line-height: 1.75; }

.directions-list { display: flex; flex-direction: column; gap: 0.8rem; }
.direction-item {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  padding: 0.9rem;
  background: var(--white);
  border-radius: var(--radius-sm);
  border-left: 3px solid var(--green-light);
}
.direction-icon { font-size: 1.1rem; flex-shrink: 0; margin-top: 1px; }
.direction-text {
  font-size: 0.88rem;
  color: var(--text-mid);
  line-height: 1.5;
}
.direction-text strong { display: block; color: var(--text-dark); font-size: 0.82rem; margin-bottom: 0.15rem; }

.map-embed {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.map-embed iframe {
  display: block;
  width: 100%;
  height: 420px;
  border: none;
}

@media (max-width: 820px) {
  .location-grid { grid-template-columns: 1fr; gap: 2.5rem; }
}

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  background: var(--green-dark);
  color: var(--white);
  padding: 5rem 0 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,.12);
  margin-bottom: 2rem;
}
.footer-hb {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.06em;
  margin: -0.3rem 0 0.9rem;
}
.footer-hb em {
  font-style: normal;
  color: rgba(255,255,255,0.45);
}

.footer-logo-img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1rem;
  border: 2px solid rgba(255,255,255,0.15);
}
.footer-brand .logo-name {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.3rem;
}
.footer-brand .logo-tagline {
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sand);
  margin-bottom: 1rem;
}
.footer-brand p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
  max-width: 280px;
  margin-bottom: 1.5rem;
}
.social-links { display: flex; gap: 0.75rem; }
.social-link {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.75);
  transition: all var(--transition);
}
.social-link:hover {
  border-color: var(--amber-light);
  color: var(--amber-light);
  background: rgba(212,151,62,.12);
}

.footer-col h4 {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sand);
  margin-bottom: 1.2rem;
}
.footer-col ul li { margin-bottom: 0.65rem; }
.footer-col ul li a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.65);
  transition: color var(--transition);
}
.footer-col ul li a:hover { color: var(--white); }

.footer-contact-item {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 0.9rem;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.65);
  align-items: flex-start;
}
.footer-contact-item span:first-child { flex-shrink: 0; margin-top: 1px; }

.newsletter-form {
  display: flex;
  margin-top: 0.5rem;
  border-radius: 50px;
  overflow: hidden;
  border: 1.5px solid rgba(255,255,255,.2);
}
.newsletter-input {
  flex: 1;
  background: transparent;
  border: none;
  color: var(--white);
  padding: 0.7rem 1rem;
  font-size: 0.82rem;
  font-family: var(--font-body);
  outline: none;
}
.newsletter-input::placeholder { color: rgba(255,255,255,0.4); }
.newsletter-btn {
  padding: 0.7rem 1.2rem;
  background: var(--amber);
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  transition: background var(--transition);
  white-space: nowrap;
}
.newsletter-btn:hover { background: var(--amber-light); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.78rem;
  color: rgba(255,255,255,.45);
  flex-wrap: wrap;
  gap: 0.5rem;
}

@media (max-width: 960px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; gap: 2rem; } }

/* ============================================================
   BOOKING MODAL
   ============================================================ */
#booking-overlay {
  position: fixed;
  inset: 0;
  z-index: 3000;
  display: none;
  flex-direction: column;
}
#booking-overlay.open { display: flex; }

.booking-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.75);
  animation: fadeIn 0.3s ease;
}
.booking-sheet {
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: min(420px, 100vw);
  background: var(--white);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  animation: slideInRight 0.38s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: -8px 0 48px rgba(0,0,0,.28);
}
.booking-sheet-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem 1.5rem;
  background: var(--green-dark);
  flex-shrink: 0;
}
.booking-sheet-title {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--white);
}
.booking-sheet-title .dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--amber);
}
.booking-sheet-title span { font-size: 0.88rem; font-weight: 600; letter-spacing: 0.05em; }
.booking-sheet-close {
  color: rgba(255,255,255,0.7);
  font-size: 1.6rem;
  line-height: 1;
  padding: 0.25rem;
  transition: color var(--transition);
  cursor: pointer;
}
.booking-sheet-close:hover { color: var(--white); }

/* ---- Drawer body ---- */
.booking-drawer-body {
  flex: 1;
  overflow-y: auto;
  padding: 2rem 1.75rem 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.drawer-property-name {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--green-dark);
  letter-spacing: 0.01em;
}
.drawer-summary {
  background: var(--cream);
  border-radius: var(--radius-md);
  display: flex;
  overflow: hidden;
  border: 1px solid var(--sand);
}
.drawer-summary-row {
  flex: 1;
  padding: 0.9rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}
.drawer-summary-label {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-light);
}
.drawer-summary-value {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--green-dark);
}
.drawer-summary-divider {
  width: 1px;
  background: var(--sand);
  flex-shrink: 0;
}
.drawer-section-label {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: -0.75rem;
}
.drawer-rooms {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 0;
  margin: 0;
}
.drawer-rooms li {
  font-size: 0.9rem;
  color: var(--text-dark);
  padding: 0.65rem 1rem;
  border: 1px solid var(--sand);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.drawer-rooms li::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--amber);
  flex-shrink: 0;
}
.drawer-rooms-note {
  margin-left: auto;
  font-size: 0.72rem;
  color: var(--text-light);
  font-weight: 500;
}
.drawer-cta {
  width: 100%;
  justify-content: center;
  text-align: center;
  padding: 1rem;
  font-size: 0.95rem;
}
.drawer-note {
  font-size: 0.75rem;
  color: var(--text-light);
  line-height: 1.6;
  text-align: center;
  margin-top: -0.75rem;
}
.drawer-phone {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  color: var(--text-mid);
  padding-top: 0.5rem;
  border-top: 1px solid var(--sand);
}
.drawer-phone a {
  color: var(--green-mid);
  font-weight: 600;
}

/* Animations */
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes slideInRight {
  from { transform: translateX(100%); }
  to   { transform: translateX(0); }
}
@keyframes slideUp {
  from { transform: translateY(100%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* ============================================================
   FAQ SECTION
   ============================================================ */
#faq {
  padding: 6rem 0;
  background: var(--white);
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem 3rem;
  margin-top: 3rem;
}

.faq-item {
  border-bottom: 1px solid var(--sand);
  padding-bottom: 0.25rem;
}
.faq-item[open] { padding-bottom: 0.5rem; }

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.2rem 0;
  font-family: var(--font-heading);
  font-size: 1.02rem;
  font-weight: 600;
  color: var(--green-dark);
  cursor: pointer;
  list-style: none;
  line-height: 1.35;
  transition: color var(--transition);
}
.faq-question::-webkit-details-marker { display: none; }
.faq-question::marker { display: none; }
.faq-question:hover { color: var(--green-mid); }

.faq-icon {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 1.5px solid var(--sand);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--green-dark);
  transition: all var(--transition);
  position: relative;
}
.faq-icon::before,
.faq-icon::after {
  content: '';
  position: absolute;
  background: var(--green-dark);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}
.faq-icon::before { width: 10px; height: 1.5px; }
.faq-icon::after  { width: 1.5px; height: 10px; }

.faq-item[open] .faq-icon {
  background: var(--green-dark);
  border-color: var(--green-dark);
}
.faq-item[open] .faq-icon::before,
.faq-item[open] .faq-icon::after { background: var(--white); }
.faq-item[open] .faq-icon::after  { transform: rotate(90deg); opacity: 0; }

.faq-answer {
  padding: 0 0 1.2rem;
  animation: faqOpen 0.3s ease;
}
.faq-answer p {
  font-size: 0.92rem;
  color: var(--text-mid);
  line-height: 1.75;
}
.faq-answer strong { color: var(--text-dark); }

@keyframes faqOpen {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0); }
}

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

/* ============================================================
   BACK TO TOP
   ============================================================ */
#back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 500;
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--green-dark);
  color: var(--white);
  border: none;
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  opacity: 0;
  transform: translateY(16px);
  transition: opacity var(--transition), transform var(--transition);
  pointer-events: none;
}
#back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}
#back-to-top:hover { background: var(--green-mid); }

/* ============================================================
   MEDIA QUERIES — general fixes
   ============================================================ */
@media (max-width: 640px) {
  #about { padding: 4rem 0; }
  #accommodations { padding: 4rem 0; }
  #experiences { padding: 4rem 0; }
  #gallery { padding: 4rem 0; }
  #reviews { padding: 4rem 0; }
  #location { padding: 4rem 0; }
  footer { padding: 3rem 0 1.5rem; }
  .section-header { margin-bottom: 2rem; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
}

/* Print / reduce motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    transition-duration: 0.001ms !important;
  }
}
