:root {
  --bg: #fff8ee;
  --bg-soft: #fffdf8;
  --ink: #202018;
  --muted: #6e6559;
  --primary: #e8488a;
  --primary-dark: #b51d61;
  --teal: #0c8079;
  --teal-dark: #075c58;
  --sand: #f2dfbf;
  --card: rgba(255, 255, 255, 0.82);
  --line: rgba(32, 32, 24, 0.12);
  --shadow: 0 24px 70px rgba(76, 45, 16, 0.16);
  --radius-lg: 34px;
  --radius-md: 22px;
  --radius-sm: 14px;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(232, 72, 138, 0.16), transparent 34rem),
    radial-gradient(circle at 92% 12%, rgba(12, 128, 121, 0.18), transparent 28rem),
    linear-gradient(180deg, var(--bg) 0%, #fff 46%, #fff8ee 100%);
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(18px, 4vw, 56px);
  background: rgba(255, 248, 238, 0.82);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
  overflow: visible;
}

.brand {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 16px;
  text-decoration: none;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.brand img {
  position: relative;
  z-index: 1;
  width: 76px;
  height: 76px;
  object-fit: contain;
  border-radius: 50%;
  background: #fff;
  box-shadow:
    0 0 0 8px rgba(255, 255, 255, 0.82),
    0 18px 38px rgba(76, 45, 16, 0.18);
  transform: translateY(2px);
}

nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

nav a {
  border-radius: 999px;
  padding: 10px 14px;
  color: var(--muted);
  font-size: 0.93rem;
  font-weight: 700;
  text-decoration: none;
}

nav a:hover,
nav a[aria-current="page"] {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.75);
}

.nav-cta {
  color: #fff;
  background: var(--primary);
  box-shadow: 0 12px 26px rgba(232, 72, 138, 0.22);
}

nav .nav-cta:hover {
  color: #fff;
  background: var(--primary-dark);
}

.hero,
.section,
.gallery-preview,
.page-hero,
.photo-gallery,
.booking-panel,
.site-footer {
  width: min(1160px, calc(100% - 36px));
  margin-inline: auto;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(340px, 0.98fr);
  align-items: center;
  gap: clamp(34px, 6vw, 80px);
  min-height: calc(100vh - 90px);
  padding: 72px 0 56px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--primary-dark);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  letter-spacing: -0.06em;
  line-height: 0.98;
}

h1 {
  max-width: 13ch;
  margin-bottom: 24px;
  font-size: clamp(3.2rem, 8vw, 6.8rem);
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2.2rem, 5vw, 4.5rem);
}

h3 {
  margin-bottom: 12px;
  font-size: 1.28rem;
  letter-spacing: -0.03em;
}

.hero-text,
.section-heading p,
.page-hero p,
.split-section p,
.booking-panel p {
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.7;
}

.hero-text {
  max-width: 640px;
}

.hero-actions,
.booking-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 28px 0;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 14px 20px;
  font-weight: 850;
  text-decoration: none;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button.primary {
  color: #fff;
  background: linear-gradient(135deg, var(--primary), #f36f55);
  box-shadow: 0 18px 34px rgba(232, 72, 138, 0.28);
}

.button.secondary {
  color: var(--teal-dark);
  background: rgba(255, 255, 255, 0.76);
  border-color: rgba(12, 128, 121, 0.2);
}

.button.secondary.light {
  color: #fff;
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.34);
}

.hero-media {
  position: relative;
  min-height: 620px;
}

.hero-main {
  width: 78%;
  height: 560px;
  margin-left: auto;
  border: 12px solid rgba(255, 255, 255, 0.78);
  border-radius: 44px;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.hero-float {
  position: absolute;
  width: 44%;
  border: 10px solid rgba(255, 255, 255, 0.88);
  border-radius: 30px;
  object-fit: cover;
  box-shadow: 0 18px 44px rgba(76, 45, 16, 0.22);
}

.hero-float.top {
  top: 48px;
  left: 0;
  height: 250px;
}

.hero-float.bottom {
  right: 8px;
  bottom: 0;
  width: 54%;
  height: 230px;
}

.intro-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  width: min(1000px, calc(100% - 36px));
  margin: 0 auto 72px;
}

.intro-strip span {
  padding: 10px 14px;
  border: 1px solid rgba(12, 128, 121, 0.16);
  border-radius: 999px;
  color: var(--teal-dark);
  background: rgba(255, 255, 255, 0.64);
  font-weight: 800;
}

.section {
  padding: 70px 0;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

.tour-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.tour-card {
  min-height: 310px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--card);
  box-shadow: 0 14px 40px rgba(76, 45, 16, 0.08);
}

.tour-card.featured-card {
  display: grid;
  grid-column: span 2;
  grid-template-columns: 0.9fr 1fr;
  gap: 22px;
  padding: 16px;
}

.tour-card img {
  width: 100%;
  height: 100%;
  min-height: 290px;
  border-radius: 24px;
  object-fit: cover;
}

.tour-card:not(.featured-card) {
  display: flex;
  flex-direction: column;
  padding: 16px;
}

.tour-card:not(.featured-card) > img {
  height: 220px;
  min-height: 220px;
  margin-bottom: 20px;
}

.tour-card:not(.featured-card) > div {
  padding: 0 8px 8px;
}

.tour-card.featured-card div {
  padding: 8px 10px 8px 0;
}

.day-label {
  display: inline-flex;
  margin: 0 0 14px;
  border-radius: 999px;
  padding: 7px 11px;
  color: #fff;
  background: var(--teal);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.tour-card ul {
  margin: 0;
  padding-left: 1.15rem;
  color: var(--muted);
  line-height: 1.62;
}

.split-section {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 34px;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.trust-grid article {
  padding: 24px;
  border-radius: var(--radius-md);
  color: #fff;
  background: linear-gradient(160deg, var(--teal), var(--teal-dark));
  box-shadow: 0 18px 42px rgba(12, 128, 121, 0.18);
}

.trust-grid span {
  display: inline-block;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.68);
  font-weight: 900;
}

.trust-grid p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.98rem;
}

.gallery-preview {
  padding: 64px 0;
}

.preview-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr;
  gap: 18px;
}

.preview-grid img {
  width: 100%;
  height: 430px;
  border-radius: var(--radius-lg);
  object-fit: cover;
  box-shadow: 0 18px 42px rgba(76, 45, 16, 0.12);
}

.text-link {
  color: var(--primary-dark);
  font-weight: 900;
  text-decoration: none;
}

.booking-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin-top: 50px;
  margin-bottom: 50px;
  padding: clamp(28px, 5vw, 52px);
  border-radius: 42px;
  color: #fff;
  background:
    linear-gradient(rgba(32, 32, 24, 0.1), rgba(32, 32, 24, 0.1)),
    linear-gradient(135deg, var(--primary-dark), var(--teal-dark));
  box-shadow: var(--shadow);
}

.booking-panel.compact {
  margin-top: 18px;
}

.booking-panel .eyebrow,
.booking-panel p {
  color: rgba(255, 255, 255, 0.76);
}

.booking-panel h2 {
  max-width: 760px;
  margin-bottom: 10px;
  font-size: clamp(2rem, 4.4vw, 4rem);
}

.page-hero {
  max-width: 920px;
  padding: 76px 0 44px;
  text-align: center;
}

.page-hero h1 {
  max-width: 12ch;
  margin-inline: auto;
}

.page-hero p {
  max-width: 720px;
  margin-inline: auto;
}

.photo-gallery {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  padding-bottom: 48px;
}

.photo-gallery figure {
  position: relative;
  min-height: 320px;
  margin: 0;
  overflow: hidden;
  border-radius: 28px;
  background: var(--sand);
  box-shadow: 0 18px 42px rgba(76, 45, 16, 0.1);
}

.photo-gallery img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
  transition: transform 260ms ease;
}

.photo-gallery figure:hover img {
  transform: scale(1.04);
}

.photo-gallery figcaption {
  position: absolute;
  right: 12px;
  bottom: 12px;
  left: 12px;
  padding: 10px 12px;
  border-radius: 999px;
  color: #fff;
  background: rgba(32, 32, 24, 0.62);
  font-size: 0.86rem;
  font-weight: 800;
  backdrop-filter: blur(12px);
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 34px 0 44px;
  color: var(--muted);
  border-top: 1px solid var(--line);
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  font-weight: 800;
  text-decoration: none;
}

.footer-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.footer-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  border-radius: 999px;
  padding: 11px 16px;
  font-size: 0.92rem;
  line-height: 1;
  box-shadow: 0 12px 28px rgba(22, 35, 31, 0.08);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

.footer-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 36px rgba(22, 35, 31, 0.12);
}

.footer-email {
  color: var(--teal-dark);
  border: 1px solid rgba(12, 128, 121, 0.22);
  background: rgba(255, 255, 255, 0.78);
}

.footer-whatsapp {
  color: #fff;
  background: linear-gradient(135deg, var(--primary), #f36f55);
}

@media (max-width: 980px) {
  .site-header {
    position: static;
    align-items: flex-start;
    flex-direction: column;
  }

  nav {
    justify-content: flex-start;
  }

  .hero,
  .split-section {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 52px;
  }

  h1 {
    max-width: 14ch;
  }

  .hero-media {
    min-height: 540px;
  }

  .tour-grid,
  .photo-gallery,
  .trust-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .tour-card.featured-card {
    grid-column: span 2;
  }

  .booking-panel {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 680px) {
  .brand span {
    max-width: 160px;
  }

  nav a {
    padding: 9px 11px;
  }

  .hero,
  .section,
  .gallery-preview,
  .page-hero {
    padding-block: 42px;
  }

  .hero-media {
    min-height: auto;
  }

  .hero-main,
  .hero-float {
    position: static;
    width: 100%;
    height: 320px;
    margin: 0 0 14px;
  }

  .hero-float.bottom {
    width: 100%;
  }

  .tour-grid,
  .photo-gallery,
  .preview-grid,
  .trust-grid {
    grid-template-columns: 1fr;
  }

  .tour-card.featured-card {
    grid-column: auto;
    grid-template-columns: 1fr;
  }

  .tour-card.featured-card div {
    padding: 0 8px 8px;
  }

  .preview-grid img {
    height: 320px;
  }

  .site-footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-actions {
    justify-content: flex-start;
  }
}

/* --- Cinematic upgrade pass --- */

:root {
  --night: #16231f;
  --jungle: #0b4d3f;
  --jungle-2: #0f6a57;
  --volcano: #20354a;
  --gold: #f2b95e;
  --coral: #ff5f8f;
  --blush: #ffe4dc;
  --glass: rgba(255, 255, 255, 0.72);
  --glass-strong: rgba(255, 255, 255, 0.88);
  --shadow-deep: 0 34px 90px rgba(22, 35, 31, 0.26);
}

body {
  overflow-x: hidden;
  background:
    radial-gradient(circle at 8% 6%, rgba(255, 95, 143, 0.18), transparent 26rem),
    radial-gradient(circle at 92% 8%, rgba(242, 185, 94, 0.24), transparent 28rem),
    linear-gradient(180deg, #fff8ee 0%, #fdf4e3 36%, #fff 64%, #fff8ee 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.28;
  background-image:
    linear-gradient(rgba(22, 35, 31, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(22, 35, 31, 0.045) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(to bottom, black 0%, transparent 78%);
}

.site-header {
  margin: 14px auto 0;
  width: min(1180px, calc(100% - 28px));
  border: 1px solid rgba(255, 255, 255, 0.56);
  border-radius: 999px;
  background: rgba(255, 250, 241, 0.76);
  box-shadow: 0 20px 70px rgba(22, 35, 31, 0.08);
  padding-block: 10px;
}

.brand span {
  color: var(--night);
}

.brand img {
  border: 2px solid rgba(255, 255, 255, 0.9);
}

.cinematic-hero {
  grid-template-columns: minmax(0, 0.8fr) minmax(420px, 1.2fr);
  min-height: calc(100vh - 104px);
  padding-top: 44px;
}

.hero-kicker-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 10px;
}

.hero-kicker-row .eyebrow {
  margin: 0;
}

.cinematic-hero h1 {
  max-width: 10.5ch;
  color: var(--night);
  font-size: clamp(4rem, 9vw, 7.6rem);
  text-wrap: balance;
}

.cinematic-hero .hero-text {
  max-width: 580px;
  color: #51483b;
  font-size: clamp(1.06rem, 1.4vw, 1.24rem);
}

.cinematic-media {
  min-height: 720px;
}

.cinematic-frame {
  position: absolute;
  inset: 0 0 154px 0;
  margin: 0;
  overflow: hidden;
  border: 12px solid rgba(255, 255, 255, 0.78);
  border-radius: 56px;
  background: var(--night);
  box-shadow: var(--shadow-deep);
  transform: rotate(1.2deg);
}

.cinematic-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(22, 35, 31, 0.62), rgba(22, 35, 31, 0.08) 46%, rgba(22, 35, 31, 0.2)),
    radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.44), transparent 24rem);
}

.cinematic-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
}

.cinematic-frame figcaption {
  position: absolute;
  right: 24px;
  bottom: 24px;
  z-index: 2;
  max-width: min(380px, calc(100% - 48px));
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 24px;
  padding: 16px 18px;
  color: #fff;
  background: rgba(22, 35, 31, 0.5);
  backdrop-filter: blur(18px);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.18);
}

.cinematic-frame figcaption span,
.hero-proof-card span {
  display: block;
  margin-bottom: 4px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.cinematic-frame figcaption strong,
.hero-proof-card strong {
  display: block;
  font-size: 1rem;
  line-height: 1.25;
}

.hero-proof-card {
  position: absolute;
  left: 18px;
  bottom: 10px;
  z-index: 3;
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  align-items: center;
  gap: 14px;
  width: min(430px, calc(100% - 36px));
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 28px;
  padding: 12px;
  color: #fff;
  background: linear-gradient(135deg, rgba(181, 29, 97, 0.92), rgba(7, 92, 88, 0.94));
  box-shadow: 0 26px 60px rgba(22, 35, 31, 0.24);
  text-decoration: none;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.hero-proof-card:hover,
.hero-proof-card:focus-visible {
  border-color: rgba(255, 255, 255, 0.78);
  box-shadow: 0 30px 68px rgba(22, 35, 31, 0.3);
  transform: translateY(-3px);
}

.hero-proof-card:focus-visible {
  outline: 3px solid rgba(255, 255, 255, 0.9);
  outline-offset: 4px;
}

.hero-proof-card img {
  width: 92px;
  height: 92px;
  border-radius: 20px;
  object-fit: cover;
}

.route-stamp {
  position: absolute;
  top: 34px;
  right: -12px;
  z-index: 3;
  display: grid;
  place-items: center;
  width: 132px;
  height: 132px;
  border: 1px dashed rgba(255, 255, 255, 0.74);
  border-radius: 50%;
  color: #fff;
  background: rgba(242, 185, 94, 0.92);
  box-shadow: 0 22px 52px rgba(22, 35, 31, 0.2);
  transform: rotate(10deg);
}

.route-stamp span {
  display: block;
  font-size: 3.1rem;
  font-weight: 950;
  line-height: 0.9;
}

.route-stamp small {
  display: block;
  color: rgba(22, 35, 31, 0.78);
  font-weight: 950;
  line-height: 0.96;
  text-align: center;
  text-transform: uppercase;
}

.intro-strip {
  position: relative;
  isolation: isolate;
}

.intro-strip::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 5%;
  left: 5%;
  z-index: -1;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(12, 128, 121, 0.26), transparent);
}

.intro-strip span {
  border-color: rgba(255, 255, 255, 0.62);
  color: var(--night);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 12px 28px rgba(22, 35, 31, 0.07);
}

.route-board {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  width: min(1160px, calc(100% - 36px));
  margin: 0 auto 58px;
}

.route-board::before {
  content: "";
  position: absolute;
  top: 46px;
  right: 14%;
  left: 14%;
  height: 3px;
  border-radius: 999px;
  background-image: linear-gradient(90deg, var(--coral) 50%, transparent 50%);
  background-size: 22px 3px;
  opacity: 0.38;
}

.route-board article {
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 30px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.9), rgba(255, 236, 213, 0.66)),
    var(--glass);
  box-shadow: 0 20px 54px rgba(22, 35, 31, 0.09);
}

.route-board article::after {
  content: "";
  position: absolute;
  right: -50px;
  bottom: -60px;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 95, 143, 0.16), transparent 68%);
}

.route-number {
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 24px;
  border-radius: 50%;
  color: #fff;
  background: var(--night);
  font-weight: 950;
}

.route-board h2 {
  margin-bottom: 10px;
  font-size: clamp(1.5rem, 2vw, 2.2rem);
  letter-spacing: -0.05em;
}

.route-board p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.tour-map-note {
  display: flex;
  align-items: center;
  gap: 14px;
  max-width: 740px;
  margin: -8px 0 28px;
  border: 1px solid rgba(12, 128, 121, 0.16);
  border-radius: 24px;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 12px 32px rgba(22, 35, 31, 0.06);
}

.tour-map-note span {
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  color: #fff;
  background: var(--coral);
}

.tour-map-note p {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

.tour-grid {
  align-items: stretch;
}

.tour-card {
  position: relative;
  overflow: hidden;
  border-color: rgba(255, 255, 255, 0.72);
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.94), rgba(255, 246, 231, 0.78)),
    var(--card);
  box-shadow: 0 22px 58px rgba(22, 35, 31, 0.1);
  transition:
    transform 220ms ease,
    box-shadow 220ms ease;
}

.tour-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 6px;
  background: linear-gradient(90deg, var(--coral), var(--gold), var(--jungle-2));
}

.tour-card::after {
  content: "";
  position: absolute;
  right: -70px;
  bottom: -70px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(242, 185, 94, 0.2), transparent 70%);
  pointer-events: none;
}

.tour-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 74px rgba(22, 35, 31, 0.16);
}

.tour-card.featured-card {
  background:
    linear-gradient(135deg, rgba(22, 35, 31, 0.05), rgba(255, 255, 255, 0.9)),
    var(--glass-strong);
}

.tour-card.featured-card img {
  filter: saturate(1.05) contrast(1.03);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.2);
}

.day-label {
  background: linear-gradient(135deg, var(--jungle-2), var(--night));
  box-shadow: 0 12px 26px rgba(12, 128, 121, 0.16);
}

.split-section {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 42px;
  padding: clamp(28px, 5vw, 52px);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.86), rgba(255, 228, 220, 0.46)),
    var(--glass);
  box-shadow: 0 22px 68px rgba(22, 35, 31, 0.08);
}

.split-section::before {
  content: "";
  position: absolute;
  top: -120px;
  left: -90px;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 95, 143, 0.16), transparent 70%);
}

.trust-grid article {
  background:
    radial-gradient(circle at top right, rgba(242, 185, 94, 0.3), transparent 44%),
    linear-gradient(160deg, var(--night), var(--jungle));
}

.gallery-preview {
  position: relative;
}

.preview-grid {
  align-items: end;
}

.preview-grid img {
  border: 10px solid rgba(255, 255, 255, 0.72);
  transform: rotate(-1.5deg);
}

.preview-grid img:nth-child(2) {
  height: 500px;
  transform: rotate(2deg);
}

.preview-grid img:nth-child(3) {
  transform: rotate(-0.6deg);
}

.booking-panel {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(22, 35, 31, 0.84), rgba(22, 35, 31, 0.34)),
    url("assets/generated/bali-cinematic-hero.png") center / cover;
}

.booking-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 80% 20%, rgba(242, 185, 94, 0.28), transparent 24rem),
    linear-gradient(135deg, rgba(181, 29, 97, 0.18), rgba(7, 92, 88, 0.38));
}

.booking-panel > * {
  position: relative;
  z-index: 1;
}

.page-hero {
  position: relative;
  overflow: hidden;
  width: min(1160px, calc(100% - 36px));
  max-width: 1160px;
  margin-top: 38px;
  border-radius: 46px;
  padding: clamp(52px, 8vw, 92px) clamp(22px, 6vw, 76px);
  color: #fff;
  background:
    linear-gradient(90deg, rgba(22, 35, 31, 0.82), rgba(22, 35, 31, 0.22)),
    url("assets/generated/bali-cinematic-hero.png") center / cover;
  box-shadow: var(--shadow-deep);
}

.page-hero .eyebrow,
.page-hero p {
  color: rgba(255, 255, 255, 0.78);
}

.page-hero h1 {
  color: #fff;
}

.photo-gallery figure {
  border: 8px solid rgba(255, 255, 255, 0.72);
  transform: rotate(-0.7deg);
  transition:
    transform 220ms ease,
    box-shadow 220ms ease;
}

.photo-gallery figure:nth-child(2n) {
  transform: rotate(0.8deg);
}

.photo-gallery figure:nth-child(3n) {
  transform: rotate(-1.1deg);
}

.photo-gallery figure:hover {
  transform: translateY(-6px) rotate(0deg);
  box-shadow: 0 28px 70px rgba(22, 35, 31, 0.18);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.001ms !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
  }
}

@media (max-width: 980px) {
  .site-header {
    border-radius: 28px;
  }

  .brand img {
    width: 70px;
    height: 70px;
  }

  .cinematic-hero {
    grid-template-columns: 1fr;
  }

  .cinematic-media {
    min-height: 690px;
  }

  .route-board {
    grid-template-columns: 1fr;
  }

  .route-board::before {
    top: 30px;
    bottom: 30px;
    left: 47px;
    width: 3px;
    height: auto;
    background-image: linear-gradient(180deg, var(--coral) 50%, transparent 50%);
    background-size: 3px 22px;
  }

  .split-section {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .site-header {
    margin-top: 8px;
    width: min(100% - 16px, 1180px);
  }

  .brand {
    gap: 12px;
  }

  .brand img {
    width: 62px;
    height: 62px;
    box-shadow:
      0 0 0 6px rgba(255, 255, 255, 0.82),
      0 14px 30px rgba(76, 45, 16, 0.16);
  }

  .cinematic-hero h1 {
    font-size: clamp(3.2rem, 16vw, 4.8rem);
  }

  .cinematic-media {
    min-height: auto;
  }

  .cinematic-frame {
    position: relative;
    inset: auto;
    height: 460px;
    border-width: 8px;
    border-radius: 34px;
    transform: none;
  }

  .cinematic-frame::before {
    background: linear-gradient(180deg, rgba(22, 35, 31, 0.14), rgba(22, 35, 31, 0.58));
  }

  .cinematic-frame figcaption {
    right: 14px;
    bottom: 14px;
    left: 14px;
  }

  .hero-proof-card {
    position: relative;
    left: auto;
    width: 100%;
    margin-top: 14px;
  }

  .route-stamp {
    top: -12px;
    right: -4px;
    width: 100px;
    height: 100px;
  }

  .route-stamp span {
    font-size: 2.3rem;
  }

  .route-board article,
  .tour-card,
  .split-section,
  .booking-panel,
  .page-hero {
    border-radius: 28px;
  }

  .tour-map-note {
    align-items: flex-start;
  }
}

/* Expanding logo header: large brand mark at the top, compact after scroll */

.site-header {
  transition:
    width 220ms ease,
    padding 220ms ease,
    border-radius 220ms ease,
    background 220ms ease,
    box-shadow 220ms ease;
}

.brand img {
  width: 132px;
  height: 132px;
  transition:
    width 240ms ease,
    height 240ms ease,
    box-shadow 240ms ease,
    transform 240ms ease;
}

.site-header.is-scrolled {
  width: min(1060px, calc(100% - 28px));
  padding-block: 8px;
  background: rgba(255, 250, 241, 0.9);
  box-shadow: 0 18px 56px rgba(22, 35, 31, 0.12);
}

.site-header.is-scrolled .brand img {
  width: 64px;
  height: 64px;
  box-shadow:
    0 0 0 4px rgba(255, 255, 255, 0.86),
    0 10px 24px rgba(76, 45, 16, 0.14);
  transform: translateY(0);
}

.site-header.is-scrolled .brand {
  gap: 12px;
}

@media (max-width: 980px) {
  .site-header {
    position: sticky;
    top: 8px;
  }

  .brand img {
    width: 108px;
    height: 108px;
  }

  .site-header.is-scrolled .brand img {
    width: 60px;
    height: 60px;
  }
}

@media (max-width: 680px) {
  .brand img {
    width: 92px;
    height: 92px;
  }

  .site-header.is-scrolled .brand img {
    width: 56px;
    height: 56px;
  }
}

/* Mobile tour-card normalisation: featured days stack like every other card */

@media (max-width: 980px) {
  .tour-grid {
    grid-template-columns: 1fr;
  }

  .tour-card.featured-card {
    grid-column: auto;
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .tour-card.featured-card > img {
    height: 260px;
    min-height: 260px;
  }

  .tour-card.featured-card > div {
    padding: 0 8px 8px;
  }
}

@media (max-width: 680px) {
  .tour-card.featured-card > img {
    height: 220px;
    min-height: 220px;
  }
}
