/* ============================================================
   THE BIG BREAKS TRAVELS — Luxury Tour Packages
   Light Ivory + Gold · Modern editorial typography
   ============================================================ */

:root {
  /* Palette — warm ivory & gold, no black */
  --bg: #f7f2e9;          /* page background — warm ivory */
  --bg-2: #efe5d4;        /* alternate section band */
  --bg-3: #e9dcc6;        /* deeper warm sand (footer / accents) */
  --surface: #ffffff;     /* cards */
  --surface-2: #fbf6ec;   /* card hover */

  --text: #3a3128;        /* espresso — primary text */
  --text-soft: #7c7266;   /* muted brown */
  --text-faint: #a99f92;  /* faint captions */

  --gold: #b8924e;        /* primary gold (readable on light) */
  --gold-bright: #caa25c; /* brighter accent */
  --gold-deep: #9a7838;   /* deep gold */
  --gold-soft: #d9c299;   /* soft gold tint */

  --line: rgba(58, 49, 40, 0.12);        /* neutral hairline */
  --line-gold: rgba(184, 146, 78, 0.35); /* gold hairline */

  --on-gold: #2c2418;     /* text sitting on gold fills */
  --light: #f7f2e9;       /* light text (over imagery) */

  /* Type */
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'Jost', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Motion */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --slow: 0.9s;

  --maxw: 1320px;
  --gutter: clamp(1.25rem, 5vw, 5rem);
  --shadow: 0 24px 60px -32px rgba(58, 49, 40, 0.45);
  --shadow-sm: 0 12px 34px -22px rgba(58, 49, 40, 0.4);
}

/* ---------- Reset ---------- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { display: block; width: 100%; height: 100%; object-fit: cover; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
::selection { background: var(--gold); color: #fff; }

/* Custom scrollbar */
::-webkit-scrollbar { width: 9px; }
::-webkit-scrollbar-track { background: var(--bg-2); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 20px; }

/* ---------- Shared typography ---------- */
.section-eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold-deep);
  font-weight: 500;
  margin-bottom: 1.4rem;
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
}
.section-eyebrow::before {
  content: '';
  width: 34px; height: 1px;
  background: var(--gold);
}
.section-title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.06;
  letter-spacing: -0.01em;
  color: var(--text);
}
.section-title em { font-style: italic; color: var(--gold-deep); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 1.05rem 2.4rem;
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 500;
  border-radius: 2px;
  transition: all 0.5s var(--ease);
  position: relative;
  overflow: hidden;
}
.btn--gold {
  background: linear-gradient(120deg, var(--gold), var(--gold-bright));
  color: #fff;
  box-shadow: 0 12px 30px -16px rgba(184, 146, 78, 0.7);
}
.btn--gold:hover { transform: translateY(-3px); box-shadow: 0 20px 42px -14px rgba(184, 146, 78, 0.8); }
.btn--ghost {
  border: 1px solid var(--line-gold);
  color: var(--text);
}
.btn--ghost:hover { border-color: var(--gold); color: var(--gold-deep); background: rgba(184,146,78,0.06); }
.btn--wide { width: 100%; margin-top: 0.5rem; }

/* ============================================================
   PRELOADER
   ============================================================ */
.preloader {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--bg);
  display: grid; place-items: center;
}
.preloader__inner { text-align: center; }
.preloader__logo {
  display: block;
  width: clamp(150px, 20vw, 210px);
  height: auto;
  margin: 0 auto;
}
.preloader__bar {
  width: 180px; height: 1px;
  background: rgba(58,49,40,0.14);
  margin: 1.8rem auto 1.2rem;
  overflow: hidden;
}
.preloader__bar span {
  display: block; height: 100%; width: 0;
  background: var(--gold);
}
.preloader__text {
  font-size: 0.68rem; letter-spacing: 0.35em;
  text-transform: uppercase; color: var(--text-soft);
}

/* ============================================================
   CUSTOM CURSOR
   ============================================================ */
.cursor, .cursor-dot {
  position: fixed; top: 0; left: 0;
  border-radius: 50%;
  pointer-events: none;
  z-index: 9000;
  translate: -50% -50%;
}
.cursor {
  width: 40px; height: 40px;
  border: 1px solid var(--gold);
  transition: width 0.3s var(--ease), height 0.3s var(--ease), background 0.3s;
}
.cursor-dot { width: 5px; height: 5px; background: var(--gold-deep); }
.cursor.is-hover { width: 74px; height: 74px; background: rgba(184,146,78,0.12); border-color: var(--gold); }
@media (hover: none), (max-width: 900px) { .cursor, .cursor-dot { display: none; } }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed; top: 0; left: 0; width: 100%;
  z-index: 1000;
  transition: padding 0.5s var(--ease);
  padding: 1.5rem var(--gutter);
}
.nav__inner {
  position: relative;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0.65rem 0.65rem 0.65rem 1.6rem;
  display: flex; align-items: center; justify-content: space-between;
  border: 1px solid transparent;
  border-radius: 100px;
  transition: border-color 0.5s var(--ease), box-shadow 0.5s var(--ease);
}
/* Glass layer on a pseudo-element so .nav__inner never becomes a
   containing block for the fixed mobile drawer (backdrop-filter would). */
.nav__inner::before {
  content: ''; position: absolute; inset: 0;
  border-radius: inherit;
  background: transparent;
  transition: background 0.5s var(--ease), backdrop-filter 0.5s var(--ease);
  z-index: 0; pointer-events: none;
}
.nav__logo, .nav__links, .nav__toggle, .nav__inquire { position: relative; z-index: 1; }
.nav.is-scrolled { padding: 0.9rem var(--gutter); }
.nav.is-scrolled .nav__inner {
  border-color: var(--line);
  box-shadow: 0 18px 44px -24px rgba(58,49,40,0.4);
}
.nav.is-scrolled .nav__inner::before {
  background: rgba(255,255,255,0.72);
  backdrop-filter: blur(18px) saturate(1.2);
  -webkit-backdrop-filter: blur(18px) saturate(1.2);
}

/* Nav floats over the photo hero when not scrolled → use light chrome so it
   stays legible over imagery; reverts to dark once scrolled onto ivory. */
.nav:not(.is-scrolled) .nav__logo-img { filter: drop-shadow(0 2px 14px rgba(0,0,0,0.45)); }
.nav:not(.is-scrolled):not(.is-open) .nav__toggle span { background: #fff; }
.nav:not(.is-scrolled) .nav__inquire {
  color: #fff; border-color: rgba(255,255,255,0.65);
  text-shadow: 0 2px 14px rgba(0,0,0,0.45);
}
.nav:not(.is-scrolled) .nav__inquire:hover {
  background: rgba(255,255,255,0.14); border-color: #fff;
}
@media (min-width: 901px) {
  .nav:not(.is-scrolled) .nav__link {
    color: rgba(255,255,255,0.92);
    text-shadow: 0 2px 18px rgba(0,0,0,0.4);
  }
  .nav:not(.is-scrolled) .nav__link:hover { color: #fff; background: rgba(255,255,255,0.14); }
  .nav:not(.is-scrolled) .nav__cta {
    color: #fff; border-color: rgba(255,255,255,0.6); background: rgba(255,255,255,0.06);
    text-shadow: 0 2px 14px rgba(0,0,0,0.4);
  }
  .nav:not(.is-scrolled) .nav__cta:hover {
    background: linear-gradient(120deg, var(--gold), var(--gold-bright));
    color: #fff; border-color: transparent; text-shadow: none;
  }
}
/* Logo image — dark version on the light scrolled bar, light version over the hero */
.nav__logo { display: flex; align-items: center; }
.nav__logo-img { display: none; height: 62px; width: auto; }
.nav.is-scrolled .nav__logo-img--dark { display: block; }
.nav:not(.is-scrolled) .nav__logo-img--light { display: block; }
.nav__links { display: flex; align-items: center; gap: 0.4rem; }
.nav__link {
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text);
  position: relative;
  padding: 0.6rem 1rem;
  border-radius: 100px;
  transition: color 0.35s var(--ease), background 0.35s var(--ease);
}
.nav__link::after {
  content: ''; position: absolute; left: 50%; bottom: 0.4rem;
  width: 0; height: 1px; background: var(--gold);
  transform: translateX(-50%);
  transition: width 0.4s var(--ease);
}
.nav__link:hover { color: var(--gold-deep); background: rgba(184,146,78,0.08); }
.nav__link:hover::after { width: 26px; }

.nav__cta {
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-deep);
  border: 1px solid var(--gold);
  background: rgba(184,146,78,0.06);
  padding: 0.85rem 1.6rem;
  border-radius: 100px;
  margin-left: 0.8rem;
  transition: all 0.4s var(--ease);
}
.nav__cta:hover {
  background: linear-gradient(120deg, var(--gold), var(--gold-bright));
  color: #fff;
  border-color: transparent;
  box-shadow: 0 12px 28px -14px rgba(184,146,78,0.7);
}

/* Hamburger — clean left-aligned icon (mobile) */
.nav__toggle {
  display: none;
  width: 30px; height: 22px;
  flex-direction: column; justify-content: center; gap: 6px;
  align-items: flex-start;
}
.nav__toggle span {
  display: block; height: 1.5px; width: 28px;
  background: var(--text);
  transition: all 0.4s var(--ease);
}
.nav__toggle span:nth-child(2) { width: 18px; }
.nav.is-open .nav__toggle span { background: var(--gold-deep); }
.nav.is-open .nav__toggle span:nth-child(1) { transform: translateY(3.75px) rotate(45deg); width: 24px; }
.nav.is-open .nav__toggle span:nth-child(2) { transform: translateY(-3.75px) rotate(-45deg); width: 24px; }

/* Mobile-only header elements — hidden on desktop */
.nav__inquire {
  display: none;
  font-size: 0.62rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold-deep);
  border: 1px solid var(--gold);
  padding: 0.6rem 1.05rem; border-radius: 100px;
}
.nav__drawer-foot { display: none; }
.nav__backdrop { display: none; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
}

/* --- Backgrounds (cross-fade + Ken Burns) --- */
.hero__bgs { position: absolute; inset: 0; z-index: 1; }
.hero__bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0; visibility: hidden;
  transform: scale(1.06);
  transition: opacity 1.1s var(--ease), visibility 1.1s var(--ease);
}
.hero__bg.is-active {
  opacity: 1; visibility: visible;
  transform: scale(1.16);
  transition: opacity 1.1s var(--ease), transform 8s linear;
}

/* Left/bottom scrim keeps left text + controls legible, right stays vivid */
.hero__scrim {
  position: absolute; inset: 0; z-index: 2;
  background:
    linear-gradient(90deg, rgba(14,10,5,0.78) 0%, rgba(14,10,5,0.48) 28%, rgba(14,10,5,0.12) 52%, rgba(14,10,5,0) 72%),
    linear-gradient(180deg, rgba(14,10,5,0.3) 0%, rgba(14,10,5,0.06) 38%, rgba(14,10,5,0.55) 100%);
}

/* --- Left vertical rail: dots + number --- */
.hero__rail {
  position: absolute; z-index: 6;
  left: clamp(1.1rem, 2.6vw, 2.6rem); top: 50%; transform: translateY(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 1.6rem;
}
.hero__rail-dots {
  position: relative;
  display: flex; flex-direction: column; align-items: center; gap: 1.1rem;
}
.hero__rail-dots::before {
  content: ''; position: absolute; left: 50%; top: -0.7rem; bottom: -0.7rem;
  width: 1px; background: rgba(255,255,255,0.28); transform: translateX(-50%);
}
.hero__rail-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(255,255,255,0.45); position: relative;
  transition: all 0.4s var(--ease);
}
.hero__rail-dot.is-active {
  background: var(--gold); transform: scale(1.4);
  box-shadow: 0 0 0 4px rgba(184,146,78,0.28);
}
.hero__rail-num {
  font-family: var(--serif); font-size: 1.25rem; color: #fff;
  width: 42px; height: 42px; border-radius: 50%;
  display: grid; place-items: center;
  border: 1px solid rgba(255,255,255,0.35);
  background: rgba(255,255,255,0.06); backdrop-filter: blur(4px);
}

/* --- Left content panels --- */
.hero__content {
  position: absolute; z-index: 4;
  left: clamp(4rem, 10vw, 11rem); top: 0; bottom: 0;
  width: min(52%, 640px);
  text-shadow: 0 2px 30px rgba(8,5,2,0.5);
  pointer-events: none;
}
.hero__panel {
  position: absolute; left: 0; top: 50%; width: 100%;
  transform: translateY(-50%);
  opacity: 0; visibility: hidden;
  transition: opacity 0.8s var(--ease), visibility 0.8s var(--ease);
}
.hero__panel.is-active { opacity: 1; visibility: visible; }
.hero__panel .btn { pointer-events: auto; }
.hero__tag {
  font-size: 0.82rem; letter-spacing: 0.3em; text-transform: uppercase;
  font-weight: 600;
  color: #f6e7c4; margin-bottom: 1.1rem;
  text-shadow: 0 2px 14px rgba(0,0,0,0.6);
}
.hero__title {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(3.2rem, 8vw, 7rem);
  line-height: 0.94;
  letter-spacing: -0.02em;
  color: #fff;
  margin-bottom: 1.2rem;
}
.hero__lede {
  max-width: 420px;
  font-size: 1.02rem;
  color: rgba(255,250,240,0.96);
  font-weight: 400;
  margin-bottom: 2rem;
}

/* Featured "highlight" badge on the panel */
.hero__badge {
  display: inline-flex; align-items: center; gap: 0.4rem;
  font-size: 0.6rem; letter-spacing: 0.2em; text-transform: uppercase; font-weight: 500;
  color: var(--on-gold);
  background: linear-gradient(120deg, var(--gold), var(--gold-bright));
  padding: 0.42rem 0.95rem; border-radius: 100px;
  margin-bottom: 1.1rem;
  box-shadow: 0 10px 24px -10px rgba(184,146,78,0.8);
}

/* Staggered reveal per active panel */
.hero__badge, .hero__tag, .hero__title, .hero__lede, .hero__panel .btn {
  opacity: 0; transform: translateY(30px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}
.hero__panel.is-active .hero__badge { opacity: 1; transform: none; transition-delay: 0.1s; }
.hero__panel.is-active .hero__tag { opacity: 1; transform: none; transition-delay: 0.22s; }
.hero__panel.is-active .hero__title { opacity: 1; transform: none; transition-delay: 0.28s; }
.hero__panel.is-active .hero__lede { opacity: 1; transform: none; transition-delay: 0.42s; }
.hero__panel.is-active .btn { opacity: 1; transform: none; transition-delay: 0.56s; }

/* --- Right preview cards (upcoming slides) --- */
.hero__cards {
  position: absolute; z-index: 5;
  left: 57%; top: 50%; transform: translateY(-50%);
  height: 56%;
  display: flex; align-items: center; gap: 1.4rem;
  pointer-events: none;
}
.hero__card {
  pointer-events: auto;
  flex: 0 0 auto;
  width: clamp(150px, 15vw, 220px);
  height: 100%;
  border-radius: 16px;
  background-size: cover; background-position: center;
  position: relative; overflow: hidden;
  box-shadow: 0 34px 70px -24px rgba(0,0,0,0.6);
  opacity: 0.72;
  transform: scale(0.88);
  transition: order 0s, transform 0.7s var(--ease), width 0.7s var(--ease), opacity 0.7s var(--ease);
}
.hero__card::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(8,5,2,0) 38%, rgba(8,5,2,0.82) 100%);
}
.hero__card-body {
  position: absolute; left: 0; bottom: 0; z-index: 2;
  padding: 1.3rem; text-align: left;
}
.hero__card-title { display: block; font-family: var(--serif); font-size: 1.5rem; color: #fff; font-weight: 500; line-height: 1.1; }
.hero__card-meta { display: block; font-size: 0.62rem; letter-spacing: 0.22em; text-transform: uppercase; font-weight: 600; color: #f6e7c4; margin-top: 4px; text-shadow: 0 1px 8px rgba(0,0,0,0.5); }
.hero__card:hover { opacity: 0.95; }
.hero__card-flag {
  position: absolute; top: 0.85rem; left: 0.85rem; z-index: 3;
  font-size: 0.54rem; letter-spacing: 0.18em; text-transform: uppercase; font-weight: 500;
  color: var(--on-gold);
  background: linear-gradient(120deg, var(--gold), var(--gold-bright));
  padding: 0.34rem 0.72rem; border-radius: 100px;
  box-shadow: 0 8px 18px -8px rgba(0,0,0,0.5);
}
.hero__card.is-highlight {
  box-shadow: 0 0 0 2px var(--gold-bright), 0 34px 70px -20px rgba(0,0,0,0.65);
}
.hero__card.is-feature {
  width: clamp(210px, 21vw, 300px);
  opacity: 1; transform: scale(1);
}

/* --- Bottom controls --- */
.hero__controls {
  position: absolute; z-index: 6; bottom: clamp(1.5rem, 4vh, 2.4rem);
  left: 0; right: 0;
  padding: 0 clamp(1.25rem, 3vw, 3rem) 0 clamp(4rem, 10vw, 11rem);
  display: flex; align-items: center; justify-content: space-between; gap: 1.5rem;
}
.hero__nav { display: flex; align-items: center; gap: 0.7rem; }
.hero__arrow {
  width: 50px; height: 50px; border-radius: 50%;
  background: var(--gold); color: #fff; border: none;
  display: grid; place-items: center; font-size: 1.05rem;
  transition: all 0.4s var(--ease);
}
.hero__arrow:hover { background: var(--gold-deep); transform: translateY(-2px); }
.hero__counter { display: flex; align-items: center; gap: 0.9rem; }
.hero__counter-cur { font-family: var(--serif); font-size: 1.6rem; color: #fff; line-height: 1; }
.hero__counter-total { font-family: var(--serif); font-size: 1rem; color: rgba(255,255,255,0.6); line-height: 1; }
.hero__counter-track {
  width: 70px; height: 2px; border-radius: 2px;
  background: rgba(255,255,255,0.3); position: relative; overflow: hidden;
}
.hero__counter-fill {
  position: absolute; left: 0; top: 0; height: 100%; width: 0;
  background: var(--gold);
}

/* ============================================================
   MARQUEE
   ============================================================ */
.marquee {
  background: var(--bg-2);
  border-top: 1px solid var(--line-gold);
  border-bottom: 1px solid var(--line-gold);
  overflow: hidden;
  padding: 1.5rem 0;
}
.marquee__track {
  display: flex; align-items: center; gap: 2.5rem;
  white-space: nowrap;
  width: max-content;
  animation: marquee 32s linear infinite;
}
.marquee__track span {
  font-family: var(--serif);
  font-size: 1.9rem;
  font-style: italic;
  color: var(--text-soft);
}
.marquee__track span:nth-child(even) { color: var(--gold); }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ============================================================
   INTRO / EXPERIENCE
   ============================================================ */
.intro { padding: clamp(5rem, 12vw, 9rem) var(--gutter); max-width: var(--maxw); margin: 0 auto; }
.intro__grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(2.5rem, 6vw, 6rem);
  align-items: center;
}
.intro__body {
  font-size: 1.15rem;
  color: var(--text-soft);
  margin: 1.8rem 0 3rem;
  font-weight: 300;
}
.intro__pillars { display: grid; gap: 2rem; }
.pillar { border-top: 1px solid var(--line); padding-top: 1.4rem; }
.pillar__num {
  font-family: var(--serif);
  font-size: 0.9rem; color: var(--gold);
  letter-spacing: 0.1em;
}
.pillar h3 {
  font-family: var(--serif);
  font-size: 1.5rem; font-weight: 500;
  margin: 0.4rem 0 0.5rem;
  color: var(--text);
}
.pillar p { color: var(--text-soft); font-size: 0.98rem; }

.intro__visual {
  position: relative;
  aspect-ratio: 3 / 4;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.intro__visual img { transition: transform 1.2s var(--ease); }
.intro__visual:hover img { transform: scale(1.06); }
.intro__visual-badge {
  position: absolute; bottom: 1.4rem; left: 1.4rem;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(8px);
  border: 1px solid var(--line-gold);
  padding: 1rem 1.4rem; border-radius: 3px;
  text-align: center;
}
.intro__visual-badge span {
  font-size: 0.6rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--text-soft);
  display: block;
}
.intro__visual-badge strong {
  font-family: var(--serif); font-size: 1.8rem; color: var(--gold-deep); font-weight: 600;
}

/* ============================================================
   SECTION HEAD (shared)
   ============================================================ */
.section-head {
  max-width: var(--maxw); margin: 0 auto;
  padding: 0 var(--gutter);
  display: flex; justify-content: space-between; align-items: flex-end;
  gap: 2rem; flex-wrap: wrap;
  margin-bottom: 3.5rem;
}
.section-head__note {
  max-width: 34ch; color: var(--text-soft); font-size: 1rem;
}

/* ============================================================
   PACKAGES
   ============================================================ */
.packages { padding: clamp(4rem, 10vw, 7rem) 0; background: var(--bg-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.pkg-list {
  max-width: var(--maxw); margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid; gap: 1.2rem;
}
.pkg {
  display: grid;
  grid-template-columns: 240px 1fr auto;
  gap: 2.5rem; align-items: center;
  padding: 1.2rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 6px;
  box-shadow: var(--shadow-sm);
  transition: all 0.5s var(--ease);
}
.pkg:hover { transform: translateX(6px); border-color: var(--gold); box-shadow: 0 26px 54px -30px rgba(58,49,40,0.5); }
.pkg__img { aspect-ratio: 16/10; border-radius: 4px; overflow: hidden; }
.pkg__img img { transition: transform 1s var(--ease); }
.pkg:hover .pkg__img img { transform: scale(1.07); }
.pkg__head { display: flex; align-items: center; gap: 1rem; margin-bottom: 0.6rem; }
.pkg__info h3 {
  font-family: var(--serif); font-size: 1.9rem; font-weight: 500; color: var(--text);
}
.pkg__tag {
  font-size: 0.6rem; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--gold-deep); border: 1px solid var(--line-gold); padding: 0.3rem 0.7rem; border-radius: 20px;
}
.pkg__tag--feat {
  color: #fff; border-color: transparent;
  background: linear-gradient(120deg, var(--gold), var(--gold-bright));
}
.pkg__info p { color: var(--text-soft); font-size: 0.98rem; max-width: 52ch; margin-bottom: 0.9rem; }
.pkg__meta { display: flex; gap: 1.4rem; flex-wrap: wrap; }
.pkg__meta li {
  font-size: 0.74rem; letter-spacing: 0.05em; color: var(--text);
  position: relative; padding-left: 1rem;
}
.pkg__meta li::before {
  content: ''; position: absolute; left: 0; top: 50%; transform: translateY(-50%);
  width: 5px; height: 5px; background: var(--gold); border-radius: 50%;
}
.pkg__price { text-align: right; }
.pkg__price span {
  font-size: 0.62rem; letter-spacing: 0.25em; text-transform: uppercase; color: var(--text-soft); display: block;
}
.pkg__price strong {
  font-family: var(--serif); font-size: 2.1rem; color: var(--gold-deep); font-weight: 600;
  display: block; line-height: 1.1; margin-bottom: 0.9rem;
}
.pkg__btn {
  font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase;
  border: 1px solid var(--gold); color: var(--gold-deep);
  padding: 0.65rem 1.6rem; border-radius: 2px; display: inline-block;
  transition: all 0.4s var(--ease);
}
.pkg__btn:hover { background: var(--gold); color: #fff; }

/* ============================================================
   PARALLAX QUOTE
   ============================================================ */
.quote {
  position: relative;
  padding: clamp(6rem, 16vw, 12rem) var(--gutter);
  overflow: hidden;
  text-align: center;
}
.quote__bg {
  position: absolute; inset: -20% 0;
  background: url('https://images.unsplash.com/photo-1470071459604-3b5ec3a7fe05?auto=format&fit=crop&w=1600&q=80') center/cover;
  z-index: -2;
  will-change: transform;
}
.quote::after {
  content: ''; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, rgba(247,242,233,0.9), rgba(247,242,233,0.82));
}
.quote__inner { max-width: 900px; margin: 0 auto; }
.quote__text {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.8rem, 4.5vw, 3.4rem);
  line-height: 1.25;
  color: var(--text);
}
.quote__by {
  display: block; margin-top: 1.8rem;
  font-size: 0.72rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold-deep);
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testi { padding: clamp(4rem, 10vw, 7rem) 0; overflow: hidden; }
.testi__viewport {
  max-width: var(--maxw); margin: 0 auto;
  padding: 0 var(--gutter);
  overflow: hidden;
}
.testi__track {
  display: flex;
  gap: 1.5rem;
  transition: transform 0.8s var(--ease);
}
.testi__card {
  flex: 0 0 clamp(300px, 44%, 560px);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: clamp(2rem, 4vw, 3rem);
  box-shadow: var(--shadow-sm);
}
.testi__stars { color: var(--gold); letter-spacing: 0.2em; margin-bottom: 1.4rem; }
.testi__card p {
  font-family: var(--serif);
  font-size: clamp(1.3rem, 2.4vw, 1.75rem);
  line-height: 1.4;
  color: var(--text);
  font-weight: 400;
}
.testi__card footer { margin-top: 2rem; }
.testi__card strong {
  color: var(--gold-deep); font-weight: 500; font-size: 0.95rem;
  letter-spacing: 0.05em; display: block;
}
.testi__card span { font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--text-soft); }
.testi__controls {
  max-width: var(--maxw); margin: 2.5rem auto 0;
  padding: 0 var(--gutter);
  display: flex; gap: 1rem;
}
.testi__btn {
  width: 56px; height: 56px; border-radius: 50%;
  border: 1px solid var(--line-gold); color: var(--gold-deep);
  font-size: 1.1rem;
  display: grid; place-items: center;
  transition: all 0.4s var(--ease);
}
.testi__btn:hover { background: var(--gold); color: #fff; border-color: var(--gold); }

/* ============================================================
   CTA / CONTACT
   ============================================================ */
.cta {
  padding: clamp(5rem, 12vw, 9rem) var(--gutter);
  background:
    radial-gradient(80% 120% at 50% 0%, rgba(184,146,78,0.14), transparent 60%),
    var(--bg-3);
  border-top: 1px solid var(--line);
}
.cta__inner { max-width: 720px; margin: 0 auto; text-align: center; }
.cta__title {
  font-family: var(--serif); font-weight: 500;
  font-size: clamp(2.4rem, 6vw, 4.4rem);
  line-height: 1.05; letter-spacing: -0.01em;
  margin-bottom: 1.2rem;
  color: var(--text);
}
.cta__lede { color: var(--text-soft); font-size: 1.1rem; margin-bottom: 3rem; max-width: 52ch; margin-inline: auto; }
.cta__form {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1.4rem;
  text-align: left;
}
.field { position: relative; }
.field--full { grid-column: 1 / -1; }
.field input {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--line-gold);
  padding: 1rem 0 0.7rem;
  color: var(--text);
  font-family: var(--sans);
  font-size: 1rem;
  transition: border-color 0.4s;
}
.field input:focus { outline: none; border-color: var(--gold); }
.field label {
  position: absolute; left: 0; top: 1rem;
  color: var(--text-soft); font-size: 1rem;
  pointer-events: none;
  transition: all 0.35s var(--ease);
}
.field input:focus + label,
.field input:not(:placeholder-shown) + label {
  top: -0.6rem; font-size: 0.68rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold-deep);
}
.cta__form .btn { grid-column: 1 / -1; }
.cta__note { grid-column: 1/-1; text-align: center; color: var(--gold-deep); font-size: 0.85rem; min-height: 1.2rem; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--bg-3); padding: clamp(3rem, 7vw, 5rem) var(--gutter) 2rem; border-top: 1px solid var(--line-gold); }

/* Brand block + 3 link columns in one row */
.footer__top {
  max-width: var(--maxw); margin: 0 auto;
  display: grid; grid-template-columns: 1.5fr 1fr 0.9fr 1.3fr;
  gap: clamp(2rem, 4vw, 3.5rem);
  align-items: start;
  padding-bottom: 2.8rem;
  border-bottom: 1px solid var(--line);
}
.footer__brand { display: flex; flex-direction: column; align-items: flex-start; gap: 0.9rem; }
.footer__logo-img { display: block; width: clamp(160px, 14vw, 200px); height: auto; }
.footer__tagline {
  font-family: var(--serif); font-style: italic;
  font-size: 1.1rem; line-height: 1.45; color: var(--text-soft);
  max-width: 26ch;
}
.footer__social { display: flex; gap: 1.3rem; }
.footer__social a {
  font-size: 0.68rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--text);
  transition: color 0.3s;
}
.footer__social a:hover { color: var(--gold-deep); }
.footer__col h4 {
  font-size: 0.68rem; letter-spacing: 0.28em; text-transform: uppercase; color: var(--gold-deep);
  margin-bottom: 1.1rem; font-weight: 500;
}
.footer__col a, .footer__col p {
  display: block; color: var(--text-soft); font-size: 0.92rem; margin-bottom: 0.7rem;
  transition: color 0.3s;
}
.footer__col a:hover { color: var(--text); }
.footer__pkg {
  display: flex; align-items: center; gap: 0.6rem;
  color: var(--text-soft); font-size: 0.92rem; margin-bottom: 0.7rem;
  text-align: left; transition: color 0.3s var(--ease);
}
.footer__pkg:hover { color: var(--gold-deep); }
.footer__pkg span {
  font-size: 0.5rem; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--on-gold); background: linear-gradient(120deg, var(--gold), var(--gold-bright));
  padding: 0.2rem 0.45rem; border-radius: 100px;
}
.footer__pkg--feat { color: var(--gold-deep); }
.footer__bottom {
  max-width: var(--maxw); margin: 2rem auto 0;
  display: flex; justify-content: space-between; align-items: center; gap: 1rem;
  flex-wrap: wrap;
  font-size: 0.78rem; color: var(--text-soft);
}
.footer__legal { display: flex; gap: 1.6rem; }
.footer__legal a, .footer__legal button {
  font-size: 0.78rem; color: var(--text-soft);
  transition: color 0.3s var(--ease);
}
.footer__legal a:hover, .footer__legal button:hover { color: var(--gold-deep); }

/* ============================================================
   LEGAL MODAL (Privacy / Terms — opens on the home page)
   ============================================================ */
.legal-modal__panel { width: min(780px, 100%); }
.legal__content { display: none; padding: clamp(2rem, 5vw, 3.2rem); }
.legal__content.is-active { display: block; }
.legal__content h2 {
  font-family: var(--serif); font-weight: 600;
  font-size: clamp(1.7rem, 4vw, 2.3rem); color: var(--text);
  margin-bottom: 0.3rem;
}
.legal__meta {
  font-size: 0.66rem; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--gold-deep); margin-bottom: 1.6rem;
}
.legal__content h3 {
  font-family: var(--serif); font-size: 1.25rem; font-weight: 500; color: var(--text);
  margin: 1.6rem 0 0.6rem;
  display: flex; align-items: center; gap: 0.6rem;
}
.legal__content h3::before { content: ''; width: 22px; height: 1px; background: var(--gold); }
.legal__content p { color: var(--text-soft); font-size: 0.95rem; line-height: 1.65; }
.legal__content ul { list-style: none; display: grid; gap: 0.55rem; }
.legal__content li {
  position: relative; padding-left: 1.5rem;
  color: var(--text-soft); font-size: 0.95rem; line-height: 1.55;
}
.legal__content li::before {
  content: ''; position: absolute; left: 0.2rem; top: 0.62em;
  width: 5px; height: 5px; border-radius: 50%; background: var(--gold);
}
.legal__content a { color: var(--gold-deep); border-bottom: 1px solid var(--line-gold); }

/* ============================================================
   ANIM INITIAL STATES (revealed by GSAP)
   ============================================================ */
[data-anim="fade"], [data-anim="reveal"] { will-change: transform, opacity; }
.no-gsap [data-anim] { opacity: 1 !important; transform: none !important; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .intro__grid { grid-template-columns: 1fr; }
  .intro__visual { max-width: 480px; aspect-ratio: 4/3; }
  .footer__top { grid-template-columns: 1fr 1fr; gap: 2.2rem; }
  .pkg { grid-template-columns: 200px 1fr; }
  .pkg__price { grid-column: 1 / -1; display: flex; align-items: center; justify-content: space-between; text-align: left; border-top: 1px solid var(--line); padding-top: 1rem; }
  .pkg__price strong { margin-bottom: 0; }
}

@media (max-width: 900px) {
  .nav { padding: 1.25rem var(--gutter); }
  .nav.is-scrolled { padding: 0.85rem var(--gutter); }

  /* Header: hamburger left · logo center · Inquire right */
  .nav__inner {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    column-gap: 1rem;
    padding: 0.9rem 1.5rem;
  }
  .nav.is-scrolled .nav__inner { padding: 0.8rem 1.5rem; }

  .nav__toggle { display: flex; justify-self: start; z-index: 1200; }
  .nav__logo { justify-self: center; text-align: center; }
  .nav__logo-img { height: 52px; }
  .nav__inquire { display: inline-flex; justify-self: end; padding: 0.6rem 1rem; font-size: 0.6rem; }

  /* Slide-in drawer from the left */
  .nav__links {
    position: fixed; top: 0; left: 0; bottom: 0;
    width: min(86%, 380px);
    background: var(--bg);
    box-shadow: 30px 0 90px -30px rgba(58,49,40,0.55);
    flex-direction: column; align-items: flex-start; justify-content: flex-start;
    gap: 0;
    padding: 6.5rem 2rem 2.5rem;
    transform: translateX(-100%);
    transition: transform 0.55s var(--ease);
    z-index: 1150;
    overflow-y: auto;
  }
  .nav.is-open .nav__links { transform: translateX(0); }

  .nav__link {
    font-family: var(--serif);
    font-size: 1.35rem;
    line-height: 1;
    text-transform: none;
    letter-spacing: 0.01em;
    color: var(--text);
    width: 100%;
    padding: 1.05rem 0;
    border-radius: 0;
    border-bottom: 1px solid var(--line);
  }
  .nav__link::after { display: none; }
  .nav__link:hover, .nav__link:focus { background: transparent; color: var(--gold-deep); }

  .nav__cta {
    order: 5;
    width: 100%;
    margin: 1.7rem 0 0;
    text-align: center;
    font-size: 0.76rem; letter-spacing: 0.18em;
    padding: 1rem 1.5rem;
    color: #fff;
    background: linear-gradient(120deg, var(--gold), var(--gold-bright));
    border-color: transparent;
    border-radius: 3px;
  }

  .nav__drawer-foot { display: block; order: 6; width: 100%; margin-top: 1.9rem; }
  .nav__phone {
    display: inline-flex; align-items: center; gap: 0.55rem;
    font-family: var(--serif); font-size: 1.35rem; color: var(--gold-deep);
    margin-bottom: 1.2rem;
  }
  .nav__phone-ico { font-size: 1rem; transform: translateY(1px); }
  .nav__drawer-social { display: flex; gap: 1.3rem; flex-wrap: wrap; }
  .nav__drawer-social a {
    font-size: 0.64rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--text-soft);
  }

  /* Backdrop behind the drawer */
  .nav__backdrop {
    display: block;
    position: fixed; inset: 0;
    background: rgba(44,36,24,0.34);
    backdrop-filter: blur(2px);
    opacity: 0; visibility: hidden;
    transition: opacity 0.5s var(--ease), visibility 0.5s;
    z-index: 1100;
  }
  .nav.is-open .nav__backdrop { opacity: 1; visibility: visible; }

  /* Hero slider → mobile: hide side cards, center content, dots to bottom */
  .hero__cards { display: none; }
  .hero__content {
    left: 0; right: 0; width: auto;
    padding: 0 7%;
  }
  .hero__panel { text-align: center; }
  .hero__lede { margin-left: auto; margin-right: auto; }
  .hero__rail {
    left: 0; right: 0; top: auto; bottom: 8.5rem; transform: none;
    flex-direction: row; justify-content: center; gap: 0;
  }
  .hero__rail-dots { flex-direction: row; gap: 0.9rem; }
  .hero__rail-dots::before { display: none; }
  .hero__rail-num { display: none; }
  .hero__controls { padding: 0 var(--gutter); bottom: 2rem; }
}

@media (max-width: 680px) {
  .pkg { grid-template-columns: 1fr; }
  .pkg__img { aspect-ratio: 16/9; }
  .cta__form { grid-template-columns: 1fr; }
  .footer__top { grid-template-columns: 1fr; gap: 2.2rem; text-align: center; }
  .footer__pkg { justify-content: center; width: 100%; }
  .footer__brand { align-items: center; }
  .footer__tagline { max-width: none; }
  .footer__bottom { flex-direction: column; justify-content: center; text-align: center; gap: 0.8rem; }
  .section-head { margin-bottom: 2.5rem; }
  .hero__scroll { display: none; }

  /* Hero slider typography for phones */
  .hero__tag { font-size: 0.72rem; letter-spacing: 0.26em; margin-bottom: 0.9rem; }
  .hero__title { font-size: clamp(2.6rem, 13vw, 4rem); line-height: 0.95; margin-bottom: 1rem; }
  .hero__lede { font-size: 0.96rem; margin: 0 auto 1.8rem; }
  .hero__rail { bottom: 8rem; }
  .hero__arrow { width: 44px; height: 44px; font-size: 0.95rem; }
  .hero__counter-cur { font-size: 1.35rem; }
  .hero__counter-track { width: 56px; }
  .section-eyebrow { font-size: 0.62rem; letter-spacing: 0.3em; }
  .section-title { font-size: clamp(1.9rem, 8.5vw, 2.4rem); }
  .intro__body { font-size: 1rem; margin: 1.3rem 0 2.2rem; }
  .pillar h3 { font-size: 1.35rem; }
  .marquee { padding: 1.1rem 0; }
  .marquee__track span { font-size: 1.4rem; }
  .marquee__track { gap: 1.6rem; }
  .pkg__info h3 { font-size: 1.55rem; }
  .pkg__price strong { font-size: 1.8rem; }
  .quote__text { font-size: clamp(1.5rem, 6.5vw, 2rem); }
  .testi__card { padding: 1.8rem; }
  .testi__card p { font-size: 1.2rem; }
  .cta__title { font-size: clamp(2rem, 9vw, 2.5rem); }
  .cta__lede { font-size: 1rem; }
  .footer__logo-img { width: 170px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  .marquee__track, .hero__scroll-line::after { animation: none !important; }
}

/* ============================================================
   PACKAGE DETAILS MODAL
   ============================================================ */
.pkg-modal {
  position: fixed; inset: 0; z-index: 2000;
  display: flex; align-items: center; justify-content: center;
  padding: clamp(0.75rem, 3vw, 2.5rem);
  opacity: 0; visibility: hidden;
  transition: opacity 0.4s var(--ease), visibility 0.4s var(--ease);
}
.pkg-modal.is-open { opacity: 1; visibility: visible; }
.pkg-modal__backdrop {
  position: absolute; inset: 0;
  background: rgba(20,14,8,0.55);
  backdrop-filter: blur(4px);
}
.pkg-modal__panel {
  position: relative; z-index: 2;
  width: min(920px, 100%);
  max-height: 92vh; overflow-y: auto;
  background: var(--bg);
  border-radius: 10px;
  box-shadow: 0 50px 120px -40px rgba(20,14,8,0.7);
  transform: translateY(26px) scale(0.98);
  transition: transform 0.5s var(--ease);
  -webkit-overflow-scrolling: touch;
}
.pkg-modal.is-open .pkg-modal__panel { transform: none; }
.pkg-modal__panel::-webkit-scrollbar { width: 8px; }
.pkg-modal__panel::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 20px; }

.pkg-modal__close {
  position: absolute; top: 1rem; right: 1rem; z-index: 4;
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(255,255,255,0.9); color: var(--text);
  font-size: 1.5rem; line-height: 1;
  display: grid; place-items: center;
  box-shadow: 0 8px 20px -8px rgba(20,14,8,0.5);
  transition: all 0.3s var(--ease);
}
.pkg-modal__close:hover { background: var(--gold); color: #fff; transform: rotate(90deg); }

.pkg-modal__hero { position: relative; height: clamp(200px, 34vh, 320px); overflow: hidden; }
.pkg-modal__hero img { width: 100%; height: 100%; object-fit: cover; }
.pkg-modal__hero-scrim {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(20,14,8,0.1) 0%, rgba(20,14,8,0.15) 45%, rgba(20,14,8,0.82) 100%);
}
.pkg-modal__hero-body {
  position: absolute; left: 0; bottom: 0; z-index: 2;
  padding: clamp(1.5rem, 4vw, 2.6rem);
  color: #fff;
}
.pkg-modal__region {
  font-size: 0.68rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold-soft);
}
.pkg-modal__title {
  font-family: var(--serif); font-weight: 600;
  font-size: clamp(2rem, 5vw, 3.2rem); line-height: 1; color: #fff;
  margin: 0.4rem 0 0.7rem;
}
.pkg-modal__facts { display: flex; flex-wrap: wrap; gap: 0.7rem 1.4rem; }
.pkg-modal__facts span {
  font-size: 0.8rem; letter-spacing: 0.08em; color: rgba(255,255,255,0.9);
  position: relative; padding-left: 1.3rem;
}
.pkg-modal__facts span::before {
  content: ''; position: absolute; left: 0; top: 50%; transform: translateY(-50%);
  width: 6px; height: 6px; border-radius: 50%; background: var(--gold);
}

.pkg-modal__content { padding: clamp(1.5rem, 4vw, 2.8rem); }
.pkg-modal__teaser {
  font-size: 1.08rem; color: var(--text-soft); line-height: 1.6;
  max-width: 60ch; margin-bottom: 2.2rem;
}
.pkg-modal__h {
  font-family: var(--serif); font-size: 1.5rem; font-weight: 500; color: var(--text);
  margin-bottom: 1.2rem;
  display: flex; align-items: center; gap: 0.7rem;
}
.pkg-modal__h::before {
  content: ''; width: 26px; height: 1px; background: var(--gold);
}

/* Itinerary */
.pkg-itin { list-style: none; counter-reset: day; margin-bottom: 2.4rem; }
.pkg-itin li {
  position: relative; padding: 0 0 1.5rem 3.2rem;
  border-left: 1px solid var(--line-gold); margin-left: 1rem;
}
.pkg-itin li:last-child { border-left-color: transparent; padding-bottom: 0; }
.pkg-itin li::before {
  counter-increment: day; content: counter(day, decimal-leading-zero);
  position: absolute; left: -1rem; top: -0.2rem;
  width: 2rem; height: 2rem; border-radius: 50%;
  background: var(--bg); border: 1px solid var(--gold);
  color: var(--gold-deep); font-family: var(--serif); font-size: 0.85rem;
  display: grid; place-items: center;
}
.pkg-itin__day { font-size: 0.62rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold-deep); }
.pkg-itin__title { font-family: var(--serif); font-size: 1.25rem; color: var(--text); margin: 0.15rem 0 0.4rem; }
.pkg-itin__text { color: var(--text-soft); font-size: 0.95rem; line-height: 1.6; }

/* Includes / excludes */
.pkg-modal__cols { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; margin-bottom: 2.4rem; }
.pkg-list { list-style: none; display: grid; gap: 0.7rem; }
.pkg-list li {
  position: relative; padding-left: 1.7rem;
  font-size: 0.92rem; color: var(--text); line-height: 1.45;
}
.pkg-list li::before {
  content: '\2713'; position: absolute; left: 0; top: 0;
  color: var(--gold-deep); font-size: 0.85rem;
}
.pkg-list--ex li { color: var(--text-soft); }
.pkg-list--ex li::before { content: '\2715'; color: #b98a7a; }

.pkg-modal__foot {
  display: flex; align-items: center; justify-content: space-between; gap: 1.5rem;
  flex-wrap: wrap;
  padding-top: 1.8rem; border-top: 1px solid var(--line);
}
.pkg-modal__price span {
  display: block; font-size: 0.6rem; letter-spacing: 0.25em; text-transform: uppercase; color: var(--text-soft);
}
.pkg-modal__price strong {
  font-family: var(--serif); font-size: 1.7rem; color: var(--gold-deep); font-weight: 600;
}

body.modal-open { overflow: hidden; }

@media (max-width: 620px) {
  .pkg-modal__cols { grid-template-columns: 1fr; gap: 1.6rem; }
  .pkg-modal__foot { flex-direction: column; align-items: stretch; }
  .pkg-modal__foot .btn { width: 100%; }
  .pkg-itin li { padding-left: 2.8rem; }
}

/* ============================================================
   FLOATING CONTACT (WhatsApp + Call)
   ============================================================ */
.float-contact {
  position: fixed; right: 1.3rem; bottom: 1.4rem; z-index: 1500;
  display: flex; flex-direction: column; gap: 0.8rem;
}
.float-btn {
  width: 54px; height: 54px; border-radius: 50%;
  display: grid; place-items: center;
  box-shadow: 0 16px 34px -12px rgba(30, 45, 57, 0.45);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
  position: relative;
}
.float-btn svg { width: 26px; height: 26px; fill: #fff; }
.float-btn--wa { background: #25d366; }
.float-btn--call { background: linear-gradient(120deg, var(--gold), var(--gold-bright)); }
.float-btn:hover { transform: translateY(-3px) scale(1.06); box-shadow: 0 22px 44px -14px rgba(30, 45, 57, 0.55); }
.float-btn--wa::after {
  content: ''; position: absolute; inset: 0; border-radius: 50%;
  border: 2px solid rgba(37, 211, 102, 0.55);
  animation: waPulse 2.2s ease-out infinite;
}
@keyframes waPulse {
  0% { transform: scale(1); opacity: 1; }
  70%, 100% { transform: scale(1.55); opacity: 0; }
}

/* Keep the hero slide counter clear of the floating buttons */
.hero__controls { padding-right: clamp(6rem, 9vw, 7.5rem); }

/* About Us closing line */
.intro__cta {
  margin-top: 2.4rem;
  font-family: var(--serif);
  font-size: 1.45rem;
  font-style: italic;
  color: var(--gold-deep);
}
.intro__cta a {
  font-family: var(--sans);
  font-style: normal;
  font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--text);
  border-bottom: 1px solid var(--gold);
  padding-bottom: 3px; margin-left: 0.9rem;
  transition: color 0.3s var(--ease);
}
.intro__cta a:hover { color: var(--gold-deep); }

@media (max-width: 680px) {
  .float-contact { right: 1rem; bottom: 1rem; gap: 0.65rem; }
  .float-btn { width: 48px; height: 48px; }
  .float-btn svg { width: 23px; height: 23px; }
  .hero__controls { padding-right: 5rem; }
  .intro__cta { font-size: 1.25rem; }
  .intro__cta a { display: inline-block; margin-left: 0; margin-top: 0.6rem; }
}

@media (prefers-reduced-motion: reduce) {
  .float-btn--wa::after { animation: none; }
}
