/* ═══════════════════════════════════════════════
   STATUE OF UNITY BOOKING — SHARED STYLESHEET
   ═══════════════════════════════════════════════ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --cream:      #FDFBF7;
  --cream-2:    #F2EAE0;
  --cream-3:    #E6DDD0;
  --saffron:    #E8841A;
  --saffron-lt: #F4A53A;
  --saffron-dk: #B86610;
  --forest:     #3A6B25;
  --forest-lt:  #E4EFD9;
  --espresso:   #1A1108;
  --espresso-2: #2E1E0F;
  --muted:      #6B5F54;
  --card:       #F6F1EA;
  --border:     rgba(26,17,8,0.08);
  --r-lg:       1rem;
  --r-xl:       1.5rem;
  --r-2xl:      2rem;
  --r-3xl:      2.5rem;
}

html { scroll-behavior: smooth; }

/* Page entrance animation */
body {
  animation: pageEnter 0.6s cubic-bezier(0.32,0.72,0,1) both;
}
@keyframes pageEnter {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* Scroll progress bar */
.scroll-progress {
  position: fixed; top: 0; left: 0;
  height: 2px; width: 100%;
  background: linear-gradient(90deg, var(--saffron) 0%, var(--saffron-lt) 50%, var(--saffron) 100%);
  transform-origin: 0 50%;
  transform: scaleX(0);
  z-index: 95;
  pointer-events: none;
  box-shadow: 0 0 12px rgba(232,132,26,0.4);
}

/* Respect reduced-motion preference */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .reveal { opacity: 1 !important; transform: none !important; filter: none !important; }
}

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  background: var(--cream);
  color: var(--espresso);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  font-feature-settings: 'kern' 1, 'liga' 1;
}

/* Branded text selection */
::selection {
  background: rgba(232,132,26,0.25);
  color: var(--espresso);
  text-shadow: none;
}
::-moz-selection {
  background: rgba(232,132,26,0.25);
  color: var(--espresso);
}

/* Custom scrollbar — webkit only, falls back gracefully */
::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: var(--cream); }
::-webkit-scrollbar-thumb {
  background: var(--cream-3);
  border-radius: 9999px;
  border: 2px solid var(--cream);
}
::-webkit-scrollbar-thumb:hover { background: var(--saffron); }

/* Grain */
body::before {
  content: '';
  position: fixed; inset: 0; z-index: 100;
  pointer-events: none; opacity: 0.022;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

h1, h2, h3 {
  font-family: 'Playfair Display', serif;
  line-height: 1.15;
  letter-spacing: -0.018em;
  font-feature-settings: 'kern' 1, 'liga' 1, 'dlig' 1;
}
h1 em, h2 em, h3 em {
  letter-spacing: -0.01em;
}
a { color: inherit; }
img { display: block; max-width: 100%; }

/* ─── NAV ─── */
nav {
  position: fixed; top: 1.25rem; left: 50%;
  transform: translateX(-50%);
  z-index: 90;
  width: calc(100% - 2.5rem); max-width: 1200px;
  background: rgba(253,251,247,0.75);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(26,17,8,0.09);
  border-radius: 9999px;
  padding: 0.65rem 0.85rem 0.65rem 1.4rem;
  display: flex; align-items: center; justify-content: space-between;
  transition: all 0.5s cubic-bezier(0.32,0.72,0,1);
  box-shadow: 0 8px 40px rgba(26,17,8,0.07);
}
nav.scrolled {
  background: rgba(253,251,247,0.96);
  box-shadow: 0 8px 48px rgba(26,17,8,0.13), 0 0 0 1px rgba(232,132,26,0.06);
  padding: 0.45rem 0.85rem 0.45rem 1.4rem;
  width: calc(100% - 4rem);
  top: 0.85rem;
}
nav.scrolled .nav-logo-mark { width: 26px; height: 26px; font-size: 0.7rem; }
nav.scrolled .nav-logo-text { font-size: 0.78rem; }
nav.scrolled .nav-logo-text span { font-size: 0.62rem; }
.nav-logo { display: flex; align-items: center; gap: 0.5rem; text-decoration: none; color: var(--espresso); }
.nav-logo-mark {
  width: 30px; height: 30px; background: var(--saffron); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-family: 'Playfair Display', serif; font-size: 0.8rem; font-weight: 700; flex-shrink: 0;
  transition: transform 0.5s cubic-bezier(0.32,0.72,0,1), box-shadow 0.4s;
}
.nav-logo:hover .nav-logo-mark {
  transform: rotate(15deg) scale(1.1);
  box-shadow: 0 4px 16px rgba(232,132,26,0.35);
}
.nav-logo-text { font-size: 0.82rem; font-weight: 600; line-height: 1.2; }
.nav-logo-text span { display: block; font-weight: 400; font-size: 0.66rem; color: var(--muted); }
.nav-links { display: flex; align-items: center; gap: 0.15rem; list-style: none; }
.nav-links a {
  font-size: 0.78rem; font-weight: 500; color: var(--espresso);
  text-decoration: none; padding: 0.38rem 0.7rem;
  border-radius: 9999px; transition: background 0.25s cubic-bezier(0.32,0.72,0,1);
}
.nav-links a:hover { background: var(--cream-2); }
.nav-links a.active {
  background: var(--cream-2); font-weight: 600;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.8), 0 1px 0 rgba(232,132,26,0.12);
}
.nav-right { display: flex; align-items: center; gap: 0.5rem; }
.nav-phone {
  display: flex; align-items: center; gap: 0.4rem;
  font-size: 0.78rem; font-weight: 600; color: var(--espresso);
  text-decoration: none; padding: 0.5rem 0.9rem;
  border-radius: 9999px;
  transition: background 0.25s cubic-bezier(0.32,0.72,0,1);
}
.nav-phone:hover { background: var(--cream-2); }
.nav-cta {
  display: flex; align-items: center; gap: 0.45rem;
  background: var(--espresso); color: #fff; text-decoration: none;
  font-size: 0.78rem; font-weight: 600; padding: 0.5rem 1rem;
  border-radius: 9999px; transition: all 0.4s cubic-bezier(0.32,0.72,0,1);
}
.nav-cta:hover { background: var(--saffron); transform: scale(1.02); }
.nav-cta .icon-wrap {
  width: 18px; height: 18px; background: rgba(255,255,255,0.15); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: transform 0.4s cubic-bezier(0.32,0.72,0,1);
}
.nav-cta:hover .icon-wrap { transform: translateX(2px) translateY(-1px) scale(1.1); }

/* Hamburger */
.hamburger {
  display: none; flex-direction: column; gap: 5px; cursor: pointer;
  padding: 0.4rem; background: none; border: none;
  position: relative; width: 34px; height: 34px;
  align-items: center; justify-content: center;
}
.hamburger span {
  display: block; width: 18px; height: 1.5px;
  background: var(--espresso); border-radius: 2px;
  transition: all 0.4s cubic-bezier(0.32,0.72,0,1); position: absolute;
}
.hamburger span:nth-child(1) { top: 10px; }
.hamburger span:nth-child(2) { top: 17px; }
.hamburger.open span:nth-child(1) { transform: rotate(45deg); top: 14px; }
.hamburger.open span:nth-child(2) { transform: rotate(-45deg); top: 14px; }

/* Mobile overlay */
.mobile-overlay {
  position: fixed; inset: 0; z-index: 89;
  background: rgba(253,251,247,0.97); backdrop-filter: blur(24px);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 1.25rem;
  opacity: 0; pointer-events: none; transition: opacity 0.4s cubic-bezier(0.32,0.72,0,1);
}
.mobile-overlay.open { opacity: 1; pointer-events: all; }
.mobile-overlay a {
  font-family: 'Playfair Display', serif; font-size: 1.8rem;
  color: var(--espresso); text-decoration: none;
  opacity: 0; transform: translateY(1.5rem);
  transition: opacity 0.5s, transform 0.5s cubic-bezier(0.32,0.72,0,1);
}
.mobile-overlay.open a { opacity: 1; transform: translateY(0); }
.mobile-overlay.open a:nth-child(1) { transition-delay: 0.05s; }
.mobile-overlay.open a:nth-child(2) { transition-delay: 0.1s; }
.mobile-overlay.open a:nth-child(3) { transition-delay: 0.15s; }
.mobile-overlay.open a:nth-child(4) { transition-delay: 0.2s; }
.mobile-overlay.open a:nth-child(5) { transition-delay: 0.25s; }
.mobile-overlay.open a:nth-child(6) { transition-delay: 0.3s; }

/* ─── PAGE HERO (inner pages) ─── */
.page-hero {
  min-height: 55dvh;
  display: flex; flex-direction: column; align-items: flex-start; justify-content: flex-end;
  padding: 7rem 2rem 4rem; position: relative; overflow: hidden;
}
.page-hero-bg {
  position: absolute; inset: 0; z-index: 0;
}
.page-hero-bg img {
  width: 100%; height: 100%; object-fit: cover;
}
.page-hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top,
    rgba(26,17,8,0.82) 0%,
    rgba(26,17,8,0.35) 50%,
    rgba(26,17,8,0.08) 100%),
    linear-gradient(to right,
    rgba(26,17,8,0.2) 0%,
    transparent 60%);
}
.page-hero-inner { position: relative; z-index: 1; max-width: 1200px; width: 100%; margin: 0 auto; }
.page-eyebrow {
  display: inline-flex; align-items: center; gap: 0.4rem;
  background: rgba(255,255,255,0.15); border: 1px solid rgba(255,255,255,0.25);
  border-radius: 9999px; padding: 0.3rem 0.8rem;
  font-size: 0.65rem; font-weight: 600; letter-spacing: 0.15em;
  text-transform: uppercase; color: rgba(255,255,255,0.8); margin-bottom: 0.85rem;
}
.page-hero h1 {
  font-size: clamp(2rem, 4vw, 3.5rem); font-weight: 500; color: #fff;
  line-height: 1.12; margin-bottom: 0.75rem; max-width: 640px;
}
.page-hero h1 em { color: var(--saffron-lt); font-style: italic; }
.page-hero p { font-size: 1rem; color: rgba(255,255,255,0.65); max-width: 500px; line-height: 1.65; }

/* ─── SECTION BASE ─── */
.section { padding: 5.5rem 2rem; }
.section-inner { max-width: 1200px; margin: 0 auto; }
.section-header { margin-bottom: 3rem; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: var(--forest-lt); border: 1px solid rgba(58,107,37,0.2);
  border-radius: 9999px; padding: 0.28rem 0.75rem 0.28rem 0.6rem;
  font-size: 0.63rem; font-weight: 600; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--forest); margin-bottom: 0.85rem;
}
.eyebrow::before {
  content: '';
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--forest); flex-shrink: 0;
  animation: eyebrowpulse 2.4s ease-in-out infinite;
}
.eyebrow.saffron { background: rgba(232,132,26,0.1); border-color: rgba(232,132,26,0.2); color: var(--saffron-dk); }
.eyebrow.saffron::before { background: var(--saffron); }
.eyebrow.white { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.2); color: rgba(255,255,255,0.75); }
.eyebrow.white::before { background: rgba(255,255,255,0.7); }
@keyframes eyebrowpulse {
  0%,100% { opacity: 1; transform: scale(1); }
  50%      { opacity: 0.4; transform: scale(0.7); }
}
.section-header:hover .eyebrow {
  transform: translateX(2px);
  transition: transform 0.4s cubic-bezier(0.32,0.72,0,1);
}
.section-heading { font-size: clamp(1.8rem, 3vw, 2.75rem); font-weight: 500; color: var(--espresso); max-width: 540px; margin-bottom: 0.65rem; }
.section-heading.light { color: #fff; }
.section-heading em {
  font-style: italic;
  background: linear-gradient(135deg, var(--saffron) 0%, var(--saffron-lt) 60%, var(--saffron-dk) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.section-heading.light em {
  background: linear-gradient(135deg, var(--saffron-lt) 0%, #FFD080 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.section-sub { font-size: 0.92rem; color: var(--muted); max-width: 460px; line-height: 1.7; }
.section-sub.light { color: rgba(255,255,255,0.5); }

/* ─── STATS BAR ─── */
.stats-bar {
  background: var(--espresso);
  padding: 2.25rem 2rem;
  border-top: 1px solid rgba(232,132,26,0.18);
  position: relative;
}
.stats-bar::before {
  content: '';
  position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 120px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--saffron), transparent);
}
.stats-bar-inner {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: 0; text-align: center;
}
.stats-bar-inner > div {
  padding: 0.5rem 1rem;
  position: relative;
}
.stats-bar-inner > div + div::before {
  content: '';
  position: absolute; left: 0; top: 20%; height: 60%;
  width: 1px;
  background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.12), transparent);
}
.stat-num {
  font-family: 'Playfair Display',serif; font-size: 2.4rem; font-weight: 500;
  color: var(--saffron-lt); display: block;
  text-shadow: 0 0 40px rgba(244,165,58,0.25);
}
.stat-label { font-size: 0.75rem; color: rgba(255,255,255,0.72); letter-spacing: 0.04em; }

/* ─── DOUBLE-BEZEL CARD ─── */
.card-shell {
  background: var(--cream-2); border: 1px solid var(--border);
  border-radius: var(--r-2xl); padding: 0.375rem;
  display: flex; flex-direction: column; /* enables equal-height children */
  transition: transform 0.5s cubic-bezier(0.32,0.72,0,1),
              box-shadow 0.5s cubic-bezier(0.32,0.72,0,1),
              border-color 0.5s cubic-bezier(0.32,0.72,0,1);
}
.card-shell:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 80px rgba(26,17,8,0.11), 0 0 0 1px rgba(232,132,26,0.12);
  border-color: rgba(232,132,26,0.18);
}
.card-inner {
  background: var(--cream); border-radius: calc(var(--r-2xl) - 0.25rem);
  overflow: hidden;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.85);
  flex: 1; display: flex; flex-direction: column;
  position: relative;
}
/* Saffron accent line sweeps in on card hover */
.card-inner::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--saffron), var(--saffron-lt), var(--saffron));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s cubic-bezier(0.32,0.72,0,1);
  z-index: 1;
}
.card-shell:hover .card-inner::before { transform: scaleX(1); }

/* ─── PROPERTY CARD ─── */
.property-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.25rem; }
.prop-img { height: 210px; position: relative; overflow: hidden; background: var(--cream-3); }
.prop-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s cubic-bezier(0.32,0.72,0,1); }
.card-shell:hover .prop-img img { transform: scale(1.06); }
.prop-img::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, transparent 55%, rgba(26,17,8,0.18) 100%);
  opacity: 0;
  transition: opacity 0.5s cubic-bezier(0.32,0.72,0,1);
}
.card-shell:hover .prop-img::after { opacity: 1; }
.prop-badge {
  position: absolute; top: 0.75rem; left: 0.75rem;
  background: rgba(253,251,247,0.92); backdrop-filter: blur(8px);
  border-radius: 9999px; padding: 0.22rem 0.6rem;
  font-size: 0.63rem; font-weight: 600; color: var(--espresso);
}
.prop-body { padding: 1.25rem 1.4rem 1.5rem; flex: 1; display: flex; flex-direction: column; }
.prop-type {
  font-size: 0.67rem; color: var(--muted); margin-bottom: 0.3rem;
  display: inline-flex; align-items: center; gap: 0.4rem;
  background: var(--cream-2); border-radius: 9999px;
  padding: 0.18rem 0.6rem 0.18rem 0.45rem;
  width: fit-content;
}
.prop-type::before {
  content: '';
  width: 4px; height: 4px; border-radius: 50%;
  background: var(--saffron);
  flex-shrink: 0;
}
.prop-name {
  font-size: 1.05rem; font-weight: 600; color: var(--espresso);
  margin-bottom: 0.85rem; line-height: 1.3;
  position: relative; display: inline-block;
}
.prop-name::after {
  content: '';
  position: absolute; left: 0; bottom: -3px;
  width: 28px; height: 2px;
  background: var(--saffron);
  border-radius: 2px;
  transform: scaleX(0.4);
  transform-origin: left;
  transition: transform 0.5s cubic-bezier(0.32,0.72,0,1);
}
.card-shell:hover .prop-name::after { transform: scaleX(1.5); }
.pricing-rows { display: flex; flex-direction: column; gap: 0.35rem; margin-bottom: 1.2rem; flex: 1; }
.price-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 0.55rem 0.7rem 0.55rem 0.85rem;
  background: var(--cream-2); border-radius: 0.6rem;
  position: relative;
  transition: background 0.3s cubic-bezier(0.32,0.72,0,1),
              transform 0.3s cubic-bezier(0.32,0.72,0,1);
}
.price-row::before {
  content: '';
  position: absolute; left: 0; top: 25%; height: 50%;
  width: 2px; border-radius: 0 2px 2px 0;
  background: var(--saffron); opacity: 0.4;
  transition: opacity 0.3s, height 0.3s cubic-bezier(0.32,0.72,0,1);
}
.card-shell:hover .price-row::before { opacity: 1; height: 70%; top: 15%; }
.price-label { font-size: 0.7rem; color: var(--muted); font-weight: 500; }
.price-val { font-size: 0.86rem; font-weight: 700; color: var(--espresso); }
.price-val small { font-size: 0.62rem; font-weight: 400; color: var(--muted); }
.price-call { font-size: 0.82rem; font-weight: 600; color: var(--saffron); }
.btn-book {
  display: flex; align-items: center; justify-content: space-between; width: 100%;
  background: var(--espresso); color: #fff; border: none;
  border-radius: 0.85rem; padding: 0.72rem 1rem;
  font-family: 'Plus Jakarta Sans',sans-serif; font-size: 0.8rem; font-weight: 600;
  cursor: pointer; text-decoration: none; position: relative; overflow: hidden;
  transition: all 0.4s cubic-bezier(0.32,0.72,0,1);
}
.btn-book::before {
  content: '';
  position: absolute; top: 0; left: -100%;
  width: 60%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.07), transparent);
  transform: skewX(-20deg);
  transition: left 0.6s cubic-bezier(0.32,0.72,0,1);
}
.btn-book:hover::before { left: 160%; }
.btn-book:hover { background: var(--saffron); }
.btn-book:active { transform: scale(0.98); }
.btn-book .ic { width: 24px; height: 24px; background: rgba(255,255,255,0.15); border-radius: 50%; display: flex; align-items: center; justify-content: center; transition: transform 0.4s cubic-bezier(0.32,0.72,0,1), background 0.4s; }
.btn-book:hover .ic { transform: translateX(2px) translateY(-1.5px) scale(1.08); background: rgba(255,255,255,0.22); }

/* ─── EXPERIENCE BENTO ─── */
.exp-bento { display: grid; grid-template-columns: repeat(12,1fr); gap: 1rem; }
.exp-card {
  border-radius: var(--r-xl); overflow: hidden; position: relative; cursor: pointer;
  transition: transform 0.5s cubic-bezier(0.32,0.72,0,1),
              box-shadow 0.5s cubic-bezier(0.32,0.72,0,1);
}
.exp-card:hover { transform: scale(1.018); box-shadow: 0 20px 60px rgba(0,0,0,0.25); }
.exp-card::after {
  content: '';
  position: absolute; inset: 0;
  border-radius: var(--r-xl);
  border: 1px solid rgba(255,255,255,0);
  transition: border-color 0.5s cubic-bezier(0.32,0.72,0,1);
  pointer-events: none;
}
.exp-card:hover::after { border-color: rgba(255,255,255,0.15); }
.exp-card.c1 { grid-column: span 5; grid-row: span 2; min-height: 360px; }
.exp-card.c2 { grid-column: span 4; min-height: 168px; }
.exp-card.c3 { grid-column: span 3; min-height: 168px; }
.exp-card.c4 { grid-column: span 4; min-height: 168px; }
.exp-card.c5 { grid-column: span 3; min-height: 168px; }
.exp-card.c6 { grid-column: span 12; min-height: 168px; }
.exp-img { position: absolute; inset: 0; }
.exp-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.32,0.72,0,1);
}
.exp-card:hover .exp-img img { transform: scale(1.06); }
.exp-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.1) 55%, transparent 100%);
  transition: background 0.5s cubic-bezier(0.32,0.72,0,1);
}
.exp-card:hover .exp-overlay {
  background: linear-gradient(to top, rgba(0,0,0,0.82) 0%, rgba(0,0,0,0.2) 55%, transparent 100%);
}
.exp-content { position: absolute; bottom: 0; left: 0; right: 0; padding: 1.1rem 1.25rem; }
.exp-tag { display: inline-flex; background: rgba(255,255,255,0.15); border-radius: 9999px; padding: 0.18rem 0.55rem; font-size: 0.6rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.8); margin-bottom: 0.3rem; }
.exp-name { font-size: 0.95rem; font-weight: 600; color: #fff; line-height: 1.25; margin-bottom: 0.2rem; }
.exp-card.c1 .exp-name { font-size: 1.35rem; font-family: 'Playfair Display',serif; }
.exp-price { font-size: 0.76rem; color: rgba(255,255,255,0.6); }
.exp-price strong { color: var(--saffron-lt); }

/* ─── WHY US ─── */
.why-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.25rem; }
.why-shell {
  background: var(--cream-2); border: 1px solid var(--border);
  border-radius: var(--r-2xl); padding: 0.375rem;
  transition: transform 0.4s cubic-bezier(0.32,0.72,0,1),
              box-shadow 0.4s cubic-bezier(0.32,0.72,0,1),
              border-color 0.4s;
}
.why-shell:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(26,17,8,0.08);
  border-color: rgba(58,107,37,0.18);
}
.why-inner { background: var(--cream); border-radius: calc(var(--r-2xl) - 0.25rem); padding: 1.65rem 1.4rem; box-shadow: inset 0 1px 0 rgba(255,255,255,0.9); }
.why-grid { counter-reset: why-counter; }
.why-shell { counter-increment: why-counter; }
.why-inner::after {
  content: '0' counter(why-counter);
  position: absolute; top: 1.4rem; right: 1.4rem;
  font-family: 'Playfair Display', serif;
  font-size: 2rem; font-weight: 500; line-height: 1;
  color: rgba(26,17,8,0.05);
  pointer-events: none;
  transition: color 0.4s cubic-bezier(0.32,0.72,0,1);
}
.why-shell:hover .why-inner::after { color: rgba(232,132,26,0.1); }
.why-inner { position: relative; }

.why-icon {
  width: 42px; height: 42px; background: var(--forest-lt);
  border-radius: 0.75rem; display: flex; align-items: center; justify-content: center;
  color: var(--forest); margin-bottom: 1.1rem;
  transition: transform 0.4s cubic-bezier(0.32,0.72,0,1),
              background 0.4s cubic-bezier(0.32,0.72,0,1),
              color 0.4s cubic-bezier(0.32,0.72,0,1),
              box-shadow 0.4s cubic-bezier(0.32,0.72,0,1);
}
.why-shell:hover .why-icon {
  transform: scale(1.12) rotate(-4deg);
  background: var(--forest);
  color: #fff;
  box-shadow: 0 8px 24px rgba(58,107,37,0.25);
}
.why-title { font-size: 0.95rem; font-weight: 600; color: var(--espresso); margin-bottom: 0.45rem; }
.why-desc { font-size: 0.8rem; color: var(--muted); line-height: 1.65; }

/* ─── REVIEWS ─── */
.reviews-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.25rem; }
.review-shell {
  background: var(--cream-3); border: 1px solid var(--border);
  border-radius: var(--r-2xl); padding: 0.375rem;
  display: flex; flex-direction: column; /* equal-height */
  transition: transform 0.5s cubic-bezier(0.32,0.72,0,1),
              box-shadow 0.5s cubic-bezier(0.32,0.72,0,1),
              border-color 0.5s;
}
.review-shell:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 60px rgba(26,17,8,0.09);
  border-color: rgba(232,132,26,0.14);
}
.review-inner { background: var(--cream); border-radius: calc(var(--r-2xl) - 0.25rem); padding: 1.65rem; box-shadow: inset 0 1px 0 rgba(255,255,255,0.9); flex: 1; display: flex; flex-direction: column; }
.review-stars {
  color: var(--saffron); font-size: 0.88rem; margin-bottom: 0.8rem;
  display: inline-flex; gap: 2px;
  filter: drop-shadow(0 1px 0 rgba(232,132,26,0.15));
}
.review-stars i { transition: transform 0.4s cubic-bezier(0.32,0.72,0,1); }
.review-shell:hover .review-stars i:nth-child(1) { transform: scale(1.18) rotate(-6deg); transition-delay: 0s; }
.review-shell:hover .review-stars i:nth-child(2) { transform: scale(1.18) rotate(-3deg); transition-delay: 0.04s; }
.review-shell:hover .review-stars i:nth-child(3) { transform: scale(1.22); transition-delay: 0.08s; }
.review-shell:hover .review-stars i:nth-child(4) { transform: scale(1.18) rotate(3deg); transition-delay: 0.12s; }
.review-shell:hover .review-stars i:nth-child(5) { transform: scale(1.18) rotate(6deg); transition-delay: 0.16s; }
.review-text { font-size: 0.88rem; color: var(--espresso-2); line-height: 1.7; margin-bottom: 1.15rem; font-style: italic; flex: 1; }
.review-author { display: flex; align-items: center; gap: 0.7rem; }
.review-avatar { width: 36px; height: 36px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 700; color: #fff; font-size: 0.82rem; flex-shrink: 0; }
.review-name { font-size: 0.83rem; font-weight: 600; color: var(--espresso); }
.review-meta { font-size: 0.7rem; color: var(--muted); }
.review-platform {
  margin-left: auto; font-size: 0.62rem; font-weight: 600;
  letter-spacing: 0.06em; text-transform: uppercase;
  padding: 0.22rem 0.6rem; border-radius: 9999px;
  background: var(--cream-2); color: var(--muted);
  border: 1px solid var(--border);
}
/* Platform-specific colour pills */
.review-platform[data-platform="google"],
.review-platform:where([class*="google"]) {
  background: rgba(66,133,244,0.08); color: #1A5FCC; border-color: rgba(66,133,244,0.18);
}
.review-platform[data-platform="whatsapp"],
.review-platform:where([class*="whatsapp"]) {
  background: rgba(37,211,102,0.1); color: #128C40; border-color: rgba(37,211,102,0.2);
}
.review-platform[data-platform="instagram"],
.review-platform:where([class*="instagram"]) {
  background: rgba(216,75,142,0.08); color: #B83564; border-color: rgba(216,75,142,0.2);
}

/* ─── GALLERY ─── */
.gallery-grid { display: grid; grid-template-columns: repeat(12,1fr); grid-auto-rows: 180px; gap: 0.75rem; }
.g-item {
  border-radius: 1.1rem; overflow: hidden; position: relative; cursor: pointer;
  transition: transform 0.5s cubic-bezier(0.32,0.72,0,1),
              box-shadow 0.5s cubic-bezier(0.32,0.72,0,1);
}
.g-item:hover { transform: scale(1.025); box-shadow: 0 16px 50px rgba(26,17,8,0.2); }
.g-item.g1 { grid-column: span 5; grid-row: span 2; }
.g-item.g2 { grid-column: span 4; grid-row: span 2; }
.g-item.g3 { grid-column: span 3; }
.g-item.g4 { grid-column: span 3; }
.g-item.g5 { grid-column: span 4; }
.g-item.g6 { grid-column: span 5; }
.g-item.g7 { grid-column: span 12; grid-row-end: span 1; }
.g-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.32,0.72,0,1);
}
.g-item:hover img { transform: scale(1.07); }
.g-item::before {
  content: '';
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(to top, rgba(26,17,8,0.5) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.5s cubic-bezier(0.32,0.72,0,1);
}
.g-item:hover::before { opacity: 1; }
.g-label {
  position: absolute; bottom: 0.75rem; left: 0.75rem; z-index: 2;
  background: rgba(26,17,8,0.55); backdrop-filter: blur(6px);
  border-radius: 9999px; padding: 0.22rem 0.6rem;
  font-size: 0.63rem; font-weight: 600; color: rgba(255,255,255,0.9);
  transform: translateY(4px); opacity: 0;
  transition: opacity 0.4s cubic-bezier(0.32,0.72,0,1),
              transform 0.4s cubic-bezier(0.32,0.72,0,1);
}
.g-item:hover .g-label { opacity: 1; transform: translateY(0); }

/* ─── FAQ ─── */
.faq-wrap { display: flex; flex-direction: column; gap: 0.5rem; }
.faq-item {
  border: 1px solid var(--border); border-radius: 1.1rem; overflow: hidden;
  background: var(--cream);
  transition: box-shadow 0.4s cubic-bezier(0.32,0.72,0,1),
              border-color 0.4s cubic-bezier(0.32,0.72,0,1);
}
.faq-item {
  position: relative;
}
.faq-item::before {
  content: '';
  position: absolute; left: 0; top: 50%; transform: translateY(-50%) scaleY(0);
  width: 3px; height: 60%;
  background: var(--saffron);
  border-radius: 0 2px 2px 0;
  transition: transform 0.5s cubic-bezier(0.32,0.72,0,1);
}
.faq-item.open::before { transform: translateY(-50%) scaleY(1); }
.faq-item.open {
  box-shadow: 0 4px 28px rgba(26,17,8,0.08);
  border-color: rgba(232,132,26,0.2);
}
.faq-item:not(.open):hover { border-color: rgba(26,17,8,0.14); }
.faq-q {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.05rem 1.2rem; cursor: pointer; font-size: 0.88rem; font-weight: 600;
  color: var(--espresso); gap: 1rem; user-select: none;
  transition: color 0.3s;
}
.faq-item.open .faq-q { color: var(--saffron-dk); }
.faq-arrow {
  width: 24px; height: 24px; background: var(--cream-2); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  color: var(--muted);
  transition: transform 0.45s cubic-bezier(0.32,0.72,0,1),
              background 0.4s cubic-bezier(0.32,0.72,0,1),
              color 0.4s, box-shadow 0.4s;
}
.faq-item.open .faq-arrow {
  transform: rotate(180deg);
  background: var(--saffron); color: #fff;
  box-shadow: 0 4px 12px rgba(232,132,26,0.3);
}
.faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height 0.5s cubic-bezier(0.32,0.72,0,1), padding 0.35s;
  font-size: 0.83rem; color: var(--muted); line-height: 1.7; padding: 0 1.2rem;
}
.faq-item.open .faq-a { max-height: 800px; padding: 0 1.2rem 1.2rem; }

/* ─── TABS ─── */
.tabs, .tab-btns { display: flex; gap: 0.3rem; background: var(--cream-2); border-radius: 9999px; padding: 0.28rem; width: fit-content; margin-bottom: 2.25rem; position: relative; }
.tab-btn {
  padding: 0.5rem 1.15rem; border-radius: 9999px; font-size: 0.8rem; font-weight: 600;
  border: none; background: none; color: var(--muted); cursor: pointer;
  font-family: 'Plus Jakarta Sans',sans-serif; position: relative; z-index: 1;
  transition: color 0.35s cubic-bezier(0.32,0.72,0,1);
}
.tab-btn.active {
  color: var(--espresso);
  background: #fff;
  box-shadow: 0 2px 14px rgba(26,17,8,0.09), inset 0 1px 0 rgba(255,255,255,0.9);
  transition: all 0.35s cubic-bezier(0.32,0.72,0,1);
}
.tab-panel { display: none; animation: tabfadein 0.4s cubic-bezier(0.32,0.72,0,1); }
.tab-panel.active { display: block; }
@keyframes tabfadein {
  from { opacity: 0; transform: translateY(0.5rem); }
  to   { opacity: 1; transform: none; }
}

/* ─── BLOG ─── */
.blog-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.25rem; }
.blog-shell {
  background: var(--cream-2); border: 1px solid var(--border);
  border-radius: var(--r-2xl); padding: 0.375rem; cursor: pointer;
  text-decoration: none; display: flex; flex-direction: column;
  transition: transform 0.5s cubic-bezier(0.32,0.72,0,1),
              box-shadow 0.5s cubic-bezier(0.32,0.72,0,1),
              border-color 0.5s;
}
.blog-shell:hover {
  transform: translateY(-5px);
  box-shadow: 0 24px 70px rgba(26,17,8,0.1);
  border-color: rgba(232,132,26,0.15);
}
.blog-inner { background: var(--cream); border-radius: calc(var(--r-2xl) - 0.25rem); overflow: hidden; box-shadow: inset 0 1px 0 rgba(255,255,255,0.9); flex: 1; display: flex; flex-direction: column; }
.blog-img { height: 190px; position: relative; overflow: hidden; background: var(--cream-3); }
.blog-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s cubic-bezier(0.32,0.72,0,1); }
.blog-shell:hover .blog-img img { transform: scale(1.05); }
.blog-body { padding: 1.25rem 1.4rem 1.5rem; flex: 1; display: flex; flex-direction: column; }
.blog-cat {
  display: inline-flex; align-items: center; gap: 0.4rem;
  background: var(--forest-lt); color: var(--forest);
  border: 1px solid rgba(58,107,37,0.2);
  border-radius: 9999px; padding: 0.2rem 0.65rem 0.2rem 0.5rem;
  font-size: 0.6rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  margin-bottom: 0.55rem;
}
.blog-cat::before {
  content: '';
  width: 4px; height: 4px; border-radius: 50%;
  background: currentColor; flex-shrink: 0;
}
/* Category-specific colour variants (by class) */
.blog-cat.travel-guide,
.blog-cat:where([data-cat="travel-guide"]) {
  background: rgba(232,132,26,0.1); color: var(--saffron-dk); border-color: rgba(232,132,26,0.22);
}
.blog-cat.accommodation,
.blog-cat:where([data-cat="accommodation"]) {
  background: rgba(58,107,37,0.1); color: var(--forest); border-color: rgba(58,107,37,0.22);
}
.blog-cat.how-to-reach,
.blog-cat:where([data-cat="how-to-reach"]) {
  background: rgba(16,48,120,0.08); color: #1A5FCC; border-color: rgba(16,48,120,0.2);
}
.blog-cat.planning-tips,
.blog-cat:where([data-cat="planning-tips"]) {
  background: rgba(90,60,30,0.08); color: #7A3810; border-color: rgba(90,60,30,0.2);
}
.blog-cat.experiences,
.blog-cat:where([data-cat="experiences"]) {
  background: rgba(216,75,142,0.08); color: #B83564; border-color: rgba(216,75,142,0.2);
}
.blog-cat.family-travel,
.blog-cat:where([data-cat="family-travel"]) {
  background: rgba(64,98,128,0.08); color: #305078; border-color: rgba(64,98,128,0.2);
}
.blog-title { font-size: 0.98rem; font-weight: 600; color: var(--espresso); margin-bottom: 0.45rem; line-height: 1.35; }
.blog-excerpt { font-size: 0.78rem; color: var(--muted); line-height: 1.6; margin-bottom: 0.9rem; flex: 1; }
.blog-meta { font-size: 0.68rem; color: var(--muted); display: flex; align-items: center; gap: 0.4rem; }
.blog-meta .dot { width: 3px; height: 3px; background: var(--cream-3); border-radius: 50%; display: inline-block; }

/* ─── ITINERARY TIMELINE ─── */
.itin-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 4.5rem; align-items: start; }
.itin-visual { position: sticky; top: 7rem; }
.itin-img-shell { background: var(--cream-3); border: 1px solid var(--border); border-radius: var(--r-2xl); padding: 0.45rem; box-shadow: 0 4px 40px rgba(26,17,8,0.06); }
.itin-img-inner { border-radius: calc(var(--r-2xl) - 0.28rem); height: 460px; overflow: hidden; position: relative; }
.itin-img-inner img { width: 100%; height: 100%; object-fit: cover; }
.itin-floating { position: absolute; bottom: 1.1rem; left: 1.1rem; background: rgba(253,251,247,0.93); backdrop-filter: blur(12px); border-radius: var(--r-xl); padding: 0.8rem 1rem; display: flex; align-items: center; gap: 0.7rem; }
.itin-badge-icon { width: 34px; height: 34px; background: var(--saffron); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #fff; font-size: 0.9rem; }
.itin-badge-text { font-size: 0.7rem; font-weight: 600; color: var(--espresso); line-height: 1.4; }
.itin-badge-text span { display: block; font-weight: 400; color: var(--muted); font-size: 0.64rem; }
.day-tag { display: inline-flex; align-items: center; background: var(--saffron); color: #fff; border-radius: 9999px; padding: 0.28rem 0.8rem; font-size: 0.66rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 1.4rem; }
.timeline { display: flex; flex-direction: column; }
.tl-item { display: flex; gap: 1.1rem; padding-bottom: 1.85rem; }
.tl-item:last-child { padding-bottom: 0; }
.tl-left { display: flex; flex-direction: column; align-items: center; flex-shrink: 0; }
.tl-dot {
  width: 34px; height: 34px; background: var(--cream);
  border: 2px solid var(--saffron); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.68rem; font-weight: 700; color: var(--saffron); z-index: 1;
  position: relative;
}
.tl-dot::after {
  content: '';
  position: absolute; inset: -5px;
  border-radius: 50%;
  border: 1px solid rgba(232,132,26,0.25);
  animation: dotpulse 2.5s ease-in-out infinite;
}
@keyframes dotpulse {
  0%,100% { transform: scale(0.9); opacity: 0; }
  50%      { transform: scale(1.1); opacity: 1; }
}
.tl-line { flex: 1; width: 1px; background: var(--border); margin-top: 0.2rem; }
.tl-item:last-child .tl-line { display: none; }
.tl-time { font-size: 0.66rem; font-weight: 600; letter-spacing: 0.06em; color: var(--saffron-dk); margin-bottom: 0.18rem; text-transform: uppercase; }
.tl-title { font-size: 0.92rem; font-weight: 600; color: var(--espresso); margin-bottom: 0.18rem; }
.tl-desc { font-size: 0.8rem; color: var(--muted); line-height: 1.55; }

/* ─── CTA BANNER ─── */
.cta-banner { background: var(--espresso); padding: 5rem 2rem; text-align: center; position: relative; overflow: hidden; }
.cta-banner::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 55% 65% at 30% 50%, rgba(232,132,26,0.12) 0%, transparent 65%),
              radial-gradient(ellipse 45% 55% at 75% 40%, rgba(58,107,37,0.08) 0%, transparent 60%);
  animation: ctaorbs 8s ease-in-out infinite alternate;
}
@keyframes ctaorbs {
  0%   { background-position: 30% 50%, 75% 40%; }
  100% { background-position: 45% 55%, 60% 45%; }
}
.cta-banner h2 {
  font-size: clamp(1.9rem, 3.5vw, 3.2rem); color: #fff; font-weight: 500;
  max-width: 680px; margin: 0 auto 0.85rem;
  position: relative;
}
.cta-banner h2 em {
  font-style: italic;
  background: linear-gradient(135deg, var(--saffron-lt) 0%, #FFD080 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
/* Decorative ornament above CTA heading */
.cta-banner h2::before {
  content: '';
  display: block;
  width: 40px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--saffron), transparent);
  margin: 0 auto 1.25rem;
}
.cta-banner p { font-size: 0.92rem; color: rgba(255,255,255,0.45); margin-bottom: 1.85rem; position: relative; }
.cta-btns { display: flex; gap: 0.7rem; justify-content: center; flex-wrap: wrap; position: relative; }
.btn-primary {
  display: inline-flex; align-items: center; gap: 0.55rem;
  background: var(--saffron); color: #fff; text-decoration: none;
  padding: 0.82rem 1.6rem; border-radius: 9999px; font-weight: 600; font-size: 0.88rem;
  font-family: 'Plus Jakarta Sans',sans-serif; border: none; cursor: pointer;
  position: relative; overflow: hidden;
  transition: all 0.4s cubic-bezier(0.32,0.72,0,1);
  box-shadow: 0 4px 20px rgba(232,132,26,0.3);
}
.btn-primary::before {
  content: '';
  position: absolute; top: 0; left: -100%;
  width: 60%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.12), transparent);
  transform: skewX(-18deg);
  transition: left 0.65s cubic-bezier(0.32,0.72,0,1);
}
.btn-primary:hover::before { left: 160%; }
.btn-primary:hover { background: var(--saffron-lt); transform: scale(1.03); box-shadow: 0 8px 32px rgba(232,132,26,0.4); }
.btn-primary:active { transform: scale(0.98); }
.btn-ghost { display: inline-flex; align-items: center; gap: 0.55rem; background: rgba(255,255,255,0.08); color: #fff; text-decoration: none; padding: 0.82rem 1.6rem; border-radius: 9999px; font-weight: 600; font-size: 0.88rem; border: 1px solid rgba(255,255,255,0.15); transition: all 0.4s cubic-bezier(0.32,0.72,0,1); font-family: 'Plus Jakarta Sans',sans-serif; }
.btn-ghost:hover { background: rgba(255,255,255,0.15); }

/* ─── FORM ─── */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-group.full { grid-column: span 2; }
.form-group label {
  font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--muted);
  transition: color 0.3s cubic-bezier(0.32,0.72,0,1);
}
.form-group:focus-within label { color: var(--saffron-dk); }
.form-group input, .form-group select, .form-group textarea {
  background: var(--cream); border: 1px solid var(--border);
  border-radius: 0.85rem; padding: 0.78rem 1rem;
  font-family: 'Plus Jakarta Sans',sans-serif; font-size: 0.88rem; color: var(--espresso);
  outline: none; transition: border-color 0.25s; width: 100%; resize: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--saffron); }

/* ─── FOOTER ─── */
footer {
  background: var(--espresso);
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 4rem 2rem 2rem;
  position: relative;
}
footer::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(232,132,26,0.4) 30%,
    rgba(232,132,26,0.4) 70%,
    transparent 100%);
}
.footer-inner { max-width: 1200px; margin: 0 auto; }
.footer-top { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 2.75rem; }
.footer-logo { display: flex; align-items: center; gap: 0.55rem; margin-bottom: 0.9rem; text-decoration: none; }
.footer-logo-mark { width: 32px; height: 32px; background: var(--saffron); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #fff; font-family: 'Playfair Display',serif; font-size: 0.85rem; font-weight: 700; }
.footer-logo-text { color: #fff; font-size: 0.85rem; font-weight: 600; line-height: 1.2; }
.footer-logo-text span { display: block; font-size: 0.65rem; font-weight: 400; color: rgba(255,255,255,0.38); }
.footer-tagline { font-size: 0.79rem; color: rgba(255,255,255,0.68); line-height: 1.7; margin-bottom: 1.15rem; max-width: 250px; }
.footer-contact-links { display: flex; flex-direction: column; gap: 0.45rem; }
.footer-contact-links a { display: flex; align-items: center; gap: 0.45rem; font-size: 0.78rem; color: rgba(255,255,255,0.72); text-decoration: none; transition: color 0.25s; }
.footer-contact-links a:hover { color: var(--saffron-lt); }
.footer-col-title {
  font-size: 0.66rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(255,255,255,0.55); margin-bottom: 0.9rem;
  display: flex; align-items: center; gap: 0.55rem;
}
.footer-col-title::before {
  content: '';
  width: 14px; height: 1px;
  background: var(--saffron);
  flex-shrink: 0;
}
.footer-links { display: flex; flex-direction: column; gap: 0.45rem; }
.footer-links a {
  font-size: 0.79rem; color: rgba(255,255,255,0.72);
  text-decoration: none;
  position: relative;
  display: inline-block;
  width: fit-content;
  transition: color 0.3s cubic-bezier(0.32,0.72,0,1),
              transform 0.3s cubic-bezier(0.32,0.72,0,1);
}
.footer-links a::after {
  content: '';
  position: absolute; left: 0; bottom: -2px;
  width: 100%; height: 1px;
  background: var(--saffron);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.32,0.72,0,1);
}
.footer-links a:hover {
  color: rgba(255,255,255,0.95);
  transform: translateX(2px);
}
.footer-links a:hover::after { transform: scaleX(0.5); }
.social-row { display: flex; gap: 0.45rem; margin-top: 1.1rem; }
.social-btn {
  width: 34px; height: 34px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.55); text-decoration: none;
  font-size: 0.82rem;
  transition: transform 0.4s cubic-bezier(0.32,0.72,0,1),
              background 0.4s cubic-bezier(0.32,0.72,0,1),
              border-color 0.4s, color 0.4s,
              box-shadow 0.4s cubic-bezier(0.32,0.72,0,1);
}
.social-btn:hover {
  background: var(--saffron); color: #fff; border-color: var(--saffron);
  transform: translateY(-3px) scale(1.06);
  box-shadow: 0 8px 24px rgba(232,132,26,0.35);
}
.footer-certs { display: flex; gap: 0.45rem; margin-top: 1.1rem; flex-wrap: wrap; }
.cert-badge { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.08); border-radius: 0.5rem; padding: 0.35rem 0.65rem; font-size: 0.6rem; font-weight: 600; color: rgba(255,255,255,0.35); letter-spacing: 0.04em; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.06); padding-top: 1.4rem; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 0.75rem; }
.footer-copy { font-size: 0.72rem; color: rgba(255,255,255,0.55); }
.footer-legal { display: flex; gap: 1.1rem; }
.footer-legal a { font-size: 0.72rem; color: rgba(255,255,255,0.55); text-decoration: none; transition: color 0.25s; }
.footer-legal a:hover { color: rgba(255,255,255,0.85); }

/* ─── WHATSAPP FLOAT ─── */
.wa-btn {
  position: fixed; bottom: 1.65rem; right: 1.65rem; z-index: 80;
  width: 52px; height: 52px; background: #25D366; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 1.4rem; text-decoration: none;
  box-shadow: 0 8px 32px rgba(37,211,102,0.3);
  transition: transform 0.4s cubic-bezier(0.32,0.72,0,1), box-shadow 0.4s cubic-bezier(0.32,0.72,0,1);
  animation: wpulse 3s ease-in-out infinite;
}
.wa-btn:hover { transform: scale(1.12) translateY(-2px); box-shadow: 0 14px 44px rgba(37,211,102,0.45); animation: none; }
.wa-btn:active { transform: scale(0.96); }
.wa-tooltip {
  position: absolute; right: 62px; top: 50%; transform: translateY(-50%);
  background: var(--espresso); color: #fff; font-size: 0.7rem; font-weight: 600;
  padding: 0.35rem 0.75rem; border-radius: 9999px; white-space: nowrap;
  opacity: 0; pointer-events: none;
  transition: opacity 0.3s cubic-bezier(0.32,0.72,0,1), transform 0.3s cubic-bezier(0.32,0.72,0,1);
  transform: translateY(-50%) translateX(6px);
}
.wa-btn:hover .wa-tooltip { opacity: 1; transform: translateY(-50%) translateX(0); }
@keyframes wpulse {
  0%,100% { box-shadow: 0 8px 32px rgba(37,211,102,0.3); }
  50% { box-shadow: 0 8px 40px rgba(37,211,102,0.55), 0 0 0 10px rgba(37,211,102,0.06); }
}

/* ─── SCREEN READER ONLY ─── */
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* ─── FOCUS VISIBLE (WCAG 2.4.7) ─── */
:focus { outline: none; }
:focus-visible { outline: 2px solid var(--saffron); outline-offset: 3px; border-radius: 4px; }

.nav-links a:focus-visible { outline: 2px solid var(--saffron); border-radius: 9999px; }
.nav-cta:focus-visible { outline: 2px solid rgba(255,255,255,0.8); outline-offset: 3px; }
.hamburger:focus-visible { outline: 2px solid var(--saffron); border-radius: 8px; }

.tab-btn:focus-visible { outline: 2px solid var(--saffron); outline-offset: 2px; border-radius: 9999px; }
.btn-book:focus-visible { outline: 2px solid rgba(255,255,255,0.85); outline-offset: 2px; border-radius: 0.85rem; }
.btn-primary:focus-visible { outline: 2px solid rgba(255,255,255,0.8); outline-offset: 3px; border-radius: 9999px; }
.btn-ghost:focus-visible { outline: 2px solid rgba(255,255,255,0.8); outline-offset: 3px; }
.btn-search:focus-visible { outline: 2px solid rgba(255,255,255,0.8); outline-offset: 2px; }
.faq-q:focus-visible { outline: 2px solid var(--saffron); outline-offset: -2px; border-radius: 1.1rem; }
.wa-btn:focus-visible { outline: 2px solid #fff; outline-offset: 3px; }
.card-shell:focus-within { box-shadow: 0 0 0 2px var(--saffron); }
.view-all-link:focus-visible { outline: 2px solid var(--saffron); outline-offset: 3px; }
.blog-shell:focus-visible { outline: 2px solid var(--saffron); outline-offset: 3px; border-radius: var(--r-2xl); }
.social-btn:focus-visible { outline: 2px solid var(--saffron-lt); outline-offset: 2px; }
.footer-links a:focus-visible { outline: 2px solid rgba(255,255,255,0.6); outline-offset: 3px; border-radius: 3px; }
.footer-legal a:focus-visible { outline: 2px solid rgba(255,255,255,0.6); outline-offset: 3px; border-radius: 3px; }
.footer-contact-links a:focus-visible { outline: 2px solid rgba(255,255,255,0.6); outline-offset: 3px; border-radius: 3px; }

.form-group input:focus-visible,
.form-group select:focus-visible,
.form-group textarea:focus-visible {
  outline: 2px solid var(--saffron); outline-offset: 0;
  border-color: var(--saffron);
  box-shadow: 0 0 0 4px rgba(232,132,26,0.14);
}

/* Experience / exp cards as interactive elements */
.exp-card[role="button"]:focus-visible {
  outline: 2px solid rgba(255,255,255,0.85);
  outline-offset: 3px;
  border-radius: var(--r-xl);
}

/* ─── SCROLL REVEAL ─── */
.reveal {
  opacity: 0;
  transform: translateY(2.5rem);
  filter: blur(6px);
  transition: opacity 0.9s cubic-bezier(0.32,0.72,0,1),
              transform 0.9s cubic-bezier(0.32,0.72,0,1),
              filter 0.9s cubic-bezier(0.32,0.72,0,1);
}
.reveal.visible { opacity: 1; transform: none; filter: blur(0); }
.d1 { transition-delay: 0.1s; } .d2 { transition-delay: 0.2s; } .d3 { transition-delay: 0.3s; } .d4 { transition-delay: 0.4s; }

/* ─── VIEW ALL LINK ─── */
.view-all-link {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 0.82rem; font-weight: 600; color: var(--saffron-dk);
  text-decoration: none; margin-top: 2rem;
  padding: 0.55rem 1.1rem 0.55rem 0.85rem;
  border: 1px solid rgba(232,132,26,0.25);
  border-radius: 9999px;
  background: rgba(232,132,26,0.06);
  transition: all 0.35s cubic-bezier(0.32,0.72,0,1);
}
.view-all-link:hover {
  background: var(--saffron); color: #fff;
  border-color: var(--saffron);
  transform: translateX(2px);
}

/* ─── SECTION BACKGROUNDS ─── */
.bg-espresso { background: var(--espresso-2); }
.bg-cream-2 { background: var(--cream-2); }

/* Smooth section transitions — cream sections get a subtle radial depth */
.section:not(.bg-espresso):not(.bg-cream-2)::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0; height: 80px;
  background: linear-gradient(to bottom, transparent, rgba(26,17,8,0.025));
  pointer-events: none;
}
.section:not(.bg-espresso):not(.bg-cream-2) { position: relative; }

/* ─── CONTACT INFO CARDS ─── */
.contact-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.25rem; margin-bottom: 3rem; }
.info-card {
  background: var(--cream); border: 1px solid var(--border);
  border-radius: var(--r-xl); padding: 1.5rem;
  position: relative; overflow: hidden;
  transition: transform 0.5s cubic-bezier(0.32,0.72,0,1),
              box-shadow 0.5s cubic-bezier(0.32,0.72,0,1),
              border-color 0.5s;
}
.info-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--saffron), var(--saffron-lt));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.55s cubic-bezier(0.32,0.72,0,1);
}
.info-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(26,17,8,0.08);
  border-color: rgba(232,132,26,0.18);
}
.info-card:hover::before { transform: scaleX(1); }
.info-card:hover .info-icon {
  background: var(--forest);
  color: #fff;
  transform: rotate(-4deg) scale(1.08);
}
.info-icon {
  width: 40px; height: 40px; background: var(--forest-lt);
  border-radius: 0.75rem;
  display: flex; align-items: center; justify-content: center;
  color: var(--forest); margin-bottom: 0.9rem; font-size: 1.1rem;
  transition: background 0.4s cubic-bezier(0.32,0.72,0,1),
              color 0.4s cubic-bezier(0.32,0.72,0,1),
              transform 0.4s cubic-bezier(0.32,0.72,0,1);
}
.info-label { font-size: 0.65rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); margin-bottom: 0.3rem; }
.info-val { font-size: 0.9rem; font-weight: 600; color: var(--espresso); text-decoration: none; }
.info-val:hover { color: var(--saffron); }

/* ─── HERO BOOKING WIDGET (home only) ─── */
.home-hero {
  min-height: 100dvh;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  padding: 6.5rem 2rem 4rem;
  position: relative; overflow: hidden;
}
/* Decorative corner ornaments */
.home-hero::before,
.home-hero::after {
  content: '';
  position: absolute;
  width: 60px; height: 60px;
  border: 1px solid rgba(255,255,255,0.25);
  z-index: 1; pointer-events: none;
}
.home-hero::before {
  top: 6rem; left: 2rem;
  border-right: none; border-bottom: none;
  border-radius: 8px 0 0 0;
}
.home-hero::after {
  bottom: 1.5rem; right: 2rem;
  border-left: none; border-top: none;
  border-radius: 0 0 8px 0;
}
.home-hero-bg { position: absolute; inset: 0; }
.home-hero-bg img {
  width: 100%; height: 100%; object-fit: cover;
  transform: scale(1.12);
  will-change: transform;
  transition: none;
}
.home-hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background:
    linear-gradient(to bottom, rgba(26,17,8,0.55) 0%, rgba(26,17,8,0.25) 35%, rgba(26,17,8,0.65) 100%),
    linear-gradient(to right, rgba(26,17,8,0.15) 0%, transparent 50%);
}
.hero-content { position: relative; z-index: 1; display: flex; flex-direction: column; align-items: center; text-align: center; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 0.4rem;
  background: rgba(255,255,255,0.14); border: 1px solid rgba(255,255,255,0.28);
  border-radius: 9999px; padding: 0.32rem 0.82rem;
  font-size: 0.66rem; font-weight: 600; letter-spacing: 0.15em;
  text-transform: uppercase; color: rgba(255,255,255,0.9); margin-bottom: 1rem;
  text-shadow: none; backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.home-hero h1 {
  font-size: clamp(2.4rem, 5vw, 4.5rem); font-weight: 500; color: #fff;
  line-height: 1.1; margin-bottom: 1rem; max-width: 820px;
  text-shadow: 0 2px 32px rgba(0,0,0,0.35), 0 1px 4px rgba(0,0,0,0.2);
}
.home-hero h1 em { color: var(--saffron-lt); font-style: italic; }
.home-hero p {
  font-size: 1rem; color: rgba(255,255,255,0.82); max-width: 480px;
  line-height: 1.65; margin-bottom: 2.25rem;
  text-shadow: 0 1px 8px rgba(0,0,0,0.3);
}
.booking-shell {
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--r-3xl);
  padding: 0.45rem;
  width: 100%; max-width: 860px;
  backdrop-filter: blur(16px);
  transition: border-color 0.5s cubic-bezier(0.32,0.72,0,1),
              box-shadow 0.5s cubic-bezier(0.32,0.72,0,1),
              background 0.5s cubic-bezier(0.32,0.72,0,1);
}
.booking-shell:focus-within {
  border-color: rgba(232,132,26,0.5);
  background: rgba(255,255,255,0.18);
  box-shadow: 0 0 0 6px rgba(232,132,26,0.08),
              0 20px 60px rgba(0,0,0,0.18);
}
.booking-inner {
  background: rgba(253,251,247,0.97);
  border-radius: calc(var(--r-3xl) - 0.3rem);
  padding: 1.15rem 1.4rem;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.95),
              inset 0 -1px 0 rgba(26,17,8,0.04),
              0 1px 0 rgba(255,255,255,0.1);
}
.booking-label { font-size: 0.68rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); margin-bottom: 0.9rem; }
.booking-fields { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr auto; gap: 0.45rem; align-items: end; /* labels + fields + button bottom-align */ }
.field-grp { display: flex; flex-direction: column; gap: 0.28rem; }
.field-grp label { font-size: 0.62rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); }
.field-grp select, .field-grp input {
  background: var(--cream-2); border: 1px solid var(--border);
  border-radius: 0.7rem; padding: 0.65rem 0.85rem;
  font-family: 'Plus Jakarta Sans',sans-serif; font-size: 0.82rem;
  color: var(--espresso); outline: none; width: 100%;
  appearance: none; cursor: pointer;
  transition: border-color 0.3s cubic-bezier(0.32,0.72,0,1),
              box-shadow 0.3s cubic-bezier(0.32,0.72,0,1),
              background 0.3s cubic-bezier(0.32,0.72,0,1);
}
.field-grp select:focus, .field-grp input:focus {
  border-color: var(--saffron);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(232,132,26,0.12), 0 2px 8px rgba(232,132,26,0.08);
}
.btn-search {
  display: flex; align-items: center; gap: 0.45rem;
  background: var(--saffron); color: #fff; border: none;
  border-radius: 0.85rem; padding: 0.72rem 1.3rem;
  font-family: 'Plus Jakarta Sans',sans-serif; font-size: 0.84rem; font-weight: 600;
  cursor: pointer; white-space: nowrap; position: relative; overflow: hidden;
  box-shadow: 0 4px 16px rgba(232,132,26,0.28);
  transition: all 0.4s cubic-bezier(0.32,0.72,0,1);
}
.btn-search::after {
  content: '';
  position: absolute; top: -50%; left: -75%;
  width: 50%; height: 200%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.18), transparent);
  transform: skewX(-20deg);
  transition: left 0.7s cubic-bezier(0.32,0.72,0,1);
}
.btn-search:hover::after { left: 150%; }
.btn-search:hover { background: var(--saffron-dk); transform: scale(1.02); box-shadow: 0 8px 28px rgba(232,132,26,0.38); }
.btn-search:active { transform: scale(0.98); }
.hero-scroll {
  position: absolute; bottom: 1.85rem; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 0.4rem;
  font-size: 0.6rem; letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(255,255,255,0.55); z-index: 1;
  text-shadow: 0 1px 4px rgba(0,0,0,0.4);
}
.scroll-line {
  width: 1px; height: 36px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.7), transparent);
  animation: scrollpulse 2s cubic-bezier(0.32,0.72,0,1) infinite;
  position: relative;
}
.scroll-line::after {
  content: '';
  position: absolute; left: -2px; top: 0;
  width: 5px; height: 5px;
  background: var(--saffron-lt);
  border-radius: 50%;
  animation: scrolldot 2s cubic-bezier(0.32,0.72,0,1) infinite;
  box-shadow: 0 0 8px rgba(244,165,58,0.6);
}
@keyframes scrolldot {
  0% { transform: translateY(0); opacity: 0; }
  20% { opacity: 1; }
  80% { opacity: 1; }
  100% { transform: translateY(36px); opacity: 0; }
}
@keyframes scrollpulse { 0%,100% { opacity: 0.35; transform: scaleY(0.85); } 50% { opacity: 1; transform: scaleY(1); } }

/* ─── NEWSLETTER SECTION (blog.html) ─── */
.newsletter-section { background: var(--espresso-2); padding: 5rem 2rem; }
.newsletter-inner { max-width: 600px; margin: 0 auto; text-align: center; }
.newsletter-icon { width: 60px; height: 60px; background: rgba(232,132,26,0.15); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 1.25rem; font-size: 1.6rem; color: var(--saffron); }
.newsletter-heading { font-size: clamp(1.6rem, 3vw, 2.2rem); color: #fff; font-weight: 500; margin-bottom: 0.6rem; }
.newsletter-sub { font-size: 0.9rem; color: rgba(255,255,255,0.5); line-height: 1.7; margin-bottom: 2rem; }
.newsletter-form { width: 100%; }
.newsletter-field { display: flex; background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.14); border-radius: 9999px; overflow: hidden; transition: border-color 0.25s; }
.newsletter-field:focus-within { border-color: var(--saffron); }
.newsletter-field input { flex: 1; background: transparent; border: none; outline: none; padding: 0.82rem 1.4rem; color: #fff; font-family: 'Plus Jakarta Sans',sans-serif; font-size: 0.88rem; }
.newsletter-field input::placeholder { color: rgba(255,255,255,0.35); }
.newsletter-field .btn-primary { border-radius: 9999px; margin: 0.28rem; flex-shrink: 0; font-size: 0.82rem; padding: 0.65rem 1.2rem; }
.newsletter-note { margin-top: 0.85rem; font-size: 0.72rem; color: rgba(255,255,255,0.28); }

/* ─── FAQ LAYOUT (faq.html — two column) ─── */
.faq-layout { display: grid; grid-template-columns: 1fr 1.6fr; gap: clamp(40px, 6vw, 80px); align-items: start; }
.faq-left { position: sticky; top: 5.5rem; }
.faq-left .eyebrow { margin-bottom: 0.75rem; }
.faq-left .section-heading { margin-bottom: 0.65rem; }
.faq-left .section-sub { margin-bottom: 1.75rem; }
.faq-contact-ctas { display: flex; flex-direction: column; gap: 0.75rem; margin-bottom: 1.25rem; }
.faq-contact-btn { display: flex; align-items: center; gap: 0.9rem; padding: 1rem 1.1rem; border-radius: var(--r-xl); border: 1px solid var(--border); background: var(--cream); box-shadow: 0 2px 12px rgba(26,17,8,0.05); transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s; text-decoration: none; color: var(--espresso); }
.faq-contact-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(26,17,8,0.1); border-color: var(--saffron); }
.faq-contact-btn i { font-size: 1.4rem; flex-shrink: 0; }
.wa-contact-btn i { color: #25D366; }
.call-contact-btn i { color: var(--saffron); }
.faq-contact-btn-text { display: flex; flex-direction: column; }
.faq-contact-btn-text strong { font-size: 0.88rem; font-weight: 700; color: var(--espresso); }
.faq-contact-btn-text span { font-size: 0.75rem; color: var(--muted); }
.faq-hours-note { display: flex; align-items: center; gap: 0.45rem; font-size: 0.78rem; color: var(--muted); }
.faq-hours-note i { color: var(--saffron); }

/* FAQ accordion extended — list support (max-height overrides base 220px for longer answers on faq.html) */
.faq-item.open .faq-a { max-height: 800px; padding: 0 1.2rem 1.2rem; }
.faq-a p { margin-bottom: 0.6rem; }
.faq-a p:last-child { margin-bottom: 0; }
.faq-a ul { margin: 0.4rem 0 0.6rem 1.1rem; list-style: disc; display: flex; flex-direction: column; gap: 0.3rem; }
.faq-a ul li strong { color: var(--espresso); }
.faq-a a { color: var(--saffron); text-decoration: underline; text-underline-offset: 2px; }

/* ─── CONTACT OPTIONS (faq.html — "Still Have Questions?") ─── */
.contact-options-section { background: var(--cream-2); }
.contact-options-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.25rem; }
.contact-option-card { background: var(--cream); border: 1px solid var(--border); border-radius: var(--r-2xl); padding: 2rem 1.65rem; text-align: center; box-shadow: 0 2px 12px rgba(26,17,8,0.05); transition: transform 0.28s, box-shadow 0.28s, border-color 0.28s; }
.contact-option-card:hover { transform: translateY(-5px); box-shadow: 0 16px 48px rgba(26,17,8,0.1); border-color: var(--saffron); }
.contact-option-icon { width: 60px; height: 60px; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 1.1rem; font-size: 1.6rem; }
.call-icon  { background: rgba(232,132,26,0.1); color: var(--saffron); }
.wa-icon    { background: rgba(37,211,102,0.1); color: #25D366; }
.email-icon { background: rgba(58,107,37,0.1);  color: var(--forest); }
.contact-option-card h3 { font-size: 1.05rem; margin-bottom: 0.5rem; }
.contact-option-card p  { font-size: 0.82rem; line-height: 1.65; margin-bottom: 1.1rem; }
.contact-option-link { display: inline-flex; align-items: center; gap: 0.4rem; font-size: 0.82rem; font-weight: 700; color: var(--saffron); border-bottom: 1.5px solid rgba(232,132,26,0.3); padding-bottom: 1px; transition: border-color 0.2s, gap 0.2s; word-break: break-all; }
.contact-option-link:hover { border-color: var(--saffron); gap: 0.7rem; }
.contact-option-note { display: block; margin-top: 0.55rem; font-size: 0.72rem; color: var(--muted); font-style: italic; }

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .property-grid { grid-template-columns: repeat(2,1fr); }
  .why-grid { grid-template-columns: repeat(2,1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .itin-layout { grid-template-columns: 1fr; gap: 2.5rem; }
  .itin-visual { position: static; }
  .exp-bento { grid-template-columns: repeat(6,1fr); }
  .exp-card.c1 { grid-column: span 3; grid-row: span 2; }
  .exp-card.c2,.exp-card.c3,.exp-card.c4,.exp-card.c5 { grid-column: span 3; }
  .exp-card.c6 { grid-column: span 6; }
  .faq-layout { grid-template-columns: 1fr; }
  .faq-left { position: static; }
  .reviews-grid { grid-template-columns: repeat(2,1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-options-grid { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 768px) {
  .nav-links, .nav-phone, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .section { padding: 4rem 1.25rem; }
  .home-hero { padding: 6rem 1.25rem 3.5rem; }
  .page-hero { padding: 6rem 1.25rem 3rem; }
  .booking-fields { grid-template-columns: 1fr 1fr; }
  .booking-fields .btn-search { grid-column: span 2; }
  .property-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .contact-options-grid { grid-template-columns: 1fr; }
  .newsletter-field { flex-direction: column; border-radius: var(--r-xl); padding: 0.4rem; gap: 0.35rem; }
  .newsletter-field input { border-radius: var(--r-lg); padding: 0.75rem 1rem; }
  .newsletter-field .btn-primary { border-radius: var(--r-lg); margin: 0; width: 100%; justify-content: center; }
  .faq-contact-ctas { flex-direction: row; flex-wrap: wrap; }
  .stats-bar-inner { grid-template-columns: repeat(2,1fr); }
  .stat-num { font-size: 2rem; }
  .stat-label { font-size: 0.8rem; }
  .exp-bento { grid-template-columns: 1fr; }
  .exp-card.c1,.exp-card.c2,.exp-card.c3,.exp-card.c4,.exp-card.c5 { grid-column: span 1; min-height: 200px; }
  .exp-card.c6 { grid-column: span 1; min-height: 200px; }
  .gallery-grid { grid-template-columns: repeat(2,1fr); grid-auto-rows: 140px; }
  .g-item.g1,.g-item.g2,.g-item.g3,.g-item.g4,.g-item.g5,.g-item.g6,.g-item.g7 { grid-column: span 1; grid-row: span 1; }
  .footer-top { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .form-grid { grid-template-columns: 1fr; }
  .form-group.full { grid-column: span 1; }
  .itin-img-inner { height: 260px; }
  .contact-grid { grid-template-columns: 1fr; }
  nav { width: calc(100% - 1.5rem); top: 0.85rem; }
}
