:root {
  --green: #00A859;
  --green-dark: #008F4C;
  --green-soft: #E8F8F0;
  --red: #D32F2F;
  --red-dark: #B71C1C;
  --maroon: #4A0E0E;
  --maroon-deep: #2D0808;
  --gold: #FFC107;
  --gold-soft: #FFF8E1;
  --ink: #141414;
  --ink-soft: #4A4A4A;
  --ink-muted: #7A7A7A;
  --surface: #FFFFFF;
  --surface-2: #F6F8FA;
  --surface-3: #EEF2F6;
  --line: rgba(20, 20, 20, 0.08);
  --shadow-sm: 0 8px 24px rgba(20, 20, 20, 0.06);
  --shadow-md: 0 18px 50px rgba(20, 20, 20, 0.10);
  --shadow-lg: 0 30px 80px rgba(74, 14, 14, 0.18);
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 28px;
  --radius-xl: 40px;
  --font-display: "Syne", sans-serif;
  --font-body: "DM Sans", sans-serif;
  --container: 1240px;
  --header-height: 88px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--ink-soft);
  background: var(--surface);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
body.nav-open { overflow: hidden; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }

.container {
  width: min(var(--container), calc(100% - 40px));
  margin-inline: auto;
}

.display { font-family: var(--font-display); color: var(--ink); letter-spacing: -0.03em; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--green-soft);
  color: var(--green-dark);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.eyebrow--dark { background: rgba(255,255,255,0.12); color: #fff; }
.eyebrow--gold { background: var(--gold-soft); color: #9A6B00; }

.section { padding: 96px 0; }
.section--tight { padding: 72px 0; }
.section--dark {
  background: linear-gradient(160deg, var(--maroon-deep) 0%, var(--maroon) 55%, #1a0505 100%);
  color: rgba(255,255,255,0.82);
}
.section--soft { background: var(--surface-2); }

.section-head {
  display: grid;
  gap: 16px;
  margin-bottom: 48px;
}
.section-head--center { text-align: center; justify-items: center; }
.section-head h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.05;
  color: var(--ink);
  letter-spacing: -0.03em;
}
.section-head p {
  max-width: 620px;
  font-size: 1.05rem;
  color: var(--ink-muted);
}
.section-head--light h2,
.section-head--light p { color: #fff; }
.section-head--light p { color: rgba(255,255,255,0.72); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 24px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), background 0.25s var(--ease);
}
.btn:hover { transform: translateY(-2px); }
.btn--primary {
  background: var(--green);
  color: #fff;
  box-shadow: 0 12px 30px rgba(0, 168, 89, 0.28);
}
.btn--primary:hover { background: var(--green-dark); }
.btn--accent {
  background: var(--red);
  color: #fff;
  box-shadow: 0 12px 30px rgba(211, 47, 47, 0.28);
}
.btn--accent:hover { background: var(--red-dark); }
.btn--ghost {
  background: rgba(255,255,255,0.12);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.22);
  backdrop-filter: blur(8px);
}
.btn--ghost:hover { background: rgba(255,255,255,0.18); }
.btn--outline {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--line);
}
.btn--outline:hover { border-color: var(--green); color: var(--green-dark); }
.btn--light {
  background: #fff;
  color: var(--maroon);
}
.btn--sm { padding: 10px 18px; font-size: 0.88rem; }

.reveal {
  opacity: 1;
  transform: none;
}
.js-ready .reveal:not(.is-visible) {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.js-ready .reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
}
.header-strip {
  background: linear-gradient(90deg, var(--maroon-deep) 0%, #3a0c0c 50%, var(--maroon-deep) 100%);
  color: rgba(255,255,255,0.9);
  font-size: 0.8rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.header-strip__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 9px 0;
}
.header-strip__contacts {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}
.header-strip__item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.88);
  transition: color 0.2s var(--ease);
}
.header-strip__item i {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.08);
  color: var(--gold);
  font-size: 0.72rem;
}
.header-strip__item:hover { color: #fff; }
.header-strip__item:hover i { background: rgba(0, 168, 89, 0.35); color: #fff; }
.header-strip__sep {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
}
.header-strip__social {
  display: flex;
  align-items: center;
  gap: 8px;
}
.header-strip__social a {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: rgba(255, 255, 255, 0.85);
  background: rgba(255, 255, 255, 0.07);
  font-size: 0.82rem;
  transition: 0.2s var(--ease);
}
.header-strip__social a:hover {
  background: var(--green);
  color: #fff;
  transform: translateY(-1px);
}
.header-shell__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.header-shell {
  background: rgba(255,255,255,0.82);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow 0.25s var(--ease), background 0.25s var(--ease);
}
.site-header.is-scrolled .header-shell {
  background: rgba(255,255,255,0.95);
  box-shadow: var(--shadow-sm);
}
body:has(.hero-cinema) .site-header:not(.is-scrolled) .header-shell {
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(16px);
  border-bottom-color: rgba(255, 255, 255, 0.15);
}
body:has(.hero-cinema) .site-header:not(.is-scrolled) .header-strip {
  background: rgba(20, 4, 4, 0.55);
  backdrop-filter: blur(10px);
}
.header-shell__inner { min-height: var(--header-height); }

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.brand__mark {
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
  flex-shrink: 0;
}
.brand__mark img {
  height: 64px;
  width: auto;
  border-radius: 0;
  object-fit: contain;
}
.brand--logo-only {
  gap: 0;
}
.brand__text { display: grid; line-height: 1.1; }
.brand__text strong {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--maroon);
}
.brand__text small { font-size: 0.72rem; color: var(--ink-muted); letter-spacing: 0.04em; text-transform: uppercase; }
.brand--footer .brand__text strong,
.brand--footer .brand__text small { color: #fff; }

.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}
.site-nav__list {
  display: flex;
  align-items: center;
  gap: 22px;
}
.site-nav__list > li > a,
.dropdown > button {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.site-nav__list a:hover,
.dropdown > button:hover { color: var(--green-dark); }
.dropdown { position: relative; }
.dropdown__menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 0;
  min-width: 220px;
  padding: 10px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-md);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: 0.22s var(--ease);
  z-index: 20;
}
.dropdown.is-open .dropdown__menu,
.dropdown:hover .dropdown__menu {
  opacity: 1;
  visibility: visible;
  transform: none;
}
.dropdown__menu a {
  display: block;
  padding: 10px 12px;
  border-radius: 8px;
  font-size: 0.9rem;
  color: var(--ink-soft);
}
.dropdown__menu a:hover { background: var(--surface-2); color: var(--green-dark); }

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid var(--line);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}
.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--ink);
  transition: 0.25s var(--ease);
}
.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.45);
  z-index: 900;
}

/* Hero — full-width cinematic slider */
.hero-cinema {
  position: relative;
  width: 100%;
  min-height: min(78vh, 720px);
  max-height: 820px;
  overflow: hidden;
  background: var(--maroon-deep);
}
.hero-cinema__stage {
  position: absolute;
  inset: 0;
}
.hero-cinema__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 1.1s var(--ease), visibility 1.1s;
  z-index: 0;
}
.hero-cinema__slide.is-active {
  opacity: 1;
  visibility: visible;
  z-index: 1;
}
.hero-cinema__media {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.hero-cinema__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.08);
  transition: transform 8s linear;
}
.hero-cinema__slide.is-active .hero-cinema__media img {
  transform: scale(1);
}
.hero-cinema__veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(15, 3, 3, 0.82) 0%, rgba(15, 3, 3, 0.45) 42%, rgba(15, 3, 3, 0.12) 62%, rgba(15, 3, 3, 0.35) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.35) 0%, transparent 28%, rgba(0, 0, 0, 0.5) 100%);
  z-index: 2;
}
.hero-cinema__glow {
  position: absolute;
  width: 55vw;
  height: 55vw;
  max-width: 700px;
  max-height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 168, 89, 0.22) 0%, transparent 68%);
  left: -8%;
  bottom: -20%;
  z-index: 2;
  pointer-events: none;
  filter: blur(4px);
}
.hero-cinema__content {
  position: relative;
  z-index: 3;
  height: 100%;
  min-height: min(78vh, 720px);
  max-height: 820px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: clamp(28px, 8vh, 72px);
  padding-bottom: 210px;
}
.hero-cinema__copy {
  max-width: 640px;
  animation: heroCopyIn 0.9s var(--ease) both;
}
.hero-cinema__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 4px;
}
.hero-cinema__dock {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 6;
  display: flex;
  flex-direction: column;
  pointer-events: none;
}
.hero-cinema__dock > * { pointer-events: auto; }
.hero-cinema__bar {
  position: relative;
  left: auto;
  right: auto;
  bottom: auto;
  z-index: 1;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding: 14px 0 10px;
  background: linear-gradient(180deg, transparent 0%, rgba(10, 4, 4, 0.45) 100%);
}
.hero-cinema__slide:not(.is-active) .hero-cinema__copy {
  animation: none;
}
@keyframes heroCopyIn {
  from { opacity: 0; transform: translateY(32px); }
  to { opacity: 1; transform: none; }
}
.hero-cinema__badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(12px);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  margin-bottom: 22px;
}
.hero-cinema__badge i { color: var(--gold); }
.hero-cinema__copy h1,
.hero-cinema__title {
  font-family: var(--font-display);
  font-size: clamp(1.65rem, 3.2vw, 2.75rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: #fff;
  margin-bottom: 16px;
  text-shadow: 0 4px 40px rgba(0, 0, 0, 0.35);
}
.hero-cinema__lead {
  font-size: clamp(0.98rem, 1.8vw, 1.15rem);
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.82);
  max-width: 540px;
  margin-bottom: 24px;
}
.hero-cinema__nav {
  display: flex;
  gap: 10px;
  margin-left: auto;
}
.hero-cinema__arrow {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  color: #fff;
  display: grid;
  place-items: center;
  transition: 0.25s var(--ease);
}
.hero-cinema__arrow:hover {
  background: var(--green);
  border-color: var(--green);
  transform: translateY(-2px);
}
.hero-cinema__ribbon {
  position: relative;
  left: auto;
  right: auto;
  bottom: auto;
  z-index: 2;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(10, 4, 4, 0.55);
  backdrop-filter: blur(18px);
}
.hero-cinema__ribbon-inner {
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 18px 0;
  flex-wrap: wrap;
}
.hero-cinema__stat {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #fff;
}
.hero-cinema__stat i {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: rgba(0, 168, 89, 0.2);
  color: var(--gold);
  font-size: 0.95rem;
}
.hero-cinema__stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.15rem;
  line-height: 1.1;
}
.hero-cinema__stat span {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.65);
}
.hero-cinema__call {
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  border-radius: 999px;
  background: var(--red);
  color: #fff;
  font-weight: 700;
  font-size: 0.92rem;
  box-shadow: 0 10px 28px rgba(211, 47, 47, 0.35);
  transition: 0.25s var(--ease);
}
.hero-cinema__call:hover {
  background: var(--red-dark);
  transform: translateY(-2px);
}
.hero-cinema__scroll {
  position: absolute;
  left: 50%;
  bottom: calc(100% - 100%);
  transform: translateX(-50%);
  z-index: 4;
  display: none;
}

/* Bento features */
.bento {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 18px;
}
.bento-card {
  padding: 28px;
  border-radius: var(--radius-lg);
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.bento-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.bento-card--featured {
  grid-column: span 6;
  background: linear-gradient(145deg, var(--maroon) 0%, #6B1515 100%);
  color: rgba(255,255,255,0.88);
  border: none;
}
.bento-card--wide { grid-column: span 6; }
.bento-card--half { grid-column: span 3; }
.bento-card__icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: var(--green-soft);
  color: var(--green-dark);
  font-size: 1.2rem;
  margin-bottom: 18px;
}
.bento-card--featured .bento-card__icon {
  background: rgba(255,255,255,0.14);
  color: #fff;
}
.bento-card h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--ink);
  margin-bottom: 10px;
}
.bento-card--featured h3 {
  color: #fff;
}
.bento-card p { font-size: 0.95rem; color: var(--ink-muted); }
.bento-card--featured p { color: rgba(255,255,255,0.75); }

/* Services mosaic */
.services-mosaic {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.service-tile {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 360px;
  background: var(--surface-3);
  box-shadow: var(--shadow-sm);
}
.service-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.service-tile:hover img { transform: scale(1.06); }
.service-tile__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.05) 20%, rgba(20,20,20,0.88) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
  color: #fff;
}
.service-tile__overlay h3 {
  font-family: var(--font-display);
  font-size: 1.45rem;
  margin-bottom: 8px;
}
.service-tile__overlay p {
  font-size: 0.92rem;
  opacity: 0.85;
  margin-bottom: 16px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.service-tile__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  color: var(--gold);
}

/* Tours track */
.tours-header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 28px;
}
.tours-nav-group { display: flex; gap: 10px; }
.tours-nav {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
  display: grid;
  place-items: center;
  transition: 0.2s var(--ease);
}
.tours-nav:hover { border-color: var(--green); color: var(--green-dark); }
.tours-track-wrap { position: relative; }
.tours-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(320px, 380px);
  gap: 22px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 8px;
  scrollbar-width: none;
}
.tours-track::-webkit-scrollbar { display: none; }

.tour-card {
  scroll-snap-align: start;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.tour-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.tour-card__media {
  position: relative;
  display: block;
  aspect-ratio: 4/3;
  overflow: hidden;
}
.tour-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}
.tour-card:hover .tour-card__media img { transform: scale(1.05); }
.tour-card__tag {
  position: absolute;
  left: 14px;
  top: 14px;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.92);
  color: var(--maroon);
  font-size: 0.75rem;
  font-weight: 700;
}
.tour-card__body { padding: 22px; }
.tour-card__meta {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  font-size: 0.82rem;
  color: var(--ink-muted);
  margin-bottom: 10px;
}
.tour-card__price {
  font-weight: 700;
  color: var(--green-dark);
}
.tour-card__body h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  margin-bottom: 8px;
  line-height: 1.2;
}
.tour-card__body h3 a:hover { color: var(--green-dark); }
.tour-card__body p {
  font-size: 0.92rem;
  color: var(--ink-muted);
  margin-bottom: 16px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.tour-card__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  color: var(--red);
  font-size: 0.9rem;
}

.tours-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 22px;
}

/* Live host — slightly reduced scale */
html.is-live {
  font-size: 93.75%;
}
html.is-live .hero-cinema,
html.is-live .hero-cinema__content {
  min-height: min(68vh, 600px);
  max-height: 700px;
}
html.is-live .hero-cinema__content {
  padding-bottom: 200px;
}
html.is-live .section { padding: 72px 0; }
html.is-live .section--tight { padding: 56px 0; }
html.is-live .page-hero { padding: 64px 0 48px; }
html.is-live .hero-cinema__title {
  font-size: clamp(1.5rem, 2.8vw, 2.4rem);
}
html.is-live .hero-cinema__lead {
  font-size: clamp(0.92rem, 1.6vw, 1.05rem);
  margin-bottom: 20px;
}
html.is-live .btn {
  padding: 12px 20px;
  font-size: 0.9rem;
}
html.is-live .tours-grid {
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 18px;
}

/* Destinations marquee */
.marquee {
  overflow: hidden;
  border-block: 1px solid var(--line);
  background: #fff;
  padding: 22px 0;
}
.marquee__track {
  display: flex;
  width: max-content;
  gap: 14px;
  animation: marquee 28s linear infinite;
}
.marquee__item {
  padding: 12px 22px;
  border-radius: 999px;
  border: 1px solid var(--line);
  font-weight: 600;
  color: var(--ink);
  white-space: nowrap;
  transition: 0.2s var(--ease);
}
.marquee__item:hover {
  background: var(--green);
  border-color: var(--green);
  color: #fff;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* Testimonials */
.testimonial-shell {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 32px;
  align-items: stretch;
}
.testimonial-intro {
  padding: 40px;
  border-radius: var(--radius-xl);
  background: linear-gradient(160deg, var(--green) 0%, #00C96A 100%);
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.testimonial-intro h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3vw, 2.8rem);
  line-height: 1.05;
  margin: 14px 0;
}
.testimonial-intro p { opacity: 0.9; }
.testimonial-grid {
  display: grid;
  gap: 16px;
}
.quote-card {
  padding: 24px;
  border-radius: var(--radius-md);
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}
.quote-card p {
  font-size: 1rem;
  color: var(--ink-soft);
  margin-bottom: 18px;
}
.quote-card__author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.quote-card__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--gold-soft);
  color: #9A6B00;
  font-weight: 700;
}
.quote-card__author strong { display: block; color: var(--ink); font-size: 0.95rem; }
.quote-card__author span { font-size: 0.82rem; color: var(--ink-muted); }
.quote-card__stars { color: var(--gold); font-size: 0.85rem; margin-top: 4px; }
.empty-state {
  padding: 40px;
  text-align: center;
  border-radius: var(--radius-md);
  background: var(--surface-2);
  color: var(--ink-muted);
}

/* CTA band */
.cta-band {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xl);
  padding: 56px;
  background: linear-gradient(135deg, var(--maroon-deep), var(--maroon) 50%, #1a0505);
  color: #fff;
  display: grid;
  grid-template-columns: 1.2fr auto;
  gap: 32px;
  align-items: center;
  box-shadow: var(--shadow-lg);
}
.cta-band::before {
  content: "";
  position: absolute;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,193,7,0.22), transparent 70%);
  right: -40px;
  top: -80px;
}
.cta-band h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3rem);
  line-height: 1.05;
  margin-bottom: 12px;
  position: relative;
}
.cta-band p {
  max-width: 560px;
  color: rgba(255,255,255,0.78);
  position: relative;
}
.cta-band__actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
}

/* Page hero (inner pages) */
.page-hero {
  padding: 72px 0 56px;
  background:
    radial-gradient(circle at 85% 15%, rgba(0,168,89,0.12), transparent 30%),
    radial-gradient(circle at 10% 80%, rgba(255,193,7,0.14), transparent 28%),
    linear-gradient(180deg, var(--surface-2) 0%, #fff 100%);
}
.page-hero__inner { max-width: 760px; }
.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 4rem);
  line-height: 1.02;
  color: var(--ink);
  margin: 14px 0;
  letter-spacing: -0.03em;
}
.page-hero p { font-size: 1.08rem; color: var(--ink-muted); max-width: 620px; }
.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 0.88rem;
  color: var(--ink-muted);
}
.breadcrumb a { color: var(--green-dark); font-weight: 600; }

/* Contact */
.contact-layout {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 28px;
  align-items: start;
}
.contact-cards {
  display: grid;
  gap: 16px;
}
.info-card {
  padding: 24px;
  border-radius: var(--radius-md);
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}
.info-card i {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: var(--green-soft);
  color: var(--green-dark);
  margin-bottom: 14px;
}
.info-card h3 {
  font-family: var(--font-display);
  color: var(--ink);
  margin-bottom: 8px;
}
.info-card p, .info-card a { color: var(--ink-muted); }
.info-card a:hover { color: var(--green-dark); }

.form-panel {
  padding: 32px;
  border-radius: var(--radius-lg);
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
}
.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.form-field { display: grid; gap: 8px; }
.form-field--full { grid-column: 1 / -1; }
.form-field label {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--ink);
}
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: var(--surface-2);
  font: inherit;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--green);
  box-shadow: 0 0 0 4px rgba(0,168,89,0.12);
  background: #fff;
}
.form-field textarea { min-height: 140px; resize: vertical; }

/* Package detail */
.package-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 32px;
  align-items: start;
}
.tab-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}
.tab-btn {
  padding: 10px 18px;
  border-radius: 999px;
  border: 1px solid var(--line);
  font-weight: 600;
  color: var(--ink-muted);
  background: #fff;
}
.tab-btn.is-active,
.tab-btn:hover {
  background: var(--green-soft);
  border-color: transparent;
  color: var(--green-dark);
}
.tab-panel { display: none; }
.tab-panel.is-active { display: block; }
.content-card {
  padding: 28px;
  border-radius: var(--radius-lg);
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}
.content-card h2 {
  font-family: var(--font-display);
  color: var(--ink);
  margin-bottom: 16px;
}
.content-card p { color: var(--ink-soft); }
.fact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 14px;
  margin-top: 24px;
}
.fact-item {
  padding: 16px;
  border-radius: var(--radius-sm);
  background: var(--surface-2);
}
.fact-item span { display: block; font-size: 0.8rem; color: var(--ink-muted); }
.fact-item strong { color: var(--ink); }
.itinerary-item {
  padding: 20px 20px 20px 24px;
  border-left: 3px solid var(--green);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  background: var(--surface-2);
  margin-bottom: 14px;
}
.itinerary-item .day-badge {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--green);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.list-item {
  display: flex;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}
.list-item:last-child { border-bottom: none; }
.list-item i.fa-check { color: var(--green); margin-top: 4px; }
.list-item i.fa-times { color: var(--red); margin-top: 4px; }

.booking-card {
  position: sticky;
  top: calc(var(--header-height) + 20px);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--line);
  background: #fff;
}
.booking-card__price {
  padding: 28px;
  background: linear-gradient(145deg, var(--maroon), #6B1515);
  color: #fff;
  text-align: center;
}
.booking-card__price small { opacity: 0.8; }
.booking-card__price strong {
  display: block;
  font-family: var(--font-display);
  font-size: 2.4rem;
  line-height: 1.1;
  margin: 6px 0;
}
.booking-card__body { padding: 24px; }
.booking-summary {
  padding: 16px;
  border-radius: var(--radius-sm);
  background: var(--surface-2);
  margin: 16px 0;
}
.booking-summary div {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
  font-size: 0.92rem;
}
.radio-stack { display: grid; gap: 10px; }
.radio-stack label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.92rem;
}

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.gallery-item {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 1;
  box-shadow: var(--shadow-sm);
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent, rgba(0,0,0,0.75));
  display: flex;
  align-items: flex-end;
  padding: 20px;
  color: #fff;
  opacity: 0;
  transition: opacity 0.25s var(--ease);
}
.gallery-item:hover .gallery-item__overlay { opacity: 1; }

/* Blog */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}
.blog-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.blog-card__image { aspect-ratio: 16/10; overflow: hidden; }
.blog-card__image img { width: 100%; height: 100%; object-fit: cover; }
.blog-card__body { padding: 22px; }
.blog-card__meta {
  display: flex;
  gap: 12px;
  font-size: 0.8rem;
  color: var(--ink-muted);
  margin-bottom: 10px;
}
.blog-card__body h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  margin-bottom: 10px;
  line-height: 1.25;
}
.blog-card__body p {
  font-size: 0.92rem;
  color: var(--ink-muted);
  margin-bottom: 14px;
}
.blog-card__link { font-weight: 700; color: var(--green-dark); }

.blog-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 28px;
}
.article-card {
  padding: 32px;
  border-radius: var(--radius-lg);
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}
.article-card img {
  width: 100%;
  border-radius: var(--radius-md);
  margin-bottom: 24px;
}
.sidebar-card {
  padding: 22px;
  border-radius: var(--radius-md);
  background: #fff;
  border: 1px solid var(--line);
  margin-bottom: 16px;
}
.sidebar-card h3 {
  font-family: var(--font-display);
  margin-bottom: 14px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--green-soft);
}

/* About */
.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}
.split-section img {
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.value-card {
  padding: 28px;
  border-radius: var(--radius-md);
  background: #fff;
  border: 1px solid var(--line);
  text-align: center;
}
.value-card i {
  font-size: 1.8rem;
  color: var(--green);
  margin-bottom: 14px;
}
.value-card h3 {
  font-family: var(--font-display);
  margin-bottom: 8px;
  color: var(--ink);
}

/* Footer */
.site-footer {
  position: relative;
  background: var(--maroon-deep);
  color: rgba(255,255,255,0.8);
  padding: 72px 0 28px;
  overflow: hidden;
}
.footer-glow {
  position: absolute;
  inset: auto 0 0 0;
  height: 2px;
  background: linear-gradient(90deg, var(--green), var(--gold), var(--red));
}
.footer-top {
  display: grid;
  grid-template-columns: 1.3fr repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 40px;
}
.footer-brand p { margin: 18px 0; max-width: 340px; line-height: 1.7; }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255,255,255,0.08);
  color: #fff;
}
.footer-social a:hover { background: var(--green); }
.footer-col h4 {
  font-family: var(--font-display);
  color: #fff;
  margin-bottom: 16px;
}
.footer-col li { margin-bottom: 10px; }
.footer-col a:hover { color: var(--gold); }
.footer-contact li {
  display: flex;
  align-items: center;
  gap: 10px;
}
.footer-hours { font-size: 0.85rem; margin: 14px 0; opacity: 0.75; }
.footer-bottom {
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 0.85rem;
  opacity: 0.7;
}

/* Responsive */
@media (max-width: 1100px) {
  .hero-cinema__scroll { display: none; }
  .bento-card--featured,
  .bento-card--wide { grid-column: span 12; }
  .bento-card--half { grid-column: span 6; }
  .services-mosaic { grid-template-columns: 1fr 1fr; }
  .testimonial-shell,
  .contact-layout,
  .package-layout,
  .blog-layout,
  .split-section { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .cta-band { grid-template-columns: 1fr; }
  .booking-card { position: static; }
}

@media (max-width: 1024px) {
  .nav-toggle { display: inline-flex; }
  .site-nav {
    position: fixed;
    top: 0;
    right: 0;
    width: min(360px, 88vw);
    height: 100vh;
    background: #fff;
    flex-direction: column;
    align-items: stretch;
    padding: 100px 24px 24px;
    gap: 20px;
    transform: translateX(100%);
    transition: transform 0.35s var(--ease);
    z-index: 950;
    box-shadow: var(--shadow-lg);
  }
  body.nav-open .site-nav { transform: none; }
  body.nav-open .nav-overlay { display: block; }
  .site-nav__list {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }
  .site-nav__list > li > a,
  .dropdown > button {
    width: 100%;
    padding: 14px 0;
    justify-content: space-between;
  }
  .dropdown__menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    padding: 0 0 8px 12px;
    display: none;
  }
  .dropdown.is-open .dropdown__menu { display: block; }
  .header-cta { width: 100%; }
}

@media (max-width: 768px) {
  .section { padding: 64px 0; }
  html.is-live .section { padding: 56px 0; }
  .header-strip__inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding: 10px 0;
  }
  .header-strip__sep { display: none; }
  .header-strip__contacts { flex-direction: column; align-items: flex-start; gap: 6px; }
  .header-strip__item span { font-size: 0.76rem; }
  .brand__mark img { height: 48px; }
  .hero-cinema {
    min-height: min(68vh, 520px);
    max-height: none;
  }
  .hero-cinema__content {
    min-height: min(68vh, 520px);
    max-height: none;
    padding-top: 20px;
    padding-bottom: 230px;
    align-items: flex-start;
  }
  html.is-live .hero-cinema,
  html.is-live .hero-cinema__content {
    min-height: min(64vh, 480px);
    max-height: none;
  }
  html.is-live .hero-cinema__content {
    padding-bottom: 220px;
  }
  .hero-cinema__copy h1,
  .hero-cinema__title { font-size: clamp(1.45rem, 6.5vw, 2rem); }
  .hero-cinema__lead {
    font-size: 0.95rem;
    margin-bottom: 18px;
  }
  .hero-cinema__actions .btn {
    padding: 11px 18px;
    font-size: 0.88rem;
  }
  .hero-cinema__bar {
    justify-content: flex-end;
    padding: 10px 0 8px;
  }
  .hero-cinema__nav {
    justify-content: flex-end;
  }
  .hero-cinema__ribbon-inner {
    gap: 12px;
    justify-content: center;
    padding: 14px 0;
  }
  .hero-cinema__call {
    margin-left: 0;
    width: 100%;
    justify-content: center;
    padding: 10px 16px;
    font-size: 0.88rem;
  }
  .hero-cinema__stat { flex: 1 1 calc(50% - 8px); min-width: 130px; }
  .hero-cinema__stat strong { font-size: 1rem; }
  .tours-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .services-mosaic,
  .gallery-grid,
  .values-grid,
  .form-grid { grid-template-columns: 1fr; }
  .bento-card--half { grid-column: span 12; }
  .tours-header { flex-direction: column; align-items: flex-start; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; }
  .cta-band { padding: 32px 20px; }
  .section-head h2 {
    font-size: clamp(1.65rem, 6vw, 2.2rem);
  }
}

@media (max-width: 480px) {
  .container {
    width: min(var(--container), calc(100% - 28px));
  }
  .hero-cinema__badge {
    font-size: 0.68rem;
    padding: 8px 14px;
    margin-bottom: 14px;
  }
  .hero-cinema__actions {
    flex-direction: column;
    width: 100%;
  }
  .hero-cinema__actions .btn {
    width: 100%;
    justify-content: center;
  }
  .hero-cinema__stat {
    flex: 1 1 100%;
    min-width: 0;
  }
}
