/* ============================================================
   Dandeli Resorts Booking — style.css
   Theme: champagne gold + soft charcoal on warm whites
   ============================================================ */

:root {
  color-scheme: light;
  --white: #FFFFFF;
  --warm: #FAF8F4;
  --porcelain: #F7F7F5;
  --mist: #EAF3F8;
  --gold: #C9A76A;
  --gold-deep: #B8904F;
  --gold-readable: #9C7638;
  --charcoal: #222222;
  --grey: #6B7280;
  --heading: #1F1F1F;
  --heading-2: #2A2A2A;
  --body: #333333;
  --muted: #8A8F98;
  --link: #4F7F9F;
  --border: #E5E7EB;
  /* metallic champagne sheen: light highlight -> gold -> deep gold */
  --gold-sheen: linear-gradient(120deg, #EAD4A6 0%, #C9A76A 46%, #B8904F 82%, #E4CB98 100%);
  --gold-sheen-dark: linear-gradient(135deg, #D8BC85 0%, #B8904F 60%, #9C7638 100%);
  --wa: #C9A76A;
  --wa-dark: #B8904F;
  --shadow: 0 18px 44px rgba(34, 34, 34, 0.10);
  --shadow-sm: 0 6px 20px rgba(34, 34, 34, 0.06);
  --font-head: "Cormorant Garamond", "Times New Roman", Georgia, serif;
  --font-body: "Jost", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --ease-premium: cubic-bezier(.22, 1, .36, 1);
}

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

html { scroll-behavior: smooth; scroll-padding-top: 82px; }

body {
  font-family: var(--font-body);
  color: var(--body);
  background: var(--warm);
  line-height: 1.7;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}

/* ---------- Loading screen ---------- */
.site-loader { display: none; }
.js body.is-loading { overflow: hidden; }
.js .site-loader {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .45rem;
  color: var(--white);
  background:
    radial-gradient(circle at 50% 42%, rgba(201, 167, 106, .12), transparent 30%),
    var(--heading);
  opacity: 1;
  visibility: visible;
  transition: opacity .55s ease, visibility .55s ease;
}
.js .site-loader.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.loader-orbit {
  width: 104px;
  height: 104px;
  display: grid;
  place-items: center;
  animation: loader-turn 1.15s cubic-bezier(.65, 0, .35, 1) infinite;
}
.loader-icon {
  width: 48px;
  height: 92px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.loader-icon img {
  width: auto;
  height: 120px;
  max-width: none;
  flex: none;
  transform: translateX(-5px);
}
.loader-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1;
  animation: loader-name-in .8s var(--ease-premium) .12s both;
}
.loader-brand strong {
  font-family: var(--font-head);
  font-size: clamp(2rem, 5vw, 2.6rem);
  font-weight: 500;
  letter-spacing: .03em;
}
.loader-brand span {
  margin-top: .7rem;
  color: var(--gold);
  font-size: .63rem;
  font-weight: 500;
  letter-spacing: .42em;
  text-transform: uppercase;
}
.loader-line {
  width: 96px;
  height: 1px;
  margin-top: 1.15rem;
  background: var(--gold);
  transform-origin: center;
  animation: loader-line-pulse 1.15s ease-in-out infinite;
}
@keyframes loader-turn { to { transform: rotate(360deg); } }
@keyframes loader-name-in {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: none; }
}
@keyframes loader-line-pulse {
  0%, 100% { transform: scaleX(.25); opacity: .4; }
  50% { transform: scaleX(1); opacity: 1; }
}

.skip-link {
  position: fixed;
  left: 1rem;
  top: 1rem;
  z-index: 1000;
  padding: .8rem 1rem;
  color: var(--white);
  background: var(--charcoal);
  border: 2px solid var(--gold);
  text-decoration: none;
  transform: translateY(-160%);
  transition: transform .2s ease;
}
.skip-link:focus { transform: none; }

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

.container {
  width: min(1180px, 92%);
  margin-inline: auto;
}
.container.narrow { width: min(820px, 92%); }

.center { text-align: center; margin-top: 3rem; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  padding: .9rem 2rem;
  border-radius: 2px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: .8rem;
  letter-spacing: 2.2px;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background .22s ease, color .22s ease, border-color .22s ease, transform .22s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn .ico { width: 1.2em; height: 1.2em; flex: none; }

.btn-primary { background: var(--gold-sheen); background-size: 160% 160%; color: var(--charcoal); }
.btn-primary:hover { background: var(--gold-sheen-dark); background-size: 160% 160%; box-shadow: 0 10px 26px rgba(184, 144, 79, .34); }

.btn-whatsapp { background: var(--charcoal); color: var(--white); }
.btn-whatsapp .ico { color: var(--wa); }
.btn-whatsapp:hover { background: #222222; }

.btn-ghost { background: transparent; color: var(--charcoal); border-color: var(--charcoal); }
.btn-ghost:hover { background: var(--charcoal); color: var(--white); }

.btn-light { background: var(--white); color: var(--charcoal); }
.btn-light:hover { background: var(--gold); color: var(--charcoal); }

a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible,
textarea:focus-visible, summary:focus-visible {
  outline: 3px solid var(--charcoal);
  outline-offset: 3px;
  box-shadow: 0 0 0 5px var(--white);
}

.btn-lg { padding: 1.05rem 2.5rem; font-size: .84rem; }
.btn-sm { padding: .55rem 1.15rem; font-size: .72rem; letter-spacing: 1.8px; }
.btn-block { width: 100%; }

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  padding: .85rem 0;
  transition: background .25s ease, box-shadow .25s ease, padding .25s ease, border-color .25s ease;
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  background: rgba(250, 248, 244, .97);
  backdrop-filter: blur(12px);
  border-bottom-color: var(--border);
  padding: .5rem 0;
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  text-decoration: none;
  color: var(--white);
  transition: color .25s ease;
}
.site-header.scrolled .brand { color: var(--charcoal); }
.brand-logo {
  display: block;
  width: auto;
  height: 44px;
  max-width: min(180px, 48vw);
  object-fit: contain;
  transition: filter .25s ease, opacity .25s ease, height .25s ease;
}
.site-header.scrolled .brand-logo { height: 40px; }
.site-header.scrolled .brand-logo { filter: invert(1); }
.brand-icon { width: 32px; height: 32px; color: var(--gold); }
.brand-text {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1.5rem;
  line-height: 1;
  letter-spacing: .5px;
}
.brand-text em {
  font-family: var(--font-body);
  font-style: normal;
  font-weight: 500;
  color: var(--gold);
  display: block;
  font-size: .62rem;
  letter-spacing: 3.4px;
  text-transform: uppercase;
  margin-top: .3rem;
}

.main-nav { display: flex; align-items: center; gap: 1.7rem; }
.nav-link {
  color: rgba(255, 255, 255, .9);
  text-decoration: none;
  font-weight: 400;
  font-size: .82rem;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  position: relative;
  padding: .25rem 0;
  transition: color .25s ease;
}
.nav-link::after {
  content: "";
  position: absolute;
  left: 0; bottom: -3px;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width .25s ease;
}
.nav-link:hover::after, .nav-link.active::after { width: 100%; }
.nav-link:hover, .nav-link.active { color: var(--gold); }
.site-header.scrolled .nav-link { color: var(--charcoal); }
.site-header.scrolled .nav-link:hover,
.site-header.scrolled .nav-link.active { color: var(--charcoal); }
.nav-cta { margin-left: .9rem; padding: .62rem 1.35rem; font-size: .72rem; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: 0;
  cursor: pointer;
  padding: .5rem;
  z-index: 110;
}
.nav-toggle span {
  width: 26px; height: 2px;
  background: var(--white);
  transition: transform .25s ease, opacity .25s ease, background .25s ease;
}
.site-header.scrolled .nav-toggle span, .nav-open .nav-toggle span { background: var(--charcoal); }
.nav-open .nav-toggle span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  color: var(--white);
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  background-size: cover;
  background-position: center;
  transform: scale(1.06);
  animation: heroZoom 12s var(--ease-premium) forwards;
}
@keyframes heroZoom { to { transform: scale(1); } }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(34, 34, 34, .58) 0%, rgba(34, 34, 34, .30) 45%, rgba(34, 34, 34, .74) 100%);
}
.hero-content {
  position: relative;
  z-index: 1;
  padding: 9rem 0 5rem;
  max-width: 860px;
}
.hero-kicker {
  display: inline-block;
  border: 1px solid rgba(255, 255, 255, .38);
  padding: .5rem 1.4rem;
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .95);
  margin-bottom: 1.8rem;
}
.hero h1 {
  font-family: var(--font-head);
  font-size: clamp(2.8rem, 7vw, 5rem);
  font-weight: 500;
  line-height: 1.06;
  margin-bottom: 1.2rem;
  text-shadow: 0 4px 28px rgba(34, 34, 34, .35);
}
.gold-shine,
.hero h1 .accent {
  font-style: italic;
  color: var(--gold-deep);
  background: var(--gold-sheen);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero-sub {
  font-size: clamp(1rem, 2vw, 1.15rem);
  font-weight: 300;
  max-width: 540px;
  color: rgba(255, 255, 255, .92);
  margin-bottom: 2.4rem;
  letter-spacing: .3px;
}
.hero-ctas { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 3.4rem; }

.hero-stats {
  display: flex;
  list-style: none;
  flex-wrap: wrap;
}
.hero-stats li {
  display: flex;
  flex-direction: column;
  padding: .2rem 2.4rem;
  border-left: 1px solid rgba(255, 255, 255, .28);
}
.hero-stats li:first-child { padding-left: 0; border-left: 0; }
.hero-stats strong {
  font-family: var(--font-head);
  font-weight: 500;
  font-size: 2.1rem;
  color: var(--gold);
  line-height: 1.1;
}
.hero-stats span {
  font-size: .7rem;
  letter-spacing: 2.4px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .78);
  margin-top: .25rem;
}

/* ---------- Sections ---------- */
.section { padding: 5.75rem 0; }
.section-alt { background: var(--porcelain); }

.section-head { text-align: center; max-width: 680px; margin: 0 auto 3.2rem; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .9rem;
  color: var(--charcoal);
  font-weight: 500;
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: 4px;
  margin-bottom: 1rem;
}
.eyebrow::before, .eyebrow::after {
  content: "";
  width: 2.4rem;
  height: 1px;
  background: var(--gold);
  opacity: .6;
}
.section-head h2 {
  font-family: var(--font-head);
  font-size: clamp(2.2rem, 4.5vw, 3.2rem);
  font-weight: 500;
  color: var(--heading);
  margin-bottom: .8rem;
  line-height: 1.12;
}
.section-head p { color: var(--grey); font-size: 1.02rem; font-weight: 300; letter-spacing: .3px; }
.section-head.light h2 { color: var(--white); }
.section-head.light p { color: rgba(255, 255, 255, .72); }
.section-head.light .eyebrow { color: var(--gold); }

/* ---------- Package cards ---------- */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 2rem;
}
/* Balanced 2x2 block for groups of four cards (keeps card size, avoids a lone orphan card) */
.card-grid.grid-2up {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 764px;
  margin-inline: auto;
}

.pkg-card {
  background: var(--white);
  border: 1px solid var(--border);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.pkg-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  border-color: rgba(201, 167, 106, .5);
}

.pkg-media { position: relative; aspect-ratio: 16 / 10; overflow: hidden; }
.pkg-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}
.pkg-card:hover .pkg-media img { transform: scale(1.05); }

.pkg-badge {
  position: absolute;
  top: 1rem; left: 1rem;
  background: rgba(255, 255, 255, .93);
  color: var(--charcoal);
  font-size: .62rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 2.2px;
  padding: .4rem .9rem;
  border-radius: 2px;
}
.badge-gold { background: var(--gold); color: var(--charcoal); }

.pkg-body {
  padding: 1.7rem 1.7rem 1.8rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.pkg-body h3 {
  font-family: var(--font-head);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--heading-2);
  margin-bottom: .45rem;
  line-height: 1.2;
}
.pkg-desc { color: var(--grey); font-size: .93rem; font-weight: 300; margin-bottom: 1.2rem; flex: 1; letter-spacing: .2px; }

.pkg-meta {
  margin-bottom: 1.3rem;
  padding-top: 1.1rem;
  border-top: 1px solid var(--border);
}
.pkg-price {
  font-family: var(--font-head);
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--gold-readable);
}
.pkg-price small, .pkg-price .from {
  -webkit-text-fill-color: var(--grey);
  color: var(--grey);
}
.pkg-price small {
  font-size: .68rem;
  font-weight: 400;
  color: var(--grey);
  font-family: var(--font-body);
  letter-spacing: 1.6px;
  text-transform: uppercase;
}

.pkg-actions { display: flex; gap: .8rem; }
.pkg-actions .btn { flex: 1; padding-inline: .5rem; }

.featured-pkg { border-color: var(--gold); box-shadow: 0 0 0 1px var(--gold); }

/* ---------- Inclusions ---------- */
.include-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.8rem;
}
.include-card {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 2.4rem 1.9rem;
  transition: transform .3s ease, box-shadow .3s ease;
}
.include-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-sm); }
.include-card h3 {
  font-family: var(--font-head);
  color: var(--heading-2);
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: .55rem;
}
.include-card p { color: var(--grey); font-size: .93rem; font-weight: 300; }

.chip-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin-top: .4rem;
}
.chip-list li {
  background: var(--porcelain);
  border: 1px solid var(--border);
  color: var(--grey);
  font-size: .7rem;
  font-weight: 500;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  padding: .32rem .75rem;
  border-radius: 2px;
}

/* ---------- Featured stays ---------- */
.featured-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}
.feat-card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.feat-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  border-color: rgba(201, 167, 106, .5);
}
.feat-card img { aspect-ratio: 16 / 10; object-fit: cover; width: 100%; }
.feat-body { padding: 1.5rem 1.6rem 1.7rem; }
.feat-body h3 {
  font-family: var(--font-head);
  color: var(--heading-2);
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: .3rem;
  line-height: 1.2;
}
.feat-body p { color: var(--grey); font-size: .92rem; font-weight: 300; margin-bottom: 1.2rem; }
.feat-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .8rem;
  padding-top: 1.1rem;
  border-top: 1px solid var(--border);
}

.is-popular { border-color: var(--gold); box-shadow: 0 0 0 1px var(--gold); }
.pop-tag {
  position: absolute;
  top: 1rem; right: 1rem;
  z-index: 1;
  background: var(--gold);
  color: var(--charcoal);
  font-size: .62rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 2.2px;
  padding: .4rem .9rem;
  border-radius: 2px;
}

/* ---------- Sightseeing ---------- */
.section-forest {
  background:
    radial-gradient(1100px 480px at 82% -8%, rgba(201, 167, 106, .14), transparent 60%),
    var(--charcoal);
  color: var(--white);
}
.sight-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 1.5rem;
}
.sight-card {
  background: rgba(255, 255, 255, .035);
  border: 1px solid rgba(255, 255, 255, .12);
  padding: 2rem 1.6rem;
  transition: background .25s ease, transform .25s ease, border-color .25s ease;
}
.sight-card:hover {
  background: rgba(255, 255, 255, .07);
  border-color: rgba(201, 167, 106, .55);
  transform: translateY(-4px);
}
.sight-card h3 {
  font-family: var(--font-head);
  font-size: 1.35rem;
  font-weight: 600;
  margin-bottom: .5rem;
  color: var(--white);
}
.sight-card p { font-size: .88rem; font-weight: 300; color: rgba(255, 255, 255, .68); letter-spacing: .2px; }

/* ---------- Steps ---------- */
.steps {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.8rem;
}
.step {
  position: relative;
  background: var(--white);
  border: 1px solid var(--border);
  padding: 2.8rem 1.7rem 2rem;
  transition: transform .3s ease, box-shadow .3s ease;
}
.step:hover { transform: translateY(-4px); box-shadow: var(--shadow-sm); }
.step-num {
  position: absolute;
  top: -1.25rem; left: 1.6rem;
  width: 2.5rem; height: 2.5rem;
  display: grid;
  place-items: center;
  background: var(--white);
  border: 1px solid var(--gold);
  color: var(--charcoal);
  font-family: var(--font-head);
  font-weight: 600;
  border-radius: 50%;
  font-size: 1.25rem;
}
.step h3 {
  font-family: var(--font-head);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--heading-2);
  margin-bottom: .5rem;
}
.step p { color: var(--grey); font-size: .92rem; font-weight: 300; }

/* ---------- Enquiry ---------- */
#contact.section-alt { background: var(--mist); }

.enquiry-wrap {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3.5rem;
  align-items: start;
}
.enquiry-info .eyebrow::after { display: none; }
.enquiry-info .eyebrow::before { order: 2; }
.enquiry-info h2 {
  font-family: var(--font-head);
  font-size: clamp(2.2rem, 4.5vw, 3rem);
  font-weight: 500;
  color: var(--heading);
  margin-bottom: .8rem;
  line-height: 1.1;
}
.enquiry-info > p { color: var(--charcoal); font-weight: 300; margin-bottom: 2.2rem; letter-spacing: .2px; }

.contact-list { list-style: none; display: grid; gap: 1.3rem; margin-bottom: 2.2rem; }
.contact-list li { display: flex; gap: 1rem; align-items: flex-start; }
.c-ico {
  width: 2.9rem; height: 2.9rem;
  display: grid; place-items: center;
  background: var(--white);
  border: 1px solid var(--gold);
  border-radius: 50%;
  color: var(--charcoal);
  flex: none;
}
.c-ico svg { width: 1.25rem; height: 1.25rem; }
.contact-list strong {
  display: block;
  font-size: .68rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 2.2px;
  color: var(--charcoal);
  margin-bottom: .1rem;
}
.contact-list a, .contact-list div > span {
  color: var(--charcoal);
  font-weight: 500;
  text-decoration: none;
  font-size: 1.08rem;
}
.contact-list a:hover { color: var(--charcoal); text-decoration: underline; text-decoration-color: var(--gold-deep); }

.enquiry-info > p.quick-cta { font-weight: 400; color: var(--charcoal); }
.quick-cta a { color: var(--link); text-decoration: underline; text-decoration-color: var(--gold-deep); font-weight: 500; }
.quick-cta a:hover { text-decoration: underline; }

.enquiry-form {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 2.4rem;
  box-shadow: var(--shadow-sm);
  display: grid;
  gap: 1.2rem;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
.enquiry-form label {
  display: grid;
  gap: .45rem;
  font-size: .68rem;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--grey);
}
.enquiry-form input,
.enquiry-form select,
.enquiry-form textarea {
  font-family: var(--font-body);
  font-size: .98rem;
  font-weight: 400;
  padding: .78rem .95rem;
  border: 1px solid var(--border);
  border-radius: 2px;
  background: var(--warm);
  color: var(--charcoal);
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
  width: 100%;
}
.enquiry-form input:focus,
.enquiry-form select:focus,
.enquiry-form textarea:focus {
  background: var(--white);
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 167, 106, .18);
}
.enquiry-form textarea { resize: vertical; }
.form-note { font-size: .78rem; font-weight: 300; color: var(--grey); text-align: center; letter-spacing: .3px; }

/* ---------- Gallery ---------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 210px;
  grid-auto-flow: dense;
  gap: 1rem;
}
.g-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  border: 1px solid var(--border);
}
.g-item:focus-visible {
  outline: 3px solid var(--charcoal);
  outline-offset: 4px;
  box-shadow: 0 0 0 6px var(--white);
}
.g-big { grid-column: span 2; grid-row: span 2; }
.g-wide { grid-column: span 2; }
.g-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.g-item:hover img { transform: scale(1.06); }
.g-item figcaption {
  position: absolute;
  inset: auto 0 0 0;
  padding: 1.8rem 1.1rem .85rem;
  background: linear-gradient(transparent, rgba(34, 34, 34, .82));
  color: var(--white);
  font-size: .7rem;
  font-weight: 500;
  letter-spacing: 2.4px;
  text-transform: uppercase;
}

/* ---------- FAQ ---------- */
.faq-list { display: grid; gap: 0; border: 1px solid var(--border); background: var(--white); }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item:last-child { border-bottom: 0; }
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 1.35rem 3.4rem 1.35rem 1.6rem;
  font-family: var(--font-head);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--charcoal);
  position: relative;
  user-select: none;
  transition: color .2s ease;
}
.faq-item summary:hover { color: var(--charcoal); text-decoration: underline; text-decoration-color: var(--gold-deep); }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 1.5rem; top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 1.5rem;
  color: var(--gold);
  transition: transform .2s ease;
}
.faq-item[open] summary::after { content: "−"; }
.faq-item p { padding: 0 1.6rem 1.4rem; color: var(--grey); font-weight: 300; letter-spacing: .2px; }
.faq-item p a { color: var(--link); font-weight: 500; text-decoration-color: var(--gold-deep); }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--charcoal);
  color: rgba(255, 255, 255, .72);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 2.6rem;
  padding: 4.2rem 0 3rem;
}
.brand.light { color: var(--white); }
.footer-brand .brand-logo { height: 46px; max-width: 190px; }
.footer-brand p { margin-top: 1rem; font-size: .92rem; font-weight: 300; max-width: 300px; letter-spacing: .2px; }

.site-footer h3 {
  color: var(--gold);
  font-family: var(--font-body);
  font-weight: 500;
  font-size: .72rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
}
.footer-links, .footer-contact { display: flex; flex-direction: column; gap: .6rem; }
.footer-links a, .footer-contact a {
  color: rgba(255, 255, 255, .72);
  text-decoration: none;
  font-size: .93rem;
  font-weight: 300;
  letter-spacing: .4px;
  transition: color .2s ease;
}
.footer-links a:hover, .footer-contact a:hover { color: var(--gold); }
.footer-contact span { font-size: .93rem; font-weight: 300; letter-spacing: .4px; }

.footer-cta .btn-whatsapp { background: var(--gold); color: var(--charcoal); }
.footer-cta .btn-whatsapp .ico { color: var(--charcoal); }
.footer-cta .btn-whatsapp:hover { background: var(--gold-deep); }

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .1);
  padding: 1.2rem 0;
  font-size: .8rem;
  font-weight: 300;
  letter-spacing: .6px;
  color: var(--muted);
}

/* ---------- Floating WhatsApp ---------- */
.wa-float {
  position: fixed;
  right: 1.5rem; bottom: 1.5rem;
  z-index: 90;
  width: 3.5rem; height: 3.5rem;
  border-radius: 50%;
  background: var(--wa);
  color: var(--white);
  display: grid;
  place-items: center;
  box-shadow: 0 10px 28px rgba(184, 144, 79, .4);
  transition: transform .2s ease, box-shadow .2s ease;
}
.wa-float:hover { transform: scale(1.07); box-shadow: 0 12px 34px rgba(184, 144, 79, .55); }
.wa-float svg { width: 1.9rem; height: 1.9rem; }

/* ---------- Lightbox ---------- */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(34, 34, 34, .94);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 2rem;
}
.lightbox[hidden] { display: none; }
.lightbox img {
  max-width: min(92vw, 1100px);
  max-height: 78vh;
  box-shadow: 0 24px 70px rgba(34, 34, 34, .55);
}
.lb-caption {
  color: var(--white);
  margin-top: 1.2rem;
  font-weight: 400;
  font-size: .78rem;
  letter-spacing: 2.6px;
  text-transform: uppercase;
}
.lb-close, .lb-prev, .lb-next {
  position: absolute;
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, .35);
  cursor: pointer;
  border-radius: 50%;
  width: 2.9rem; height: 2.9rem;
  font-size: 1.5rem;
  font-weight: 300;
  line-height: 1;
  display: grid;
  place-items: center;
  transition: background .2s ease, border-color .2s ease;
}
.lb-close:hover, .lb-prev:hover, .lb-next:hover { background: rgba(255, 255, 255, .12); border-color: var(--gold); }
.lb-close { top: 1.4rem; right: 1.4rem; }
.lb-prev { left: 1.4rem; top: 50%; transform: translateY(-50%); }
.lb-next { right: 1.4rem; top: 50%; transform: translateY(-50%); }

/* ---------- Reveal animation ---------- */
.reveal {
  opacity: 1;
  transform: none;
  transition: opacity .7s ease, transform .7s ease;
}
.js .reveal { opacity: 0; transform: translateY(24px); }
.js .reveal.visible { opacity: 1; transform: none; }
/* Failsafe: if the main script never runs, show everything anyway */
html.sb-fallback .reveal { opacity: 1 !important; transform: none !important; }
@media (prefers-reduced-motion: reduce) {
  .js .reveal { opacity: 1; transform: none; transition: none; }
  .hero-bg { animation: none; }
  html { scroll-behavior: auto; }
}

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 1024px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 190px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

/* Keep three-card collections balanced across common laptop widths. */
@media (min-width: 861px) and (max-width: 1100px) {
  .card-grid:not(.grid-2up) {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.25rem;
  }
  .card-grid:not(.grid-2up) .pkg-body { padding-inline: 1.25rem; }
  .card-grid:not(.grid-2up) .pkg-actions { gap: .55rem; }
  .card-grid:not(.grid-2up) .pkg-actions .btn {
    font-size: .68rem;
    letter-spacing: 1.5px;
  }
}

@media (max-width: 1080px) {
  .nav-toggle { display: flex; }
  .main-nav {
    position: fixed;
    inset: 0 0 0 auto;
    width: min(320px, 82vw);
    background: var(--warm);
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 1.8rem;
    padding: 2rem;
    transform: translateX(100%);
    transition: transform .3s ease;
    box-shadow: -14px 0 44px rgba(34, 34, 34, .16);
    z-index: 105;
  }
  .nav-open .main-nav { transform: translateX(0); }
  .main-nav .nav-link { color: var(--charcoal); font-size: 1rem; }
  .nav-cta { margin-left: 0; }

  .enquiry-wrap { grid-template-columns: 1fr; gap: 2.6rem; }
  .hero-stats li { padding: .2rem 1.5rem; }
}

@media (max-width: 640px) {
  .section { padding: 4.2rem 0; }
  .card-grid { grid-template-columns: 1fr; }
  .card-grid.grid-2up { grid-template-columns: 1fr; max-width: 440px; }
  .form-row { grid-template-columns: 1fr; }
  .gallery-grid { gap: .7rem; grid-auto-rows: 140px; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; padding: 3rem 0 2.2rem; }
  .hero-content { padding-top: 7.5rem; }
  .hero-ctas .btn { flex: 1; }
  .pkg-actions { flex-direction: column; }
  .hero-stats { gap: 1rem 0; }
  .hero-stats li { padding: .2rem 1.2rem; }
  .hero-stats li:nth-child(3) { border-left: 0; padding-left: 0; }
}

/* ============================================================
   Animations & polish
   ============================================================ */

/* Scroll progress hairline */
.scroll-progress {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 2px;
  z-index: 120;
  background: transparent;
  pointer-events: none;
}
.scroll-progress span {
  display: block;
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--gold), var(--gold-deep));
}

/* Hero entrance choreography */
@keyframes riseIn {
  from { opacity: 0; transform: translateY(30px); filter: blur(5px); }
  to   { opacity: 1; transform: translateY(0);    filter: blur(0); }
}
.hero-kicker,
.hero-sub,
.hero-ctas,
.hero-stats li,
.scroll-cue { animation: riseIn .78s var(--ease-premium) both; }
.hero-kicker   { animation-delay: .06s; }
.hero-sub      { animation-delay: .24s; }
.hero-ctas     { animation-delay: .32s; }
.hero-stats li:nth-child(1) { animation-delay: .42s; }
.hero-stats li:nth-child(2) { animation-delay: .49s; }
.hero-stats li:nth-child(3) { animation-delay: .56s; }
.hero-stats li:nth-child(4) { animation-delay: .63s; }
.scroll-cue    { animation-delay: .72s; }

/* Keep the LCP heading immediately paintable; motion lives around it. */
.hero h1 .accent {
  color: var(--gold);
  background: none;
  -webkit-text-fill-color: currentColor;
}

/* Scroll cue */
.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 2rem;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .7rem;
  text-decoration: none;
}
.cue-label {
  color: rgba(255, 255, 255, .75);
  font-size: .62rem;
  font-weight: 500;
  letter-spacing: 3.5px;
  text-transform: uppercase;
}
.cue-line {
  position: relative;
  width: 1px;
  height: 54px;
  background: rgba(255, 255, 255, .3);
  overflow: hidden;
}
.cue-line::after {
  content: "";
  position: absolute;
  left: 0; top: -30%;
  width: 100%;
  height: 30%;
  background: var(--gold);
  animation: cueDrop 2s ease-in-out infinite;
}
@keyframes cueDrop {
  0%   { top: -30%; }
  60%  { top: 100%; }
  100% { top: 100%; }
}

/* ---------- Booking enquiry modal ---------- */
.booking-modal {
  border: 0;
  padding: 0;
  margin: auto;
  width: min(440px, 92vw);
  max-height: calc(100vh - 2rem);
  border-radius: 12px;
  background: var(--white);
  color: var(--body);
  box-shadow: var(--shadow);
  overflow-y: auto;
}
.booking-modal::backdrop {
  background: rgba(20, 18, 14, .55);
  -webkit-backdrop-filter: blur(3px);
  backdrop-filter: blur(3px);
}
.bm-form { position: relative; display: grid; gap: 1rem; padding: 2.1rem 1.7rem 1.7rem; }
.bm-close {
  position: absolute; top: .5rem; right: .7rem;
  background: none; border: 0; padding: .2rem .5rem;
  font-size: 1.7rem; line-height: 1; color: var(--grey); cursor: pointer;
}
.bm-close:hover { color: var(--charcoal); }
.bm-title { font-family: var(--font-head); font-size: 1.75rem; font-weight: 600; color: var(--heading); line-height: 1.1; }
.bm-sub { font-size: .9rem; color: var(--grey); margin-top: -.45rem; }
.bm-field { display: grid; gap: .35rem; }
.bm-field > span { font-size: .7rem; letter-spacing: 1.6px; text-transform: uppercase; color: var(--grey); font-weight: 500; }
.bm-field input {
  font-family: var(--font-body); font-size: .95rem;
  padding: .72rem .85rem;
  border: 1px solid var(--border); border-radius: 4px;
  background: var(--warm); color: var(--charcoal); width: 100%;
}
.bm-field input:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(201, 167, 106, .22); }
.bm-row { display: grid; grid-template-columns: 1fr 1fr; gap: .8rem; }
.bm-submit { margin-top: .5rem; }
.bm-note { font-size: .74rem; color: var(--muted); text-align: center; margin-top: -.2rem; }
@media (max-width: 420px) { .bm-row { grid-template-columns: 1fr; } }

/* Amenity marquee ribbon */
.marquee {
  position: relative;
  background: linear-gradient(100deg, #A87E3E 0%, #C9A76A 17%, #F1DEB2 33%, #CBAA6E 49%, #B8904F 66%, #EAD9AE 83%, #B8904F 100%);
  background-size: 220% auto;
  animation: marqueeSheen 7s linear infinite;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, .45);
  border-bottom: 1px solid rgba(120, 85, 30, .35);
  box-shadow: inset 0 2px 3px rgba(255, 255, 255, .38), inset 0 -10px 22px rgba(120, 85, 30, .22);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}
@keyframes marqueeSheen { to { background-position: 220% center; } }
/* moving glint that sweeps across the gold band */
.marquee::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(105deg, transparent 38%, rgba(255, 255, 255, .55) 48%, rgba(255, 255, 255, .12) 55%, transparent 64%);
  transform: translateX(-120%);
  animation: marqueeGlint 6.5s ease-in-out infinite;
}
@keyframes marqueeGlint {
  0% { transform: translateX(-120%); }
  55%, 100% { transform: translateX(120%); }
}
.marquee-track {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 2.4rem;
  padding: 1rem 0;
  white-space: nowrap;
  will-change: transform;
  animation: marquee 30s linear infinite;
}
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-track span {
  font-family: var(--font-head);
  font-style: italic;
  font-size: 1.08rem;
  color: var(--white);
}
.marquee-track i {
  font-style: normal;
  font-size: .72rem;
  color: rgba(255, 255, 255, .9);
}
@keyframes marquee { to { transform: translateX(-50%); } }

/* Staggered scroll reveals */
.reveal { transition-delay: var(--d, 0s); }

/* Gallery caption micro-interaction */
.g-item figcaption {
  transform: translateY(6px);
  opacity: .92;
  transition: transform .35s ease, opacity .35s ease;
}
.g-item:hover figcaption { transform: translateY(0); opacity: 1; }

/* Lightbox entrance */
@keyframes lbFade { from { opacity: 0; } }
@keyframes lbZoom { from { transform: scale(.96); opacity: 0; } }
.lightbox:not([hidden]) { animation: lbFade .3s ease both; }
.lightbox:not([hidden]) img { animation: lbZoom .35s cubic-bezier(.22, .61, .36, 1) both; }

/* Button sheen sweep */
.btn-primary, .btn-light { position: relative; overflow: hidden; }
.btn-primary::before, .btn-light::before {
  content: "";
  position: absolute;
  top: 0; left: -80%;
  width: 50%;
  height: 100%;
  background: linear-gradient(105deg, transparent, rgba(255, 255, 255, .35), transparent);
  transform: skewX(-20deg);
  transition: left .55s ease;
}
.btn-primary:hover::before, .btn-light:hover::before { left: 130%; }

@media (prefers-reduced-motion: reduce) {
  .loader-orbit, .loader-brand, .loader-line { animation: none; }
  .hero-kicker, .hero h1, .hero-sub, .hero-ctas, .hero-stats li, .scroll-cue { animation: none; }
  .hero h1 .accent { animation: none; background: none; -webkit-text-fill-color: currentColor; color: var(--gold); }
  .marquee-track { animation: none; }
  .marquee { animation: none; background-position: center; }
  .marquee::before { animation: none; opacity: 0; }
  .cue-line::after { animation: none; }
  .lightbox:not([hidden]), .lightbox:not([hidden]) img { animation: none; }
  .reveal { transition-delay: 0s; }
}

/* ============================================================
   Mobile fit & finish
   ============================================================ */
@media (max-width: 1080px) {
  .scroll-cue { display: none; }
  body.nav-open { overflow: hidden; }
}

@media (max-width: 640px) {
  .container { width: 90%; }

  .brand-logo { height: 50px; max-width: 180px; }
  .site-header .brand {
    width: 34px;
    height: 58px;
    overflow: hidden;
    flex: 0 0 34px;
  }
  .site-header .brand-logo,
  .site-header.scrolled .brand-logo {
    height: 78px;
    width: auto;
    max-width: none;
    transform: translateX(-3px);
  }
  .footer-brand .brand-logo { height: 54px; max-width: 210px; }
  .brand-text { font-size: 1.28rem; }
  .brand-text em { font-size: .55rem; letter-spacing: 2.6px; }
  .brand-icon { width: 27px; height: 27px; }

  .hero-content { padding-top: 7rem; padding-bottom: 4rem; }
  .hero-kicker { font-size: .6rem; letter-spacing: 2.4px; padding: .45rem 1rem; margin-bottom: 1.4rem; }
  .hero-sub { margin-bottom: 2rem; }
  .hero-ctas { flex-direction: column; align-items: stretch; gap: .7rem; margin-bottom: 2.6rem; }
  .hero-ctas .btn { width: 100%; }
  .btn-lg { padding: 1rem 1.5rem; }

  .hero-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.2rem 0;
  }
  .hero-stats li { padding: .1rem 1.2rem; border-left: 0; }
  .hero-stats li:nth-child(odd) { padding-left: 0; }
  .hero-stats li:nth-child(even) { border-left: 1px solid rgba(255, 255, 255, .28); }
  .hero-stats strong { font-size: 1.75rem; }
  .hero-stats span { font-size: .62rem; letter-spacing: 1.8px; }

  .marquee-track { gap: 1.7rem; padding: .8rem 0; }
  .marquee-track span { font-size: .95rem; }

  .section-head { margin-bottom: 2.7rem; }
  .pkg-body { padding: 1.4rem 1.3rem 1.5rem; }
  .include-card { padding: 1.9rem 1.5rem; }
  .enquiry-form { padding: 1.5rem 1.25rem; }

  .steps { gap: 2.1rem; }

  .footer-cta .btn { width: 100%; }

  .wa-float {
    right: 1rem;
    bottom: calc(1rem + env(safe-area-inset-bottom, 0px));
    width: 3.3rem; height: 3.3rem;
  }
  .lb-prev { left: .6rem; }
  .lb-next { right: .6rem; }
}

/* ============================================================
   Premium experience layer
   ============================================================ */

/* Ambient page texture and anchored navigation */
body {
  --page-glow-x: 50%;
  position: relative;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 999;
  pointer-events: none;
  opacity: .032;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.78' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.7'/%3E%3C/svg%3E");
  mix-blend-mode: multiply;
}

.site-header {
  transition: background .35s ease, box-shadow .35s ease, padding .35s ease,
    border-color .35s ease, transform .5s var(--ease-premium);
}
.site-header.header-hidden { transform: translateY(-110%); }

.nav-scrim {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 99;
  border: 0;
  background: rgba(34, 34, 34, .48);
  backdrop-filter: blur(5px);
  opacity: 0;
  pointer-events: none;
  transition: opacity .35s ease;
}

/* Pointer-responsive cinematic hero */
.hero {
  --pointer-x: 72%;
  --pointer-y: 34%;
  --bg-x: 0px;
  --bg-y: 0px;
  isolation: isolate;
}
.hero-bg {
  z-index: 0;
  background-position: calc(50% + var(--bg-x)) calc(50% + var(--bg-y));
  object-position: calc(50% + var(--bg-x)) calc(50% + var(--bg-y));
  will-change: transform, background-position;
}
.hero-overlay {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(34, 34, 34, .80) 0%, rgba(34, 34, 34, .55) 39%, rgba(34, 34, 34, .13) 72%),
    linear-gradient(180deg, rgba(34, 34, 34, .52) 0%, rgba(34, 34, 34, .12) 48%, rgba(34, 34, 34, .78) 100%);
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background: radial-gradient(460px circle at var(--pointer-x) var(--pointer-y), rgba(201, 167, 106, .15), transparent 68%);
  mix-blend-mode: screen;
  transition: opacity .35s ease;
}
.hero-content { z-index: 3; max-width: 1120px; }
.hero h1 { letter-spacing: -.02em; text-wrap: balance; }
.hero-kicker { backdrop-filter: blur(8px); background: rgba(34, 34, 34, .16); }
.hero-ctas .btn { min-width: 215px; }

/* Section title choreography */
.section-head .eyebrow::before,
.section-head .eyebrow::after {
  transform: scaleX(0);
  transition: transform .85s var(--ease-premium) .12s;
}
.section-head .eyebrow::before { transform-origin: right; }
.section-head .eyebrow::after { transform-origin: left; }
.section-head.visible .eyebrow::before,
.section-head.visible .eyebrow::after { transform: scaleX(1); }
.section-head h2 {
  clip-path: inset(0 0 100% 0);
  transform: translateY(18px);
  transition: clip-path .9s var(--ease-premium) .08s, transform .9s var(--ease-premium) .08s;
}
.section-head.visible h2 { clip-path: inset(0); transform: none; }

/* Dimensional package cards */
.pkg-card, .include-card, .sight-card {
  --rx: 0deg;
  --ry: 0deg;
  --spot-x: 50%;
  --spot-y: 50%;
  transform-style: preserve-3d;
  transform-origin: center;
}
.pkg-card {
  position: relative;
  border-radius: 6px;
  background: linear-gradient(145deg, var(--white) 0%, var(--white) 65%, var(--warm) 100%);
  transition: transform .45s var(--ease-premium), box-shadow .45s ease, border-color .3s ease;
}
.pkg-card::after, .include-card::after, .sight-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  opacity: 0;
  background: radial-gradient(320px circle at var(--spot-x) var(--spot-y), rgba(201, 167, 106, .16), transparent 68%);
  transition: opacity .35s ease;
}
.pkg-card:hover::after, .include-card:hover::after, .sight-card:hover::after { opacity: 1; }
.pkg-card.tilting, .include-card.tilting, .sight-card.tilting {
  transform: perspective(1000px) rotateX(var(--rx)) rotateY(var(--ry)) translateY(-5px);
}
.pkg-card:hover { transform: translateY(-7px); }
.pkg-card.tilting:hover { transform: perspective(1000px) rotateX(var(--rx)) rotateY(var(--ry)) translateY(-5px); }
.pkg-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 48%, rgba(201, 167, 106, .18));
  pointer-events: none;
}
.pkg-media img { filter: saturate(.94) contrast(1.02); }
.pkg-card:hover .pkg-media img { transform: scale(1.065); filter: saturate(1.05) contrast(1.04); }
.pkg-details-btn { appearance: none; background: transparent; }

/* Inclusions become intentional editorial tiles */
.include-grid { gap: 1.25rem; align-items: stretch; }
.include-card {
  position: relative;
  overflow: hidden;
  min-height: 0;
  padding: 0;
  border-radius: 6px;
  background: var(--white);
}
.include-card > * { position: relative; z-index: 3; }
.include-media {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--porcelain);
}
.include-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 62%, rgba(34, 34, 34, .2));
  pointer-events: none;
}
.include-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .9s var(--ease-premium), filter .45s ease;
}
.include-card:hover .include-media img { transform: scale(1.055); filter: saturate(1.04); }
.include-content { padding: 1.55rem 1.55rem 1.7rem; }
.include-index {
  display: block;
  margin-bottom: .75rem;
  color: var(--charcoal);
  font-family: var(--font-head);
  font-size: 1rem;
  letter-spacing: .12em;
}

/* Immersive activity story */
.activity-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(800px 420px at 10% 0%, rgba(201, 167, 106, .10), transparent 65%),
    var(--warm);
}
.activity-section::before {
  content: "WILD";
  position: absolute;
  right: -1rem;
  top: 1rem;
  font-family: var(--font-head);
  font-size: clamp(8rem, 20vw, 20rem);
  line-height: 1;
  color: rgba(34, 34, 34, .026);
  letter-spacing: -.07em;
  pointer-events: none;
}
.activity-intro {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  align-items: end;
  gap: 4rem;
  margin-bottom: 3.4rem;
}
.activity-head { text-align: left; margin: 0; max-width: 760px; }
.activity-head .eyebrow::before { display: none; }
.activity-lead {
  max-width: 420px;
  color: var(--grey);
  font-size: 1.04rem;
  font-weight: 300;
  padding-bottom: .5rem;
}
.activity-showcase {
  display: grid;
  grid-template-columns: 1.45fr 1fr;
  grid-template-rows: repeat(2, minmax(260px, 1fr));
  gap: 1rem;
  min-height: 660px;
}
.activity-panel {
  position: relative;
  overflow: hidden;
  border-radius: 6px;
  color: var(--white);
  isolation: isolate;
  clip-path: inset(8% 0 8% 0);
  transition: clip-path 1s var(--ease-premium), transform .55s var(--ease-premium), opacity .7s ease;
}
.activity-panel.visible { clip-path: inset(0); }
.activity-panel-main { grid-row: span 2; }
.activity-panel img {
  position: absolute;
  inset: -3%;
  width: 106%;
  height: 106%;
  object-fit: cover;
  filter: saturate(.88) contrast(1.04);
  transition: transform 1.1s var(--ease-premium), filter .6s ease;
}
.activity-panel:hover { transform: translateY(-4px); }
.activity-panel:hover img { transform: scale(1.055); filter: saturate(1.03) contrast(1.05); }
.activity-shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(34, 34, 34, .08), rgba(34, 34, 34, .78));
}
.activity-number {
  position: absolute;
  right: 1.35rem;
  top: .9rem;
  z-index: 2;
  font-family: var(--font-head);
  font-size: 3rem;
  color: rgba(255, 255, 255, .35);
}
.activity-copy {
  position: absolute;
  inset: auto 0 0;
  z-index: 2;
  padding: 2rem;
  transform: translateY(12px);
  transition: transform .5s var(--ease-premium);
}
.activity-panel:hover .activity-copy { transform: none; }
.activity-copy p {
  font-size: .67rem;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
}
.activity-copy h3 {
  max-width: 480px;
  margin-top: .25rem;
  font-family: var(--font-head);
  font-size: clamp(1.65rem, 3vw, 2.65rem);
  font-weight: 500;
  line-height: 1.05;
}
.activity-copy ul {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin-top: 1rem;
  list-style: none;
}
.activity-copy li {
  padding: .3rem .75rem;
  border: 1px solid rgba(255, 255, 255, .34);
  border-radius: 999px;
  font-size: .68rem;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}
.activity-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  margin-top: 2rem;
  padding: 1.6rem 1.8rem;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.activity-cta p { color: var(--grey); }
.activity-cta strong { color: var(--charcoal); font-family: var(--font-head); font-size: 1.3rem; }

/* Refined sightseeing and connected booking path */
.section-forest {
  background:
    radial-gradient(900px 440px at 88% -8%, rgba(201, 167, 106, .18), transparent 62%),
    radial-gradient(700px 350px at 0% 100%, rgba(107, 114, 128, .12), transparent 60%),
    var(--charcoal);
}
.sight-card { position: relative; overflow: hidden; border-radius: 6px; padding-top: 4.5rem; }
.sight-card::before {
  content: attr(data-place);
  position: absolute;
  top: 1rem;
  left: 1.55rem;
  color: var(--gold);
  font-family: var(--font-head);
  font-size: 1.5rem;
  letter-spacing: .08em;
}

.steps { position: relative; }
.steps::before {
  content: "";
  position: absolute;
  left: 4%;
  right: 4%;
  top: -1px;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), var(--gold-deep));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 1.5s var(--ease-premium);
}
.steps.path-active::before { transform: scaleX(1); }
.step {
  border-radius: 6px;
  background:
    radial-gradient(150px 150px at bottom right, rgba(184, 144, 79, .10), transparent 60%),
    linear-gradient(150deg, var(--white), var(--warm));
}
.step::after { content: none; }
.step-num { z-index: 2; }

/* Animated FAQ disclosure */
.faq-item { overflow: hidden; }
.faq-item p {
  transform-origin: top;
  animation: faqIn .42s var(--ease-premium) both;
}
.faq-item[open] summary::after { transform: translateY(-50%) rotate(180deg); }
@keyframes faqIn {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: none; }
}

/* Package details dialog */
.package-dialog {
  width: min(980px, calc(100% - 2rem));
  max-height: min(760px, calc(100vh - 2rem));
  margin: auto;
  padding: 0;
  border: 0;
  border-radius: 8px;
  color: var(--charcoal);
  background: var(--warm);
  box-shadow: 0 40px 120px rgba(34, 34, 34, .48);
  overflow: hidden;
}
.package-dialog::backdrop {
  background: rgba(34, 34, 34, .76);
  backdrop-filter: blur(8px);
}
.package-dialog[open] { animation: dialogIn .5s var(--ease-premium) both; }
.package-dialog[open]::backdrop { animation: lbFade .35s ease both; }
@keyframes dialogIn {
  from { opacity: 0; transform: translateY(28px) scale(.97); }
  to { opacity: 1; transform: none; }
}
.package-dialog-shell { display: grid; grid-template-columns: 1fr 1fr; min-height: 600px; }
.package-dialog-media { min-height: 100%; overflow: hidden; }
.package-dialog-media img { width: 100%; height: 100%; object-fit: cover; }
.package-dialog-content { position: relative; padding: 3.5rem 3rem 2.6rem; overflow-y: auto; }
.package-dialog-content .eyebrow::before { display: none; }
.package-dialog-content h2 {
  font-family: var(--font-head);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 500;
  line-height: 1.02;
  margin-bottom: .8rem;
}
.package-dialog-content > p { color: var(--grey); font-weight: 300; }
.package-dialog-close {
  position: absolute;
  right: 1rem;
  top: 1rem;
  z-index: 3;
  width: 2.7rem;
  height: 2.7rem;
  display: grid;
  place-items: center;
  border: 1px solid rgba(34, 34, 34, .18);
  border-radius: 50%;
  background: rgba(250, 248, 244, .88);
  color: var(--charcoal);
  font-size: 1.5rem;
  cursor: pointer;
  backdrop-filter: blur(7px);
}
.dialog-price {
  display: block;
  margin: 1.3rem 0;
  color: var(--charcoal);
  font-family: var(--font-head);
  font-size: 2rem;
}
.dialog-inclusions { padding: 1.2rem 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.dialog-inclusions h3 { font-family: var(--font-head); font-size: 1.25rem; margin-bottom: .7rem; }
.dialog-inclusions ul { list-style: none; display: grid; gap: .5rem; }
.dialog-inclusions li { color: var(--grey); font-size: .88rem; }
.dialog-inclusions li span { color: var(--charcoal); margin-right: .45rem; }
.dialog-note { margin: 1rem 0; font-size: .82rem; }

/* Mobile quick-action dock */
.mobile-booking-dock { display: none; }

/* Magnetic elements keep their own smooth transform channel */
.is-magnetic { transition: transform .35s var(--ease-premium), background .22s ease, color .22s ease, border-color .22s ease; }

@media (max-width: 1024px) {
  .activity-showcase { grid-template-columns: 1.2fr 1fr; min-height: 580px; }
  .activity-copy { padding: 1.5rem; }
  .activity-copy h3 { font-size: 1.8rem; }
}

@media (max-width: 1080px) {
  .nav-scrim { display: block; }
  .nav-open .nav-scrim { opacity: 1; pointer-events: auto; }
  .main-nav { transition: transform .45s var(--ease-premium); }
  .main-nav .nav-link {
    opacity: 0;
    transform: translateX(22px);
    transition: opacity .35s ease, transform .45s var(--ease-premium), color .25s ease;
  }
  .nav-open .main-nav .nav-link { opacity: 1; transform: none; }
  .nav-open .main-nav .nav-link:nth-child(1) { transition-delay: .08s; }
  .nav-open .main-nav .nav-link:nth-child(2) { transition-delay: .12s; }
  .nav-open .main-nav .nav-link:nth-child(3) { transition-delay: .16s; }
  .nav-open .main-nav .nav-link:nth-child(4) { transition-delay: .20s; }
  .nav-open .main-nav .nav-link:nth-child(5) { transition-delay: .24s; }
  .nav-open .main-nav .nav-link:nth-child(6) { transition-delay: .28s; }
  .activity-intro { grid-template-columns: 1fr; gap: 1.2rem; }
  .activity-lead { max-width: 620px; }
  .activity-showcase { grid-template-columns: 1fr 1fr; grid-template-rows: 430px 280px; min-height: 0; }
  .activity-panel-main { grid-row: auto; grid-column: span 2; }
  .package-dialog-shell { grid-template-columns: .8fr 1.2fr; }
  .package-dialog-content { padding: 3rem 2rem 2rem; }
}

@media (max-width: 640px) {
  html { scroll-padding-top: 68px; }
  body { padding-bottom: calc(72px + env(safe-area-inset-bottom, 0px)); }
  body::before { opacity: .018; }
  .hero::after { display: none; }
  .hero-bg { background-position: 50% center; object-position: 50% center; }
  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(34, 34, 34, .78), rgba(34, 34, 34, .35)),
      linear-gradient(180deg, rgba(34, 34, 34, .44), rgba(34, 34, 34, .2) 45%, rgba(34, 34, 34, .82));
  }
  .include-card { min-height: 0; }
  .activity-section::before { top: 6rem; }
  .activity-head h2 { font-size: 2.45rem; }
  .activity-showcase { display: grid; grid-template-columns: 1fr; grid-template-rows: repeat(3, 390px); }
  .activity-panel-main { grid-column: auto; }
  .activity-copy h3 { font-size: 2rem; }
  .activity-cta { flex-direction: column; align-items: stretch; padding-inline: 0; }
  .activity-cta .btn { width: 100%; }
  .steps::before {
    left: 1.22rem;
    right: auto;
    top: 0;
    bottom: 0;
    width: 1px;
    height: auto;
    transform: scaleY(0);
    transform-origin: top;
  }
  .steps.path-active::before { transform: scaleY(1); }
  .wa-float { display: none; }
  .mobile-booking-dock {
    position: fixed;
    left: .65rem;
    right: .65rem;
    bottom: calc(.6rem + env(safe-area-inset-bottom, 0px));
    z-index: 95;
    height: 58px;
    display: grid;
    grid-template-columns: .75fr 1.5fr;
    padding: 4px;
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: 8px;
    background: rgba(34, 34, 34, .94);
    box-shadow: 0 16px 42px rgba(34, 34, 34, .32);
    backdrop-filter: blur(14px);
    transform: translateY(120%);
    animation: dockIn .65s var(--ease-premium) 1s forwards;
  }
  .mobile-booking-dock a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .45rem;
    border-radius: 5px;
    text-decoration: none;
    font-size: .68rem;
    font-weight: 600;
    letter-spacing: 1.4px;
    text-transform: uppercase;
  }
  .dock-call { color: var(--white); }
  .dock-call svg { width: 1rem; height: 1rem; }
  .dock-whatsapp { color: var(--charcoal); background: var(--gold); }
  @keyframes dockIn { to { transform: none; } }
  .package-dialog { width: calc(100% - 1rem); max-height: calc(100vh - 1rem); }
  .package-dialog-shell { display: block; min-height: 0; }
  .package-dialog-media { height: 230px; min-height: 0; }
  .package-dialog-content { padding: 2rem 1.35rem 1.5rem; max-height: calc(100vh - 240px); }
  .package-dialog-content h2 { font-size: 2.35rem; }
  .package-dialog-close { color: var(--white); background: rgba(34, 34, 34, .58); border-color: rgba(255, 255, 255, .35); }
}

@media (prefers-reduced-motion: reduce) {
  body::before { display: none; }
  .section-head h2, .section-head .eyebrow::before, .section-head .eyebrow::after,
  .activity-panel, .activity-panel img, .activity-copy, .steps::before,
  .mobile-booking-dock, .package-dialog[open], .faq-item p {
    animation: none !important;
    transition: none !important;
    transform: none !important;
    clip-path: none !important;
  }
}
