/* ============================================================
   ACORN HOMESTAY — style.css
   Organic Luxury Nature Retreat — Shergaon, Arunachal Pradesh
   ============================================================ */

/* ── Google Fonts ── */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400;1,600&family=Jost:wght@300;400;500;600&display=swap');

/* ── Design Tokens ── */
:root {
  --forest  : #1b3a2d;
  --moss    : #3a5c44;
  --sage    : #7a9e82;
  --cream   : #f4ede2;
  --parch   : #e8dccb;
  --gold    : #c09a52;
  --deep    : #0e2219;
  --text    : #2a1f14;
  --muted   : #6b5d50;
  --white   : #ffffff;
  --gold-lt : #d4b578;

  --font-head : 'Cormorant Garamond', Georgia, serif;
  --font-body : 'Jost', system-ui, sans-serif;

  --radius    : 14px;
  --radius-sm : 8px;
  --shadow    : 0 4px 24px rgba(14,34,25,.10);
  --shadow-lg : 0 16px 56px rgba(14,34,25,.18);
  --transition: all .38s cubic-bezier(.4,0,.2,1);
  --nav-h     : 80px;
}

/* ── Reset ── */
*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior:smooth; font-size:16px; }
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--cream);
  line-height: 1.75;
  overflow-x: hidden;
}
img  { max-width:100%; height:auto; display:block; }
a    { text-decoration:none; color:inherit; }
ul   { list-style:none; }
button { cursor:pointer; border:none; background:none; font-family:inherit; }
input, select, textarea { font-family:var(--font-body); }

/* ── Utility ── */
.container { width:min(1200px, 92%); margin-inline:auto; }
.text-center { text-align:center; }
.sr-only { position:absolute; width:1px; height:1px; overflow:hidden; clip:rect(0,0,0,0); }

/* Scroll-reveal base state */
.reveal { opacity:0; transform:translateY(40px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity:1; transform:translateY(0); }
.reveal-left  { opacity:0; transform:translateX(-50px); transition: opacity .7s ease, transform .7s ease; }
.reveal-left.visible  { opacity:1; transform:translateX(0); }
.reveal-right { opacity:0; transform:translateX(50px);  transition: opacity .7s ease, transform .7s ease; }
.reveal-right.visible { opacity:1; transform:translateX(0); }

/* ── Section Labels ── */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.section-label::before,
.section-label::after {
  content:'';
  display:block;
  width:28px;
  height:1px;
  background: var(--gold);
  opacity:.6;
}

.section-title {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 600;
  line-height: 1.15;
  color: var(--forest);
}
.section-title.light { color: var(--cream); }
.section-title.gold  { color: var(--gold); }

.section-sub {
  font-size: 1rem;
  color: var(--muted);
  max-width: 560px;
  margin-top: .75rem;
}
.section-sub.center { margin-inline:auto; text-align:center; }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: .75rem 1.9rem;
  border-radius: 50px;
  font-size: .9rem;
  font-weight: 600;
  letter-spacing: .04em;
  transition: var(--transition);
}
.btn-gold {
  background: var(--gold);
  color: var(--deep);
}
.btn-gold:hover { background: var(--gold-lt); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(192,154,82,.35); }
.btn-outline {
  background: transparent;
  color: var(--cream);
  border: 1.5px solid rgba(244,237,226,.5);
}
.btn-outline:hover { background: rgba(244,237,226,.12); border-color: var(--cream); transform:translateY(-2px); }
.btn-outline-dark {
  background: transparent;
  color: var(--forest);
  border: 1.5px solid var(--forest);
}
.btn-outline-dark:hover { background: var(--forest); color: var(--cream); }
.btn-green {
  background: var(--forest);
  color: var(--cream);
}
.btn-green:hover { background: var(--moss); transform:translateY(-2px); box-shadow:0 8px 24px rgba(27,58,45,.3); }
.btn-wa {
  background: #25D366;
  color: #fff;
}
.btn-wa:hover { background: #1ebe5d; transform:translateY(-2px); box-shadow:0 8px 24px rgba(37,211,102,.35); }

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  padding-inline: 5%;
  transition: background .4s ease, box-shadow .4s ease, backdrop-filter .4s ease;
}
.navbar.scrolled {
  background: rgba(14,34,25,.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(0,0,0,.2);
}
.navbar.hero-dark {
  background: transparent;
}

.nav-inner {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav-logo img {
  height: 48px;
  width: auto;
}
.nav-logo-text {
  font-family: var(--font-head);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--cream);
  white-space: nowrap;
}
.nav-logo-text span { color: var(--gold); }

.nav-links {
  display: flex;
  align-items: center;
  gap: .25rem;
}
.nav-links a {
  font-size: .82rem;
  font-weight: 500;
  letter-spacing: .04em;
  color: rgba(244,237,226,.85);
  padding: .45rem .75rem;
  border-radius: 6px;
  transition: color .25s, background .25s;
  white-space: nowrap;
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--gold);
  background: rgba(192,154,82,.1);
}
.nav-book {
  background: var(--gold);
  color: var(--deep) !important;
  padding: .55rem 1.3rem !important;
  border-radius: 50px !important;
  font-weight: 600 !important;
}
.nav-book:hover {
  background: var(--gold-lt) !important;
  color: var(--deep) !important;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  z-index: 1010;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--cream);
  border-radius: 2px;
  transition: 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 menu overlay */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--deep);
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity .35s ease;
}
.mobile-menu.open { opacity: 1; pointer-events: all; }
.mobile-menu a {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 500;
  color: var(--cream);
  padding: .6rem 2rem;
  transition: color .25s;
  letter-spacing: .02em;
}
.mobile-menu a:hover { color: var(--gold); }
.mobile-menu .mob-book {
  margin-top: 1.5rem;
  background: var(--gold);
  color: var(--deep);
  padding: .75rem 2.5rem;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
}

/* ============================================================
   HERO — Full Viewport
   ============================================================ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 640px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  transform: scale(1.04);
  transition: transform 8s ease;
}
.hero-bg.loaded { transform: scale(1); }
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
    rgba(14,34,25,.55) 0%,
    rgba(14,34,25,.35) 50%,
    rgba(14,34,25,.75) 100%
  );
}

/* Floating particles canvas */
#particles-canvas {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}

/* Tree silhouettes */
.hero-trees {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  pointer-events: none;
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  padding: var(--nav-h) 1.5rem 2rem;
  max-width: 820px;
}
.hero-badge {
  display: inline-block;
  font-size: .75rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(192,154,82,.5);
  padding: .4rem 1.2rem;
  border-radius: 50px;
  margin-bottom: 1.5rem;
  animation: fadeInDown .8s ease both;
}
.hero-title {
  font-family: var(--font-head);
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-weight: 600;
  color: var(--cream);
  line-height: 1.08;
  margin-bottom: 1.5rem;
  animation: fadeInUp .9s ease .2s both;
}
.hero-title em { color: var(--gold); font-style: italic; }
.hero-sub {
  font-size: clamp(.95rem, 2.2vw, 1.15rem);
  color: rgba(244,237,226,.82);
  max-width: 560px;
  margin: 0 auto 2.5rem;
  font-weight: 300;
  animation: fadeInUp .9s ease .4s both;
}
.hero-btns {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeInUp .9s ease .6s both;
}
.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
  color: rgba(244,237,226,.6);
  font-size: .7rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  animation: fadeIn 1.2s ease 1s both;
}
.hero-scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, transparent, rgba(192,154,82,.8));
  animation: scrollLine 2s ease infinite;
}
@keyframes scrollLine {
  0%   { transform: scaleY(0); transform-origin: top; }
  50%  { transform: scaleY(1); transform-origin: top; }
  51%  { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* Page Hero — smaller variants */
.page-hero {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding-top: var(--nav-h);
}
.page-hero.h50 { height: 50vh; min-height: 380px; }
.page-hero.h40 { height: 40vh; min-height: 320px; }
.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(14,34,25,.6) 0%, rgba(14,34,25,.45) 100%);
}
.page-hero-content {
  position: relative;
  z-index: 2;
  padding: 2rem 1.5rem;
}
.page-hero-content .hero-badge { animation: none; }
.page-hero-content .hero-title {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  animation: none;
}
.page-hero-content .hero-sub { animation: none; }

/* ============================================================
   USP STRIP
   ============================================================ */
.usp-strip {
  background: var(--deep);
  padding: 1.75rem 0;
  border-bottom: 1px solid rgba(192,154,82,.15);
}
.usp-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}
.usp-item {
  display: flex;
  align-items: center;
  gap: .65rem;
  padding: .6rem 2.2rem;
  border-right: 1px solid rgba(192,154,82,.2);
  color: rgba(244,237,226,.85);
  font-size: .88rem;
  font-weight: 400;
  letter-spacing: .03em;
}
.usp-item:last-child { border-right: none; }
.usp-icon { font-size: 1.3rem; }
.usp-label { font-weight: 500; color: var(--cream); }

/* ============================================================
   ABOUT PREVIEW SECTION
   ============================================================ */
.section { padding: 6rem 0; }
.section-alt { background: var(--parch); }
.section-dark { background: var(--deep); }
.section-forest { background: var(--forest); }

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.two-col.reverse { direction: rtl; }
.two-col.reverse > * { direction: ltr; }

/* House illustration / image wrapper */
.img-frame {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
}
.img-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}
.img-frame:hover img { transform: scale(1.05); }
.img-frame::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 60%, rgba(14,34,25,.4) 100%);
  z-index: 1;
}

.stat-box {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  background: var(--gold);
  color: var(--deep);
  padding: 1.5rem 2rem;
  border-radius: var(--radius);
  z-index: 2;
  box-shadow: var(--shadow-lg);
  text-align: center;
}
.stat-box .stat-num {
  font-family: var(--font-head);
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1;
}
.stat-box .stat-label {
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-top: .25rem;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: .75rem;
  margin: 1.75rem 0 2rem;
}
.feature-tag {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .85rem;
  color: var(--forest);
  font-weight: 500;
}
.feature-tag::before {
  content: '✦';
  color: var(--gold);
  font-size: .7rem;
}

/* ============================================================
   ROOMS PREVIEW & ROOM CARDS
   ============================================================ */
.rooms-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.room-card {
  background: var(--cream);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}
.room-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}
.room-card-img {
  aspect-ratio: 4/3;
  overflow: hidden;
  position: relative;
}
.room-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .55s ease;
}
.room-card:hover .room-card-img img { transform: scale(1.08); }
.room-tag {
  position: absolute;
  top: 1rem; left: 1rem;
  background: var(--gold);
  color: var(--deep);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: .28rem .75rem;
  border-radius: 50px;
}
.room-card-body { padding: 1.5rem; }
.room-card-body h3 {
  font-family: var(--font-head);
  font-size: 1.45rem;
  font-weight: 600;
  color: var(--forest);
  margin-bottom: .5rem;
}
.room-card-body p { font-size: .88rem; color: var(--muted); }

.room-amenities {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin: 1rem 0;
}
.amenity {
  font-size: .8rem;
  background: rgba(27,58,45,.08);
  color: var(--forest);
  padding: .28rem .75rem;
  border-radius: 50px;
  font-weight: 500;
}

.room-price {
  font-family: var(--font-head);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--gold);
}
.room-price span {
  font-family: var(--font-body);
  font-size: .8rem;
  color: var(--muted);
  font-weight: 400;
}

/* Full room card (rooms page) */
.room-full {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  background: var(--cream);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  margin-bottom: 3rem;
}
.room-full.reverse { direction: rtl; }
.room-full.reverse > * { direction: ltr; }
.room-full-img {
  aspect-ratio: 4/3;
  min-height: 320px;
  max-height: 520px;
  position: relative;
  overflow: hidden;
}
.room-full-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}
.room-full:hover .room-full-img img { transform: scale(1.05); }
.room-full-body {
  padding: 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1rem;
}
.room-full-body h2 {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 600;
  color: var(--forest);
}
.room-full-body p { color: var(--muted); font-size: .95rem; }
.room-cta { display: flex; align-items: center; gap: 1rem; margin-top: .5rem; flex-wrap: wrap; }

/* ============================================================
   EXPERIENCES TEASER
   ============================================================ */
.experiences-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.exp-card {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  aspect-ratio: 3/4;
  cursor: pointer;
}
.exp-card-img {
  position: absolute;
  inset: 0;
}
.exp-card-img img { width:100%; height:100%; object-fit:cover; transition: transform .55s ease; }
.exp-card:hover .exp-card-img img { transform: scale(1.1); }
.exp-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(14,34,25,.85) 0%, transparent 55%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.75rem;
}
.exp-card-overlay h3 {
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: .3rem;
}
.exp-card-overlay p { font-size: .85rem; color: rgba(244,237,226,.75); }
.exp-dist {
  display: inline-block;
  background: rgba(197,162,86,.85);
  color: #fff;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: .2rem .65rem;
  border-radius: 50px;
  margin-bottom: .6rem;
  width: fit-content;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: start;
}
.review-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow);
  transition: var(--transition);
}
.review-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.review-stars { color: var(--gold); font-size: 1rem; letter-spacing: 2px; margin-bottom: .75rem; }
.review-text {
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-style: italic;
  color: var(--text);
  line-height: 1.65;
  margin-bottom: 1.25rem;
}
.review-author {
  display: flex;
  align-items: center;
  gap: .85rem;
}
.review-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--forest);
  color: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 600;
  flex-shrink: 0;
}
.review-name { font-weight: 600; font-size: .9rem; }
.review-location { font-size: .78rem; color: var(--muted); }
.review-date { font-size: .75rem; color: var(--muted); margin-top: .2rem; }
.review-tag {
  display: inline-block;
  margin-top: .75rem;
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--moss);
  background: rgba(58,92,68,.1);
  padding: .2rem .6rem;
  border-radius: 50px;
}

/* Rating Summary */
.rating-summary {
  background: var(--forest);
  border-radius: var(--radius);
  padding: 2.5rem 3rem;
  display: flex;
  align-items: center;
  gap: 4rem;
  margin-bottom: 3rem;
  color: var(--cream);
}
.rating-big .num {
  font-family: var(--font-head);
  font-size: 5rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.rating-big .stars { font-size: 1.3rem; color: var(--gold); letter-spacing: 3px; }
.rating-big .total { font-size: .85rem; color: rgba(244,237,226,.7); margin-top: .3rem; }
.rating-bars { flex: 1; display: flex; flex-direction: column; gap: .75rem; }
.rating-bar-row { display: flex; align-items: center; gap: 1rem; font-size: .85rem; }
.rating-bar-label { min-width: 110px; color: rgba(244,237,226,.8); }
.rating-bar-track { flex: 1; height: 6px; background: rgba(244,237,226,.15); border-radius: 6px; overflow: hidden; }
.rating-bar-fill { height: 100%; background: var(--gold); border-radius: 6px; transition: width 1s ease; }
.rating-bar-val { min-width: 30px; color: var(--gold); font-weight: 600; }

/* ============================================================
   GALLERY
   ============================================================ */
.filter-tabs {
  display: flex;
  gap: .75rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}
.filter-btn {
  padding: .55rem 1.5rem;
  border-radius: 50px;
  font-size: .85rem;
  font-weight: 600;
  color: var(--muted);
  border: 1.5px solid var(--parch);
  background: var(--cream);
  transition: var(--transition);
}
.filter-btn.active,
.filter-btn:hover {
  background: var(--forest);
  color: var(--cream);
  border-color: var(--forest);
}

.gallery-masonry {
  columns: 3;
  column-gap: 1.25rem;
}
.gallery-item {
  break-inside: avoid;
  margin-bottom: 1.25rem;
  border-radius: var(--radius-sm);
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
.gallery-item img {
  width: 100%;
  display: block;
  transition: transform .5s ease;
}
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(14,34,25,.8) 0%, transparent 50%);
  display: flex;
  align-items: flex-end;
  padding: 1rem;
  opacity: 0;
  transition: opacity .35s ease;
}
.gallery-item:hover .gallery-item-overlay { opacity: 1; }
.gallery-item-label {
  color: var(--cream);
  font-size: .82rem;
  font-weight: 500;
  letter-spacing: .04em;
}
.gallery-item[data-cat] { transition: opacity .4s, transform .4s; }
.gallery-item.hidden { display: none; }

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.92);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s ease;
}
.lightbox.open { opacity: 1; pointer-events: all; }
.lightbox-img {
  max-width: 90vw;
  max-height: 88vh;
  object-fit: contain;
  border-radius: var(--radius-sm);
  transform: scale(.9);
  transition: transform .35s ease;
}
.lightbox.open .lightbox-img { transform: scale(1); }
.lightbox-close {
  position: absolute;
  top: 1.5rem; right: 1.5rem;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(244,237,226,.15);
  color: var(--cream);
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background .25s;
}
.lightbox-close:hover { background: rgba(244,237,226,.3); }
.lightbox-caption {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(244,237,226,.75);
  font-size: .85rem;
  text-align: center;
}
.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px; height: 48px;
  border-radius: 50%;
  background: rgba(244,237,226,.15);
  color: var(--cream);
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background .25s;
}
.lightbox-nav:hover { background: rgba(244,237,226,.3); }
.lightbox-prev { left: 1.5rem; }
.lightbox-next { right: 1.5rem; }

/* ============================================================
   THINGS TO DO
   ============================================================ */
.attractions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.attr-card {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow);
  border-top: 4px solid var(--sage);
  transition: var(--transition);
}
.attr-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-top-color: var(--gold); }
.attr-icon { font-size: 2.5rem; margin-bottom: 1rem; }
.attr-card h3 {
  font-family: var(--font-head);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--forest);
  margin-bottom: .5rem;
}
.attr-meta { display: flex; gap: 1rem; margin-bottom: .75rem; flex-wrap: wrap; }
.attr-badge {
  font-size: .72rem;
  font-weight: 600;
  padding: .2rem .6rem;
  border-radius: 50px;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.attr-badge.dist { background: rgba(27,58,45,.1); color: var(--forest); }
.attr-badge.best { background: rgba(192,154,82,.15); color: var(--gold); }
.attr-card p { font-size: .88rem; color: var(--muted); }

/* Seasonal Table */
.seasonal-table {
  width: 100%;
  border-collapse: collapse;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.seasonal-table th {
  background: var(--forest);
  color: var(--gold);
  padding: 1rem 1.5rem;
  text-align: left;
  font-size: .85rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.seasonal-table td {
  padding: 1rem 1.5rem;
  font-size: .9rem;
  color: var(--text);
  border-bottom: 1px solid var(--parch);
}
.seasonal-table tr:nth-child(even) td { background: var(--parch); }
.seasonal-table tr:last-child td { border-bottom: none; }
.seasonal-table .season-name {
  font-weight: 600;
  color: var(--forest);
}

/* ============================================================
   HOW TO REACH
   ============================================================ */
.distance-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-bottom: 3rem;
}
.dist-card {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 1.75rem 1.5rem;
  text-align: center;
  box-shadow: var(--shadow);
  border-bottom: 3px solid var(--sage);
  transition: var(--transition);
}
.dist-card:hover { border-bottom-color: var(--gold); transform: translateY(-4px); }
.dist-card-icon { font-size: 2rem; margin-bottom: .75rem; }
.dist-card-route { font-size: .82rem; color: var(--muted); margin-bottom: .5rem; }
.dist-card-km { font-family: var(--font-head); font-size: 1.7rem; font-weight: 600; color: var(--forest); }
.dist-card-time { font-size: .8rem; color: var(--gold); font-weight: 600; margin-top: .2rem; }

/* Accordion */
.accordion { display: flex; flex-direction: column; gap: 1rem; }
.accordion-item {
  border-radius: var(--radius-sm);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid rgba(27,58,45,.1);
}
.accordion-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.75rem;
  background: var(--cream);
  font-family: var(--font-head);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--forest);
  transition: background .25s;
  text-align: left;
}
.accordion-btn:hover { background: var(--parch); }
.accordion-btn.open { background: var(--forest); color: var(--gold); }
.accordion-icon { font-size: 1.2rem; transition: transform .3s; }
.accordion-btn.open .accordion-icon { transform: rotate(45deg); }
.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease;
  background: var(--parch);
}
.accordion-body.open { max-height: 600px; }
.accordion-body-inner { padding: 1.75rem; }
.route-steps { display: flex; flex-direction: column; gap: .75rem; }
.route-step {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.step-num {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--forest);
  color: var(--cream);
  font-size: .78rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.step-text { font-size: .9rem; color: var(--muted); }

/* ILP Notice */
.ilp-notice {
  background: linear-gradient(135deg, rgba(192,154,82,.12), rgba(192,154,82,.06));
  border: 1.5px solid rgba(192,154,82,.4);
  border-radius: var(--radius);
  padding: 2rem;
  display: flex;
  gap: 1rem;
}
.ilp-icon { font-size: 2rem; flex-shrink: 0; }
.ilp-text h4 {
  font-family: var(--font-head);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--forest);
  margin-bottom: .5rem;
}
.ilp-text p { font-size: .9rem; color: var(--muted); }
.ilp-text a { color: var(--gold); text-decoration: underline; }

/* Travel Tips */
.travel-tips { display: flex; flex-direction: column; gap: .75rem; }
.tip {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: .9rem 1.25rem;
  background: var(--cream);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow);
}
.tip-icon { font-size: 1.2rem; flex-shrink: 0; margin-top: 2px; }
.tip-text { font-size: .9rem; color: var(--muted); }

/* Map embed */
.map-frame {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.map-frame iframe { display: block; }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 3.5rem;
  align-items: flex-start;
}
.contact-info h2 {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 600;
  color: var(--forest);
  margin-bottom: 1.5rem;
}
.contact-items { display: flex; flex-direction: column; gap: 1.1rem; margin-bottom: 2rem; }
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.contact-item-icon {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(27,58,45,.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  flex-shrink: 0;
}
.contact-item-body .label { font-size: .75rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); }
.contact-item-body .val { font-size: .95rem; color: var(--text); font-weight: 500; }
.contact-item-body a { color: var(--text); }
.contact-item-body a:hover { color: var(--gold); }
.contact-action-btns { display: flex; gap: .75rem; flex-wrap: wrap; }

/* Booking Form */
.booking-form {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2.5rem;
  box-shadow: var(--shadow-lg);
}
.booking-form h3 {
  font-family: var(--font-head);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--forest);
  margin-bottom: 1.75rem;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: .4rem; margin-bottom: 1rem; }
.form-group label {
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--muted);
}
.form-group input,
.form-group select,
.form-group textarea {
  padding: .75rem 1rem;
  border: 1.5px solid rgba(27,58,45,.15);
  border-radius: var(--radius-sm);
  font-size: .9rem;
  color: var(--text);
  background: var(--cream);
  transition: border-color .25s;
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--gold); background: var(--white); }
.form-group textarea { resize: vertical; min-height: 100px; }
.form-submit { width: 100%; padding: .9rem; font-size: .95rem; font-weight: 600; border-radius: 50px; }

/* ============================================================
   INCLUDED SECTION
   ============================================================ */
.included-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1.25rem;
}
.included-item {
  text-align: center;
  padding: 1.75rem 1rem;
  background: rgba(244,237,226,.1);
  border-radius: var(--radius);
  border: 1px solid rgba(192,154,82,.2);
  transition: var(--transition);
}
.included-item:hover { background: rgba(192,154,82,.12); transform: translateY(-3px); }
.included-icon { font-size: 2rem; margin-bottom: .75rem; }
.included-label { font-size: .82rem; color: rgba(244,237,226,.8); font-weight: 500; }

/* ============================================================
   CTA SECTIONS
   ============================================================ */
.cta-section {
  padding: 6rem 0;
  text-align: center;
}
.cta-section h2 {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 1rem;
}
.cta-section p { color: rgba(244,237,226,.75); max-width: 500px; margin: 0 auto 2.5rem; }
.cta-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.cta-phone {
  font-family: var(--font-head);
  font-size: 2.2rem;
  font-weight: 600;
  color: var(--gold);
  display: block;
  margin-top: .5rem;
}

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  background: var(--deep);
  border-top: 1px solid rgba(192,154,82,.15);
}
.footer-main {
  padding: 4.5rem 0 2.5rem;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 3rem;
}
.footer-logo img { height: 56px; margin-bottom: 1rem; }
.footer-logo-text {
  font-family: var(--font-head);
  font-size: 1.45rem;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: .75rem;
}
.footer-logo-text span { color: var(--gold); }
.footer-tagline { font-size: .88rem; color: rgba(244,237,226,.6); margin-bottom: 1.5rem; font-style: italic; }
.social-links { display: flex; gap: .75rem; }
.social-link {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(192,154,82,.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(244,237,226,.7);
  font-size: .85rem;
  transition: var(--transition);
}
.social-link:hover { background: var(--gold); color: var(--deep); border-color: var(--gold); }

.footer-col h4 {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 1.25rem;
  letter-spacing: .02em;
}
.footer-links { display: flex; flex-direction: column; gap: .55rem; }
.footer-links a {
  font-size: .85rem;
  color: rgba(244,237,226,.65);
  transition: color .25s;
}
.footer-links a:hover { color: var(--gold); }
.footer-contact-items { display: flex; flex-direction: column; gap: .75rem; }
.footer-contact-item { display: flex; align-items: flex-start; gap: .75rem; }
.footer-contact-item .ico { color: var(--gold); font-size: .9rem; margin-top: 3px; }
.footer-contact-item span { font-size: .83rem; color: rgba(244,237,226,.65); }
.footer-contact-item a { color: rgba(244,237,226,.65); }
.footer-contact-item a:hover { color: var(--gold); }
.footer-cta-btns { display: flex; flex-direction: column; gap: .65rem; }
.footer-cta-btns a {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-size: .85rem;
  padding: .55rem 1.1rem;
  border-radius: 50px;
  transition: var(--transition);
  font-weight: 500;
}
.footer-btn-book { background: var(--gold); color: var(--deep); }
.footer-btn-book:hover { background: var(--gold-lt); }
.footer-btn-wa { background: #25D366; color: #fff; }
.footer-btn-wa:hover { background: #1ebe5d; }
.footer-btn-call { border: 1px solid rgba(192,154,82,.3); color: rgba(244,237,226,.7); }
.footer-btn-call:hover { border-color: var(--gold); color: var(--gold); }

.footer-bottom {
  padding: 1.5rem 0;
  border-top: 1px solid rgba(192,154,82,.12);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: .5rem;
}
.footer-bottom p { font-size: .78rem; color: rgba(244,237,226,.45); }
.footer-bottom a { color: rgba(192,154,82,.7); }
.footer-bottom a:hover { color: var(--gold); }

/* ============================================================
   WHATSAPP FLOATING BUTTON
   ============================================================ */
.wa-fab {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 900;
}
.wa-fab a {
  width: 58px; height: 58px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,.4);
  transition: var(--transition);
  position: relative;
}
.wa-fab a:hover { transform: scale(1.12); }
.wa-fab svg { width: 28px; height: 28px; fill: #fff; }
.wa-fab::before {
  content: 'Chat with us';
  position: absolute;
  right: calc(100% + .75rem);
  top: 50%; transform: translateY(-50%);
  background: var(--deep);
  color: var(--cream);
  font-size: .75rem;
  font-weight: 500;
  padding: .4rem .9rem;
  border-radius: 50px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s;
}
.wa-fab:hover::before { opacity: 1; }
/* Pulse ring */
.wa-fab a::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid rgba(37,211,102,.6);
  animation: waPulse 2.5s ease infinite;
}
@keyframes waPulse {
  0%   { transform: scale(1); opacity: .8; }
  70%  { transform: scale(1.4); opacity: 0; }
  100% { transform: scale(1.4); opacity: 0; }
}

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fadeIn      { from { opacity:0 } to { opacity:1 } }
@keyframes fadeInUp    { from { opacity:0; transform:translateY(30px) } to { opacity:1; transform:translateY(0) } }
@keyframes fadeInDown  { from { opacity:0; transform:translateY(-20px) } to { opacity:1; transform:translateY(0) } }
@keyframes floatUp     { 0%,100% { transform:translateY(0) } 50% { transform:translateY(-10px) } }

/* Particles (handled by JS) */

/* ============================================================
   PAGE-SPECIFIC EXTRAS
   ============================================================ */

/* About — Values grid */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.value-card {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 2.5rem 2rem;
  text-align: center;
  box-shadow: var(--shadow);
  transition: var(--transition);
}
.value-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.value-icon { font-size: 2.5rem; margin-bottom: 1rem; }
.value-card h3 {
  font-family: var(--font-head);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--forest);
  margin-bottom: .5rem;
}
.value-card p { font-size: .88rem; color: var(--muted); }

/* Host cards */
.hosts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}
.host-card {
  background: var(--parch);
  border-radius: var(--radius);
  overflow: hidden;
  text-align: center;
  box-shadow: var(--shadow);
  transition: var(--transition);
}
.host-card:hover { transform: translateY(-5px); }
.host-avatar {
  height: 180px;
  background: var(--forest);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  overflow: hidden;
}
.host-avatar img { width:100%; height:100%; object-fit:cover; }
.host-card-body { padding: 1.75rem; }
.host-card-body h3 {
  font-family: var(--font-head);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--forest);
}
.host-role {
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold);
  margin: .4rem 0 .75rem;
}
.host-card-body p { font-size: .87rem; color: var(--muted); }

/* Why choose list */
.why-list { display: flex; flex-direction: column; gap: .75rem; }
.why-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.5rem;
  background: var(--cream);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow);
  font-size: .92rem;
  color: var(--text);
  font-weight: 500;
  transition: var(--transition);
}
.why-item:hover { background: var(--forest); color: var(--cream); }
.why-item .chk { color: var(--gold); font-size: 1.1rem; flex-shrink: 0; }

/* Instagram CTA */
.insta-cta {
  text-align: center;
  padding: 4rem 2rem;
  background: var(--parch);
  border-radius: var(--radius);
  margin-top: 3rem;
}
.insta-cta h3 {
  font-family: var(--font-head);
  font-size: 1.7rem;
  color: var(--forest);
  margin-bottom: .5rem;
}
.insta-cta p { color: var(--muted); margin-bottom: 1.5rem; }

/* 404 page */
.not-found {
  min-height: 100vh;
  background: var(--deep);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
}
.not-found .big-num {
  font-family: var(--font-head);
  font-size: clamp(7rem, 20vw, 14rem);
  font-weight: 700;
  color: rgba(192,154,82,.15);
  line-height: 1;
}
.not-found h2 {
  font-family: var(--font-head);
  font-size: 2.2rem;
  color: var(--cream);
  margin-bottom: .75rem;
}
.not-found p { color: rgba(244,237,226,.6); margin-bottom: 2.5rem; max-width: 400px; }

/* Booking note box */
.note-box {
  background: rgba(192,154,82,.12);
  border: 1.5px solid rgba(192,154,82,.35);
  border-radius: var(--radius);
  padding: 1.75rem 2rem;
  text-align: center;
  margin-top: 2rem;
}
.note-box p { color: var(--muted); font-size: .92rem; margin-bottom: 1.25rem; }

/* Quick CTA strip */
.quick-cta {
  padding: 2.5rem 0;
  background: var(--parch);
  text-align: center;
}
.quick-cta p { font-size: .88rem; color: var(--muted); margin-bottom: .5rem; }
.quick-cta a.big-phone {
  font-family: var(--font-head);
  font-size: 2.2rem;
  font-weight: 600;
  color: var(--forest);
  display: block;
  margin-bottom: 1rem;
}
.quick-cta a.big-phone:hover { color: var(--gold); }

/* ── Developer Credit Card ── */
.dev-credit {
  background: var(--deep);
  padding: 1.75rem 0;
  border-top: 1px solid rgba(192,154,82,.15);
}
.dev-credit-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.dev-credit-left {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.dev-credit-label {
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .5rem;
}
.dev-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(192,154,82,.4);
  flex-shrink: 0;
}
.dev-name {
  font-family: var(--font-head);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--cream);
  line-height: 1.2;
}
.dev-role {
  font-size: .78rem;
  color: rgba(244,237,226,.5);
  margin-top: .2rem;
}
.dev-socials {
  display: flex;
  gap: .5rem;
  margin-top: .6rem;
}
.dev-social-btn {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(244,237,226,.08);
  border: 1px solid rgba(244,237,226,.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(244,237,226,.6);
  transition: all .25s;
  font-size: .85rem;
}
.dev-social-btn:hover { background: rgba(192,154,82,.2); color: var(--gold); border-color: rgba(192,154,82,.4); }
.dev-credit-btns {
  display: flex;
  gap: .75rem;
  flex-wrap: wrap;
}
.dev-btn {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  padding: .55rem 1.25rem;
  border-radius: 50px;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .03em;
  transition: all .28s;
  white-space: nowrap;
}
.dev-btn-outline {
  background: transparent;
  color: rgba(244,237,226,.75);
  border: 1.5px solid rgba(244,237,226,.2);
}
.dev-btn-outline:hover { border-color: var(--gold); color: var(--gold); }
.dev-btn-solid {
  background: var(--gold);
  color: var(--deep);
  border: 1.5px solid var(--gold);
}
.dev-btn-solid:hover { background: var(--gold-lt); }
@media (max-width: 600px) {
  .dev-credit-inner { flex-direction: column; align-items: flex-start; gap: 1rem; }
  .dev-credit-btns { width: 100%; }
  .dev-btn { flex: 1; justify-content: center; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .footer-main { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .included-grid { grid-template-columns: repeat(3, 1fr); }
  /* 4-col rooms → 3-col before nav collapses */
  .rooms-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 900px) {
  :root { --nav-h: 68px; }
  .nav-links { display: none; }
  .hamburger { display: flex; }

  .two-col, .two-col.reverse { grid-template-columns: 1fr; direction: ltr; }
  .two-col.reverse > * { direction: ltr; }

  .rooms-grid, .experiences-grid { grid-template-columns: 1fr 1fr; }
  .reviews-grid { grid-template-columns: 1fr 1fr; }
  .attractions-grid { grid-template-columns: 1fr 1fr; }
  .values-grid { grid-template-columns: 1fr 1fr; }
  .hosts-grid { grid-template-columns: 1fr 1fr; }
  .distance-cards { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }

  .room-full { grid-template-columns: 1fr; }
  .room-full.reverse { direction: ltr; }
  .room-full-img { min-height: 300px; aspect-ratio: 16/9; }

  /* exp-cards: 3/4 portrait is too tall on tablet — use landscape */
  .exp-card { aspect-ratio: 4/3; }

  /* img-frame: loosen portrait ratio on tablet */
  .img-frame { aspect-ratio: 3/2; }

  /* Fix iOS Safari: background-attachment:fixed causes blank/black on mobile */
  .hero-bg, .page-hero-bg { background-attachment: scroll; }

  .gallery-masonry { columns: 2; }
  .rating-summary { flex-direction: column; gap: 2rem; text-align: center; }
  .rating-bar-row { justify-content: center; }

  .usp-inner { flex-direction: column; gap: .25rem; }
  .usp-item { border-right: none; border-bottom: 1px solid rgba(192,154,82,.15); width: 100%; justify-content: center; }
  .usp-item:last-child { border-bottom: none; }
}

@media (max-width: 600px) {
  .rooms-grid, .experiences-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .attractions-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .hosts-grid { grid-template-columns: 1fr; }
  .distance-cards { grid-template-columns: 1fr 1fr; }
  .footer-main { grid-template-columns: 1fr; }
  .included-grid { grid-template-columns: repeat(2, 1fr); }
  .features-grid { grid-template-columns: 1fr 1fr; }
  .gallery-masonry { columns: 1; }
  .form-row { grid-template-columns: 1fr; }
  .stat-box { position: static; margin-top: 1.5rem; }
  .section { padding: 4rem 0; }
  .hero-btns { flex-direction: column; align-items: center; }

  /* Single-column exp-cards: 16/9 fits screen without massive scroll */
  .exp-card { aspect-ratio: 16/9; }

  /* Room full image on single column — don't stretch too tall */
  .room-full-img { min-height: 220px; aspect-ratio: 16/9; }

  /* img-frame in about/rooms — full-width landscape feels better */
  .img-frame { aspect-ratio: 16/9; }

  /* Page hero mobile heights */
  .page-hero { height: 42vh; min-height: 240px; }
  .page-hero.h50 { height: 38vh; min-height: 220px; }
  .page-hero.h40 { height: 32vh; min-height: 200px; }

  /* Room card image — slightly taller on small screens so detail shows */
  .room-card-img { aspect-ratio: 3/2; }

  /* Gallery single column — natural height, no extra padding */
  .gallery-masonry { column-gap: 0; }
  .gallery-item { margin-bottom: .75rem; border-radius: var(--radius-sm); }
}
