/* ─── LNC DESIGN SYSTEM ──────────────────────────────────────
   Lombok Nature Culture · style.css
   Fonts: MuseoModerno (headings/body) · Museo (sub body)
──────────────────────────────────────────────────────────── */

/* ── FONT FACES ── */
@font-face { font-family: 'MuseoModerno'; src: url('/fonts/MuseoModerno-Thin.ttf') format('truetype'); font-weight: 100; font-style: normal; font-display: swap; }
@font-face { font-family: 'MuseoModerno'; src: url('/fonts/MuseoModerno-ExtraLight.ttf') format('truetype'); font-weight: 200; font-style: normal; font-display: swap; }
@font-face { font-family: 'MuseoModerno'; src: url('/fonts/MuseoModerno-Light.ttf') format('truetype'); font-weight: 300; font-style: normal; font-display: swap; }
@font-face { font-family: 'MuseoModerno'; src: url('/fonts/MuseoModerno-Regular.ttf') format('truetype'); font-weight: 400; font-style: normal; font-display: swap; }
@font-face { font-family: 'MuseoModerno'; src: url('/fonts/MuseoModerno-Medium.ttf') format('truetype'); font-weight: 500; font-style: normal; font-display: swap; }
@font-face { font-family: 'MuseoModerno'; src: url('/fonts/MuseoModerno-SemiBold.ttf') format('truetype'); font-weight: 600; font-style: normal; font-display: swap; }
@font-face { font-family: 'MuseoModerno'; src: url('/fonts/MuseoModerno-Bold.ttf') format('truetype'); font-weight: 700; font-style: normal; font-display: swap; }
@font-face { font-family: 'MuseoModerno'; src: url('/fonts/MuseoModerno-ExtraBold.ttf') format('truetype'); font-weight: 800; font-style: normal; font-display: swap; }
@font-face { font-family: 'MuseoModerno'; src: url('/fonts/MuseoModerno-Black.ttf') format('truetype'); font-weight: 900; font-style: normal; font-display: swap; }

@font-face { font-family: 'Museo'; src: url('/fonts/Museo-100.ttf') format('truetype'); font-weight: 100; font-style: normal; font-display: swap; }
@font-face { font-family: 'Museo'; src: url('/fonts/Museo-100Italic.ttf') format('truetype'); font-weight: 100; font-style: italic; font-display: swap; }
@font-face { font-family: 'Museo'; src: url('/fonts/Museo-300.ttf') format('truetype'); font-weight: 300; font-style: normal; font-display: swap; }
@font-face { font-family: 'Museo'; src: url('/fonts/Museo-300Italic.ttf') format('truetype'); font-weight: 300; font-style: italic; font-display: swap; }
@font-face { font-family: 'Museo'; src: url('/fonts/Museo-500.ttf') format('truetype'); font-weight: 500; font-style: normal; font-display: swap; }
@font-face { font-family: 'Museo'; src: url('/fonts/Museo-500Italic.ttf') format('truetype'); font-weight: 500; font-style: italic; font-display: swap; }
@font-face { font-family: 'Museo'; src: url('/fonts/Museo-700.ttf') format('truetype'); font-weight: 700; font-style: normal; font-display: swap; }
@font-face { font-family: 'Museo'; src: url('/fonts/Museo-700Italic.ttf') format('truetype'); font-weight: 700; font-style: italic; font-display: swap; }
@font-face { font-family: 'Museo'; src: url('/fonts/Museo-900.ttf') format('truetype'); font-weight: 900; font-style: normal; font-display: swap; }
@font-face { font-family: 'Museo'; src: url('/fonts/Museo-900Italic.ttf') format('truetype'); font-weight: 900; font-style: italic; font-display: swap; }

/* ── RESET & BASE ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { background: #f7f4ee; font-family: 'MuseoModerno', sans-serif; color: #3d3228; overflow-x: hidden; line-height: 1.6; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ── CSS VARIABLES ── */
:root {
  --bg:    #f7f4ee;
  --bg2:   #ede9e1;
  --dark:  #1a2118;
  --dark2: #243028;
  --teal:  #2cb896;
  --ocean: #38a8d8;
  --gold:  #c4964a;
  --text:  #3d3228;
  --muted: #8a7d6e;
  --white: #ffffff;
  --border: #e0d8ce;

  --font-head: 'MuseoModerno', sans-serif;
  --font-body: 'MuseoModerno', sans-serif;
  --font-edit: 'Museo', sans-serif;
  --radius: 0;
  --section-pad: 96px 48px;
  --container: 1200px;
}

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg2); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 3px; }

/* ── CONTAINER ── */
.container { max-width: var(--container); margin: 0 auto; padding: 0 48px; }
.container--narrow { max-width: 860px; margin: 0 auto; padding: 0 48px; }

/* ── TYPOGRAPHY ── */
.eyebrow {
  font-family: var(--font-head); font-weight: 600;
  font-size: 11px; letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--muted); display: block; margin-bottom: 12px;
}
.section-title {
  font-family: var(--font-head); font-weight: 900;
  font-size: 40px; line-height: 1.1; color: var(--dark);
  text-wrap: balance;
}
.section-title--light { color: var(--white); }
.section-title--center { text-align: center; }
.section-body {
  font-family: var(--font-body); font-size: 15px;
  color: var(--muted); line-height: 1.8;
}
.editorial {
  font-family: var(--font-edit); font-style: italic;
  font-size: 22px; color: var(--text); line-height: 1.7;
}
.grad-text {
  background: linear-gradient(135deg, var(--teal) 0%, var(--ocean) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── BUTTONS ── */
.btn {
  display: inline-block; font-family: var(--font-head);
  font-weight: 700; font-size: 12px; letter-spacing: 0.14em;
  text-transform: uppercase; padding: 14px 32px;
  transition: opacity 0.2s, transform 0.2s;
}
.btn--primary { background: var(--teal); color: var(--white); }
.btn--primary:hover { opacity: 0.88; transform: translateY(-1px); }
.btn--gold { background: var(--gold); color: var(--white); }
.btn--gold:hover { opacity: 0.88; }
.btn--dark { background: var(--dark); color: var(--white); }
.btn--dark:hover { opacity: 0.88; }
.btn--outline { border: 1.5px solid var(--dark); color: var(--dark); }
.btn--outline:hover { background: var(--dark); color: var(--white); }
.btn--outline-light { border: 1.5px solid rgba(255,255,255,.5); color: var(--white); }
.btn--outline-light:hover { background: rgba(255,255,255,.1); }
.btn--sm { padding: 10px 22px; font-size: 11px; }
.btn--full { display: block; text-align: center; width: 100%; }

/* ── TAG / BADGE ── */
.tag {
  display: inline-block; padding: 4px 12px;
  font-family: var(--font-head); font-weight: 700; font-size: 10px;
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--white);
}
.tag--teal { background: var(--teal); }
.tag--gold { background: var(--gold); }
.tag--dark { background: var(--dark); }
.tag--muted { background: var(--muted); }

/* ── IMAGE PLACEHOLDER ── */
.ph {
  background: #b8c4b8;
  background-image: repeating-linear-gradient(-45deg, transparent, transparent 12px, rgba(0,0,0,.045) 12px, rgba(0,0,0,.045) 24px);
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
.ph__label {
  font-family: 'Courier New', monospace; font-size: 10px;
  color: rgba(255,255,255,.5); text-align: center;
  letter-spacing: .08em; text-transform: uppercase; line-height: 1.6; padding: 12px;
}

/* ── SECTIONS ── */
.section { padding: var(--section-pad); }
.section--white { background: var(--white); }
.section--sand { background: var(--bg2); }
.section--dark { background: var(--dark); }
.section--dark2 { background: var(--dark2); }
.section--grad { background: linear-gradient(135deg, var(--dark) 0%, var(--dark2) 100%); }

/* ── NAV ── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: 72px; display: flex; align-items: center; justify-content: space-between;
  padding: 0 48px;
  transition: background 0.3s, box-shadow 0.3s;
}
.nav.scrolled {
  background: var(--bg);
  box-shadow: 0 1px 0 rgba(0,0,0,.08);
}
.nav__logo { display: flex; align-items: center; gap: 12px; }
.nav__logo img { height: 38px; width: auto; }
.nav__logo-name {
  font-family: var(--font-head); font-weight: 800; font-size: 13px;
  letter-spacing: 0.18em; text-transform: uppercase; color: var(--white); line-height: 1.1;
  transition: color 0.3s;
}
.nav__logo-sub {
  font-family: var(--font-head); font-weight: 400; font-size: 9.5px;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: rgba(255,255,255,0.6); transition: color 0.3s;
}
.nav.scrolled .nav__logo-name { color: var(--dark); }
.nav.scrolled .nav__logo-sub { color: var(--muted); }
.nav__links { display: flex; gap: 36px; }
.nav__link {
  font-family: var(--font-head); font-weight: 600; font-size: 12px;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(255,255,255,.85); transition: color 0.2s;
}
.nav.scrolled .nav__link { color: var(--text); }
.nav__link:hover { color: var(--teal) !important; }

/* ── HERO ── */
.hero {
  position: relative; height: 100vh; min-height: 600px; overflow: hidden;
}
.hero__bg { position: absolute; inset: 0; }
.hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(160deg, rgba(26,33,24,.45) 0%, rgba(26,33,24,.72) 100%);
}
.hero__content {
  position: relative; z-index: 1; height: 100%;
  display: flex; flex-direction: column; align-items: center;
  justify-content: center; padding: 0 24px; text-align: center;
}
.hero__eyebrow {
  font-family: var(--font-head); font-weight: 500; font-size: 11px;
  letter-spacing: 0.32em; text-transform: uppercase;
  color: rgba(255,255,255,.65); margin-bottom: 28px;
}
.hero__title {
  font-family: var(--font-head); font-weight: 900; font-size: 72px;
  line-height: 1.04; color: var(--white); margin-bottom: 8px; text-wrap: balance;
}
.hero__title em {
  font-style: italic; font-weight: 300;
  font-family: var(--font-edit); font-size: 82px;
}
.hero__sub {
  font-family: var(--font-body); font-weight: 300; font-size: 18px;
  color: rgba(255,255,255,.78); max-width: 540px;
  line-height: 1.75; margin-bottom: 44px;
}
.hero__ctas { display: flex; gap: 16px; flex-wrap: wrap; justify-content: center; }
.hero__scroll {
  position: absolute; bottom: 36px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 10px; opacity: .55;
}
.hero__scroll span {
  font-family: var(--font-head); font-weight: 600; font-size: 9px;
  letter-spacing: 0.28em; color: var(--white); text-transform: uppercase;
}
.hero__scroll-line { width: 1px; height: 44px; background: rgba(255,255,255,.5); }

/* ── EXPERIENCE BAR ── */
.exp-bar {
  background: var(--dark);
  display: flex; align-items: center; justify-content: center;
  overflow-x: auto; padding: 0 48px;
}
.exp-bar__item {
  display: flex; align-items: center; gap: 10px;
  padding: 18px 28px; white-space: nowrap;
  font-family: var(--font-head); font-weight: 600; font-size: 11px;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(255,255,255,.6); transition: color 0.2s;
  cursor: pointer;
}
.exp-bar__item:hover { color: var(--white); }
.exp-bar__item.active { color: var(--teal); }
.exp-bar__divider { width: 1px; height: 20px; background: rgba(255,255,255,.12); flex-shrink: 0; }

/* ── PACKAGE CARDS ── */
.packages-section { background: var(--bg); padding: var(--section-pad); }
.packages-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 48px; gap: 24px; flex-wrap: wrap; }
.packages-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 3px; }
.packages-grid--2 { grid-template-columns: repeat(2, 1fr); }
.pkg-card {
  background: var(--white); overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform 0.3s, box-shadow 0.3s;
  cursor: pointer;
}
.pkg-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(26,33,24,.14); }
.pkg-card__img { flex-shrink: 0; }
.pkg-card__body { padding: 24px; flex: 1; display: flex; flex-direction: column; gap: 8px; }
.pkg-card__id { font-family: var(--font-head); font-weight: 700; font-size: 9px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--teal); }
.pkg-card__title { font-family: var(--font-head); font-weight: 800; font-size: 19px; color: var(--dark); }
.pkg-card__sub { font-family: var(--font-body); font-size: 13px; color: var(--muted); line-height: 1.6; }
.pkg-card__dur { font-family: var(--font-head); font-weight: 600; font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); }
.pkg-card__foot { display: flex; justify-content: space-between; align-items: flex-end; margin-top: auto; padding-top: 16px; border-top: 1px solid var(--border); }
.pkg-card__price { font-family: var(--font-head); font-weight: 900; font-size: 17px; color: var(--teal); }
.pkg-card__price small { font-size: 10px; font-weight: 500; color: var(--muted); display: block; }
.pkg-card--featured { grid-column: span 2; }
.pkg-card--featured .pkg-card__img { display: grid; grid-template-columns: 3fr 2fr; }
.pkg-card--featured .pkg-card__title { font-size: 28px; }

/* ── HOTELS SECTION ── */
.hotels-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 3px; }
.hotel-card { background: var(--white); overflow: hidden; transition: transform 0.3s, box-shadow 0.3s; }
.hotel-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(26,33,24,.12); }
.hotel-card__body { padding: 20px; }
.hotel-card__type { font-family: var(--font-head); font-weight: 700; font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--teal); margin-bottom: 4px; }
.hotel-card__name { font-family: var(--font-head); font-weight: 800; font-size: 17px; color: var(--dark); margin-bottom: 2px; }
.hotel-card__room { font-family: var(--font-body); font-size: 12px; color: var(--muted); }
.hotel-card__price { font-family: var(--font-head); font-weight: 700; font-size: 13px; color: var(--dark); margin-top: 8px; }
.hotel-card__rating { font-family: var(--font-head); font-weight: 600; font-size: 10px; color: var(--gold); margin-top: 4px; }
.zone-tabs { display: flex; gap: 0; margin-bottom: 32px; border-bottom: 1px solid var(--border); }
.zone-tab {
  padding: 12px 24px; font-family: var(--font-head); font-weight: 700;
  font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--muted); border-bottom: 2px solid transparent;
  cursor: pointer; transition: all 0.2s; white-space: nowrap;
}
.zone-tab.active { color: var(--dark); border-bottom-color: var(--teal); }
.zone-tab:hover { color: var(--dark); }

/* ── PHILOSOPHY (dark) ── */
.pillars { display: grid; grid-template-columns: repeat(3, 1fr); gap: 48px; }
.pillar__icon {
  width: 48px; height: 48px; border: 1.5px solid var(--teal);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; color: var(--teal); margin-bottom: 24px;
}
.pillar__title { font-family: var(--font-head); font-weight: 800; font-size: 20px; color: var(--white); margin-bottom: 12px; }
.pillar__body { font-family: var(--font-body); font-size: 14px; color: rgba(255,255,255,.55); line-height: 1.8; }
.stats-strip { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; margin-top: 80px; border-top: 1px solid rgba(255,255,255,.1); padding-top: 48px; }
.stat { text-align: center; border-right: 1px solid rgba(255,255,255,.08); padding: 0 16px; }
.stat:last-child { border-right: none; }
.stat__num { font-family: var(--font-head); font-weight: 900; font-size: 48px; line-height: 1; color: var(--teal); }
.stat__label { font-family: var(--font-head); font-weight: 500; font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(255,255,255,.4); margin-top: 8px; }

/* ── HOW IT WORKS ── */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; position: relative; }
.steps::before {
  content: ''; position: absolute; top: 24px; left: 12.5%; right: 12.5%;
  height: 2px; background: linear-gradient(to right, var(--teal), var(--ocean));
  z-index: 0;
}
.step { padding: 0 28px; text-align: center; position: relative; z-index: 1; }
.step__num {
  width: 48px; height: 48px; border-radius: 50%; margin: 0 auto 24px;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head); font-weight: 900; font-size: 13px;
  letter-spacing: 0.1em; background: var(--bg2);
  border: 2px solid rgba(0,0,0,.12); color: var(--muted);
  transition: background 0.3s;
}
.step__num--active { background: var(--teal); border-color: var(--teal); color: var(--white); }
.step__title { font-family: var(--font-head); font-weight: 800; font-size: 16px; color: var(--dark); margin-bottom: 12px; }
.step__body { font-family: var(--font-body); font-size: 13.5px; color: var(--muted); line-height: 1.75; }

/* ── TRUST ── */
.trust-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 3px; margin-bottom: 64px; }
.trust-card { background: var(--bg2); padding: 36px 32px; }
.trust-card__icon { font-size: 24px; color: var(--teal); margin-bottom: 16px; }
.trust-card__title { font-family: var(--font-head); font-weight: 800; font-size: 18px; color: var(--dark); margin-bottom: 4px; }
.trust-card__sub { font-family: var(--font-head); font-weight: 600; font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--teal); margin-bottom: 14px; }
.trust-card__body { font-family: var(--font-body); font-size: 13.5px; color: var(--muted); line-height: 1.75; }
.partners { border-top: 1px solid rgba(0,0,0,.08); padding-top: 48px; text-align: center; }
.partners__label { font-family: var(--font-head); font-weight: 600; font-size: 10px; letter-spacing: 0.24em; text-transform: uppercase; color: var(--muted); margin-bottom: 32px; }
.partners__logos { display: flex; justify-content: center; align-items: center; flex-wrap: wrap; gap: 0; }
.partners__logo-item { padding: 16px 32px; border-right: 1px solid rgba(0,0,0,.08); display: flex; align-items: center; justify-content: center; }
.partners__logo-item:last-child { border-right: none; }
.partners__logo-img { height: 48px; max-width: 140px; object-fit: contain; filter: grayscale(100%) opacity(0.5); transition: filter 0.3s; }
.partners__logo-img:hover { filter: grayscale(0%) opacity(1); }
.partners__logo-fallback { display: none; font-family: var(--font-head); font-weight: 700; font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(0,0,0,.25); }

/* ── TEAM ── */
.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 3px; }
.member-card { background: var(--bg); overflow: hidden; transition: transform 0.3s, box-shadow 0.3s; cursor: pointer; }
.member-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(26,33,24,.1); }
.member-card__body { padding: 20px; }
.member-card__role { font-family: var(--font-head); font-weight: 700; font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--teal); margin-bottom: 4px; }
.member-card__name { font-family: var(--font-head); font-weight: 800; font-size: 17px; color: var(--dark); }
.member-card__origin { font-family: var(--font-body); font-size: 12px; color: var(--muted); margin-top: 2px; }
.member-card__yrs { font-family: var(--font-head); font-weight: 600; font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(0,0,0,.2); margin-top: 8px; }

/* ── TESTIMONIALS ── */
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 3px; }
.testi-card { background: var(--bg2); padding: 40px 36px; border-top: 3px solid var(--border); transition: box-shadow 0.25s; }
.testi-card:first-child { border-top-color: var(--teal); }
.testi-card:hover { box-shadow: 0 12px 40px rgba(26,33,24,.12); }
.testi-card__quote { font-family: var(--font-edit); font-style: italic; font-size: 18px; color: var(--text); line-height: 1.8; margin-bottom: 28px; }
.testi-card__avatar { width: 44px; height: 44px; border-radius: 50%; flex-shrink: 0; }
.testi-card__info { display: flex; gap: 16px; align-items: center; }
.testi-card__name { font-family: var(--font-head); font-weight: 800; font-size: 13px; color: var(--dark); }
.testi-card__origin { font-family: var(--font-body); font-size: 12px; color: var(--muted); }
.testi-card__exp { font-family: var(--font-head); font-weight: 600; font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--teal); margin-top: 4px; }

/* ── GALLERY ── */
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 4px; }

/* ── INQUIRY CTA ── */
.cta-section { position: relative; overflow: hidden; }
.cta-section__deco {
  position: absolute; top: -120px; right: -120px; width: 400px; height: 400px;
  border-radius: 50%; background: radial-gradient(circle, rgba(44,184,150,.13) 0%, transparent 70%);
  pointer-events: none;
}
.inquiry-form { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 12px; }
.form-input {
  width: 100%; padding: 15px 20px;
  background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.12);
  color: var(--white); font-family: var(--font-body); font-size: 14px;
  outline: none; transition: border-color 0.2s;
}
.form-input::placeholder { color: rgba(255,255,255,.4); }
.form-input:focus { border-color: var(--teal); }
.form-input option { background: var(--dark); color: var(--white); }
textarea.form-input { resize: vertical; min-height: 100px; }
select.form-input { appearance: none; }
.form-input--full { grid-column: 1 / -1; }

/* ── FOOTER ── */
.footer { background: #0f1610; padding: 64px 48px 32px; }
.footer__grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer__logo { display: flex; align-items: center; gap: 12px; margin-bottom: 20px; }
.footer__logo img { height: 40px; opacity: 0.9; }
.footer__brand-name { font-family: var(--font-head); font-weight: 800; font-size: 13px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--white); line-height: 1.1; }
.footer__brand-sub { font-family: var(--font-head); font-weight: 400; font-size: 9.5px; letter-spacing: 0.22em; text-transform: uppercase; color: rgba(255,255,255,.4); }
.footer__desc { font-family: var(--font-body); font-size: 13px; color: rgba(255,255,255,.4); line-height: 1.8; max-width: 280px; }
.footer__col-title { font-family: var(--font-head); font-weight: 700; font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(255,255,255,.35); margin-bottom: 20px; }
.footer__link { display: block; font-family: var(--font-body); font-size: 13px; color: rgba(255,255,255,.5); margin-bottom: 10px; transition: color 0.2s; }
.footer__link:hover { color: var(--teal); }
.footer__socials { display: flex; gap: 12px; margin-top: 24px; }
.footer__social { font-family: var(--font-head); font-weight: 700; font-size: 9px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--teal); cursor: pointer; }
.footer__bottom { border-top: 1px solid rgba(255,255,255,.07); padding-top: 24px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.footer__copy { font-family: var(--font-body); font-size: 12px; color: rgba(255,255,255,.25); }
.footer__legal { display: flex; gap: 24px; }
.footer__legal a { font-family: var(--font-body); font-size: 12px; color: rgba(255,255,255,.25); transition: color 0.2s; }
.footer__legal a:hover { color: rgba(255,255,255,.5); }

/* ── WHATSAPP FLOAT ── */
.wa-float {
  position: fixed; bottom: 32px; right: 32px; z-index: 200;
  width: 56px; height: 56px; border-radius: 50%; background: #25d366;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,.35); transition: transform 0.2s;
}
.wa-float:hover { transform: scale(1.1); }

/* ── BOOKING PAGE ── */
.booking-layout { min-height: 100vh; display: grid; grid-template-rows: auto auto 1fr; }
.booking-progress { padding: 24px 48px; border-bottom: 1px solid rgba(0,0,0,.08); background: var(--white); display: flex; align-items: center; gap: 0; }
.progress-step { display: flex; flex-direction: column; align-items: center; gap: 6px; }
.progress-step__bubble {
  width: 36px; height: 36px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head); font-weight: 800; font-size: 12px;
  background: transparent; border: 2px solid var(--border); color: var(--muted);
  transition: all 0.3s;
}
.progress-step__bubble--done { background: var(--teal); border-color: var(--teal); color: var(--white); }
.progress-step__bubble--active { background: var(--dark); border-color: var(--dark); color: var(--white); }
.progress-step__label { font-family: var(--font-head); font-weight: 600; font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); white-space: nowrap; }
.progress-step__label--active { color: var(--dark); }
.progress-connector { flex: 1; height: 2px; background: var(--border); margin: 0 8px 20px; transition: background 0.3s; }
.progress-connector--done { background: var(--teal); }
.booking-body { display: grid; grid-template-columns: 1fr 340px; flex: 1; }
.booking-content { padding: 56px 64px; overflow-y: auto; }
.booking-sidebar { background: var(--dark); padding: 32px; position: sticky; top: 0; max-height: 100vh; overflow-y: auto; }
.booking-foot { padding: 20px 64px; border-top: 1px solid var(--border); background: var(--white); display: flex; justify-content: space-between; align-items: center; }

/* ── PACKAGE OPTION CARDS ── */
.pkg-option { transition: border-color 0.2s, box-shadow 0.2s; }
.pkg-option:hover { border-color: #9ddfd0 !important; }
.pkg-option.selected { border-color: #2cb896 !important; box-shadow: 0 0 0 1px #2cb896; }
.pkg-option.selected .pkg-radio-dot { background: #2cb896 !important; border-color: #2cb896 !important; }

/* ── INVOICE PAGE ── */
.doc-wrap { max-width: 860px; margin: 0 auto; background: var(--white); padding: 64px 72px; box-shadow: 0 4px 40px rgba(0,0,0,.08); }
.doc-header { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 40px; }
.doc-divider { border: none; border-top: 3px solid var(--teal); margin-bottom: 36px; }
.doc-guest-block { display: grid; grid-template-columns: 1fr 1fr; border: 1px solid var(--border); margin-bottom: 32px; }
.doc-guest-col { padding: 20px 24px; }
.doc-guest-col:first-child { border-right: 1px solid var(--border); }
.doc-meta-label { font-family: var(--font-head); font-weight: 700; font-size: 9px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted); margin-bottom: 10px; display: block; }
.doc-table-head { display: grid; grid-template-columns: 1fr auto auto; background: var(--dark); padding: 12px 20px; gap: 24px; }
.doc-table-head span { font-family: var(--font-head); font-weight: 700; font-size: 9px; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(255,255,255,.5); }
.doc-table-row { display: grid; grid-template-columns: 1fr auto auto; padding: 16px 20px; border-bottom: 1px solid #f0ebe3; gap: 24px; }
.doc-table-row:nth-child(even) { background: #faf7f3; }

/* ── LEGAL PAGE ── */
.legal-layout { display: grid; grid-template-columns: 240px 1fr; max-width: 1200px; margin: 0 auto; }
.legal-sidebar { padding: 40px 0; position: sticky; top: 144px; align-self: start; }
.legal-content { padding: 40px 48px; background: var(--white); min-height: 80vh; }
.legal-section { scroll-margin-top: 160px; margin-bottom: 48px; }
.legal-h2 { font-family: var(--font-head); font-weight: 900; font-size: 28px; color: var(--dark); margin-bottom: 8px; }
.legal-h3 { font-family: var(--font-head); font-weight: 700; font-size: 14px; color: var(--dark); margin: 28px 0 8px; }
.legal-body { font-family: var(--font-body); font-size: 14px; color: #5a4f45; line-height: 1.9; margin-bottom: 12px; }
.legal-list { margin: 8px 0 16px 20px; }
.legal-list li { font-family: var(--font-body); font-size: 14px; color: #5a4f45; line-height: 1.85; margin-bottom: 4px; }
.legal-alert { padding: 16px 20px; border-left: 3px solid var(--teal); background: #f0faf7; margin: 16px 0; }
.legal-table { border: 1px solid var(--border); margin-bottom: 16px; }
.legal-table-row { display: grid; gap: 16px; padding: 14px 20px; border-bottom: 1px solid #f0ebe3; }
.legal-table-row:nth-child(even) { background: #faf7f3; }
.legal-table-row:last-child { border-bottom: none; }
.sidebar-nav-link { display: block; padding: 10px 16px; font-family: var(--font-head); font-weight: 600; font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); border-left: 2px solid transparent; transition: all 0.2s; cursor: pointer; }
.sidebar-nav-link:hover, .sidebar-nav-link.active { color: var(--dark); border-left-color: var(--teal); background: var(--white); }

/* ── TEAM PAGE EXTRAS ── */
.member-expanded { background: var(--dark); padding: 40px 48px; display: grid; grid-template-columns: 1fr 2fr; gap: 48px; margin-top: 3px; }

/* ── EXPERIENCES PAGE ── */
.exp-tabs { background: var(--white); border-bottom: 1px solid rgba(0,0,0,.08); padding: 0 48px; overflow-x: auto; display: flex; position: sticky; top: 72px; z-index: 50; }
.exp-tab-btn { padding: 16px 24px; font-family: var(--font-head); font-weight: 700; font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); border-bottom: 2px solid transparent; cursor: pointer; white-space: nowrap; transition: all 0.2s; }
.exp-tab-btn:hover { color: var(--dark); }
.exp-tab-btn.active { color: var(--dark); border-bottom-color: var(--teal); }

/* ── UTILITIES ── */
.text-center { text-align: center; }
.text-muted { color: var(--muted); }
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }
.mb-12 { margin-bottom: 12px; }
.mb-24 { margin-bottom: 24px; }
.mb-48 { margin-bottom: 48px; }
.gap-24 { gap: 24px; }
.flex { display: flex; }
.flex-between { display: flex; justify-content: space-between; align-items: flex-end; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 3px; }
.divider { height: 1px; background: var(--border); margin: 36px 0; }

/* ═══════════════════════════════════════════════════════════
   TYPOGRAPHY TREATMENT
   Rule: MuseoModerno Bold/Black → headlines only
         MuseoModerno Regular (400) / Light (300) → body/sub text
         Museo italic → editorial quotes & hero em
═══════════════════════════════════════════════════════════ */

/* Base — Regular weight for all prose */
body { font-weight: 400; }

/* Body & sub text — Regular (400) */
.section-body,
.pkg-card__sub,
.hotel-card__room,
.member-card__origin,
.pillar__body,
.step__body,
.trust-card__body,
.testi-card__origin,
.footer__desc,
.footer__link,
.footer__copy,
.legal-body {
  font-family: 'MuseoModerno', sans-serif;
  font-weight: 400;
  line-height: 1.8;
}

/* Hero sub — Light for contrast with heavy title */
.hero__sub { font-weight: 300; line-height: 1.8; }

/* Editorial — Museo Italic for quotes */
.testi-card__quote,
.editorial {
  font-family: 'Museo', sans-serif;
  font-weight: 300;
  font-style: italic;
  line-height: 1.85;
}

/* Hero em (italic part of headline) — Museo Thin Italic */
.hero__title em {
  font-family: 'Museo', sans-serif;
  font-weight: 100;
  font-style: italic;
  font-size: 1.1em;
}

/* Headlines — Black / ExtraBold only */
.section-title     { font-weight: 900; letter-spacing: -0.01em; }
.hero__title       { font-weight: 900; letter-spacing: -0.02em; }
.stat__num         { font-weight: 900; }
.pkg-card__title   { font-weight: 900; }
.pillar__title     { font-weight: 900; }
.hotel-card__name  { font-weight: 900; }
.member-card__name { font-weight: 900; }
.step__title       { font-weight: 900; }
.trust-card__title { font-weight: 900; }

/* Eyebrow — SemiBold, tracked */
.eyebrow {
  font-weight: 600;
  letter-spacing: 0.3em;
  font-size: 10px;
}

/* Buttons — Bold (700), not Black */
.btn { font-weight: 700; }

/* ═══════════════════════════════════════════════════════════
   SCROLL REVEAL + HERO ENTRANCE ANIMATIONS
═══════════════════════════════════════════════════════════ */

/* ── Page fade-in ── */
body { animation: lnc-fade-in 0.4s ease both; }
@keyframes lnc-fade-in { from { opacity: 0; } to { opacity: 1; } }

/* ── Hero entrance ── */
.hero__eyebrow,
.hero__title,
.hero__sub,
.hero__ctas,
.hero__scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.9s cubic-bezier(.22,.68,0,1.05),
              transform 0.9s cubic-bezier(.22,.68,0,1.05);
}
.hero--loaded .hero__eyebrow { opacity: 1; transform: none; transition-delay: 0.15s; }
.hero--loaded .hero__title   { opacity: 1; transform: none; transition-delay: 0.35s; }
.hero--loaded .hero__sub     { opacity: 1; transform: none; transition-delay: 0.55s; }
.hero--loaded .hero__ctas    { opacity: 1; transform: none; transition-delay: 0.72s; }
.hero--loaded .hero__scroll  { opacity: 0.55; transform: none; transition-delay: 1.05s; }

/* ── Scroll reveal base ── */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.75s cubic-bezier(.25,.46,.45,.94),
              transform 0.75s cubic-bezier(.25,.46,.45,.94);
  will-change: opacity, transform;
}
.reveal.reveal--fade  { transform: none; }
.reveal.reveal--left  { transform: translateX(-40px); }
.reveal.reveal--right { transform: translateX(40px); }
.reveal.reveal--scale { transform: scale(0.95) translateY(20px); }
.reveal.is-visible    { opacity: 1 !important; transform: none !important; }

/* Stagger delays for grid items */
.reveal--d1 { transition-delay: 0.08s; }
.reveal--d2 { transition-delay: 0.16s; }
.reveal--d3 { transition-delay: 0.24s; }
.reveal--d4 { transition-delay: 0.32s; }
.reveal--d5 { transition-delay: 0.40s; }
.reveal--d6 { transition-delay: 0.48s; }

/* ── Respect reduced-motion preference ── */
@media (prefers-reduced-motion: reduce) {
  body { animation: none; }
  .reveal,
  .hero__eyebrow, .hero__title, .hero__sub, .hero__ctas, .hero__scroll {
    opacity: 1 !important; transform: none !important; transition: none !important;
  }
}

@media print {
  .nav, .wa-float, .no-print { display: none !important; }
  .doc-wrap { box-shadow: none; padding: 40px; }
}

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE — TABLET & MOBILE
   Breakpoints: 1024px (tablet) · 768px (mobile) · 480px (small)
═══════════════════════════════════════════════════════════ */

/* ── HAMBURGER BUTTON ── */
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
  z-index: 200;
}
.nav__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: all 0.3s ease;
  border-radius: 2px;
}
.nav.scrolled .nav__hamburger span { background: var(--dark); }
.nav__hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__hamburger.open span:nth-child(2) { opacity: 0; }
.nav__hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── MOBILE MENU OVERLAY ── */
.nav__mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--dark);
  z-index: 150;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
}
.nav__mobile-menu.open { display: flex; }
.nav__mobile-link {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 22px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  padding: 18px 40px;
  width: 100%;
  text-align: center;
  transition: color 0.2s;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.nav__mobile-link:hover { color: var(--teal); }
.nav__mobile-cta {
  margin-top: 32px;
  background: var(--teal);
  color: var(--white);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 16px 40px;
}
.nav__mobile-close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: none;
  border: none;
  color: rgba(255,255,255,0.5);
  font-size: 28px;
  cursor: pointer;
  line-height: 1;
}

/* ════════════════════════════════════════
   TABLET  ≤ 1024px
════════════════════════════════════════ */
@media (max-width: 1024px) {
  :root { --section-pad: 72px 32px; }

  .container, .container--narrow { padding: 0 32px; }

  /* Nav */
  .nav { padding: 0 32px; }
  .nav__links { gap: 24px; }

  /* Hero */
  .hero__title { font-size: 56px; }
  .hero__title em { font-size: 66px; }

  /* Grids */
  .packages-grid { grid-template-columns: repeat(2, 1fr); }
  .pkg-card--featured { grid-column: span 2; }
  .hotels-grid { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .testi-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }

  /* Footer */
  .footer { padding: 48px 32px 24px; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 32px; }

  /* Philosophy */
  .stats-strip { grid-template-columns: repeat(2, 1fr); gap: 0; }
  .stat { border-right: none; border-bottom: 1px solid rgba(255,255,255,.08); padding: 24px 16px; }
  .stat:nth-child(odd) { border-right: 1px solid rgba(255,255,255,.08); }
  .stat:last-child, .stat:nth-last-child(2):nth-child(odd) { border-bottom: none; }

  /* Steps */
  .steps { grid-template-columns: repeat(2, 1fr); gap: 48px; }
  .steps::before { display: none; }

  /* Booking */
  .booking-body { grid-template-columns: 1fr; }
  .booking-sidebar { display: none; }
  .booking-content { padding: 40px 32px; }
}

/* ════════════════════════════════════════
   MOBILE  ≤ 768px
════════════════════════════════════════ */
@media (max-width: 768px) {
  :root { --section-pad: 56px 20px; }

  html { font-size: 15px; }
  .container, .container--narrow { padding: 0 20px; }

  /* ── NAV MOBILE ── */
  .nav { padding: 0 20px; height: 64px; }
  .nav__links, .nav__cta { display: none; }
  .nav__hamburger { display: flex; }

  /* ── HERO ── */
  .hero { min-height: 100svh; }
  .hero__title { font-size: 38px; line-height: 1.08; }
  .hero__title em { font-size: 44px; }
  .hero__sub { font-size: 15px; margin-bottom: 32px; }
  .hero__eyebrow { font-size: 10px; letter-spacing: 0.22em; margin-bottom: 20px; }
  .hero__ctas { flex-direction: column; align-items: center; width: 100%; gap: 12px; }
  .hero__ctas .btn { width: 100%; max-width: 280px; text-align: center; padding: 16px 24px; }
  .hero__scroll { display: none; }

  /* ── EXPERIENCE BAR ── */
  .exp-bar { padding: 0 12px; justify-content: flex-start; }
  .exp-bar__item { padding: 14px 16px; font-size: 10px; }

  /* ── PACKAGES ── */
  .packages-section { padding: var(--section-pad); }
  .packages-header { flex-direction: column; align-items: flex-start; gap: 16px; margin-bottom: 32px; }
  .packages-grid { grid-template-columns: 1fr; }
  .packages-grid--2 { grid-template-columns: 1fr; }
  .pkg-card--featured { grid-column: span 1; }
  .pkg-card--featured .pkg-card__img { grid-template-columns: 1fr; }
  .pkg-card--featured .pkg-card__img > *:last-child { display: none; }
  .pkg-card--featured .pkg-card__title { font-size: 20px; }

  /* ── SECTION TITLES ── */
  .section-title { font-size: 28px; }
  .editorial { font-size: 17px; }

  /* ── HOTELS ── */
  .hotels-grid { grid-template-columns: 1fr; }
  .zone-tabs { flex-wrap: wrap; gap: 0; }
  .zone-tab { padding: 10px 16px; font-size: 10px; }

  /* ── PHILOSOPHY ── */
  .pillars { grid-template-columns: 1fr; gap: 36px; }
  .stat__num { font-size: 36px; }
  .stats-strip { grid-template-columns: repeat(2, 1fr); }

  /* ── HOW IT WORKS ── */
  .steps { grid-template-columns: 1fr; gap: 32px; }

  /* ── TRUST ── */
  .trust-grid { grid-template-columns: 1fr; }
  .partners__item { padding: 12px 20px; font-size: 11px; }

  /* ── TEAM ── */
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .member-expanded { grid-template-columns: 1fr; gap: 24px; padding: 28px 20px; }

  /* ── TESTIMONIALS ── */
  .testi-grid { grid-template-columns: 1fr; }
  .testi-card { padding: 28px 24px; }

  /* ── GALLERY ── */
  .gallery-grid { grid-template-columns: 1fr 1fr; }

  /* ── INQUIRY FORM ── */
  .inquiry-form { grid-template-columns: 1fr; }
  .form-input--full { grid-column: 1; }

  /* ── FOOTER ── */
  .footer { padding: 40px 20px 24px; }
  .footer__grid { grid-template-columns: 1fr; gap: 28px; }
  .footer__desc { max-width: 100%; }
  .footer__bottom { flex-direction: column; align-items: flex-start; gap: 12px; }
  .footer__legal { flex-wrap: wrap; gap: 16px; }

  /* ── WA FLOAT ── */
  .wa-float { bottom: 20px; right: 20px; width: 50px; height: 50px; }

  /* ── BOOKING PAGE ── */
  .booking-progress { padding: 16px 20px; overflow-x: auto; }
  .booking-content { padding: 28px 20px; }
  .booking-foot { padding: 16px 20px; flex-direction: column; gap: 12px; }
  .booking-foot > * { width: 100%; text-align: center; }

  /* ── LEGAL PAGE ── */
  .legal-layout { grid-template-columns: 1fr; }
  .legal-sidebar { display: none; }
  .legal-content { padding: 24px 20px; }
  .legal-h2 { font-size: 22px; }

  /* ── INVOICE ── */
  .doc-wrap { padding: 32px 20px; }
  .doc-header { flex-direction: column; gap: 16px; }
  .doc-guest-block { grid-template-columns: 1fr; }
  .doc-guest-col:first-child { border-right: none; border-bottom: 1px solid var(--border); }

  /* ── UTILITIES ── */
  .flex-between { flex-direction: column; align-items: flex-start; gap: 16px; }
  .grid-2 { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr; }
}

/* ════════════════════════════════════════
   SMALL MOBILE  ≤ 480px
════════════════════════════════════════ */
@media (max-width: 480px) {
  .hero__title { font-size: 32px; }
  .hero__title em { font-size: 37px; }

  .section-title { font-size: 24px; }

  .packages-grid { gap: 2px; }
  .team-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }

  .stat__num { font-size: 30px; }
  .stats-strip { grid-template-columns: 1fr 1fr; }

  .testi-card__quote { font-size: 16px; }

  .footer__socials { flex-wrap: wrap; }

  .exp-bar__divider { display: none; }
  .exp-bar__item { padding: 12px 10px; font-size: 9px; letter-spacing: 0.08em; }
}

/* ── MOBILE MENU HEADER & LINKS WRAPPER ── */
.nav__mobile-menu {
  padding: 0 0 40px;
  justify-content: flex-start;
}
.nav__mobile-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 20px 24px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 20px;
}
.nav__mobile-links {
  display: flex;
  flex-direction: column;
  width: 100%;
  align-items: center;
}

/* ═══════════════════════════════════════════════════════════
   DESIGN SYSTEM REFINEMENTS — v2
   Improvements: gallery item, trust hover, section flow,
   focus states, typography scale, component polish.
═══════════════════════════════════════════════════════════ */

/* ── GALLERY ITEM (proper CSS instead of inline-only) ── */
.gallery-item {
  position: relative;
  overflow: hidden;
  background: var(--dark2);
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.65s cubic-bezier(.25,.46,.45,.94);
  will-change: transform;
}
.gallery-item:hover img { transform: scale(1.07); }

/* Remove inline-JS hover — CSS handles it now */
.gallery-item img[onmouseover] { onmouseover: none; }

/* ── TRUST CARD HOVER ── */
.trust-card {
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.trust-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 36px rgba(26,33,24,.1);
}
.trust-card__icon {
  font-size: 22px;
  line-height: 1;
  margin-bottom: 20px;
}

/* ── IMPROVED SECTION VISUAL FLOW ── */
/* Reduce the visual cliff between back-to-back light sections */
#trust.section--white { padding-bottom: 72px; }
#team { padding-top: 72px; }

/* Thin line separator between same-tone sections */
.section--white + section:not(.section--dark):not(.section--dark2):not(.section--grad) {
  border-top: 1px solid rgba(0,0,0,.06);
}

/* ── PARTNER LOGOS — TIGHTER ── */
.partners { padding-top: 40px; }
.partners__label { margin-bottom: 24px; }
.partners__logos { gap: 0; }

/* ── SECTION TITLE SCALE UP ── */
.section-title { font-size: 44px; }
@media (max-width: 1024px) { .section-title { font-size: 36px; } }
@media (max-width: 768px)  { .section-title { font-size: 30px; } }
@media (max-width: 480px)  { .section-title { font-size: 26px; } }

/* ── STAT NUMBER SCALE UP ── */
.stat__num { font-size: 52px; line-height: 1; }
@media (max-width: 768px) { .stat__num { font-size: 40px; } }
@media (max-width: 480px) { .stat__num { font-size: 34px; } }

/* ── HERO TITLE REFINEMENT ── */
.hero__title { font-size: 76px; letter-spacing: -0.025em; }
.hero__title em { font-size: 84px; }
@media (max-width: 1024px) { .hero__title { font-size: 58px; } .hero__title em { font-size: 68px; } }

/* ── PKG CARD IMAGE — ENSURE CONSISTENT HEIGHT ── */
.pkg-card__img { height: 220px; overflow: hidden; }
.pkg-card__img img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.5s ease; }
.pkg-card:hover .pkg-card__img img { transform: scale(1.04); }

/* ── HOTEL CARD IMAGE — CONSISTENT HEIGHT ── */
.hotel-card__img { height: 180px; overflow: hidden; }
.hotel-card__img img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.5s ease; }
.hotel-card:hover .hotel-card__img img { transform: scale(1.04); }

/* ── NAV CTA BUTTON (Plan Your Journey) ── */
.nav__cta {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 12px 24px;
  background: var(--teal);
  color: var(--white);
  transition: background 0.2s, transform 0.2s;
  display: inline-block;
}
.nav__cta:hover { background: #27a886; transform: translateY(-1px); }

/* ── FOCUS STATES (Accessibility) ── */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--teal);
  outline-offset: 3px;
}
.btn:focus-visible { outline-offset: 4px; }

/* ── INQUIRY FORM CTA SECTION ── */
/* Increase contrast on the inquiry form background */
.form-input { border-color: rgba(255,255,255,.18); }
.form-input:focus { border-color: var(--teal); box-shadow: 0 0 0 3px rgba(44,184,150,.15); }

/* ── EYEBROW SPACING ── */
.eyebrow { margin-bottom: 14px; }

/* ── HOW-IT-WORKS STEP HOVER ── */
.step:hover .step__num {
  background: var(--teal);
  border-color: var(--teal);
  color: var(--white);
  transition: background 0.25s, border-color 0.25s, color 0.25s;
}

/* ── TESTI CARD BORDER TOP COLORS ── */
.testi-card:nth-child(2) { border-top-color: var(--gold); }
.testi-card:nth-child(3) { border-top-color: var(--ocean); }

/* ── FOOTER SOCIAL HOVER ── */
.footer__social { transition: color 0.2s; }
.footer__social:hover { color: var(--white); }

/* ── PACKAGE CARD ID LINE ── */
.pkg-card__id { letter-spacing: 0.22em; font-size: 9px; }

/* ── TRUST CARD ICON STYLE ── */
.trust-card__icon {
  width: 44px; height: 44px;
  border: 1.5px solid rgba(44,184,150,.35);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; color: var(--teal);
  margin-bottom: 20px;
}

/* ── PILLAR BODY LINE-HEIGHT ── */
.pillar__body { font-size: 14.5px; line-height: 1.85; color: rgba(255,255,255,.6); }

/* ── SMOOTH SCROLL OFFSET FOR FIXED NAV ── */
[id] { scroll-margin-top: 80px; }

/* ── GALLERY SECTION PADDING ── */
#gallery.section { padding-bottom: 80px; }

/* ── REMOVE .gallery-grid GAP INCONSISTENCY ── */
.gallery-grid { gap: 4px; }

/* ── MOBILE GALLERY — 1 COLUMN FOR SPAN ITEMS ── */
@media (max-width: 768px) {
  .gallery-grid { grid-template-columns: 1fr 1fr; gap: 3px; }
  .gallery-item[style*="grid-column"] { grid-column: span 1 !important; }
}
@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item[style*="grid-column"] { grid-column: span 1 !important; }
  .gallery-item { height: 220px !important; }
}


/* ═══════════════════════════════════════════════════════════
   DESIGN SYSTEM — v3 FINAL POLISH
   Pillar icons, hotel placeholders, member cards,
   inquiry form, section transitions, typography.
═══════════════════════════════════════════════════════════ */

/* ── PILLAR ICON — SQUARE WITH TEAL BORDER (design-system consistent) ── */
.pillar__icon {
  width: 52px; height: 52px;
  border: 1.5px solid rgba(44,184,150,.45);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; color: var(--teal); margin-bottom: 28px;
  transition: border-color 0.3s, background 0.3s;
}
.pillar__icon:hover {
  border-color: var(--teal);
  background: rgba(44,184,150,.07);
}
.pillar__title { font-size: 21px; margin-bottom: 14px; }
.pillar__body  { font-size: 14.5px; line-height: 1.85; color: rgba(255,255,255,.58); }

/* ── STATS STRIP — LARGER, BOLDER ── */
.stats-strip { margin-top: 72px; padding-top: 56px; }
.stat__num   { font-size: 56px; letter-spacing: -0.02em; }
.stat__label { font-size: 10px; letter-spacing: 0.22em; margin-top: 10px; }
@media (max-width: 1024px) { .stat__num { font-size: 44px; } }
@media (max-width: 768px)  { .stat__num { font-size: 38px; } }

/* ── HOTEL CARD IMG CONTAINER ── */
.hotel-card__img { overflow: hidden; }
.hotel-card__img img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform 0.55s cubic-bezier(.25,.46,.45,.94);
}
.hotel-card:hover .hotel-card__img img { transform: scale(1.05); }

/* ── HOTEL REVIEW TEXT ── */
.hotel-card__review {
  font-family: var(--font-body); font-weight: 300;
  font-size: 12px; color: var(--muted); line-height: 1.7;
  margin-top: 6px; font-style: italic;
}

/* ── MEMBER CARD — TALLER PHOTO AREA ── */
.member-card__photo { height: 260px; overflow: hidden; }
.member-card__photo img {
  width: 100%; height: 100%; object-fit: cover; object-position: top;
  display: block; transition: transform 0.55s ease;
}
.member-card:hover .member-card__photo img { transform: scale(1.04); }

/* ── MEMBER CARD BODY SPACING ── */
.member-card__body { padding: 22px 20px; }
.member-card__name { font-size: 18px; margin-bottom: 3px; }
.member-card__yrs  { margin-top: 10px; }

/* ── SECTION TITLE REFINEMENT ── */
.section-title { font-size: 44px; letter-spacing: -0.015em; }
@media (max-width: 1024px) { .section-title { font-size: 36px; } }
@media (max-width: 768px)  { .section-title { font-size: 30px; } }
@media (max-width: 480px)  { .section-title { font-size: 25px; } }

/* ── FLEX-BETWEEN ALIGNMENT FIX ── */
/* On desktop, vertically align header to bottom of title, not center */
.packages-header { align-items: flex-end; }
.flex-between { align-items: flex-end; }

/* ── SECTION DIVIDERS — SUBTLE VISUAL FLOW ── */
.section--sand  { border-top: 1px solid rgba(0,0,0,.05); }
.section--white { border-top: 1px solid rgba(0,0,0,.04); }

/* ── INQUIRY FORM — IMPROVED VISUAL ── */
.cta-section { padding: 96px 48px; }
.inquiry-form { gap: 10px; margin-bottom: 14px; }
.form-input {
  padding: 16px 20px; font-size: 14px; font-weight: 400;
  border-color: rgba(255,255,255,.15); letter-spacing: 0.02em;
}
.form-input:focus { border-color: var(--teal); box-shadow: 0 0 0 3px rgba(44,184,150,.12); }
textarea.form-input { min-height: 120px; line-height: 1.7; }

/* ── INQUIRY SECTION — SOCIAL PROOF STRIP ── */
.inquiry-proof {
  display: flex; gap: 32px; justify-content: center;
  margin-top: 20px; flex-wrap: wrap;
}
.inquiry-proof__item {
  font-family: var(--font-head); font-weight: 600;
  font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase;
  color: rgba(255,255,255,.38);
}

/* ── BUTTON FULL WIDTH SUBMIT ── */
.btn--submit {
  font-size: 13px; padding: 18px 32px;
  letter-spacing: 0.18em; width: 100%;
  text-align: center; display: block;
}

/* ── PACKAGE CARD — CONSISTENT IMAGE HEIGHT ── */
.pkg-card__img { height: 220px; overflow: hidden; position: relative; }
.pkg-card__img img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.5s ease; }
.pkg-card:hover .pkg-card__img img { transform: scale(1.04); }
.pkg-card--featured .pkg-card__img { height: 280px; }

/* ── ZONE TABS — IMPROVED UNDERLINE ── */
.zone-tab { font-size: 12px; letter-spacing: 0.1em; border-bottom-width: 2.5px; padding: 14px 20px; }
.zone-tab.active { color: var(--dark); border-bottom-color: var(--teal); font-weight: 800; }

/* ── TRUST CARD — CORRECT ICON (overrides circular) ── */
/* Keep square icon for trust to match pillar aesthetic */
.trust-card__icon {
  width: 48px; height: 48px;
  border: 1.5px solid rgba(44,184,150,.4);
  border-radius: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; color: var(--teal); margin-bottom: 20px;
}

/* ── NAV SCROLLED — CLEAN BACKGROUND ── */
.nav.scrolled {
  background: rgba(247,244,238,.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

/* ── HERO OVERLAY — SLIGHTLY DEEPER FOR TEXT CONTRAST ── */
.hero__overlay {
  background: linear-gradient(160deg,
    rgba(26,33,24,.5) 0%,
    rgba(26,33,24,.75) 100%);
}

/* ── SCROLL INDICATOR — REFINED ── */
.hero__scroll span { font-size: 8px; letter-spacing: 0.35em; }
.hero__scroll-line { animation: scroll-pulse 2s ease-in-out infinite; }
@keyframes scroll-pulse {
  0%, 100% { opacity: 0.3; transform: scaleY(1); }
  50%       { opacity: 0.7; transform: scaleY(1.15); }
}

/* ── EXPERIENCE BAR — PILL ACTIVE INDICATOR ── */
.exp-bar__item.active {
  color: var(--teal);
  position: relative;
}
.exp-bar__item.active::after {
  content: '';
  position: absolute; bottom: 0; left: 50%; transform: translateX(-50%);
  width: 24px; height: 2px; background: var(--teal);
}

/* ── FOOTER REFINEMENT ── */
.footer { padding: 72px 48px 36px; }
.footer__desc { font-size: 13.5px; line-height: 1.85; color: rgba(255,255,255,.38); }
.footer__col-title { font-size: 9px; letter-spacing: 0.24em; margin-bottom: 24px; }
.footer__link { font-size: 13.5px; margin-bottom: 12px; }

/* ── GLOBAL TRANSITIONS — SMOOTH ── */
* { -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }

/* ── MOBILE: INQUIRY PROOF STRIP ── */
@media (max-width: 768px) {
  .inquiry-proof { gap: 16px; flex-direction: column; align-items: center; }
  .cta-section { padding: 64px 20px; }
  .stats-strip { margin-top: 56px; padding-top: 40px; }
  .stat__num { font-size: 34px; }
  .pillar__icon { width: 44px; height: 44px; font-size: 18px; margin-bottom: 20px; }
  .hotel-card__img { height: 200px !important; }
  .member-card__photo { height: 220px; }
}
@media (max-width: 480px) {
  .stat__num { font-size: 30px; }
  .section-title { font-size: 24px; }
}


/* ═══════════════════════════════════════════════════════════
   BLOCK v4 — Hero CSS-native animation (no JS dependency)
   Replaces JS-gated hero--loaded with keyframes so content
   is always visible regardless of JS timing/failure.
   Also fixes .cta-section background override.
   ═══════════════════════════════════════════════════════════ */

/* --- Hero keyframe animation --- */
@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0);    }
}

/* Override the opacity:0 defaults with CSS animations */
.hero__eyebrow {
  opacity: 0;
  animation: heroFadeUp 0.85s cubic-bezier(0.22, 0.68, 0, 1.05) 0.1s forwards;
}
.hero__title {
  opacity: 0;
  animation: heroFadeUp 0.9s cubic-bezier(0.22, 0.68, 0, 1.05) 0.3s forwards;
}
.hero__sub {
  opacity: 0;
  animation: heroFadeUp 0.9s cubic-bezier(0.22, 0.68, 0, 1.05) 0.5s forwards;
}
.hero__ctas {
  opacity: 0;
  animation: heroFadeUp 0.85s cubic-bezier(0.22, 0.68, 0, 1.05) 0.65s forwards;
}
.hero__scroll {
  opacity: 0;
  animation: heroFadeUp 0.8s ease 1.0s forwards;
}

/* Keep hero--loaded rules as no-op (JS still runs, no conflict) */
.hero--loaded .hero__eyebrow,
.hero--loaded .hero__title,
.hero--loaded .hero__sub,
.hero--loaded .hero__ctas,
.hero--loaded .hero__scroll {
  /* animation handles everything — no override needed */
}

/* --- Fix .cta-section overriding .section--grad background --- */
.section--grad.cta-section {
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark2) 100%) !important;
}


/* ═══════════════════════════════════════════════════════════
   BLOCK v5 — Reveal fallback animation (corrected)
   CSS animation overrides !important, so we scope the animation
   to .reveal:not(.is-visible). When JS adds .is-visible, the
   selector stops matching → animation drops → .reveal.is-visible
   styles (opacity:1) take effect normally.
   ═══════════════════════════════════════════════════════════ */

@keyframes revealFallback {
  to { opacity: 1; transform: none; }
}

/* Only animate elements JS hasn't revealed yet */
.reveal:not(.is-visible) {
  animation: revealFallback 0.75s ease 4s forwards;
}


/* ================================================
   LNC UI IMPROVEMENTS v1 — 2026
   WhatsApp float, mobile sticky CTA, hotel card
   img polish, tour card hover, general refinements
   ================================================ */

/* --- WhatsApp Floating Button --- */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  background: #25d366;
  border-radius: 50%;
  box-shadow: 0 4px 16px rgba(37,211,102,0.4);
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 24px rgba(37,211,102,0.55);
}
.whatsapp-float svg {
  width: 28px;
  height: 28px;
  fill: #fff;
}
@media (max-width: 768px) {
  .whatsapp-float {
    bottom: 80px;
    right: 18px;
    width: 50px;
    height: 50px;
  }
}

/* --- Mobile Sticky CTA Bar --- */
.mobile-sticky-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 998;
  background: var(--gold, #c4964a);
  padding: 12px 20px;
  text-align: center;
  transform: translateY(100%);
  transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
  box-shadow: 0 -2px 12px rgba(0,0,0,0.15);
}
.mobile-sticky-cta.is-visible {
  transform: translateY(0);
}
.mobile-sticky-cta a {
  display: block;
  color: #fff;
  font-family: var(--font-head);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
}
@media (max-width: 768px) {
  .mobile-sticky-cta { display: block; }
}

/* --- Hotel Card Image --- */
.hotel-card__img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.hotel-card:hover .hotel-card__img {
  transform: scale(1.04);
}
.hotel-card {
  overflow: hidden;
}

/* --- Tour / Experience Card Hover --- */
.tour-card,
.experience-card,
.package-card {
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  overflow: hidden;
}
.tour-card:hover,
.experience-card:hover,
.package-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(26,33,24,0.18);
}
.tour-card img,
.experience-card img,
.package-card img {
  transition: transform 0.4s ease;
}
.tour-card:hover img,
.experience-card:hover img,
.package-card:hover img {
  transform: scale(1.04);
}

/* --- CTA Button Refinements --- */
.btn--primary,
.btn.btn--primary {
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}
.btn--primary:hover,
.btn.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(196,150,74,0.35);
}

/* --- Section Spacing Refinement --- */
.section--tight { padding-top: 48px; padding-bottom: 48px; }
.section--loose { padding-top: 128px; padding-bottom: 128px; }

/* --- Smooth scroll for anchor links --- */
html { scroll-behavior: smooth; }


/* ================================================
   LNC DESIGN SYSTEM v2 — Full Phase 1 & 2
   Fonts, type scale, spacing, colors, buttons,
   cards, testimonials, gallery, animations
   ================================================ */

/* --- Font Variables & Type Scale --- */
:root {
  --font-serif: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --font-sans:  'DM Sans', 'Helvetica Neue', Arial, sans-serif;

  /* Fluid type scale using clamp() */
  --text-hero:    clamp(42px, 7vw, 88px);
  --text-display: clamp(32px, 4.5vw, 56px);
  --text-card:    clamp(18px, 2vw, 26px);
  --text-lead:    clamp(16px, 1.4vw, 20px);
  --text-body:    16px;
  --text-small:   14px;
  --text-label:   11px;

  /* Spacing tokens — 8px grid */
  --space-1: 8px;
  --space-2: 16px;
  --space-3: 24px;
  --space-4: 32px;
  --space-6: 48px;
  --space-8: 64px;
  --space-12: 96px;
  --space-16: 128px;

  /* Refined color tokens */
  --c-forest:    #1C3A2E;
  --c-jungle:    #2D5A3D;
  --c-sage:      #5A7A5F;
  --c-cta:       #C4714A;
  --c-cta-hover: #B5623D;
  --c-cream:     #FAF7F2;
  --c-ivory:     #F5F0E8;
  --c-parchment: #E8E2D8;
  --c-gold:      #B8975A;
  --c-sand:      #C8B49A;
  --c-text:      #1A1A18;
  --c-muted:     #6B6860;
}

/* --- Apply premium typography globally --- */
h1, h2, h3 {
  font-family: var(--font-serif);
  font-weight: 400;
  line-height: 1.15;
}
h1 { font-size: var(--text-hero); letter-spacing: -0.01em; }
h2 { font-size: var(--text-display); }
h3 { font-size: var(--text-card); }

body {
  font-family: var(--font-sans);
  font-size: var(--text-body);
  line-height: 1.75;
}

/* Eyebrow label style */
.eyebrow, .section-eyebrow, .eyebrow-label {
  font-family: var(--font-sans);
  font-size: var(--text-label);
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-cta);
  display: block;
  margin-bottom: 10px;
}

/* --- Section spacing upgrade --- */
.section,
section.section--sand,
section.section--dark,
section.section--light {
  padding: var(--space-12) clamp(24px, 6vw, 80px);
}
@media (max-width: 768px) {
  .section,
  section.section--sand,
  section.section--dark,
  section.section--light {
    padding: var(--space-8) var(--space-3);
  }
}

/* --- CTA Button System --- */
.btn-primary,
.btn--primary {
  display: inline-block;
  background: var(--c-cta);
  color: #fff !important;
  padding: 14px 32px;
  border-radius: 999px;
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background 200ms ease, transform 200ms ease, box-shadow 200ms ease;
}
.btn-primary:hover, .btn--primary:hover {
  background: var(--c-cta-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(196,113,74,0.35);
}

.btn-secondary {
  display: inline-block;
  background: transparent;
  color: var(--c-forest) !important;
  padding: 13px 31px;
  border-radius: 999px;
  border: 2px solid var(--c-forest);
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: background 200ms ease, color 200ms ease;
}
.btn-secondary:hover {
  background: var(--c-forest);
  color: #fff !important;
}

.btn-ghost {
  display: inline-block;
  background: transparent;
  color: #fff !important;
  padding: 13px 31px;
  border-radius: 999px;
  border: 2px solid rgba(255,255,255,0.7);
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: background 200ms ease, border-color 200ms ease;
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.12);
  border-color: #fff;
}

/* --- Tour / Package Card Premium Styles --- */
.tour-card,
.package-card {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(200,180,154,0.25);
  box-shadow: 0 2px 12px rgba(26,26,24,0.06);
  transition: transform 350ms ease, box-shadow 350ms ease;
}
.tour-card:hover,
.package-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(26,26,24,0.13);
}
.tour-card__img,
.package-card__img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  display: block;
  transition: transform 400ms ease;
}
.tour-card:hover .tour-card__img,
.package-card:hover .package-card__img {
  transform: scale(1.04);
}
.tour-card__title,
.package-card__title {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 400;
  color: var(--c-forest);
  line-height: 1.25;
  margin-bottom: 8px;
}
.tour-card__category {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(28,58,46,0.78);
  color: #F5F0E8;
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-family: var(--font-sans);
  font-weight: 600;
}

/* --- Testimonial Card Styles --- */
.testimonial-card {
  background: #fff;
  border-radius: 14px;
  padding: 28px;
  border: 1px solid rgba(200,180,154,0.25);
  box-shadow: 0 2px 16px rgba(26,26,24,0.06);
  transition: transform 300ms ease, box-shadow 300ms ease;
}
.testimonial-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(26,26,24,0.1);
}
.testimonial-stars {
  color: var(--c-gold);
  font-size: 14px;
  letter-spacing: 2px;
  margin-bottom: 12px;
}
.testimonial-quote {
  font-family: var(--font-serif);
  font-size: 17px;
  font-style: italic;
  color: var(--c-text);
  line-height: 1.7;
  margin-bottom: 20px;
}
.testimonial-quote::before {
  content: '\201C';
  font-size: 40px;
  color: var(--c-sand);
  line-height: 0;
  vertical-align: -14px;
  margin-right: 4px;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testimonial-author img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
}
.testimonial-name {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 600;
  color: var(--c-forest);
}
.testimonial-detail {
  font-size: 12px;
  color: var(--c-muted);
  margin-top: 2px;
}

/* --- Gallery Masonry + Warm Filter --- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 220px;
  gap: 8px;
}
.gallery-item.featured {
  grid-column: span 2;
  grid-row: span 2;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 400ms ease, filter 400ms ease;
  filter: saturate(0.9) brightness(1.02) sepia(0.06);
}
.gallery-item:hover img {
  transform: scale(1.03);
  filter: saturate(1.0) brightness(1.05) sepia(0.0);
}
@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 160px;
  }
  .gallery-item.featured {
    grid-column: span 2;
    grid-row: span 1;
  }
}

/* --- Trust Badge (hero) --- */
.trust-badge {
  position: absolute;
  top: 32px;
  right: 40px;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 12px;
  padding: 12px 20px;
  text-align: center;
  color: #fff;
  z-index: 10;
}
.trust-badge__stars {
  color: var(--c-gold);
  font-size: 13px;
  letter-spacing: 2px;
  display: block;
  margin-bottom: 3px;
}
.trust-badge__text {
  font-family: var(--font-sans);
  font-size: 11px;
  color: rgba(255,255,255,0.9);
  letter-spacing: 0.05em;
  line-height: 1.6;
}
@media (max-width: 768px) {
  .trust-badge {
    position: relative;
    top: auto;
    right: auto;
    display: inline-block;
    margin: 16px auto 0;
    background: rgba(0,0,0,0.3);
  }
}

/* --- Scroll Reveal (enhanced — already in file, this overrides) --- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 600ms cubic-bezier(0.22,1,0.36,1),
              transform 600ms cubic-bezier(0.22,1,0.36,1);
}
.reveal.is-visible {
  opacity: 1 !important;
  transform: none !important;
}
.reveal--delay-1 { transition-delay: 100ms; }
.reveal--delay-2 { transition-delay: 200ms; }
.reveal--delay-3 { transition-delay: 300ms; }

/* --- Nav scrolled state (enhanced) --- */
.nav.scrolled,
nav.scrolled,
.site-header.scrolled {
  background: var(--c-forest) !important;
  box-shadow: 0 2px 20px rgba(0,0,0,0.18);
}

/* --- Footer enhancements --- */
.footer-col h4,
.footer__heading {
  font-family: var(--font-sans);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--c-sand);
  margin-bottom: 16px;
  font-weight: 600;
}
.footer-col a,
.footer__link {
  display: block;
  color: rgba(245,240,232,0.55);
  font-size: 13px;
  padding: 4px 0;
  text-decoration: none;
  transition: color 200ms;
}
.footer-col a:hover,
.footer__link:hover {
  color: #F5F0E8;
}
.footer__bottom,
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0;
  margin-top: 48px;
  font-size: 12px;
  color: rgba(245,240,232,0.4);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

/* --- Pre-footer CTA zone --- */
.prefooter-cta {
  background: var(--c-forest);
  padding: var(--space-8) clamp(24px, 6vw, 80px);
  text-align: center;
  color: #fff;
}
.prefooter-cta h2 {
  font-family: var(--font-serif);
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 300;
  margin-bottom: 12px;
  color: #fff;
}
.prefooter-cta p {
  font-size: 16px;
  color: rgba(255,255,255,0.7);
  margin-bottom: 28px;
}
.prefooter-cta__actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  align-items: center;
}

/* --- WhatsApp pulse animation --- */
@keyframes wa-pulse {
  0%   { box-shadow: 0 4px 16px rgba(37,211,102,0.4), 0 0 0 0 rgba(37,211,102,0.3); }
  70%  { box-shadow: 0 4px 16px rgba(37,211,102,0.4), 0 0 0 14px rgba(37,211,102,0); }
  100% { box-shadow: 0 4px 16px rgba(37,211,102,0.4), 0 0 0 0 rgba(37,211,102,0); }
}
.whatsapp-float {
  animation: wa-pulse 2.5s ease-out infinite;
}

/* --- Hero nav link underline slide effect --- */
.nav__link {
  position: relative;
  padding-bottom: 3px;
}
.nav__link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--c-sand);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 200ms ease;
}
.nav__link:hover::after {
  transform: scaleX(1);
}

/* --- Reduced motion accessibility --- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .reveal {
    opacity: 1 !important;
    transform: none !important;
  }
}


/* --- Hero Scroll Hint --- */
.hero__scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,0.6);
  font-family: var(--font-sans);
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  animation: scrollBounce 2s ease-in-out infinite;
  z-index: 5;
}
@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(5px); }
}

/* --- Cormorant applied to hero title specifically --- */
.hero__title {
  font-family: var(--font-serif) !important;
  font-weight: 300 !important;
  font-size: var(--text-hero) !important;
  line-height: 1.1 !important;
  letter-spacing: -0.01em;
}

/* --- Hero CTA group spacing --- */
.hero__cta-group,
.hero .cta-group,
.hero__content .btn-primary,
.hero__content .btn-ghost {
  display: inline-flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 8px;
}
