:root {
  --navy: #0c1a2e;
  --navy-2: #13283f;
  --navy-3: #1a3654;
  --gold: #c9a227;
  --gold-2: #f3d56a;
  --gold-ink: #7a5b0e;
  --sand: #f6f0e6;
  --cream: #fbf7f0;
  --ink: #161513;
  --muted: #5e5b55;
  --line: #e6dfd2;
  --white: #ffffff;
  --teal: #1e6b63;
  --travel-accent: var(--navy-2);
  --travel-accent-dark: var(--navy);
  --travel-section-bg: var(--sand);
  --travel-banner-bg: var(--navy);
  --dest-section-bg: var(--sand);
  --dest-accent: var(--navy-3);
  --dest-accent-light: var(--navy);
  --radius: 18px;
  --max: 1180px;
  --font: "Outfit", system-ui, sans-serif;
  --display: "Cormorant Garamond", Georgia, serif;
  --text-xs: 0.8125rem;
  --text-sm: 0.9375rem;
  --text-base: 1.0625rem;
  --text-md: 1.125rem;
  --text-lg: 1.25rem;
  --text-xl: 1.375rem;
  --text-2xl: clamp(1.7rem, 2.9vw, 2.4rem);
  --text-3xl: clamp(2.05rem, 4.2vw, 3.05rem);
  --leading-body: 1.65;
  --leading-tight: 1.2;
}

*,
*::before,
*::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  font-size: var(--text-base);
  color: var(--ink);
  background: var(--cream);
  line-height: var(--leading-body);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 {
  font-family: var(--display);
  font-weight: 600;
  line-height: var(--leading-tight);
  margin: 0 0 0.65rem;
  letter-spacing: -0.02em;
  color: var(--navy);
}
h1 { font-size: var(--text-3xl); font-weight: 700; }
h2 { font-size: var(--text-2xl); font-weight: 700; }
h3 { font-size: var(--text-lg); font-weight: 700; }
h4 { font-size: var(--text-md); font-weight: 700; }
p { margin: 0 0 0.7rem; color: #4a4742; font-size: var(--text-base); line-height: var(--leading-body); }
.lead { font-size: var(--text-md); line-height: 1.55; color: var(--muted); max-width: 36rem; }
.hero .lead,
.page-hero .lead,
.cta-band .lead { color: rgba(255, 255, 255, 0.82); }
.section-dark .lead { color: rgba(255, 255, 255, 0.78); }
.section-head > p,
.section-head > .lead { max-width: 32rem; }
.container { width: min(var(--max), calc(100% - 2rem)); margin-inline: auto; }

.eyebrow {
  display: inline-block;
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-ink);
  margin-bottom: 0.75rem;
}
.hero .eyebrow,
.page-hero .eyebrow,
.section-dark .eyebrow,
.cta-band .eyebrow,
.contact-card .eyebrow {
  color: var(--gold-2);
}
.section { padding: 2.6rem 0; }
.section-dark { background: var(--navy); color: var(--white); }
.section-dark h1, .section-dark h2, .section-dark h3, .section-dark h4 { color: var(--white); }
.section-dark p { color: rgba(255,255,255,0.82); }
.section-head { max-width: 40rem; margin-bottom: 1.4rem; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head h2,
.trending-head h2,
.fleet-head h2,
.table-title {
  position: relative;
  display: inline-block;
  padding-bottom: 0.5rem;
}
.section-head h2::after,
.trending-head h2::after,
.fleet-head h2::after,
.table-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 3.25rem;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--gold), var(--gold-2));
}
.section-head.center h2::after { left: 50%; transform: translateX(-50%); }
.fleet-head h2::after { left: 50%; transform: translateX(-50%); }
.section-dark .section-head h2::after { background: linear-gradient(90deg, var(--gold-2), var(--gold)); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  min-height: 44px;
  padding: 0.55rem 1.2rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: var(--text-sm);
  border: 1px solid transparent;
  cursor: pointer;
  transition: 0.2s ease;
}
.btn-primary { background: #d4a017; color: #0c1a2e; }
.btn-primary:hover { background: #e8b82a; color: #0c1a2e; }
.btn-on-dark { background: var(--white); color: var(--navy); }
.btn-on-dark:hover { background: var(--sand); }
.btn-outline { border-color: rgba(255,255,255,0.4); color: var(--white); }
.btn-outline:hover { background: rgba(255,255,255,0.08); }
.btn-ghost { border-color: var(--line); background: var(--white); color: var(--navy); }
.btn-ghost:hover { border-color: var(--navy); }
.section-dark .btn-ghost,
.event-day-story .btn-ghost,
.cta-band .btn-ghost {
  color: var(--navy);
}
.btn-row { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-top: 1rem; }

.topbar {
  background: var(--navy);
  color: rgba(255,255,255,0.82);
  font-size: var(--text-sm);
}
.topbar-inner {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.35rem 0;
  flex-wrap: wrap;
}
.topbar a:hover { color: var(--gold-2); }
.topbar-links { display: flex; gap: 1.1rem; flex-wrap: wrap; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(251,247,240,0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  gap: 0.8rem;
}
.brand { display: flex; align-items: center; gap: 0.55rem; text-decoration: none; }
.brand-lockup {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.2rem;
}
.brand-tagline {
  position: relative;
  display: block;
  overflow: hidden;
  width: 100%;
  max-width: min(268px, 58vw);
  line-height: 1.2;
  padding: 0.34rem 0.62rem 0.3rem 0.95rem;
  margin-top: 0.08rem;
  border-radius: 999px;
  background: linear-gradient(
    90deg,
    rgba(255, 95, 109, 0.1),
    rgba(255, 195, 113, 0.12),
    rgba(249, 212, 35, 0.1),
    rgba(36, 198, 220, 0.12),
    rgba(84, 51, 255, 0.1)
  );
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.65), 0 2px 8px rgba(12, 26, 46, 0.06);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
}
.brand-tagline::before {
  content: "";
  position: absolute;
  left: 0.42rem;
  top: 50%;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ff5f6d, #ffc371, #24c6dc, #5433ff);
  box-shadow: 0 0 8px rgba(255, 95, 109, 0.45);
  transform: translateY(-50%);
  animation: brandTaglinePulse 1.6s ease-in-out infinite, brandTaglineDotRainbow 3.5s linear infinite;
}
.brand-tagline-track {
  display: flex;
  gap: 2.25rem;
  width: max-content;
  animation: brandTaglineRun 10s linear infinite;
  will-change: transform;
}
.brand:hover .brand-tagline-track { animation-play-state: paused; }
.brand-tagline-item {
  display: inline-flex;
  align-items: center;
  gap: 0.18rem;
  flex-shrink: 0;
  white-space: nowrap;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}
.brand-tagline-item strong,
.brand-tagline-sep {
  background-image: linear-gradient(
    90deg,
    #ff5f6d 0%,
    #ffc371 18%,
    #f9d423 36%,
    #24c6dc 54%,
    #1dd1a1 72%,
    #5433ff 90%,
    #ff5f6d 100%
  );
  background-size: 320% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: brandTaglineRainbow 4.2s linear infinite;
}
.brand-tagline-item strong { font-weight: 800; }
.brand-tagline-item strong:nth-of-type(2),
.brand-tagline-sep:nth-of-type(2) { animation-delay: 0.35s; }
.brand-tagline-item strong:nth-of-type(3),
.brand-tagline-sep:nth-of-type(3) { animation-delay: 0.7s; }
.brand-tagline-sep {
  font-weight: 700;
  line-height: 1;
}
.site-footer .brand-lockup {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.35rem;
  padding: 0.8rem 1rem 0.7rem;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.97);
  border: 1px solid rgba(201, 162, 39, 0.4);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.28);
}
.site-footer .brand-logo-on-dark {
  height: 68px;
  max-width: 210px;
  filter: none;
}
.site-footer .brand-tagline {
  max-width: 100%;
  padding: 0.15rem 0 0;
  margin-top: 0;
  background: transparent;
  box-shadow: none;
  border-radius: 0;
  -webkit-mask-image: none;
  mask-image: none;
}
.site-footer .brand-tagline::before { display: none; }
.site-footer .brand-tagline-track {
  animation: none;
  transform: none;
  gap: 0;
}
.site-footer .brand-tagline-item[aria-hidden="true"] { display: none; }
.site-footer .brand-tagline-item strong,
.site-footer .brand-tagline-sep {
  animation: none;
  background: none;
  -webkit-background-clip: unset;
  background-clip: unset;
  -webkit-text-fill-color: unset;
  color: var(--navy-3);
}
.site-footer .brand-tagline-sep { color: var(--gold-ink); font-weight: 800; }
@keyframes brandTaglineRun { to { transform: translateX(-50%); } }
@keyframes brandTaglineRainbow { to { background-position: 320% center; } }
@keyframes brandTaglineDotRainbow { to { filter: hue-rotate(360deg); } }
@keyframes brandTaglinePulse {
  0%, 100% { opacity: 0.55; transform: translateY(-50%) scale(0.9); }
  50% { opacity: 1; transform: translateY(-50%) scale(1.15); }
}
.brand-logo {
  height: 58px;
  width: auto;
  max-width: min(240px, 52vw);
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 1px 2px rgba(12, 26, 46, 0.1));
}
.brand-logo-on-dark {
  height: 74px;
  max-width: 220px;
  background: transparent;
  border-radius: 0;
  padding: 0;
  filter: drop-shadow(0 2px 10px rgba(0, 0, 0, 0.28));
}
.brand-mark { width: 32px; height: 32px; }
.brand-text strong { display: block; font-family: var(--display); font-size: 1.12rem; line-height: 1; }
.brand-text strong span { color: var(--gold); font-style: italic; }
.brand-text small { color: var(--muted); font-size: 0.68rem; letter-spacing: 0.12em; text-transform: uppercase; }

.nav { display: flex; align-items: center; gap: 0.85rem; }
.nav a { font-size: var(--text-sm); font-weight: 600; }
.nav a:hover, .nav a.is-active { color: var(--teal); }
.nav-toggle {
  display: none;
  width: 42px; height: 42px;
  border: 0; background: transparent;
  flex-direction: column; justify-content: center; gap: 5px;
}
.nav-toggle span { display: block; height: 2px; background: var(--navy); }

.hero {
  position: relative;
  min-height: min(52vh, 480px);
  display: grid;
  align-items: end;
  color: var(--white);
  background: var(--navy);
  overflow: hidden;
}
.hero::after {
  content: "";
  position: absolute; inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(12,26,46,0.72) 0%, rgba(12,26,46,0.28) 55%, rgba(12,26,46,0.55) 100%),
    linear-gradient(180deg, rgba(12,26,46,0.2) 0%, rgba(12,26,46,0.78) 100%);
}
.hero-fx {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
.hero-slides { position: absolute; inset: 0; }
.hero-slide {
  position: absolute;
  inset: -6%;
  background: center/cover no-repeat;
  opacity: 0;
  transform: scale(1.06);
  transition: opacity 1.1s ease, transform 8s ease;
}
.hero-slide.is-active {
  opacity: 1;
  transform: scale(1.12);
}
.hero-road {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 96px;
  background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.12) 40%, rgba(0,0,0,0.45) 100%);
  overflow: hidden;
}
.hero-lane {
  position: absolute;
  left: 0; right: 0;
  bottom: 22px;
  height: 3px;
  background: repeating-linear-gradient(90deg, #ffe27a 0 22px, transparent 22px 44px);
  animation: roadMove 0.7s linear infinite;
}
.hero-car-run {
  position: absolute;
  bottom: 12px;
  background: none;
  border: 0;
  padding: 0;
  animation: carDrive 24s linear infinite;
  filter: drop-shadow(0 8px 10px rgba(0,0,0,0.45));
}
.hero-car-run.innova { width: 180px; animation-delay: 0s; }
.hero-car-run.traveller { width: 200px; animation-delay: -6s; }
.hero-car-run.minibus { width: 220px; animation-delay: -12s; }
.hero-car-run.tourbus { width: 250px; animation-delay: -18s; }
.car-svg-img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 72px;
  object-fit: contain;
  object-position: bottom center;
  background: transparent;
  border: 0;
  pointer-events: none;
}
@keyframes roadMove { to { transform: translateX(-44px); } }
@keyframes carDrive {
  0% { transform: translateX(-280px); }
  100% { transform: translateX(calc(100vw + 280px)); }
}
.hero-inner {
  position: relative;
  z-index: 1;
  padding: 2.6rem 0 2.2rem;
  max-width: 38rem;
}
.hero-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 1.6rem;
  align-items: end;
  padding: 2.2rem 0 6.4rem;
  gap: 1.1rem;
}
.hero-copy h1 { font-size: clamp(2rem, 4.5vw, 3.1rem); max-width: 14ch; line-height: 1.08; }
.hero-dests {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-top: 0.65rem;
}
.hero-dests button {
  border: 1px solid rgba(255,255,255,0.35);
  background: rgba(12,26,46,0.28);
  color: #fff;
  border-radius: 999px;
  padding: 0.35rem 0.85rem;
  font: inherit;
  font-size: var(--text-sm);
  font-weight: 600;
  cursor: pointer;
}
.hero-dests button.is-active {
  background: #d4a017;
  border-color: #d4a017;
  color: #0c1a2e;
}
.book-card {
  background: var(--white);
  color: var(--ink);
  border-radius: 16px;
  padding: 0.9rem 1rem 1rem;
  box-shadow: var(--shadow);
}
.book-card h3 { color: var(--navy); margin-bottom: 0.25rem; font-size: var(--text-xl); }
.book-card p { font-size: var(--text-sm); }
.book-card label { display: block; font-size: var(--text-xs); font-weight: 600; margin: 0.5rem 0 0.25rem; color: var(--navy); }
.book-card input, .book-card select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 0.62rem 0.75rem;
  font: inherit;
  font-size: var(--text-sm);
  background: var(--cream);
}
.book-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0.5rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.hero h1, .page-hero h1, .cta-band h2, .contact-card h2 { color: var(--white); }
.hero h1 em {
  font-style: normal;
  color: var(--gold-2);
  text-shadow: 0 2px 10px rgba(12, 26, 46, 0.55);
  display: inline-block;
  min-width: 6ch;
  transition: opacity 0.18s ease, transform 0.18s ease;
}
.hero h1 em.is-swap { opacity: 0; transform: translateY(8px); }
.hero-lead { font-size: var(--text-md); color: rgba(255,255,255,0.92); max-width: 30rem; line-height: 1.55; }
.hero-pills { display: flex; flex-wrap: wrap; gap: 0.45rem; margin: 0.85rem 0 0.25rem; }
.hero-pills span {
  border: 1px solid rgba(255,255,255,0.28);
  border-radius: 999px;
  padding: 0.35rem 0.9rem;
  font-size: var(--text-xs);
  letter-spacing: 0.04em;
}

.marquee { overflow: hidden; background: var(--gold); color: var(--navy); }
.marquee-track {
  display: flex; gap: 2.4rem;
  padding: 0.5rem 0;
  width: max-content;
  animation: slide 28s linear infinite;
  font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; font-size: var(--text-xs);
}
@keyframes slide { to { transform: translateX(-50%); } }

.trust-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
}
.trust-item {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.2rem 1.1rem;
  box-shadow: var(--shadow);
}
.trust-item strong { display: block; }
.trust-item span { color: var(--muted); font-size: var(--text-sm); }

.grid-3, .grid-2 { display: grid; gap: 1.2rem; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: 1.1fr 0.9fr; }

.dest-card {
  position: relative;
  min-height: 200px;
  border-radius: var(--radius);
  overflow: hidden;
  color: var(--white);
  background: var(--navy-2) center/cover no-repeat;
  display: flex;
  align-items: flex-end;
}
.dest-card::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(12,26,46,0.88));
}
.dest-card .copy { position: relative; z-index: 1; padding: 1.3rem; }
.dest-card h3 { color: #fff; }
.dest-card small { letter-spacing: 0.12em; text-transform: uppercase; font-size: var(--text-xs); color: #ffe27a; }
.dest-card.tall { min-height: 260px; grid-row: span 2; }

.offer-card, .service-card, .value-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.5rem;
}
.service-card h3 { margin-top: 0.4rem; }

.tourism-experiences { background: var(--sand); }
.tourism-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}
.tourism-card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 28px rgba(12, 26, 46, 0.06);
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}
.tourism-card:hover {
  transform: translateY(-5px);
  border-color: rgba(201, 162, 39, 0.45);
  box-shadow: 0 18px 40px rgba(12, 26, 46, 0.12);
}
.tourism-card-photo {
  height: 176px;
  overflow: hidden;
  background: var(--navy-2);
}
.tourism-card-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.45s ease;
}
.tourism-card:hover .tourism-card-photo img { transform: scale(1.05); }
.tourism-card-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 0.35rem;
  padding: 1rem 1.1rem 1.15rem;
}
.tourism-card-num {
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold-ink);
}
.tourism-card-body h3 {
  margin: 0;
  font-family: var(--font);
  font-size: var(--text-lg);
  color: var(--navy);
  line-height: 1.2;
}
.tourism-card-body p {
  margin: 0;
  font-size: var(--text-sm);
  line-height: 1.55;
  color: var(--muted);
}
.tourism-card-go {
  margin-top: auto;
  padding-top: 0.45rem;
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--navy);
  opacity: 0;
  transform: translateY(4px);
  transition: opacity 0.25s ease, transform 0.25s ease, color 0.25s ease;
}
.tourism-card:hover .tourism-card-go,
.tourism-card:focus-visible .tourism-card-go {
  opacity: 1;
  transform: translateY(0);
  color: var(--gold-ink);
}

/* Hill station destination catalog — tourism page */
.hill-catalog { background: var(--cream); }
.hill-catalog-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
  margin-bottom: 1.35rem;
}
.hill-stat {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 0.95rem 1rem;
  text-align: center;
}
.hill-stat strong {
  display: block;
  font-family: var(--display);
  font-size: 1.65rem;
  color: var(--navy);
  line-height: 1.1;
}
.hill-stat span {
  display: block;
  margin-top: 0.2rem;
  font-size: var(--text-xs);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}
.hill-catalog-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1.25rem;
}
.hill-state-tabs {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  padding: 0.35rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 999px;
}
.hill-state-tab {
  appearance: none;
  border: 0;
  background: transparent;
  color: var(--muted);
  font: inherit;
  font-size: var(--text-sm);
  font-weight: 700;
  padding: 0.55rem 0.95rem;
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.25s ease, color 0.25s ease, box-shadow 0.25s ease;
}
.hill-state-tab span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 1.35rem;
  height: 1.35rem;
  margin-left: 0.35rem;
  padding: 0 0.35rem;
  border-radius: 999px;
  background: rgba(12, 26, 46, 0.08);
  font-size: 0.72rem;
}
.hill-state-tab.is-active {
  background: var(--navy);
  color: var(--white);
  box-shadow: 0 8px 20px rgba(12, 26, 46, 0.18);
}
.hill-state-tab.is-active span { background: rgba(255, 255, 255, 0.16); }
.hill-state-panel { display: none; }
.hill-state-panel.is-active { display: block; }
.hill-dest-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}
.hill-dest-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 26px rgba(12, 26, 46, 0.06);
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}
.hill-dest-card:hover {
  transform: translateY(-4px);
  border-color: rgba(201, 162, 39, 0.45);
  box-shadow: 0 16px 36px rgba(12, 26, 46, 0.12);
}
.hill-dest-photo {
  height: 168px;
  overflow: hidden;
  background: var(--navy-2);
}
.hill-dest-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}
.hill-dest-card:hover .hill-dest-photo img { transform: scale(1.05); }
.hill-dest-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 0.45rem;
  padding: 1rem 1.05rem 1.1rem;
}
.hill-dest-state {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-ink);
}
.hill-dest-body h3 {
  margin: 0;
  font-family: var(--display);
  font-size: 1.35rem;
  color: var(--navy);
  line-height: 1.15;
}
.hill-dest-body p {
  margin: 0;
  color: var(--muted);
  font-size: var(--text-sm);
  line-height: 1.55;
}
.hill-dest-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin: 0.15rem 0 0;
  padding: 0;
  list-style: none;
}
.hill-dest-tags li {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--navy-3);
  background: var(--sand);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.28rem 0.55rem;
}
.hill-dest-enquire {
  margin-top: auto;
  padding-top: 0.55rem;
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--navy);
  text-decoration: none;
}
.hill-dest-enquire:hover { color: var(--gold-ink); }
.hill-dest-enquire::after { content: " →"; }
.hill-catalog-note {
  margin-top: 1.5rem;
  padding: 1.15rem 1.2rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-left: 4px solid var(--gold);
  border-radius: 14px;
}
.hill-catalog-note p {
  margin: 0 0 1rem;
  color: var(--muted);
  font-size: var(--text-sm);
  line-height: 1.6;
}
.hill-catalog-note strong { color: var(--navy); }
.plain-catalog { background: var(--sand); }
.plain-catalog .hill-dest-state { color: var(--teal); }
.plain-catalog .hill-catalog-note { border-left-color: var(--teal); }
.plain-catalog .hill-state-tab.is-active {
  background: var(--teal);
  box-shadow: 0 8px 20px rgba(30, 107, 99, 0.22);
}

.transport-services { padding-bottom: 3rem; }
.transport-fleet-teaser {
  margin-top: 2rem;
  padding-top: 1.75rem;
  border-top: 1px solid var(--line);
}
.transport-fleet-teaser .section-head { margin-bottom: 1rem; }
.fleet-teaser-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.75rem;
}
.fleet-teaser {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.45rem;
  padding: 0.85rem 0.65rem;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--white);
  text-decoration: none;
  color: var(--navy);
  box-shadow: 0 8px 22px rgba(12, 26, 46, 0.05);
  transition: border-color 0.25s ease, transform 0.25s ease;
}
.fleet-teaser:hover {
  border-color: rgba(201, 162, 39, 0.45);
  transform: translateY(-3px);
}
.fleet-teaser img {
  width: 100%;
  max-height: 72px;
  object-fit: contain;
}
.fleet-teaser span {
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-align: center;
}

/* Blue Moon–style travel service cards — change colours via --travel-accent vars in :root */
.travel-services { background: var(--travel-section-bg); padding: 2.4rem 0 0; }
.travel-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.15rem;
}
.travel-card {
  position: relative;
  display: block;
  min-height: 210px;
  padding: 1.35rem 1.1rem 1.4rem 1.35rem;
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 28px rgba(12, 26, 46, 0.08);
  transition: box-shadow 0.35s ease;
}
.travel-card:hover {
  box-shadow: 0 16px 36px rgba(12, 26, 46, 0.16);
}
.travel-card::before {
  content: "";
  position: absolute;
  right: -28%;
  top: -18%;
  width: 62%;
  height: 136%;
  background: var(--travel-accent);
  border-radius: 50%;
  z-index: 0;
  transition:
    right 0.45s cubic-bezier(0.4, 0, 0.2, 1),
    top 0.45s cubic-bezier(0.4, 0, 0.2, 1),
    width 0.45s cubic-bezier(0.4, 0, 0.2, 1),
    height 0.45s cubic-bezier(0.4, 0, 0.2, 1),
    border-radius 0.45s ease;
}
.travel-card:hover::before {
  right: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border-radius: 16px;
}
.travel-card-icon {
  position: relative;
  z-index: 1;
  display: block;
  width: 52px;
  height: 52px;
  color: var(--ink);
  transition: color 0.35s ease;
}
.travel-card-icon svg { width: 100%; height: 100%; }
.travel-card h3 {
  position: relative;
  z-index: 1;
  margin: 0.85rem 0 0.45rem;
  max-width: 72%;
  font-family: var(--font);
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--ink);
  line-height: 1.3;
  transition: color 0.35s ease;
}
.travel-card p {
  position: relative;
  z-index: 1;
  margin: 0;
  max-width: 76%;
  font-size: var(--text-sm);
  color: #6b7280;
  line-height: 1.45;
  transition: color 0.35s ease;
}
.travel-card:hover h3,
.travel-card:hover p,
.travel-card:focus-visible h3,
.travel-card:focus-visible p {
  color: var(--white);
}
.travel-card:hover .travel-card-icon,
.travel-card:focus-visible .travel-card-icon {
  color: var(--white);
}
.travel-card-go {
  position: absolute;
  top: 0.95rem;
  right: 0.95rem;
  z-index: 2;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--travel-accent);
  color: var(--white);
  display: grid;
  place-items: center;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.18);
  transition: background 0.35s ease, color 0.35s ease, transform 0.35s ease;
}
.travel-card:hover .travel-card-go,
.travel-card:focus-visible .travel-card-go {
  background: var(--white);
  color: var(--travel-accent);
  transform: translateX(2px);
}
.travel-banner {
  margin-top: 2rem;
  padding: 1.65rem 0;
  background: var(--travel-banner-bg);
  text-align: center;
}
.travel-banner h2 {
  margin: 0;
  font-family: var(--font);
  font-size: clamp(1.35rem, 2.4vw, 1.85rem);
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.01em;
}

/* Trending Destination — Blue Moon layout, Astrra colours */
.trending-section {
  padding: 2.2rem 0 2.8rem;
}
.trending-wrap {
  background: var(--dest-section-bg);
  border-radius: 20px;
  padding: clamp(1.25rem, 3vw, 2.5rem);
  width: min(calc(100% - 1.5rem), var(--max));
}
.trending-head { text-align: center; margin-bottom: clamp(1.5rem, 3vw, 2.5rem); }
.trending-head h2 {
  margin: 0;
  font-family: var(--font);
  font-size: clamp(1.65rem, 3vw, 2.25rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.15;
}
.trending-layout {
  display: flex;
  gap: 1rem;
  align-items: stretch;
}
.trending-left {
  position: relative;
  flex: 1.5;
  min-height: clamp(420px, 52vw, 620px);
  border-radius: 18px;
  overflow: hidden;
}
.trending-left > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}
.trending-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: clamp(1.25rem, 2.5vw, 2.5rem);
  background: linear-gradient(168deg, var(--navy-3) 20%, var(--navy) 72%, var(--navy-2) 100%);
  color: var(--white);
  overflow-y: auto;
}
.trending-copy {
  width: min(100%, 560px);
  text-align: center;
}
.trending-copy h3 {
  margin: 0 0 0.55rem;
  font-family: var(--font);
  font-size: clamp(1.05rem, 1.9vw, 1.45rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.25;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.2);
}
.trending-copy p {
  margin: 0 0 1rem;
  font-size: var(--text-sm);
  line-height: 1.55;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.95);
  text-align: justify;
}
.trending-copy p a {
  color: var(--white);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.trending-packages {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.65rem 0.5rem;
  width: min(100%, 420px);
  margin-inline: auto;
}
.trending-pack {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  min-height: 32px;
  padding: 0.45rem 0.55rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: var(--white);
  font-size: var(--text-xs);
  font-weight: 600;
  line-height: 1.2;
  text-align: center;
  transition: background 0.3s ease, transform 0.3s ease;
}
.trending-pack span {
  display: inline-block;
  transform: rotate(-45deg);
  font-size: var(--text-sm);
  opacity: 0.95;
}
.trending-pack:hover {
  background: rgba(201, 162, 39, 0.28);
  border-color: rgba(243, 213, 106, 0.45);
  transform: translateY(-1px);
}
.trending-grid {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-auto-rows: 1fr;
  gap: 0.75rem;
  min-height: clamp(420px, 52vw, 620px);
}
.trending-tile {
  position: relative;
  border: 3px solid transparent;
  border-radius: 14px;
  overflow: hidden;
  padding: 0;
  cursor: pointer;
  background: transparent;
  min-height: 0;
  transition: transform 0.3s ease, border-color 0.3s ease;
}
.trending-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.trending-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.05) 40%, rgba(0, 0, 0, 0.55) 100%);
  pointer-events: none;
}
.trending-tile span {
  position: absolute;
  left: 0.65rem;
  bottom: 0.55rem;
  z-index: 1;
  color: var(--white);
  font-family: var(--font);
  font-weight: 700;
  font-size: var(--text-sm);
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.35);
}
.trending-tile:hover::after,
.trending-tile.is-active::after {
  background: linear-gradient(180deg, rgba(12, 26, 46, 0.12) 30%, rgba(12, 26, 46, 0.72) 100%);
}
.trending-tile:hover { transform: scale(1.02); }
.trending-tile.is-active {
  border-color: var(--gold);
  box-shadow: 0 0 0 1px rgba(201, 162, 39, 0.35);
}

.icon-dot {
  width: 42px; height: 42px; border-radius: 50%;
  display: grid; place-items: center;
  background: var(--sand); color: var(--teal); font-weight: 700;
}

.about-split, .why-band {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2.4rem;
  align-items: center;
}
.about-media, .why-media {
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 240px;
  background: var(--navy) center/cover no-repeat;
}
.quote {
  border-left: 3px solid var(--gold);
  padding-left: 1rem;
  font-family: var(--display);
  font-size: 1.35rem;
  color: var(--navy);
  margin: 1.2rem 0;
}
.text-link {
  display: inline-block;
  margin-top: 0.85rem;
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--navy-3);
  text-decoration: none;
}
.text-link:hover { color: var(--gold-ink); }

.about-intro { padding-bottom: 0; }
.about-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.75rem;
  margin-top: 2.5rem;
}
.about-stat {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  padding: 0.95rem 1rem;
  border-radius: 14px;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 8px 22px rgba(12, 26, 46, 0.05);
  text-align: center;
}
.about-stat strong {
  font-family: var(--font);
  font-size: var(--text-lg);
  color: var(--navy);
  line-height: 1.1;
}
.about-stat span {
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted);
}
.about-leadership {
  background: var(--sand);
  padding-top: 0;
}
.about-leader {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 0;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: 0 18px 44px rgba(12, 26, 46, 0.1);
  background: var(--white);
}
.about-leader-profile {
  padding: clamp(1.5rem, 3vw, 2rem);
  background: linear-gradient(165deg, var(--navy) 0%, var(--navy-3) 100%);
  color: var(--white);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.about-leader-profile .eyebrow { color: var(--gold-2); }
.about-leader-profile h2 {
  margin: 0.15rem 0 0.35rem;
  font-family: var(--display);
  font-size: clamp(1.85rem, 3vw, 2.35rem);
  color: var(--white);
  line-height: 1.05;
}
.about-leader-avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  margin-bottom: 1rem;
  background: linear-gradient(145deg, var(--gold) 0%, #a68520 100%);
  color: var(--navy);
  font-family: var(--display);
  font-size: 2rem;
  font-weight: 700;
  box-shadow: 0 0 0 4px rgba(201, 162, 39, 0.25);
}
.about-leader-role {
  margin: 0;
  font-size: var(--text-sm);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--gold-2);
}
.about-leader-brands {
  margin: 0.65rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.35rem;
}
.about-leader-brands li {
  font-size: var(--text-sm);
  font-weight: 600;
  color: rgba(255, 255, 255, 0.92);
  line-height: 1.4;
}
.about-leader-brands li::before {
  content: "—";
  margin-right: 0.45rem;
  color: var(--gold-2);
}
.about-leader-meta {
  margin: 0.35rem 0 0.5rem;
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.72);
}
.about-leader-contact {
  display: inline-block;
  margin: 0 0 1.15rem;
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--gold-2);
  text-decoration: none;
}
.about-leader-contact:hover { color: #fff; }
.about-leader-copy {
  padding: clamp(1.5rem, 3vw, 2rem);
}
.about-leader-copy > p {
  margin: 0 0 0.85rem;
  color: var(--muted);
  line-height: 1.65;
}
.about-leader-copy .list-check { margin: 0.5rem 0 1.15rem; }
.about-leader-quote {
  margin: 0;
  padding: 1rem 1rem 0.95rem 1.2rem;
  border-left: 4px solid var(--gold);
  background: var(--sand);
  border-radius: 0 14px 14px 0;
}
.about-leader-quote p {
  margin: 0 0 0.55rem;
  font-family: var(--display);
  font-size: clamp(1.02rem, 1.8vw, 1.2rem);
  line-height: 1.55;
  color: var(--navy);
}
.about-leader-quote cite {
  font-style: normal;
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.03em;
  color: var(--muted);
}
.about-pillars { padding-top: 0; }
.about-pillars .value-card p { margin-bottom: 0; }

.list-check { list-style: none; padding: 0; margin: 0; }
.list-check li {
  padding: 0.55rem 0 0.55rem 1.6rem;
  position: relative;
  color: var(--muted);
}
.list-check li::before {
  content: "";
  position: absolute; left: 0; top: 0.95rem;
  width: 9px; height: 9px; border-radius: 50%;
  background: var(--gold);
}

.cta-band {
  background: linear-gradient(120deg, var(--navy) 0%, var(--navy-3) 55%, #1e4d4a 100%);
  color: var(--white);
  padding: 2.2rem 0;
}
.cta-inner {
  display: flex;
  justify-content: space-between;
  gap: 1.5rem;
  align-items: center;
  flex-wrap: wrap;
}
.cta-band p { color: rgba(255,255,255,0.75); margin: 0; }

.site-footer {
  background: #081321;
  color: rgba(255,255,255,0.78);
  padding: 2.2rem 0 1.1rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 1fr;
  gap: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-links { display: grid; gap: 0.45rem; }
.footer-links a:hover { color: var(--gold-2); }
.site-footer h4 { color: var(--white); font-family: var(--font); font-size: var(--text-sm); letter-spacing: 0.12em; text-transform: uppercase; }
.footer-end { padding-top: 1.1rem; }
.footer-bottom {
  display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap;
  font-size: var(--text-sm);
}
.footer-locale { color: rgba(255,255,255,0.62); }
.footer-partner {
  margin-top: 1.25rem;
  display: flex;
  justify-content: center;
}
.footer-partner-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  flex-wrap: wrap;
  justify-content: center;
  padding: 0.55rem 1.2rem;
  border-radius: 999px;
  border: 1px solid rgba(201, 162, 39, 0.28);
  background: linear-gradient(135deg, rgba(201, 162, 39, 0.12) 0%, rgba(255,255,255,0.04) 100%);
  font-size: 0.78rem;
  letter-spacing: 0.04em;
}
.footer-partner-astrra {
  font-family: var(--display);
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--gold-2);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.footer-partner-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(201, 162, 39, 0.55);
  flex-shrink: 0;
}
.footer-partner-label {
  color: rgba(255,255,255,0.55);
  text-transform: uppercase;
  font-size: 0.68rem;
  letter-spacing: 0.1em;
}
.footer-partner-mark {
  display: inline-grid;
  place-items: center;
  width: 1.35rem;
  height: 1.35rem;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--gold) 0%, #a68520 100%);
  color: var(--navy);
  font-weight: 700;
  font-size: 0.72rem;
  line-height: 1;
  box-shadow: 0 0 0 2px rgba(201, 162, 39, 0.2);
}
.footer-partner-name {
  color: var(--white);
  font-weight: 600;
  letter-spacing: 0.03em;
}
@media (max-width: 640px) {
  .footer-bottom { justify-content: center; text-align: center; }
  .footer-partner-badge { padding: 0.65rem 1rem; }
  .hill-dest-grid { grid-template-columns: 1fr; }
}

.page-hero {
  background: var(--navy) center/cover no-repeat;
  color: var(--white);
  padding: 2.8rem 0 1.8rem;
  position: relative;
}
.page-hero::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(12,26,46,0.35), rgba(12,26,46,0.78));
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 {
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.28);
  max-width: 18ch;
  font-size: clamp(2rem, 4vw, 2.85rem);
}
.page-hero h1::after {
  content: "";
  display: block;
  width: 3.5rem;
  height: 3px;
  margin-top: 0.7rem;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--gold), var(--gold-2));
}
.page-hero p { color: rgba(255,255,255,0.86); max-width: 32rem; font-size: var(--text-md); }
.contact-card h2::after,
.cta-band h2::after {
  content: "";
  display: block;
  width: 3.25rem;
  height: 3px;
  margin-top: 0.55rem;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--gold-2), var(--gold));
}
.service-card h3,
.pillar-body h3,
.value-card h3,
.fleet-card h3,
.travel-card h3 { font-family: var(--font); color: var(--navy); font-size: var(--text-lg); }
.form h2,
.contact-card h2 { font-size: var(--text-2xl); }
.event-item strong { font-size: var(--text-md); letter-spacing: -0.01em; }
.event-item span { font-size: var(--text-sm); line-height: 1.5; opacity: 0.88; }

.form {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow);
}
.form label { display: block; font-size: var(--text-sm); font-weight: 600; margin: 0.75rem 0 0.35rem; }
.form input, .form select, .form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0.75rem 0.85rem;
  font: inherit;
  font-size: var(--text-sm);
  background: var(--cream);
}
.form textarea { min-height: 120px; resize: vertical; }
.contact-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 1.6rem; }
.contact-card {
  background: var(--navy);
  color: var(--white);
  border-radius: var(--radius);
  padding: 1.6rem;
}
.contact-card p, .contact-card a { color: rgba(255,255,255,0.8); }
.contact-card a { display: block; margin-bottom: 0.35rem; }
.contact-card a:hover { color: var(--gold-2); }

/* Contact — Blue Moon style layout */
.contact-page { background: var(--sand); }
.contact-bm-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: 1.25rem;
  align-items: start;
}
.contact-bm-aside {
  display: grid;
  gap: 0.85rem;
}
.contact-info-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 1.15rem 1.2rem 1.1rem;
  box-shadow: 0 10px 26px rgba(12, 26, 46, 0.06);
}
.contact-info-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  margin-bottom: 0.65rem;
  background: var(--navy);
  color: var(--gold-2);
  font-size: 1.05rem;
  line-height: 1;
}
.contact-info-card h3 {
  margin: 0 0 0.35rem;
  font-family: var(--font);
  font-size: var(--text-sm);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--navy-3);
}
.contact-info-card p,
.contact-info-card a {
  margin: 0 0 0.25rem;
  font-size: var(--text-sm);
  color: var(--ink);
  line-height: 1.55;
  text-decoration: none;
}
.contact-info-card a:hover { color: var(--gold-ink); }
.contact-info-note {
  margin: 0.65rem 0 0.2rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-ink);
}
.contact-bm-form {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: clamp(1.25rem, 2.5vw, 1.75rem);
  box-shadow: 0 14px 34px rgba(12, 26, 46, 0.08);
}
.contact-bm-form h2 {
  margin: 0 0 0.35rem;
  font-family: var(--display);
  font-size: clamp(1.45rem, 2.4vw, 1.85rem);
  color: var(--navy);
}
.contact-bm-lead {
  margin: 0 0 1.1rem;
  font-size: var(--text-sm);
  color: var(--muted);
}
.contact-bm-form label {
  display: block;
  font-size: var(--text-sm);
  font-weight: 600;
  margin: 0.75rem 0 0.35rem;
  color: var(--navy);
}
.contact-bm-form input,
.contact-bm-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0.75rem 0.85rem;
  font: inherit;
  font-size: var(--text-sm);
  background: var(--white);
}
.contact-bm-form textarea {
  min-height: 120px;
  resize: vertical;
}
.booking-prefill {
  margin-bottom: 0.35rem;
  padding: 0.85rem 1rem;
  border-radius: 14px;
  border: 1px solid rgba(201, 162, 39, 0.35);
  background: rgba(201, 162, 39, 0.1);
}
.booking-prefill .eyebrow {
  margin-bottom: 0.25rem;
  color: var(--gold-ink);
}
.booking-prefill strong {
  display: block;
  font-size: var(--text-md);
  color: var(--navy);
  margin-bottom: 0.15rem;
}
.booking-prefill span {
  font-size: var(--text-sm);
  color: var(--muted);
}

.pillar {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
}
.pillar-media {
  min-height: 130px;
  background: var(--navy) center/cover no-repeat;
}
.pillar-body { padding: 1rem 1.15rem 1.15rem; }
.pillar-body p:last-of-type { margin-bottom: 1rem; }

.chip-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}
.chip {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.6rem 1.05rem;
  font-weight: 600;
  font-size: var(--text-sm);
}
.chip:hover { border-color: var(--gold); }

/* Events stage — photo mosaic + spotlight */
.events-stage {
  position: relative;
  padding: 3rem 0 3.2rem;
  background:
    radial-gradient(circle at 8% 12%, rgba(201, 162, 39, 0.08), transparent 38%),
    radial-gradient(circle at 92% 88%, rgba(30, 107, 99, 0.07), transparent 36%),
    var(--sand);
}
.events-stage-wrap { position: relative; z-index: 1; }
.events-stage .section-head.center { max-width: 40rem; }
.event-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.75rem;
  margin-bottom: 1.35rem;
}
.event-stat {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  padding: 0.85rem 1rem;
  border-radius: 14px;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 8px 22px rgba(12, 26, 46, 0.05);
  text-align: center;
}
.event-stat strong {
  font-family: var(--font);
  font-size: var(--text-lg);
  color: var(--navy);
  line-height: 1.1;
}
.event-stat span {
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted);
}
.events-stage-layout {
  display: flex;
  gap: 0.85rem;
  align-items: stretch;
}
.event-spotlight {
  position: relative;
  flex: 1.08;
  min-height: 540px;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 22px 48px rgba(12, 26, 46, 0.2);
  background: var(--navy);
}
.event-spotlight > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.35s ease, transform 8s ease;
}
.event-spotlight:hover > img { transform: scale(1.04); }
.event-spotlight-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 0.55rem;
  padding: clamp(1.2rem, 3vw, 1.85rem);
  background: linear-gradient(to top, rgba(8, 19, 33, 0.96) 0%, rgba(8, 19, 33, 0.52) 48%, rgba(8, 19, 33, 0.18) 100%);
}
.event-tag {
  align-self: flex-start;
  padding: 0.32rem 0.72rem;
  border-radius: 999px;
  background: var(--gold);
  color: var(--navy);
  font-size: var(--text-xs);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.event-spotlight-overlay h3 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(1.45rem, 2.4vw, var(--text-2xl));
  color: var(--white);
  line-height: 1.15;
}
.event-spotlight-overlay p {
  margin: 0;
  max-width: 34rem;
  font-size: var(--text-sm);
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.84);
}
.event-spotlight-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-top: 0.35rem;
}
.event-spotlight-chips span {
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.08);
  font-size: var(--text-xs);
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
}
.event-mosaic {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-auto-rows: 1fr;
  gap: 0.65rem;
  min-height: 540px;
}
.event-tile {
  position: relative;
  min-height: 124px;
  padding: 0;
  border: 2px solid transparent;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  background: var(--navy);
  transition: transform 0.32s ease, border-color 0.32s ease, box-shadow 0.32s ease;
}
.event-tile img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}
.event-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8, 19, 33, 0.9) 0%, rgba(8, 19, 33, 0.35) 58%, rgba(8, 19, 33, 0.12) 100%);
  transition: background 0.32s ease;
}
.event-tile-tag {
  position: absolute;
  top: 0.55rem;
  left: 0.55rem;
  z-index: 2;
  padding: 0.26rem 0.55rem;
  border-radius: 999px;
  background: rgba(201, 162, 39, 0.94);
  color: var(--navy);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}
.event-tile-name {
  position: absolute;
  left: 0.65rem;
  right: 0.65rem;
  bottom: 0.6rem;
  z-index: 2;
  color: var(--white);
  font-size: var(--text-sm);
  font-weight: 700;
  text-align: left;
  line-height: 1.25;
}
.event-tile:hover {
  transform: translateY(-3px) scale(1.02);
  z-index: 2;
  box-shadow: 0 14px 30px rgba(12, 26, 46, 0.22);
}
.event-tile:hover img { transform: scale(1.08); }
.event-tile:hover::after {
  background: linear-gradient(to top, rgba(8, 19, 33, 0.82) 0%, rgba(8, 19, 33, 0.28) 58%, rgba(8, 19, 33, 0.08) 100%);
}
.event-tile.is-active {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 162, 39, 0.28);
}
.events-cta {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.85rem;
}
.events-stage .btn-primary {
  min-height: 46px;
  padding-inline: 1.35rem;
  box-shadow: 0 8px 24px rgba(201, 162, 39, 0.28);
}

/* Events — pick your vibe */
.event-vibe {
  background: var(--white);
  padding-top: 0;
}
.event-vibe-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.55rem;
  margin-bottom: 1.35rem;
}
.event-vibe-tab {
  padding: 0.55rem 1rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--cream);
  color: var(--navy);
  font-family: var(--font);
  font-size: var(--text-sm);
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}
.event-vibe-tab:hover {
  border-color: var(--gold);
}
.event-vibe-tab.is-active {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
  box-shadow: 0 8px 22px rgba(12, 26, 46, 0.18);
}
.event-vibe-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 1.25rem;
  align-items: stretch;
  background: var(--sand);
  border: 1px solid var(--line);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(12, 26, 46, 0.08);
}
.event-vibe-photo {
  min-height: 280px;
  background: var(--navy);
}
.event-vibe-photo img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
  transition: opacity 0.35s ease, transform 0.6s ease;
}
.event-vibe-copy {
  padding: clamp(1.2rem, 2.5vw, 1.75rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.event-vibe-label {
  display: inline-block;
  margin-bottom: 0.45rem;
  padding: 0.28rem 0.65rem;
  border-radius: 999px;
  background: rgba(201, 162, 39, 0.18);
  color: var(--gold-ink);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.event-vibe-copy h3 {
  margin: 0 0 0.55rem;
  font-family: var(--display);
  font-size: clamp(1.35rem, 2.2vw, 1.85rem);
  color: var(--navy);
  line-height: 1.15;
}
.event-vibe-copy > p {
  margin: 0;
  color: var(--muted);
  font-size: var(--text-sm);
  line-height: 1.6;
}
.event-vibe-services-title {
  margin: 1rem 0 0.45rem;
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--navy-3);
}
.event-vibe-list {
  margin: 0 0 1.15rem;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.4rem;
}
.event-vibe-list li {
  position: relative;
  padding-left: 1.15rem;
  font-size: var(--text-sm);
  color: var(--ink);
}
.event-vibe-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
}
.event-vibe-copy .btn { align-self: flex-start; }

/* Events — one wedding day story */
.event-day-story {
  background:
    radial-gradient(circle at 10% 0%, rgba(201, 162, 39, 0.1), transparent 32%),
    var(--navy);
  color: var(--white);
}
.event-day-story .section-head .eyebrow { color: var(--gold-2); }
.event-day-story .section-head h2 { color: var(--white); }
.event-day-story .section-head .lead { color: rgba(255, 255, 255, 0.78); }
.event-day-track {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.85rem;
  counter-reset: daystep;
}
.event-day-step {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  min-width: 0;
}
.event-day-step::before {
  counter-increment: daystep;
  content: counter(daystep);
  position: absolute;
  top: 0.45rem;
  right: 0.45rem;
  z-index: 2;
  width: 1.65rem;
  height: 1.65rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--gold);
  color: var(--navy);
  font-size: 0.72rem;
  font-weight: 800;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}
.event-day-time {
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-2);
}
.event-day-card {
  flex: 1;
  display: flex;
  flex-direction: column;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.25s ease, border-color 0.25s ease;
}
.event-day-card:hover {
  transform: translateY(-4px);
  border-color: rgba(201, 162, 39, 0.45);
}
.event-day-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
}
.event-day-body {
  padding: 0.85rem 0.9rem 1rem;
}
.event-day-body h3 {
  margin: 0 0 0.35rem;
  font-family: var(--font);
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--white);
  line-height: 1.25;
}
.event-day-body p {
  margin: 0;
  font-size: var(--text-xs);
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.72);
}
.event-day-step-travel .event-day-card {
  border-color: rgba(201, 162, 39, 0.35);
  background: rgba(201, 162, 39, 0.08);
}
.event-day-foot {
  margin-top: 1.75rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.85rem;
}
.event-day-foot p {
  margin: 0;
  max-width: 32rem;
  color: rgba(255, 255, 255, 0.75);
  font-size: var(--text-sm);
}
.event-day-foot .btn-row,
.event-day-foot {
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.65rem;
}
.event-day-foot .btn { margin: 0 0.25rem; }

/* Events — reels wall */
.event-reels {
  background: var(--cream);
}
.event-reels-wrap {
  position: relative;
}
.event-reels-track {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  padding: 0.25rem 0.15rem 0.85rem;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-color: var(--gold) rgba(12, 26, 46, 0.1);
  scrollbar-width: thin;
}
.event-reels-track::-webkit-scrollbar { height: 8px; }
.event-reels-track::-webkit-scrollbar-track {
  background: rgba(12, 26, 46, 0.08);
  border-radius: 999px;
}
.event-reels-track::-webkit-scrollbar-thumb {
  background: linear-gradient(90deg, var(--gold), #a68520);
  border-radius: 999px;
}
.event-reel {
  flex: 0 0 min(72vw, 240px);
  scroll-snap-align: start;
  border-radius: 18px;
  overflow: hidden;
  background: var(--navy);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 14px 32px rgba(12, 26, 46, 0.16);
  transition: transform 0.25s ease;
}
.event-reel:hover { transform: translateY(-4px); }
.event-reel-media {
  position: relative;
  background: #081321;
}
.event-reel video {
  width: 100%;
  aspect-ratio: 9 / 16;
  object-fit: cover;
  display: block;
}
.event-reel .tour-play {
  width: 52px;
  height: 52px;
  font-size: 1.1rem;
}
.event-reel.is-playing .tour-play {
  opacity: 0;
  pointer-events: none;
}
.event-reel-caption {
  padding: 0.75rem 0.85rem 0.9rem;
  color: var(--white);
}
.event-reel-caption strong {
  display: block;
  font-size: var(--text-sm);
  margin-bottom: 0.15rem;
}
.event-reel-caption span {
  display: block;
  font-size: var(--text-xs);
  color: rgba(255, 255, 255, 0.62);
}
.event-reels-foot {
  margin-top: 1.35rem;
  display: flex;
  justify-content: flex-start;
}

.event-list { display: grid; grid-template-columns: 1fr 1fr; gap: 0.9rem; }
.event-item {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 1rem 1.1rem;
}
.event-item .emo {
  width: 48px; height: 48px; flex-shrink: 0;
  display: grid; place-items: center;
  background: var(--sand);
  border-radius: 14px;
  font-size: 1.35rem;
}
.event-item strong { display: block; }
.event-item span { color: var(--muted); font-size: var(--text-sm); }

.reveal { opacity: 0; transform: translateY(16px); transition: 0.6s ease; }
.reveal.is-visible { opacity: 1; transform: none; }

.reviews-section { background: var(--sand); }
.reviews-rating {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
  text-align: center;
}
.reviews-stars,
.review-stars {
  color: var(--gold);
  letter-spacing: 0.08em;
  font-size: var(--text-md);
}
.reviews-rating > span {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--navy);
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-bottom: 1.25rem;
}
.review-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 1.25rem 1.2rem 1.1rem;
  box-shadow: 0 10px 28px rgba(12, 26, 46, 0.06);
  display: flex;
  flex-direction: column;
  min-height: 100%;
}
.review-card h3 {
  font-family: var(--font);
  font-size: var(--text-lg);
  margin: 0.45rem 0 0.55rem;
  color: var(--navy);
}
.review-card p {
  flex: 1;
  margin-bottom: 1rem;
  font-size: var(--text-sm);
  line-height: 1.6;
}
.review-meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding-top: 0.85rem;
  border-top: 1px solid var(--line);
}
.review-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--navy-3), var(--navy));
  color: var(--gold-2);
  font-weight: 700;
  font-size: var(--text-sm);
  flex-shrink: 0;
}
.review-meta strong {
  display: block;
  font-size: var(--text-sm);
  color: var(--navy);
}
.review-meta span {
  display: block;
  font-size: var(--text-xs);
  color: var(--muted);
  margin-top: 0.1rem;
}
.reviews-note {
  text-align: center;
  font-size: var(--text-sm);
  color: var(--muted);
  margin: 1rem 0 0;
}
.reviews-note a { color: var(--navy); text-decoration: underline; text-underline-offset: 2px; }

.reviews-google-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  flex-wrap: wrap;
  justify-content: center;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.55rem 1rem 0.55rem 0.75rem;
  margin: 0 auto 1.5rem;
  box-shadow: 0 8px 24px rgba(12, 26, 46, 0.06);
}
.reviews-google-badge svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}
.reviews-google-badge strong {
  color: var(--navy);
  font-size: var(--text-md);
}
.reviews-google-badge span {
  color: var(--muted);
  font-size: var(--text-sm);
}
.review-source {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--navy-3);
  margin-bottom: 0.35rem;
}
.review-source::before {
  content: "G";
  display: inline-grid;
  place-items: center;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #4285f4;
  color: #fff;
  font-size: 0.62rem;
  font-weight: 700;
}
.reviews-featured {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  gap: 1rem;
  margin-bottom: 1rem;
}
.reviews-featured .reviews-grid {
  grid-template-columns: 1fr;
  align-content: start;
}
.review-featured-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 12px 32px rgba(12, 26, 46, 0.08);
  display: grid;
  grid-template-columns: minmax(220px, 42%) minmax(0, 1fr);
  min-height: 100%;
}
.review-featured-photo {
  position: relative;
  min-height: 260px;
  background: var(--navy);
}
.review-featured-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.review-featured-body {
  padding: 1.35rem 1.3rem 1.2rem;
  display: flex;
  flex-direction: column;
}
.review-featured-body .review-stars { margin-bottom: 0.35rem; }
.review-featured-body h3 {
  font-family: var(--font);
  font-size: var(--text-xl);
  color: var(--navy);
  margin: 0 0 0.65rem;
}
.review-featured-body p {
  flex: 1;
  font-size: var(--text-base);
  line-height: 1.65;
  color: var(--ink);
  margin: 0 0 1rem;
}
.review-quote-mark {
  color: var(--gold);
  font-family: var(--display);
  font-size: 2.4rem;
  line-height: 1;
  margin-bottom: 0.15rem;
}

/* Tourism — professional testimonials layout */
.testimonials-pro {
  padding: clamp(2.5rem, 5vw, 4rem) 0;
  background: linear-gradient(180deg, var(--cream) 0%, var(--sand) 100%);
}
.testimonials-pro-shell {
  display: grid;
  grid-template-columns: minmax(260px, 320px) minmax(0, 1fr);
  gap: clamp(1.2rem, 2.5vw, 2rem);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 6px);
  overflow: hidden;
  box-shadow: 0 18px 48px rgba(12, 26, 46, 0.08);
}
.testimonials-pro-aside {
  background: linear-gradient(165deg, var(--navy) 0%, var(--navy-3) 100%);
  color: #fff;
  padding: clamp(1.5rem, 3vw, 2rem);
  display: flex;
  flex-direction: column;
}
.testimonials-pro-aside .eyebrow { color: var(--gold-2); }
.testimonials-pro-aside h2 {
  font-family: var(--display);
  font-size: clamp(1.75rem, 3vw, 2.15rem);
  line-height: 1.1;
  margin: 0.35rem 0 1.2rem;
  color: #fff;
}
.testimonials-score {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.95rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  margin-bottom: 1rem;
}
.testimonials-score-num {
  font-family: var(--display);
  font-size: clamp(2.8rem, 5vw, 3.4rem);
  line-height: 1;
  color: var(--gold-2);
  font-weight: 700;
}
.testimonials-score-meta p {
  margin: 0.15rem 0 0;
  font-size: var(--text-sm);
  font-weight: 600;
  color: #fff;
}
.testimonials-score-meta span {
  display: block;
  margin-top: 0.15rem;
  font-size: var(--text-xs);
  color: rgba(255, 255, 255, 0.72);
}
.testimonials-pro-aside .review-stars { font-size: var(--text-sm); }
.testimonials-aside-copy {
  font-size: var(--text-sm);
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.88);
  margin: 0 0 1rem;
}
.testimonials-trust-list {
  list-style: none;
  margin: 0 0 1.25rem;
  padding: 0;
  display: grid;
  gap: 0.45rem;
}
.testimonials-trust-list li {
  position: relative;
  padding-left: 1.1rem;
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.9);
}
.testimonials-trust-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
}
.testimonials-pro-aside .btn { margin-top: auto; align-self: flex-start; }
.testimonials-pro-main {
  padding: clamp(1.25rem, 2.5vw, 1.75rem);
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.testimonials-spotlight {
  margin: 0;
  padding: 1.15rem 1.15rem 1.05rem 1.35rem;
  border-left: 4px solid var(--gold);
  background: var(--sand);
  border-radius: 14px;
}
.testimonials-spotlight-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 0.55rem;
}
.testimonials-verified {
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--navy-3);
}
.testimonials-spotlight p {
  margin: 0 0 1rem;
  font-family: var(--display);
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  line-height: 1.55;
  color: var(--navy);
}
.testimonials-spotlight footer {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.testimonials-spotlight cite {
  font-style: normal;
}
.testimonials-spotlight cite strong {
  display: block;
  font-size: var(--text-sm);
  color: var(--navy);
}
.testimonials-spotlight cite span {
  display: block;
  font-size: var(--text-xs);
  color: var(--muted);
  margin-top: 0.1rem;
}
.testimonials-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--navy);
  color: var(--gold-2);
  font-weight: 700;
  font-size: var(--text-sm);
  flex-shrink: 0;
}
.testimonials-track-wrap {
  position: relative;
}
.testimonials-scroll-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  background: var(--navy);
  color: var(--gold-2);
  font-size: 1.45rem;
  font-weight: 700;
  line-height: 1;
  display: grid;
  place-items: center;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(12, 26, 46, 0.28);
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease, opacity 0.2s ease;
}
.testimonials-scroll-btn:hover:not(:disabled) {
  background: var(--gold);
  color: var(--navy);
  transform: translateY(-50%) scale(1.04);
}
.testimonials-scroll-btn:focus-visible {
  outline: 2px solid var(--gold-2);
  outline-offset: 2px;
}
.testimonials-scroll-btn:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}
.testimonials-scroll-prev { left: -0.15rem; }
.testimonials-scroll-next { right: -0.15rem; }
.testimonials-track {
  display: flex;
  gap: 0.85rem;
  overflow-x: auto;
  padding: 0.15rem 2.4rem 0.5rem;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-color: var(--gold) rgba(12, 26, 46, 0.12);
  scrollbar-width: thin;
}
.testimonials-track::-webkit-scrollbar { height: 8px; }
.testimonials-track::-webkit-scrollbar-track {
  background: rgba(12, 26, 46, 0.1);
  border-radius: 999px;
}
.testimonials-track::-webkit-scrollbar-thumb {
  background: linear-gradient(90deg, var(--gold), #a68520);
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.25);
}
.testimonials-item {
  flex: 0 0 min(100%, 280px);
  scroll-snap-align: start;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 1rem 1rem 0.9rem;
  box-shadow: 0 8px 22px rgba(12, 26, 46, 0.05);
}
.testimonials-item .review-stars {
  font-size: var(--text-sm);
  margin-bottom: 0.45rem;
}
.testimonials-item p {
  margin: 0 0 0.85rem;
  font-size: var(--text-sm);
  line-height: 1.6;
  color: var(--ink);
  min-height: 4.8em;
}
.testimonials-item footer {
  padding-top: 0.75rem;
  border-top: 1px solid var(--line);
}
.testimonials-item footer strong {
  display: block;
  font-size: var(--text-sm);
  color: var(--navy);
}
.testimonials-item footer span {
  display: block;
  font-size: var(--text-xs);
  color: var(--muted);
  margin-top: 0.1rem;
}
.testimonials-pro-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: auto;
}

.map-section { padding-top: 0; background: var(--cream); }
.map-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: 0 12px 32px rgba(12, 26, 46, 0.08);
  background: var(--line);
}
.map-wrap iframe {
  width: 100%;
  height: clamp(280px, 52vw, 440px);
  border: 0;
  display: block;
}
.map-actions { justify-content: center; margin-top: 1rem; }

@media (max-width: 900px) {
  .topbar { display: none; }
  .nav-toggle { display: flex; }
  .nav {
    display: none;
    position: absolute; left: 0; right: 0; top: 76px;
    background: var(--cream);
    flex-direction: column;
    padding: 1rem 1.2rem 1.4rem;
    border-bottom: 1px solid var(--line);
    align-items: stretch;
  }
  .nav.is-open { display: flex; }
  .trust-row, .grid-3, .grid-2, .grid-4, .about-split, .why-band, .contact-grid, .contact-bm-layout, .footer-grid, .event-list, .event-stats, .events-stage-layout, .ig-layout, .hero-layout, .book-grid {
    grid-template-columns: 1fr;
  }
  .fleet-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .travel-cards { grid-template-columns: 1fr 1fr; }
  .hill-catalog-stats { grid-template-columns: 1fr; }
  .hill-dest-grid { grid-template-columns: 1fr 1fr; }
  .hill-catalog-toolbar { align-items: stretch; }
  .hill-state-tabs { width: 100%; justify-content: center; }
  .fleet-teaser-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .trending-layout { flex-direction: column-reverse; }
  .trending-left { min-height: 520px; }
  .trending-grid { grid-template-columns: repeat(2, 1fr); min-height: auto; }
  .trending-packages { width: 100%; max-width: none; }
  .package-browser { grid-template-columns: 1fr; }
  .package-nav {
    max-height: none;
    flex-direction: row;
    flex-wrap: nowrap;
    overflow-x: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .package-tab {
    flex: 0 0 auto;
    min-width: 220px;
    border-bottom: 0;
    border-right: 1px solid var(--line);
  }
  .package-tab.is-active { border-left: 0; border-bottom: 3px solid var(--gold); padding-left: 0.95rem; }
  .reviews-grid { grid-template-columns: 1fr; }
  .reviews-featured { grid-template-columns: 1fr; }
  .review-featured-card { grid-template-columns: 1fr; }
  .review-featured-photo { min-height: 220px; }
  .testimonials-pro-shell { grid-template-columns: 1fr; }
  .testimonials-pro-aside .btn { margin-top: 0; }
  .testimonials-item { flex-basis: min(85vw, 280px); }
  .testimonials-scroll-prev { left: 0.15rem; }
  .testimonials-scroll-next { right: 0.15rem; }
  .testimonials-track { padding-left: 2.75rem; padding-right: 2.75rem; }
  .event-stats { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .about-stats { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .about-leader { grid-template-columns: 1fr; }
  .events-stage-layout { flex-direction: column; }
  .event-spotlight { min-height: 420px; }
  .event-mosaic { min-height: auto; grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .event-vibe-panel { grid-template-columns: 1fr; }
  .event-vibe-photo { min-height: 220px; }
  .event-vibe-photo img { min-height: 220px; }
  .event-day-track { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .dest-card.tall { grid-row: auto; min-height: 200px; }
  .brand-logo { height: 50px; max-width: 200px; }
  .brand-logo-on-dark { height: 64px; max-width: 190px; }
  .hero-road { height: 84px; }
  .hero-car-run.minibus,
  .hero-car-run.tourbus { display: none; }
}

.btn-sm { min-height: 36px; padding: 0.35rem 0.9rem; font-size: var(--text-xs); }

.tariff-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-bottom: 1.4rem;
}
.tariff-tabs button {
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--navy);
  border-radius: 999px;
  padding: 0.45rem 0.9rem;
  font: inherit;
  font-size: var(--text-sm);
  font-weight: 600;
  cursor: pointer;
}
.tariff-tabs button.is-active {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.tariff-panel { display: none; }
.tariff-panel.is-active { display: block; }
.table-title { margin: 1.4rem 0 0.7rem; font-size: var(--text-lg); font-weight: 700; color: var(--navy); }
.table-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: 14px; background: var(--white); }
.rate-table { width: 100%; border-collapse: collapse; font-size: var(--text-sm); }
.rate-table th,
.rate-table td { padding: 0.78rem 0.9rem; text-align: left; border-bottom: 1px solid var(--line); white-space: nowrap; }
.rate-table th { background: var(--navy); color: #fff; font-size: var(--text-xs); letter-spacing: 0.05em; text-transform: uppercase; }
.rate-table tr:last-child td { border-bottom: 0; }
.rate-table tbody tr:hover { background: var(--sand); }
.rate-table td:nth-child(n+2) { font-weight: 600; }
.rate-table .btn { white-space: nowrap; }

/* Three-day tour packages — Blue Moon style layout */
.package-intro {
  background: #dcecf7;
  padding: clamp(2.2rem, 4vw, 3.2rem) 0;
  text-align: center;
}
.package-intro .eyebrow { color: var(--navy-3); }
.package-intro h1 {
  font-family: var(--display);
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: var(--navy);
  margin: 0.35rem 0 0.75rem;
}
.package-intro-lead {
  max-width: 42rem;
  margin: 0 auto;
  color: var(--muted);
  font-size: var(--text-md);
  line-height: 1.65;
}
.package-details-section { padding-top: clamp(1.8rem, 3vw, 2.4rem); }
.package-details-title {
  font-family: var(--display);
  font-size: clamp(1.6rem, 3vw, 2rem);
  color: var(--navy);
  margin: 0 0 0.35rem;
}
.package-details-sub { margin-bottom: 1.4rem; max-width: 40rem; }
.package-browser {
  display: grid;
  grid-template-columns: minmax(230px, 290px) minmax(0, 1fr);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow);
}
.package-nav {
  display: flex;
  flex-direction: column;
  border-right: 1px solid var(--line);
  background: #f4f7fb;
  max-height: 720px;
  overflow-y: auto;
}
.package-tab {
  display: block;
  width: 100%;
  text-align: left;
  padding: 0.82rem 0.95rem;
  border: 0;
  border-bottom: 1px solid var(--line);
  background: transparent;
  font: inherit;
  font-size: var(--text-sm);
  line-height: 1.35;
  color: var(--navy);
  cursor: pointer;
  transition: background 0.15s ease, border-color 0.15s ease;
}
.package-tab:hover { background: rgba(255, 255, 255, 0.75); }
.package-tab.is-active {
  background: var(--white);
  font-weight: 700;
  border-left: 3px solid var(--gold);
  padding-left: calc(0.95rem - 3px);
}
.package-content { min-width: 0; background: var(--white); }
.package-panel { display: none; }
.package-panel.is-active { display: block; }
.package-panel-header {
  background: var(--navy);
  color: #fff;
  padding: 0.85rem 1.05rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: var(--text-sm);
}
.package-table-wrap { border: 0; border-radius: 0; }
.package-rate-table th { background: var(--navy-2); }
.package-meta {
  padding: 1rem 1.05rem 1.2rem;
  background: var(--sand);
  border-top: 1px solid var(--line);
  font-size: var(--text-sm);
  line-height: 1.65;
  color: var(--ink);
}
.package-meta p { margin: 0 0 0.55rem; }
.package-meta p:last-child { margin-bottom: 0; }
.package-itinerary {
  margin: 0.35rem 0 0.65rem;
  padding-left: 1.1rem;
}
.package-itinerary li { margin-bottom: 0.25rem; }
.package-mkt,
.package-includes { color: var(--muted); }
.package-mkt strong,
.package-includes strong { color: var(--navy); }

.terms-box {
  margin-top: 1.8rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.2rem 1.3rem;
}
.fleet-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.fleet-card img { width: 100%; height: 190px; object-fit: cover; object-position: center; }
.fleet-card .copy { padding: 0.9rem 1rem 1.1rem; }
.fleet-card small { color: var(--gold-ink); font-weight: 700; font-size: var(--text-xs); letter-spacing: 0.08em; text-transform: uppercase; }

/* Fleet catalog — category filter + card grid */
.fleet-catalog {
  position: relative;
  padding: 3rem 0 3.2rem;
  background: var(--white);
}
.fleet-catalog-wrap { position: relative; z-index: 1; }
.fleet-catalog .section-head.center { max-width: 40rem; }
.fleet-filter {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.55rem;
  margin-bottom: 1.35rem;
}
.fleet-filter-btn {
  padding: 0.55rem 1.15rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--sand);
  color: var(--navy);
  font-family: var(--font);
  font-size: var(--text-sm);
  font-weight: 700;
  cursor: pointer;
  transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease, transform 0.25s ease;
}
.fleet-filter-btn:hover {
  border-color: rgba(201, 162, 39, 0.45);
  transform: translateY(-1px);
}
.fleet-filter-btn.is-active {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
}
.fleet-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}
.fleet-card-item {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  background: var(--white);
  box-shadow: 0 10px 28px rgba(12, 26, 46, 0.06);
  transition: transform 0.28s ease, box-shadow 0.28s ease, opacity 0.28s ease;
}
.fleet-card-item.is-hidden { display: none; }
.fleet-card-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 40px rgba(12, 26, 46, 0.12);
}
.fleet-card-photo {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 168px;
  padding: 1rem 0.85rem 0.75rem;
  background: linear-gradient(180deg, #fafbfc 0%, #eef1f4 100%);
}
.fleet-card-photo img {
  width: 100%;
  max-height: 118px;
  object-fit: contain;
  object-position: center;
}
.fleet-card-photo.is-wide {
  min-height: 168px;
  padding: 0.85rem 0.65rem 0.65rem;
}
.fleet-card-photo.is-wide img {
  max-height: 128px;
  width: 100%;
  object-fit: contain;
  object-position: center;
}
.fleet-card-tag {
  position: absolute;
  top: 0.65rem;
  left: 0.65rem;
  padding: 0.22rem 0.55rem;
  border-radius: 999px;
  background: var(--navy);
  color: var(--white);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.fleet-card-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 0.35rem;
  padding: 0.95rem 1rem 1.05rem;
  text-align: center;
}
.fleet-card-body h3 {
  margin: 0;
  font-family: var(--font);
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.25;
}
.fleet-card-body p {
  margin: 0 0 0.45rem;
  font-size: var(--text-xs);
  color: var(--muted);
  line-height: 1.45;
}
.fleet-card-body .btn-sm {
  margin-top: auto;
  min-height: 38px;
  align-self: center;
  padding-inline: 1.1rem;
}
.fleet-foot {
  display: flex;
  justify-content: center;
  margin-top: 1.35rem;
}

.ig-band { background: var(--white); }
.ig-layout {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 1.2rem;
  align-items: start;
}
.ig-card {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.4rem 1.3rem;
}
.ig-avatar {
  width: 64px; height: 64px; border-radius: 50%;
  background:
    radial-gradient(circle at 30% 30%, #f9ce34, transparent 40%),
    radial-gradient(circle at 70% 40%, #ee2a7b, transparent 45%),
    radial-gradient(circle at 50% 80%, #6228d7, #f9ce34);
  margin-bottom: 0.8rem;
}
.ig-embed-wrap {
  min-height: 540px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--cream);
}
.ig-embed-wrap iframe {
  width: 100%;
  height: 540px;
  border: 0;
}
.video-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.9rem;
}
.video-card {
  background: var(--navy);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.video-card video {
  width: 100%;
  aspect-ratio: 9 / 16;
  object-fit: cover;
  display: block;
  background: #081321;
}
.video-card span {
  display: block;
  padding: 0.55rem 0.75rem 0.7rem;
  color: #fff;
  font-size: 0.82rem;
  font-weight: 600;
}
.video-grid-2 { grid-template-columns: repeat(2, minmax(0, 280px)); }
.video-grid-3 { grid-template-columns: repeat(3, minmax(0, 280px)); }
@media (max-width: 900px) {
  .video-grid, .video-grid-2, .video-grid-3 { grid-template-columns: 1fr 1fr; }
}

.tour-videos {
  background:
    radial-gradient(circle at 12% 20%, rgba(201,162,39,0.12), transparent 28%),
    radial-gradient(circle at 88% 10%, rgba(30,107,99,0.1), transparent 26%),
    var(--white);
}
.tour-video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}
.tour-card {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  transform: translateY(22px);
  opacity: 0;
  animation: tourIn 0.7s ease forwards;
  animation-delay: var(--delay, 0s);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.tour-card.is-visible { opacity: 1; transform: none; }
.tour-card:hover { transform: translateY(-8px); }
.tour-media { position: relative; }
.tour-card video {
  width: 100%;
  aspect-ratio: 9 / 16;
  object-fit: cover;
  display: block;
  background: #081321;
}
.tour-play {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 64px;
  height: 64px;
  border: 0;
  border-radius: 50%;
  color: var(--navy);
  font-size: 1.1rem;
  cursor: pointer;
  box-shadow: 0 10px 28px rgba(12,26,46,0.28);
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.tour-card.is-playing .tour-play { opacity: 0; pointer-events: none; }
.tour-play:hover { transform: scale(1.08); }
.tour-caption { padding: 1rem 1.05rem 1.15rem; }
.tour-caption small {
  display: inline-block;
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 0.35rem;
}
.tour-caption h3 {
  font-size: var(--text-xl);
  margin: 0 0 0.35rem;
  color: var(--navy);
}
.tour-caption p { margin: 0; font-size: var(--text-sm); }

.tour-family { --accent: #c9a227; }
.tour-family:hover, .tour-family.is-playing { box-shadow: 0 18px 40px rgba(201,162,39,0.28); }
.tour-family .tour-play { background: linear-gradient(135deg, #f3d56a, #c9a227); animation: pulseGold 2s ease-in-out infinite; }
.tour-family .tour-caption small { color: #7a5b0e; }
.tour-family .tour-caption h3 { color: #6d520c; }

.tour-college { --accent: #1e6b63; }
.tour-college:hover, .tour-college.is-playing { box-shadow: 0 18px 40px rgba(30,107,99,0.28); }
.tour-college .tour-play { background: linear-gradient(135deg, #3aa89c, #1e6b63); color: #fff; animation: pulseTeal 2.2s ease-in-out infinite; }
.tour-college .tour-caption small { color: #1e6b63; }
.tour-college .tour-caption h3 { color: #14524c; }

.tour-corporate { --accent: #0c1a2e; }
.tour-corporate:hover, .tour-corporate.is-playing { box-shadow: 0 18px 40px rgba(12,26,46,0.28); }
.tour-corporate .tour-play { background: linear-gradient(135deg, #1a3654, #0c1a2e); color: #e8c547; animation: pulseNavy 2.4s ease-in-out infinite; }
.tour-corporate .tour-caption small { color: #1a3654; }
.tour-corporate .tour-caption h3 { color: #0c1a2e; }

@keyframes tourIn {
  from { opacity: 0; transform: translateY(22px) scale(0.98); }
  to { opacity: 1; transform: none; }
}
@keyframes titleShine {
  0% { background-position: 0% 50%; }
  100% { background-position: 200% 50%; }
}
@keyframes pulseGold {
  0%, 100% { box-shadow: 0 0 0 0 rgba(201,162,39,0.45); }
  70% { box-shadow: 0 0 0 16px rgba(201,162,39,0); }
}
@keyframes pulseTeal {
  0%, 100% { box-shadow: 0 0 0 0 rgba(30,107,99,0.4); }
  70% { box-shadow: 0 0 0 16px rgba(30,107,99,0); }
}
@keyframes pulseNavy {
  0%, 100% { box-shadow: 0 0 0 0 rgba(12,26,46,0.35); }
  70% { box-shadow: 0 0 0 16px rgba(12,26,46,0); }
}
@media (max-width: 560px) {
  .travel-cards { grid-template-columns: 1fr; }
  .tourism-grid { grid-template-columns: 1fr; }
  .fleet-teaser-grid { grid-template-columns: 1fr 1fr; }
  .event-mosaic { grid-template-columns: 1fr; }
  .event-stat { text-align: left; }
  .event-day-track { grid-template-columns: 1fr; }
  .event-vibe-tabs {
    justify-content: flex-start;
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 0.35rem;
  }
  .fleet-grid { grid-template-columns: 1fr; }
}

/* Floating WhatsApp + social buttons */
.social-float {
  position: fixed;
  right: max(1rem, env(safe-area-inset-right, 0px));
  bottom: max(1rem, env(safe-area-inset-bottom, 0px));
  z-index: 1200;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.55rem;
  pointer-events: none;
}
.social-float-btn {
  pointer-events: auto;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  color: var(--white);
  text-decoration: none;
  box-shadow: 0 10px 28px rgba(12, 26, 46, 0.28);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.social-float-btn svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}
.social-float-btn:hover {
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 14px 32px rgba(12, 26, 46, 0.32);
}
.social-float-menu-wrap {
  position: relative;
  pointer-events: auto;
}
.social-float-menu-wrap.is-open .social-float-ig,
.social-float-menu-wrap.is-open .social-float-fb,
.social-float-wa-wrap.is-open .social-float-wa {
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 14px 32px rgba(12, 26, 46, 0.32), 0 0 0 3px rgba(255, 255, 255, 0.35);
}
.social-float-ig {
  border: 0;
  cursor: pointer;
  background: linear-gradient(135deg, #f9ce34, #ee2a7b 55%, #6228d7);
}
.social-float-fb {
  border: 0;
  cursor: pointer;
  background: #1877f2;
}
.social-float-yt {
  background: #ff0000;
}
.social-float-menu {
  position: absolute;
  right: 0;
  bottom: calc(100% + 0.55rem);
  min-width: 196px;
  padding: 0.45rem;
  border-radius: 14px;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 16px 40px rgba(12, 26, 46, 0.24);
}
.social-float-menu[hidden] { display: none; }
.social-float-menu-label {
  margin: 0.15rem 0.55rem 0.35rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}
.social-float-menu-option {
  display: block;
  padding: 0.55rem 0.65rem;
  border-radius: 10px;
  text-decoration: none;
  color: var(--navy);
  transition: background 0.2s ease, color 0.2s ease;
}
.social-float-menu-option span {
  display: block;
  font-size: var(--text-sm);
  font-weight: 700;
}
.social-float-menu-option small {
  display: block;
  margin-top: 0.1rem;
  font-size: 0.72rem;
  color: var(--muted);
}
.social-float-menu-option:hover,
.social-float-menu-option:focus-visible {
  background: var(--sand);
  color: var(--gold-ink);
}
.social-float-menu-option.is-suggested {
  background: rgba(201, 162, 39, 0.12);
  border: 1px solid rgba(201, 162, 39, 0.28);
}
.social-float-wa {
  border: 0;
  cursor: pointer;
  background: #25d366;
  animation: waPulse 2.4s ease-in-out infinite;
}
@keyframes waPulse {
  0%, 100% { box-shadow: 0 10px 28px rgba(37, 211, 102, 0.35); }
  50% { box-shadow: 0 10px 28px rgba(37, 211, 102, 0.35), 0 0 0 10px rgba(37, 211, 102, 0.12); }
}
@media (prefers-reduced-motion: reduce) {
  .social-float-wa { animation: none; }
  .brand-tagline-track { animation: none; }
  .brand-tagline-item strong,
  .brand-tagline-sep { animation: none; background-position: 0 center; }
  .brand-tagline::before { animation: none; opacity: 1; transform: translateY(-50%) scale(1); filter: none; }
  .tour-card, .tour-caption h3, .tour-play, .hero-lane, .hero-car-run { animation: none; }
}
