/* ==========================================================================
   U2HOLIDAYS — style.css
   ==========================================================================
   IMAGE URLS — swap every photo on the site from this one block.
   ========================================================================== */
:root {
  --img-hero-home: url('https://images.unsplash.com/photo-1475503572774-15a45e5d60b9?auto=format&fit=crop&w=3840&q=78');
  --img-hero-slide2: url('images/hero-lions.jpg');
  --img-hero-slide3: url('https://images.unsplash.com/photo-1758438919146-f3f59a6d2544?auto=format&fit=crop&w=3840&q=78');
  --img-hero-slide4: url('images/hero-dolomites-friends.jpg');
  --img-hero-slide5: url('images/hero-mountain-ridge.jpg');
  --img-hero-about: url('https://images.unsplash.com/photo-1528181304800-259b08848526?auto=format&fit=crop&w=1800&q=70');
  --img-hero-contact: url('https://images.unsplash.com/photo-1552465011-b4e21bf6e79a?auto=format&fit=crop&w=1800&q=70');
  --img-hero-destinations: url('https://images.unsplash.com/photo-1524492412937-b28074a5d7da?auto=format&fit=crop&w=1800&q=70');
  --img-hero-domestic: url('https://images.unsplash.com/photo-1560357647-62a43d9897bb?auto=format&fit=crop&w=2560&q=75');
  --img-hero-international: url('https://images.unsplash.com/photo-1525625293386-3f8f99389edd?auto=format&fit=crop&w=2560&q=75');
  --img-hero-stranger: url('https://images.unsplash.com/photo-1539635278303-d4002c07eae3?auto=format&fit=crop&w=3840&q=78');
  --img-stranger-gallery-1: url('https://images.unsplash.com/photo-1529156069898-49953e39b3ac?auto=format&fit=crop&w=900&q=75');
  --img-stranger-gallery-2: url('https://images.unsplash.com/photo-1506869640319-fe1a24fd76dc?auto=format&fit=crop&w=900&q=75');
  --img-stranger-gallery-3: url('https://images.unsplash.com/photo-1593976243570-64e54b3c42b8?auto=format&fit=crop&w=900&q=75');
  --img-stranger-gallery-4: url('https://images.unsplash.com/photo-1574116504481-e06341e984e1?auto=format&fit=crop&w=900&q=75');
  --img-band: url('https://images.unsplash.com/photo-1506929562872-bb421503ef21?auto=format&fit=crop&w=1800&q=70');
  --img-founder: url('images/founder.jpg');
  --img-singapore: url('https://images.unsplash.com/photo-1525625293386-3f8f99389edd?auto=format&fit=crop&w=700&q=70');
  --img-malaysia: url('https://images.unsplash.com/photo-1596422846543-75c6fc197f07?auto=format&fit=crop&w=700&q=70');
  --img-thailand: url('https://images.unsplash.com/photo-1552465011-b4e21bf6e79a?auto=format&fit=crop&w=700&q=70');
  --img-bali: url('https://images.unsplash.com/photo-1555400038-63f5ba517a47?auto=format&fit=crop&w=700&q=70');
  --img-vietnam: url('https://images.unsplash.com/photo-1528127269322-539801943592?auto=format&fit=crop&w=700&q=70');
  --img-kerala: url('https://images.unsplash.com/photo-1602216056096-3b40cc0c9944?auto=format&fit=crop&w=700&q=70');
  --img-goa: url('https://images.unsplash.com/photo-1512343879784-a960bf40e7f2?auto=format&fit=crop&w=700&q=70');
  --img-ooty: url('https://images.unsplash.com/photo-1660918738010-295b09857f93?auto=format&fit=crop&w=700&q=70');
  --img-kodaikanal: url('https://images.unsplash.com/photo-1593692716621-1e228b0a9224?auto=format&fit=crop&w=700&q=70');
  --img-coorg: url('https://images.unsplash.com/photo-1560357647-62a43d9897bb?auto=format&fit=crop&w=700&q=70');
  --img-meghalaya: url('https://images.unsplash.com/photo-1593813738953-fb3c93e0769d?auto=format&fit=crop&w=700&q=70');
  --img-valparai: url('https://images.unsplash.com/photo-1596295357308-b9ff1d2fe788?auto=format&fit=crop&w=700&q=70');
  --img-yelagiri: url('https://images.unsplash.com/photo-1696170475139-4eb48cc290d6?auto=format&fit=crop&w=700&q=70');
  --img-international: url('https://images.unsplash.com/photo-1525625293386-3f8f99389edd?auto=format&fit=crop&w=700&q=70');
  --img-kashmir: url('https://images.unsplash.com/photo-1715457573748-8e8a70b2c1be?auto=format&fit=crop&w=700&q=70');
  --img-rajasthan: url('https://images.unsplash.com/photo-1599661046289-e31897846e41?auto=format&fit=crop&w=700&q=70');
  --img-andaman: url('https://images.unsplash.com/photo-1586500036706-41963de24d8b?auto=format&fit=crop&w=700&q=70');

  /* Palette */
  --ink: #0B2129;
  --ink-2: #0F2B35;
  --gold: #0E8388;
  --gold-soft: #17A2A8;
  --paper: #FFFFFF;
  --paper-2: #F2F7F7;
  --white: #FFFFFF;
  --line: rgba(11, 33, 41, 0.12);
  --line-light: rgba(255, 255, 255, 0.35);

  /* Type */
  --serif: 'Playfair Display', 'Georgia', serif;
  --sans: 'Poppins', 'Helvetica Neue', sans-serif;
  --mono: 'Poppins', 'Helvetica Neue', sans-serif;
  --script: 'Caveat', cursive;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--sans);
  background: var(--paper);
  color: var(--ink);
  line-height: 1.6;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
::selection { background: var(--gold); color: var(--ink); }

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 2px;
}

.container { width: min(1200px, 100% - 48px); margin-inline: auto; }
@media (max-width: 640px) { .container { width: calc(100% - 40px); } }

/* ---------- Typography helpers ---------- */
.eyebrow {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
}
.h-serif { font-family: var(--serif); font-weight: 500; line-height: 1.05; }

/* ==========================================================================
   NAV
   ========================================================================== */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--paper);
  box-shadow: 0 1px 0 var(--line);
  transition: box-shadow 0.4s ease;
}
.nav-inner {
  width: min(1280px, 100% - 48px);
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 24px;
  padding: 16px 0;
  transition: padding 0.4s ease;
}
.nav.is-solid { box-shadow: 0 4px 16px rgba(11,33,41,0.08); }
.nav.is-solid .nav-inner { padding: 12px 0; }

.nav-logo { font-family: var(--serif); font-weight: 700; font-size: 24px; letter-spacing: 0.01em; color: var(--ink); display: flex; align-items: baseline; gap: 2px; }
.nav-logo em { font-style: normal; color: var(--gold-soft); }

.nav-links { display: flex; align-items: center; gap: 34px; list-style: none; }
.nav-links a {
  font-size: 14px;
  letter-spacing: 0.04em;
  color: var(--ink);
  position: relative;
  padding: 4px 0;
}
.nav-links a::after {
  content: '';
  position: absolute;
  left: 0; bottom: -2px;
  width: 100%; height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.35s ease;
}
.nav-links a:hover::after, .nav-links a[aria-current="page"]::after { transform: scaleX(1); transform-origin: left; }
.nav-links a[aria-current="page"] { color: var(--gold-soft); }

.nav-search {
  display: flex;
  align-items: center;
  margin-left: auto;
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 4px 4px 4px 16px;
}
.nav-search input {
  border: none;
  background: transparent;
  font-family: var(--sans);
  font-size: 13px;
  color: var(--ink);
  width: 150px;
  outline: none;
}
.nav-search input::placeholder { color: rgba(11,33,41,0.4); }
.nav-search button {
  display: grid;
  place-items: center;
  flex: none;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: none;
  background: var(--gold);
  color: #fff;
  cursor: pointer;
  transition: background-color 0.2s ease;
}
.nav-search button:hover { background: var(--gold-soft); }
.nav-search button svg { width: 16px; height: 16px; fill: currentColor; }

/* ---------- Nav dropdown (Packages mega-menu) ---------- */
.nav-item { position: relative; }
.nav-dropdown {
  position: absolute;
  top: calc(100% + 18px);
  left: 50%;
  transform: translate(-50%, 8px);
  width: 420px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 32px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: 0 20px 48px rgba(11, 33, 41, 0.14);
  padding: 22px 24px 18px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
  z-index: 50;
}
.nav-item:hover .nav-dropdown,
.nav-item:focus-within .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}
.nav-dropdown-col { display: flex; flex-direction: column; gap: 10px; min-width: 150px; }
.nav-dropdown-col h4 {
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-soft);
  font-weight: 600;
  margin-bottom: 2px;
}
.nav-dropdown-col a {
  font-size: 14px;
  color: var(--ink);
  padding: 2px 0;
  transition: color 0.2s ease;
}
.nav-dropdown-col a:hover { color: var(--gold-soft); }
.nav-dropdown-cta {
  flex-basis: 100%;
  margin-top: 12px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: var(--gold);
  transition: color 0.2s ease;
}
.nav-dropdown-cta:hover { color: var(--gold-soft); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.05em;
  padding: 14px 28px;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: transform 0.25s ease, background-color 0.25s ease, color 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn-gold { background: var(--gold); color: #fff; }
.btn-gold:hover { background: var(--gold-soft); box-shadow: 0 10px 30px rgba(201, 162, 39, 0.28); }
.btn-ghost { border-color: rgba(243, 241, 236, 0.45); color: var(--paper); background: transparent; }
.btn-ghost:hover { border-color: var(--gold); color: var(--gold-soft); }

/* Social rail on hero */
.social-rail {
  position: absolute;
  left: 34px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.social-line { width: 1px; height: 64px; background: rgba(255,255,255,0.5); }
.social-rail a {
  display: grid;
  place-items: center;
  width: 40px; height: 40px;
  border-radius: 50%;
  transition: background-color 0.25s ease, transform 0.25s ease;
}
.social-rail a svg { width: 20px; height: 20px; fill: #fff; transition: fill 0.25s ease; }
.social-rail a:hover { background: #fff; transform: translateY(-2px); }
.social-rail a:hover svg { fill: var(--gold); }
@media (max-width: 1440px) { .social-rail { left: 16px; } }
@media (max-width: 1280px) { .social-rail { display: none; } }


.nav-burger {
  display: none;
  margin-left: auto;
  background: none;
  border: none;
  width: 44px; height: 44px;
  position: relative;
  z-index: 120;
}
.nav-burger span {
  position: absolute;
  left: 10px; right: 10px;
  height: 2px;
  background: var(--ink);
  transition: transform 0.35s ease, opacity 0.25s ease, top 0.35s ease;
}
.nav-burger span:nth-child(1) { top: 16px; }
.nav-burger span:nth-child(2) { top: 22px; }
.nav-burger span:nth-child(3) { top: 28px; }
.nav-burger[aria-expanded="true"] span:nth-child(1) { top: 22px; transform: rotate(45deg); }
.nav-burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-burger[aria-expanded="true"] span:nth-child(3) { top: 22px; transform: rotate(-45deg); }

/* Mobile overlay menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 110;
  background: var(--paper);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 40px 32px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}
.mobile-menu.is-open { opacity: 1; visibility: visible; }
.mobile-menu a {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 600;
  line-height: 1.4;
  color: var(--ink);
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
  transform: translateY(18px);
  opacity: 0;
  transition: transform 0.45s ease, opacity 0.45s ease;
}
.mobile-menu.is-open a { transform: translateY(0); opacity: 1; }
.mobile-menu.is-open a:nth-child(2) { transition-delay: 0.06s; }
.mobile-menu.is-open a:nth-child(3) { transition-delay: 0.12s; }
.mobile-menu.is-open a:nth-child(4) { transition-delay: 0.18s; }
.mobile-menu.is-open ~ .nav .nav-burger span,
body:has(.mobile-menu.is-open) .nav-burger span { background: var(--ink); }
.mobile-menu .eyebrow { margin-bottom: 20px; }

@media (max-width: 900px) {
  .nav-inner > nav { display: none; }
  .nav-links { display: none; }
  .nav-search { display: none; }
  .nav-inner > .btn { display: none; }
  .nav-burger { display: block; }
  .nav-inner { position: relative; justify-content: flex-start; width: 100%; padding-left: 8px; padding-right: 8px; }
  .nav-logo {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    background: var(--gold);
    color: #fff;
    padding: 6px 16px;
    border-radius: 8px;
    font-size: 19px;
  }
  .nav-logo em { color: #fff; }
  .nav-burger { margin-left: 0; }
}

/* ==========================================================================
   HERO (home)
   ========================================================================== */
.hero {
  position: relative;
  min-height: calc(100svh - 88px);
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 60px 0 80px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: var(--ink);
  will-change: transform;
  z-index: 0;
}
.hero-slide {
  position: absolute;
  inset: 0;
  background: center / cover no-repeat;
  opacity: 0;
  transition: opacity 1.6s ease;
}
.hero-slide.is-active {
  opacity: 1;
}
@media (prefers-reduced-motion: reduce) {
  .hero-slide { transition: none; }
}
.hero-scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(60% 70% at 50% 45%, rgba(7,62,64,0.42) 0%, rgba(9,84,87,0.28) 55%, rgba(14,131,136,0.12) 100%),
    linear-gradient(to top, rgba(7,62,64,0.4) 0%, rgba(7,62,64,0) 40%);
}
.hero-grid {
  position: relative;
  z-index: 2;
  width: min(1280px, 100% - 48px);
  margin-inline: auto;
  display: grid;
  grid-template-columns: minmax(0, 7fr);
  gap: 56px;
  align-items: center;
  justify-items: center;
  text-align: center;
}

.hero-copy .eyebrow { display: inline-block; margin-bottom: 26px; color: #B8F0EE; }
.hero-script {
  font-family: var(--script);
  font-size: clamp(30px, 3.4vw, 42px);
  font-weight: 600;
  color: var(--gold-soft);
  line-height: 1;
  margin: -10px 0 4px 2px;
  opacity: 0;
  transform: translateY(10px);
}
body.is-loaded .hero-script { opacity: 1; transform: translateY(0); transition: opacity 0.8s ease 0.2s, transform 0.8s ease 0.2s; }
.hero-title {
  font-family: var(--serif);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  font-size: clamp(38px, 4.6vw, 64px);
  line-height: 1.1;
  color: var(--white);
  text-shadow: 0 2px 24px rgba(7,62,64,0.45);
  margin-bottom: 26px;
}
.hero-title .line { display: block; overflow: hidden; }
.hero-title .line > span { display: block; transform: translateY(112%); }
body.is-loaded .hero-title .line > span { transform: translateY(0); transition: transform 0.9s cubic-bezier(0.19, 1, 0.22, 1); }
body.is-loaded .hero-title .line:nth-child(2) > span { transition-delay: 0.12s; }
body.is-loaded .hero-title .line:nth-child(3) > span { transition-delay: 0.24s; }
.hero-title em { font-style: normal; color: transparent; -webkit-text-stroke: 2px var(--white); text-shadow: none; }

.hero-sub {
  font-size: 17px;
  color: rgba(253,252,250,0.95);
  text-shadow: 0 1px 14px rgba(11,33,41,0.5);
  max-width: 42ch;
  margin: 0 auto 36px;
  opacity: 0;
  transform: translateY(14px);
}
.hero-actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 16px; opacity: 0; transform: translateY(14px); }
body.is-loaded .hero-sub,
body.is-loaded .hero-actions {
  opacity: 1; transform: translateY(0);
  transition: opacity 0.7s ease 0.5s, transform 0.7s ease 0.5s;
}

/* ---------- Hero slideshow controls ---------- */
.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 4;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(243,241,236,0.5);
  background: rgba(11,33,41,0.25);
  color: var(--white);
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}
.hero-arrow:hover { background: var(--gold); border-color: var(--gold); transform: translateY(-50%) scale(1.06); }
.hero-arrow--prev { left: 24px; }
.hero-arrow--next { right: 90px; }
@media (min-width: 1281px) { .hero-arrow--prev { left: 110px; } }
@media (max-width: 900px) { .hero-arrow { display: none; } }

.hero-dots {
  position: absolute;
  left: 50%;
  bottom: 28px;
  transform: translateX(-50%);
  z-index: 4;
  display: flex;
  gap: 10px;
}
.hero-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  border: 1px solid rgba(243,241,236,0.7);
  background: transparent;
  padding: 0;
  transition: background-color 0.25s ease, transform 0.25s ease;
}
.hero-dot.is-active { background: var(--gold); border-color: var(--gold); transform: scale(1.2); }
.hero-dot:hover { border-color: var(--gold); }

.visually-hidden { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

/* ---------- Destination card rail ---------- */
.rail-wrap { min-width: 0; opacity: 0; transform: translateY(20px); scroll-margin-top: 100px; }
body.is-loaded .rail-wrap { opacity: 1; transform: translateY(0); transition: opacity 0.8s ease 0.65s, transform 0.8s ease 0.65s; }

.rail {
  overflow: hidden;
  padding: 16px 0 24px;
  margin-right: calc((100vw - min(1280px, 100vw - 48px)) / -2);
  -webkit-mask-image: linear-gradient(to right, transparent, #000 3%, #000 97%, transparent);
  mask-image: linear-gradient(to right, transparent, #000 3%, #000 97%, transparent);
}
.rail-track {
  display: flex;
  gap: 22px;
  width: max-content;
  animation: rail-scroll 46s linear infinite;
}
.rail:hover .rail-track, .rail:focus-within .rail-track { animation-play-state: paused; }
@keyframes rail-scroll { to { transform: translateX(-50%); } }

.card {
  position: relative;
  flex: 0 0 246px;
  scroll-snap-align: start;
  border-radius: 14px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 10px 30px rgba(11,33,41,0.12);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  isolation: isolate;
}
.card:hover { transform: translateY(-8px); box-shadow: 0 24px 50px rgba(11,33,41,0.2); }
.card-media {
  aspect-ratio: 3 / 4;
  background-size: cover;
  background-position: center;
  transition: transform 0.8s cubic-bezier(0.19, 1, 0.22, 1);
}
.card:hover .card-media { transform: scale(1.08); }
.card--singapore .card-media { background-image: linear-gradient(rgba(11,33,41,0.05), rgba(11,33,41,0.05)), var(--img-singapore), linear-gradient(160deg, #14424f, #0B2129); }
.card--malaysia .card-media { background-image: linear-gradient(rgba(11,33,41,0.05), rgba(11,33,41,0.05)), var(--img-malaysia), linear-gradient(160deg, #244b3c, #0B2129); }
.card--thailand .card-media { background-image: linear-gradient(rgba(11,33,41,0.05), rgba(11,33,41,0.05)), var(--img-thailand), linear-gradient(160deg, #4f3a14, #0B2129); }
.card--bali .card-media { background-image: linear-gradient(rgba(11,33,41,0.05), rgba(11,33,41,0.05)), var(--img-bali), linear-gradient(160deg, #3c4f14, #0B2129); }
.card--vietnam .card-media { background-image: linear-gradient(rgba(11,33,41,0.05), rgba(11,33,41,0.05)), var(--img-vietnam), linear-gradient(160deg, #14304f, #0B2129); }
.card--kerala .card-media { background-image: linear-gradient(rgba(11,33,41,0.05), rgba(11,33,41,0.05)), var(--img-kerala), linear-gradient(160deg, #14421f, #0B2129); }
.card--goa .card-media { background-image: linear-gradient(rgba(11,33,41,0.05), rgba(11,33,41,0.05)), var(--img-goa), linear-gradient(160deg, #144f4f, #0B2129); }
.card--kashmir .card-media { background-image: linear-gradient(rgba(11,33,41,0.05), rgba(11,33,41,0.05)), var(--img-kashmir), linear-gradient(160deg, #2a3d5c, #0B2129); }
.card--rajasthan .card-media { background-image: linear-gradient(rgba(11,33,41,0.05), rgba(11,33,41,0.05)), var(--img-rajasthan), linear-gradient(160deg, #5c3d14, #0B2129); }
.card--andaman .card-media { background-image: linear-gradient(rgba(11,33,41,0.05), rgba(11,33,41,0.05)), var(--img-andaman), linear-gradient(160deg, #0f5c5c, #0B2129); }
.card--ooty .card-media { background-image: linear-gradient(rgba(11,33,41,0.05), rgba(11,33,41,0.05)), var(--img-ooty), linear-gradient(160deg, #1c4a24, #0B2129); }
.card--kodaikanal .card-media { background-image: linear-gradient(rgba(11,33,41,0.05), rgba(11,33,41,0.05)), var(--img-kodaikanal), linear-gradient(160deg, #24523a, #0B2129); }
.card--coorg .card-media { background-image: linear-gradient(rgba(11,33,41,0.05), rgba(11,33,41,0.05)), var(--img-coorg), linear-gradient(160deg, #1d4a3f, #0B2129); }
.card--meghalaya .card-media { background-image: linear-gradient(rgba(11,33,41,0.05), rgba(11,33,41,0.05)), var(--img-meghalaya), linear-gradient(160deg, #1f4d2e, #0B2129); }
.card--valparai .card-media { background-image: linear-gradient(rgba(11,33,41,0.05), rgba(11,33,41,0.05)), var(--img-valparai), linear-gradient(160deg, #1a4a4a, #0B2129); }
.card--yelagiri .card-media { background-image: linear-gradient(rgba(11,33,41,0.05), rgba(11,33,41,0.05)), var(--img-yelagiri), linear-gradient(160deg, #2a4a2a, #0B2129); }
.card--international .card-media { background-image: linear-gradient(rgba(11,33,41,0.05), rgba(11,33,41,0.05)), var(--img-international), linear-gradient(160deg, #14424f, #0B2129); }

.card-label {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 60px 18px 16px;
  background: linear-gradient(to top, rgba(11,33,41,0.92), rgba(11,33,41,0));
  z-index: 2;
}
.card-name { font-family: var(--serif); font-size: 30px; color: var(--white); line-height: 1.1; }
.card-rule { display: block; width: 42px; height: 2px; background: var(--gold); margin-top: 8px; transform: scaleX(0); transform-origin: left; transition: transform 0.45s ease 0.05s; }
.card:hover .card-rule { transform: scaleX(1); }
.card-detail { font-family: var(--mono); font-size: 11px; letter-spacing: 0.06em; color: rgba(243,241,236,0.72); margin-top: 8px; }

.rail-controls { display: flex; gap: 12px; margin-top: 4px; padding-left: 6px; }

/* ---------- Package mosaic ---------- */
.mosaic-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 20px;
}
.mosaic-stack {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.mosaic-tile {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 14px;
  min-height: 270px;
  isolation: isolate;
  box-shadow: 0 10px 30px rgba(11,33,41,0.12);
  transition: box-shadow 0.4s ease, transform 0.4s ease;
}
.mosaic-tile--large { min-height: 560px; }
.mosaic-stack .mosaic-tile { flex: 1; }
.mosaic-tile:hover { box-shadow: 0 24px 50px rgba(11,33,41,0.2); transform: translateY(-4px); }
.mosaic-media {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.8s cubic-bezier(0.19, 1, 0.22, 1);
}
.mosaic-tile:hover .mosaic-media { transform: scale(1.08); }
.mosaic-copy {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 32px 28px 24px;
  background: linear-gradient(to top, rgba(11,33,41,0.92), rgba(11,33,41,0.05) 65%, rgba(11,33,41,0));
  z-index: 2;
}
.mosaic-rule { display: block; width: 42px; height: 2px; background: var(--gold); margin-bottom: 14px; transform: scaleX(0); transform-origin: left; transition: transform 0.45s ease 0.05s; }
.mosaic-tile:hover .mosaic-rule { transform: scaleX(1); }
.mosaic-copy h3 { font-family: var(--serif); color: var(--white); line-height: 1.15; font-size: 22px; }
.mosaic-tile--large .mosaic-copy h3 { font-size: clamp(28px, 3vw, 38px); }
.mosaic-copy p { font-family: var(--mono); font-size: 12px; letter-spacing: 0.04em; color: rgba(243,241,236,0.78); margin-top: 8px; }
.mosaic-link { display: inline-block; font-size: 13px; font-weight: 600; color: var(--white); margin-top: 14px; border-bottom: 1px solid rgba(255,255,255,0.5); padding-bottom: 2px; transition: border-color 0.3s ease, color 0.3s ease; }
.mosaic-tile:hover .mosaic-link { border-color: var(--gold); color: var(--gold-soft); }

/* ---------- Welcome block ---------- */
.welcome-block { max-width: 780px; }
.welcome-block .eyebrow { display: inline-block; margin-bottom: 18px; }
.welcome-block .section-title { margin-bottom: 26px; }
.welcome-block p { font-size: 17px; color: rgba(11,33,41,0.78); margin-bottom: 20px; }
.welcome-block .btn { margin-top: 14px; }

/* ---------- Package cards ---------- */
.package-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.package-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.package-card:hover { transform: translateY(-4px); box-shadow: 0 24px 50px rgba(11,33,41,0.14); }
.package-media { height: 190px; background: var(--paper-2) center / cover no-repeat; }
.package-body { padding: 24px 24px 26px; display: flex; flex-direction: column; flex: 1; }
.package-name { font-family: var(--serif); font-size: 24px; font-weight: 700; color: var(--ink); margin-bottom: 16px; }
.package-rows { list-style: none; margin-bottom: 22px; }
.package-rows li {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  font-size: 13px;
  padding: 8px 0;
  border-bottom: 1px solid var(--line);
}
.package-rows li:last-child { border-bottom: none; }
.package-rows .k { font-family: var(--mono); letter-spacing: 0.08em; text-transform: uppercase; font-size: 11px; color: rgba(11,33,41,0.55); }
.package-rows .v { color: var(--ink); text-align: right; }
.package-rows .v--muted { color: rgba(11,33,41,0.45); font-style: italic; }
.package-price .v { color: var(--gold); font-weight: 600; }
.package-actions { display: flex; gap: 10px; margin-top: auto; flex-wrap: wrap; }
.package-actions .btn { flex: 1; padding: 12px 18px; font-size: 13px; white-space: nowrap; }
.btn-outline { border-color: var(--line); color: var(--ink); background: transparent; }
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }
@media (max-width: 900px) { .package-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; } }
@media (max-width: 600px) { .package-grid { grid-template-columns: 1fr; } }

@media (max-width: 900px) {
  .mosaic-grid { grid-template-columns: 1fr; }
  .mosaic-tile--large { min-height: 320px; }
  .mosaic-stack .mosaic-tile { min-height: 220px; }
}
@media (max-width: 760px) {
  .mosaic-stack { gap: 16px; }
  .mosaic-grid { gap: 16px; }
  .mosaic-copy { padding: 22px 20px 18px; }
  .mosaic-copy h3, .mosaic-tile--large .mosaic-copy h3 { font-size: 24px; }
}
.rail-btn {
  width: 48px; height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(243,241,236,0.4);
  background: transparent;
  color: var(--paper);
  font-size: 18px;
  display: grid;
  place-items: center;
  transition: background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}
.rail-btn:hover { background: var(--gold); border-color: var(--gold); color: #fff; }

/* ---------- Marquee ---------- */
.marquee {
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--white);
  padding: 18px 0;
}
.marquee-track {
  display: flex;
  gap: 0;
  width: max-content;
  animation: marquee 38s linear infinite;
}
.marquee-track span {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 600;
  color: rgba(11,33,41,0.4);
  white-space: nowrap;
  padding-right: 18px;
}
.marquee-track b { color: var(--gold); font-weight: 400; padding-right: 18px; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* Pulsing "live" dot for attention-grabbing eyebrow labels */
.pulse-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  margin-right: 8px;
  vertical-align: middle;
  animation: pulse 1.6s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.35; transform: scale(1.3); }
}

/* ==========================================================================
   SECTIONS
   ========================================================================== */
section { position: relative; }
.section-pad { padding: 110px 0; }
@media (max-width: 640px) { .section-pad { padding: 44px 0; } }

.section-head { max-width: 620px; margin-bottom: 64px; }
.section-head .eyebrow { display: inline-block; margin-bottom: 18px; }
.section-title { font-family: var(--serif); font-weight: 700; font-size: clamp(30px, 3.4vw, 46px); line-height: 1.15; }

/* Stats strip */
.stats { background: var(--paper-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); color: var(--ink); }
.stats .section-title { color: var(--ink); }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  padding: 70px 0;
  gap: 40px;
}
.stat { text-align: left; border-left: 2px solid var(--gold); padding-left: 32px; }
.stat-num { font-family: var(--serif); font-weight: 700; font-size: clamp(40px, 4.6vw, 60px); color: var(--gold); line-height: 1.1; }
.stat-label { font-family: var(--mono); font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(11,33,41,0.6); margin-top: 14px; }

/* Light sections */
.light { background: var(--paper); color: var(--ink); }
.light .section-title { color: var(--ink); }
.light-grey { background: var(--paper-2); color: var(--ink); }

.cols-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 48px; }
.col-item .chapter {
  font-family: var(--mono);
  font-size: 13px;
  color: var(--gold);
  letter-spacing: 0.14em;
  display: block;
  border-bottom: 1px solid var(--line);
  padding-bottom: 14px;
  margin-bottom: 22px;
}
.col-item h3 { font-family: var(--serif); font-size: 26px; font-weight: 500; margin-bottom: 14px; line-height: 1.2; }
.col-item p { font-size: 15px; color: rgba(11,33,41,0.75); }

/* Why U2Holidays: card treatment + line-art icons */
.col-item {
  padding: 32px 28px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--white);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.col-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 50px rgba(11,33,41,0.12);
}
.why-icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--paper-2);
  color: var(--gold);
  margin-bottom: 20px;
}
.why-icon svg { width: 23px; height: 23px; }

/* How it works */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 48px; counter-reset: step; }
.step { position: relative; padding-top: 24px; }
.step::before {
  counter-increment: step;
  content: '0' counter(step);
  position: absolute;
  top: -34px; left: -6px;
  font-family: var(--serif);
  font-size: 96px;
  line-height: 1;
  color: rgba(201, 162, 39, 0.22);
  font-style: italic;
}
.step h3 { font-family: var(--serif); font-size: 24px; font-weight: 500; margin-bottom: 12px; position: relative; }
.step p { font-size: 15px; color: rgba(11,33,41,0.75); position: relative; }
.step-arrow { font-family: var(--mono); color: var(--gold); font-size: 13px; letter-spacing: 0.1em; display: block; margin-top: 18px; }

/* Photographic band */
.band {
  min-height: 62vh;
  display: grid;
  place-items: center;
  background: var(--ink) var(--img-band) center / cover no-repeat fixed;
  position: relative;
  text-align: center;
  padding: 100px 24px;
}
@media (max-width: 900px) { .band { background-attachment: scroll; } }
.band::before { content: ''; position: absolute; inset: 0; background: rgba(9,77,79,0.55); }
.band blockquote {
  position: relative;
  font-family: var(--serif);
  font-weight: 700;
  font-size: clamp(24px, 3vw, 40px);
  line-height: 1.3;
  max-width: 22ch;
  color: var(--white);
}
.band .eyebrow { position: relative; display: block; margin-top: 28px; }

/* Testimonials */
.quotes { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; }
.quote { border-top: 2px solid var(--gold); padding-top: 32px; }
.quote p { font-family: var(--serif); font-size: 21px; line-height: 1.55; color: var(--ink); margin-bottom: 24px; }
.quote cite { font-family: var(--mono); font-style: normal; font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(11,33,41,0.6); }
.quote cite b { color: var(--gold); font-weight: 400; display: block; margin-bottom: 4px; }

/* CTA band */
.cta { background: var(--gold); text-align: center; padding: 120px 24px; }
.cta h2 { font-family: var(--serif); font-weight: 700; font-size: clamp(32px, 4vw, 52px); line-height: 1.15; color: #fff; max-width: 20ch; margin: 0 auto 20px; }
.cta p { color: rgba(255,255,255,0.85); margin-bottom: 40px; }
.cta em { font-style: normal; color: #fff; text-decoration: underline; text-decoration-color: rgba(255,255,255,0.5); text-underline-offset: 6px; }
.cta .btn-gold { background: #fff; color: var(--gold); }
.cta .btn-gold:hover { background: var(--paper-2); box-shadow: 0 10px 30px rgba(7,62,64,0.3); }
.cta .eyebrow { color: #B8F0EE; }

/* Inline enquiry form (homepage, between How-it-works and Photo band) */
.inline-enquiry-form { max-width: 640px; margin: 0 auto; }

/* Sticky "Enquire now" tab — desktop only, positioned above the wa-float
   button (which sits fixed bottom:28px right:28px) so the two never overlap. */
.sticky-enquire {
  position: fixed;
  top: 50%;
  right: 0;
  transform: translateY(-50%) rotate(180deg);
  writing-mode: vertical-rl;
  z-index: 89;
  background: var(--gold);
  color: var(--ink);
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
  padding: 18px 10px;
  border-radius: 8px 0 0 8px;
  box-shadow: 0 12px 32px rgba(0,0,0,0.25);
  transition: padding 0.2s ease;
}
.sticky-enquire:hover { padding-right: 16px; }

/* Footer */
.footer { background: var(--paper-2); border-top: 1px solid var(--line); padding: 80px 0 40px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 56px; }
.footer h4 { font-family: var(--mono); font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: #0A6B6F; margin-bottom: 20px; font-weight: 400; }
.footer p, .footer a, .footer li { font-size: 14px; color: rgba(11,33,41,0.7); line-height: 1.9; }
.footer ul { list-style: none; }
.footer a:hover { color: #0A6B6F; }
.footer-logo { font-family: var(--serif); font-weight: 700; font-size: 26px; color: var(--ink); margin-bottom: 16px; }
.footer-logo em { font-style: normal; color: var(--gold); }
.footer-bottom { border-top: 1px solid var(--line); padding-top: 28px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
.footer-bottom p { font-family: var(--mono); font-size: 11px; letter-spacing: 0.08em; color: rgba(11,33,41,0.5); }

/* ==========================================================================
   INNER PAGE HEROES
   ========================================================================== */
.page-hero {
  position: relative;
  min-height: 55vh;
  display: flex;
  align-items: flex-end;
  padding: 70px 0 70px;
  overflow: hidden;
}
.page-hero .hero-bg { background-image: var(--img-hero-about); background-size: cover; background-position: center; }
.page-hero--contact .hero-bg { background-image: var(--img-hero-contact); }
.page-hero--domestic .hero-bg { background-image: var(--img-hero-domestic); }
.page-hero--international .hero-bg { background-image: var(--img-hero-international); }
.page-hero--packages .hero-bg { background-image: var(--img-ooty); }
.page-hero--stranger .hero-bg { background-image: var(--img-hero-stranger); }
.page-hero .hero-scrim { background: linear-gradient(to top, rgba(7,62,64,0.78) 8%, rgba(9,84,87,0.25) 100%); }
.page-hero .container { position: relative; z-index: 2; }

/* Stranger Trips hero: taller, badge + highlights + dual CTA */
.page-hero--stranger { min-height: 100svh; padding: 110px 0 64px; align-items: center; }
.page-hero--stranger .hero-actions { justify-content: flex-start; }
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

/* Stranger Trips inspiration gallery */
.stranger-gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.stranger-gallery-tile {
  aspect-ratio: 4 / 5;
  border-radius: 14px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.stranger-gallery-tile:hover { transform: translateY(-4px); box-shadow: 0 20px 40px rgba(11,33,41,0.2); }
@media (max-width: 900px) {
  .stranger-gallery-grid { grid-template-columns: repeat(2, 1fr); }
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  border-radius: 999px;
  background: rgba(243, 241, 236, 0.14);
  border: 1px solid rgba(243, 241, 236, 0.35);
  color: var(--white);
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 22px;
}
.hero-badge b { color: var(--gold-soft); font-weight: 600; }
.hero-highlights {
  display: grid;
  grid-template-columns: repeat(3, auto);
  gap: 36px;
  margin: 36px 0 40px;
}
.hero-highlight { border-left: 2px solid var(--gold); padding-left: 16px; }
.hero-highlight-label { font-family: var(--serif); font-size: 19px; font-weight: 600; color: var(--white); }
.hero-highlight-sub { font-family: var(--mono); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(243,241,236,0.65); margin-top: 4px; }
@media (max-width: 760px) {
  .page-hero--stranger { min-height: auto; padding: 90px 0 48px; }
  .hero-highlights { grid-template-columns: 1fr; gap: 18px; margin: 28px 0 32px; }
}
.page-title { font-family: var(--serif); font-weight: 800; text-transform: uppercase; font-size: clamp(34px, 5vw, 60px); color: var(--white); line-height: 1.1; margin-top: 18px; }
.page-title .line { display: block; overflow: hidden; }
.page-title .line > span { display: block; transform: translateY(112%); }
body.is-loaded .page-title .line > span { transform: translateY(0); transition: transform 0.9s cubic-bezier(0.19, 1, 0.22, 1) 0.1s; }

/* ==========================================================================
   ABOUT PAGE
   ========================================================================== */
.founder { display: grid; grid-template-columns: 5fr 6fr; gap: 72px; align-items: center; }
.founder-photo {
  aspect-ratio: 3 / 4;
  border-radius: 14px;
  background: var(--paper-2) var(--img-founder) center / cover no-repeat;
  box-shadow: 24px 24px 0 rgba(201,162,39,0.2);
}
.founder-story p { font-size: 16px; color: rgba(11,33,41,0.8); margin-bottom: 20px; max-width: 56ch; }
.founder-sig { font-family: var(--serif); font-style: italic; font-weight: 600; font-size: 30px; color: var(--gold); margin-top: 36px; }
.founder-role { font-family: var(--mono); font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(11,33,41,0.55); margin-top: 6px; }

.stranger-logo-panel {
  border-radius: 14px;
  background: var(--paper);
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  text-align: center;
  padding: 56px 40px;
  box-shadow: 24px 24px 0 rgba(201,162,39,0.2);
}
.stranger-logo-mark { font-family: var(--serif); font-weight: 700; font-size: clamp(32px, 3vw, 44px); color: var(--ink); }
.stranger-logo-mark em { font-style: normal; color: var(--gold-soft); }
.stranger-logo-tagline { font-family: var(--mono); font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(11,33,41,0.55); }
.stranger-logo-img { width: 100%; max-width: 420px; height: auto; }

.country-tile-section .section-title { color: var(--ink); }
.country-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 18px; }
.country-tile { position: relative; border-radius: 12px; overflow: hidden; aspect-ratio: 3 / 4; isolation: isolate; }
.country-tile .card-media { position: absolute; inset: 0; }
.country-tile .card-label { padding: 44px 14px 14px; }
.country-tile .card-name { font-size: 22px; }
.country-tile:hover .card-media { transform: scale(1.08); }
.country-tile:hover .card-rule { transform: scaleX(1); }
.country-tile .tile-detail { font-family: var(--mono); font-size: 11px; letter-spacing: 0.04em; color: rgba(243,241,236,0.75); margin-top: 6px; line-height: 1.4; }
.country-tile .tile-enquire { display: inline-block; font-family: var(--mono); font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--white); border-bottom: 1px solid var(--gold-soft); margin-top: 10px; }
.country-tile .tile-enquire:hover { color: var(--gold-soft); }

/* ==========================================================================
   DESTINATIONS PAGE
   ========================================================================== */
.dest-jump { display: flex; gap: 12px; margin-bottom: 8px; }
.dest-jump a {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 10px 20px;
}
.dest-jump a:hover { border-color: var(--gold); color: var(--gold); }
.dest-group + .dest-group { border-top: 1px solid var(--line); }

.handle-list { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 0 64px; max-width: 860px; }
.handle-list li {
  display: flex;
  align-items: baseline;
  gap: 18px;
  padding: 22px 4px;
  border-bottom: 1px solid var(--line);
  font-family: var(--serif);
  font-size: 22px;
  color: var(--ink);
}
.handle-list .idx { font-family: var(--mono); font-size: 12px; color: var(--gold); letter-spacing: 0.1em; }

/* ==========================================================================
   CONTACT PAGE
   ========================================================================== */
.contact-grid { display: grid; grid-template-columns: 6fr 5fr; gap: 80px; align-items: start; }

.form-note { font-family: var(--mono); font-size: 12px; letter-spacing: 0.1em; color: rgba(11,33,41,0.55); margin-bottom: 36px; }
.form-success { background: var(--paper-2); border-left: 3px solid var(--gold); padding: 18px 20px; font-size: 14px; color: var(--ink); margin-bottom: 34px; border-radius: 4px; }
.field { margin-bottom: 34px; }
.field label {
  display: block;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(11,33,41,0.6);
  margin-bottom: 8px;
}
.field input, .field select, .field textarea {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(11,33,41,0.3);
  padding: 10px 2px 12px;
  font-family: var(--sans);
  font-size: 17px;
  color: var(--ink);
  border-radius: 0;
  transition: border-color 0.3s ease;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-bottom: 2px solid var(--gold);
}
.field textarea { resize: vertical; min-height: 110px; }
.field select { appearance: none; background-image: linear-gradient(45deg, transparent 50%, var(--gold) 50%), linear-gradient(135deg, var(--gold) 50%, transparent 50%); background-position: calc(100% - 16px) 50%, calc(100% - 11px) 50%; background-size: 5px 5px; background-repeat: no-repeat; }

.contact-rows { display: flex; flex-direction: column; gap: 0; margin-bottom: 36px; }
.contact-row {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 22px 2px;
  border-bottom: 1px solid var(--line);
  transition: padding-left 0.3s ease;
}
.contact-row:first-child { border-top: 1px solid var(--line); }
a.contact-row:hover { padding-left: 10px; }
.contact-row .k { font-family: var(--mono); font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); }
.contact-row .v { font-family: var(--serif); font-size: 20px; color: var(--ink); line-height: 1.4; }

.map-wrap { border-radius: 12px; overflow: hidden; border: 1px solid var(--line); }
.map-wrap iframe { display: block; width: 100%; height: 300px; border: 0; }

/* ==========================================================================
   CONTACT BEHAVIOUR — floating WA + mobile bar
   ========================================================================== */
.wa-float {
  position: fixed;
  right: 28px;
  bottom: 28px;
  z-index: 90;
  width: 60px; height: 60px;
  border-radius: 50%;
  background: #25D366;
  display: grid;
  place-items: center;
  box-shadow: 0 12px 32px rgba(0,0,0,0.35);
  transition: transform 0.3s ease;
}
.wa-float:hover { transform: scale(1.1); }
.wa-float svg { width: 30px; height: 30px; fill: #fff; }

.mobile-bar {
  display: none;
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 95;
  background: rgba(253, 252, 250, 0.96);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-top: 1px solid var(--line);
  padding-bottom: env(safe-area-inset-bottom);
}
.mobile-bar a {
  flex: 1;
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--ink);
}
.mobile-bar svg { width: 18px; height: 18px; fill: currentColor; }
.mobile-bar .mb-wa { background: #1FA855; color: #fff; }
.mobile-bar .mb-call { background: transparent; }
.mobile-bar .mb-enq { background: var(--gold); color: #fff; }

@media (max-width: 900px) {
  .wa-float { display: none; }
  .sticky-enquire { display: none; }
  .mobile-bar { display: flex; }
  body { padding-bottom: calc(58px + env(safe-area-inset-bottom)); }
}

/* ==========================================================================
   SCROLL REVEAL
   ========================================================================== */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.22, 1, 0.36, 1); }
.reveal.in-view { opacity: 1; transform: translateY(0); }

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .founder { grid-template-columns: 1fr; gap: 48px; }
  .founder-photo { max-width: 420px; }
  .contact-grid { grid-template-columns: 1fr; gap: 64px; }
  .country-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 760px) {
  .cols-3, .steps { grid-template-columns: 1fr; gap: 44px; }
  .quotes { grid-template-columns: 1fr; gap: 44px; }
  .stats-grid { grid-template-columns: 1fr; gap: 36px; padding: 36px 0; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer { padding: 44px 0 28px; }
  .band { padding: 56px 24px; }
  .cta { padding: 56px 24px; }
  .page-hero:not(.page-hero--stranger) { padding: 44px 0; }
  .country-grid { grid-template-columns: repeat(2, 1fr); }
  .handle-list { grid-template-columns: 1fr; }
  .card { flex: 0 0 54vw; }
  .rail {
    margin-right: -20px;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x proximity;
  }
  .rail-track { animation: none; transform: none; }
  .rail [aria-hidden="true"] { display: none; }
  .hero-title { font-size: clamp(22px, 7vw, 30px); margin-bottom: 8px; }
  .hero {
    min-height: 0;
    aspect-ratio: 3 / 2;
    margin: 0 16px;
    border-radius: 20px;
    padding: 20px 20px 40px;
  }
  .hero-copy .eyebrow { margin-bottom: 6px; font-size: 11px; }
  .hero-script { margin-bottom: 0; font-size: 20px; }
  .hero-sub { display: none; }
  .hero-actions { display: none; }
  .hero-dots { bottom: 14px; }
  .social-rail { display: none; }
}
@media (max-width: 400px) {
  .hero-actions .btn { width: 100%; }
}

/* ==========================================================================
   REDUCED MOTION
   ========================================================================== */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    transition-delay: 0s !important;
  }
  .hero-title .line > span, .page-title .line > span { transform: none; }
  .hero-sub, .hero-actions, .rail-wrap, .reveal { opacity: 1; transform: none; }
  .hero-bg { transform: none !important; }
  .marquee-track { animation: none; }
  .rail-track { animation: none; transform: none; }
  .pulse-dot { animation: none; opacity: 1; transform: scale(1); }
  .band { background-attachment: scroll; }
}
