:root {
  --ink: #17231f;
  --muted: #62716b;
  --cream: #fbf6ed;
  --paper: #fffdf8;
  --green: #0f4a3a;
  --green-2: #157157;
  --gold: #c3922f;
  --sky: #376f97;
  --coral: #bf5f45;
  --line: rgba(23, 35, 31, 0.12);
  --shadow: 0 24px 70px rgba(18, 33, 28, 0.16);
  --soft-shadow: 0 14px 42px rgba(18, 33, 28, 0.1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(180deg, rgba(255, 253, 248, 0.9), rgba(244, 235, 223, 0.92)),
    var(--cream);
  font-family: "DM Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  text-rendering: geometricPrecision;
  --travel-mx: 50vw;
  --travel-my: 28vh;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
}

button,
input,
select {
  font: inherit;
}

svg {
  width: 1em;
  height: 1em;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.travel-cursor-glow,
.travel-progress {
  position: fixed;
  pointer-events: none;
}

.travel-cursor-glow {
  left: var(--travel-mx);
  top: var(--travel-my);
  z-index: 4;
  width: 440px;
  height: 440px;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(240, 199, 106, 0.2), rgba(21, 113, 87, 0.11) 42%, transparent 68%);
  transform: translate(-50%, -50%);
  mix-blend-mode: screen;
  opacity: 0.78;
  transition: width 0.25s ease, height 0.25s ease, opacity 0.25s ease;
}

body.is-pressing .travel-cursor-glow {
  width: 520px;
  height: 520px;
  opacity: 0.92;
}

.travel-progress {
  top: 0;
  left: 0;
  z-index: 50;
  width: calc(var(--travel-progress, 0) * 100%);
  height: 3px;
  background: linear-gradient(90deg, var(--gold), #f0c76a, var(--green-2));
  box-shadow: 0 0 22px rgba(240, 199, 106, 0.58);
}

.container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.travel-nav {
  position: fixed;
  top: 18px;
  left: 50%;
  width: min(1120px, calc(100% - 48px));
  transform: translateX(-50%);
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 18px;
  background: rgba(9, 35, 29, 0.62);
  padding: 10px 12px;
  color: #fff;
  backdrop-filter: blur(18px);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.22);
  transition: transform 0.28s ease, background 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
}

.travel-nav.is-scrolled {
  background: rgba(7, 26, 21, 0.84);
  border-color: rgba(240, 199, 106, 0.28);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.3);
}

.brand-link,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
}

.brand-link img,
.footer-brand img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  background: #fff;
  padding: 2px;
}

.brand-link span span {
  color: #f0c76a;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-links a {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  border-radius: 999px;
  padding: 0 13px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.9rem;
  font-weight: 700;
  white-space: nowrap;
  transition: background 0.22s ease, color 0.22s ease, transform 0.22s ease;
}

.nav-links a:hover,
.nav-links .nav-pill {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.nav-links a:hover {
  transform: translateY(-2px);
}

.travel-hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  background: #071a15;
}

.travel-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(115deg, transparent 16%, rgba(240, 199, 106, 0.12) 18%, transparent 21%),
    linear-gradient(115deg, transparent 64%, rgba(255, 255, 255, 0.08) 66%, transparent 69%);
  transform: translateX(-24%);
  animation: heroSweep 10s ease-in-out infinite alternate;
  opacity: 0.72;
}

.travel-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 76px 76px;
  mask-image: linear-gradient(90deg, black, transparent 82%);
  opacity: 0.24;
}

.hero-media,
.hero-media img,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.08) contrast(0.96);
  transform: scale(1.03);
  animation: heroDrift 18s ease-in-out infinite alternate;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(5, 20, 16, 0.92), rgba(5, 20, 16, 0.64), rgba(12, 33, 35, 0.28)),
    linear-gradient(0deg, rgba(5, 20, 16, 0.94), rgba(5, 20, 16, 0.08) 56%, rgba(5, 20, 16, 0.46));
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 420px);
  gap: 32px;
  align-items: end;
  padding: 152px 0 124px;
}

.hero-copy {
  color: #fff;
  animation: fadeUp 0.85s ease both;
}

.hero-kicker,
.section-kicker,
.planner-label {
  display: inline-flex;
  align-items: center;
  margin-bottom: 14px;
  color: #f0c76a;
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-copy h1,
.section-head h2,
.intro-grid h2,
.planner-copy h2 {
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  letter-spacing: 0;
}

.hero-copy h1 {
  max-width: 780px;
  font-size: 6.6rem;
  line-height: 0.92;
}

.hero-copy p {
  max-width: 600px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.14rem;
  line-height: 1.7;
}

.hero-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 22px;
}

.hero-chips span {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.82);
  padding: 0 12px;
  font-size: 0.82rem;
  font-weight: 800;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.btn-main,
.btn-ghost,
.planner-submit,
.package-cta,
.package-cta-band a,
.testimonial-cta-band a,
.footer-actions a {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  border-radius: 999px;
  padding: 0 20px;
  font-weight: 900;
  overflow: hidden;
  isolation: isolate;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease, filter 0.22s ease;
}

.btn-main::before,
.btn-ghost::before,
.planner-submit::before,
.package-cta::before,
.package-cta-band a::before,
.testimonial-cta-band a::before,
.footer-actions a::before {
  content: "";
  position: absolute;
  inset: -2px;
  background: linear-gradient(110deg, transparent 0%, rgba(255, 255, 255, 0.42) 42%, transparent 70%);
  transform: translateX(-120%);
  transition: transform 0.55s ease;
  z-index: -1;
}

.btn-main:hover::before,
.btn-ghost:hover::before,
.planner-submit:hover::before,
.package-cta:hover::before,
.package-cta-band a:hover::before,
.testimonial-cta-band a:hover::before,
.footer-actions a:hover::before {
  transform: translateX(120%);
}

.btn-main {
  background: #f0c76a;
  color: #10211b;
  box-shadow: 0 16px 36px rgba(195, 146, 47, 0.26);
}

.btn-ghost {
  border: 1px solid rgba(255, 255, 255, 0.26);
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.hero-route-preview {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 680px;
  margin-top: 28px;
}

.hero-route-preview::before {
  content: "";
  position: absolute;
  left: 10%;
  right: 10%;
  top: 28px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(240, 199, 106, 0.7), transparent);
  animation: routePulse 2.8s ease-in-out infinite;
  z-index: 0;
}

.hero-route-preview article {
  position: relative;
  z-index: 1;
  overflow: hidden;
  min-height: 138px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
  isolation: isolate;
  animation: floatCard 5.5s ease-in-out infinite;
}

.hero-route-preview article:nth-child(2) {
  animation-delay: 0.45s;
}

.hero-route-preview article:nth-child(3) {
  animation-delay: 0.9s;
}

.hero-route-preview article::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(0deg, rgba(5, 20, 16, 0.82), transparent 74%),
    linear-gradient(135deg, rgba(15, 113, 87, 0.58), transparent 56%);
}

.hero-route-preview img {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.08);
  transition: transform 0.45s ease, filter 0.45s ease;
}

.hero-route-preview article:hover img {
  transform: scale(1.16);
  filter: saturate(1.16);
}

.hero-route-preview span,
.hero-route-preview strong {
  display: block;
  padding-inline: 14px;
}

.hero-route-preview span {
  padding-top: 72px;
  color: #f0c76a;
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.hero-route-preview strong {
  padding-bottom: 14px;
  margin-top: 5px;
  color: #fff;
  font-size: 0.92rem;
  line-height: 1.2;
}

.btn-main svg,
.btn-ghost svg {
  font-size: 1.1rem;
}

.quick-planner,
.budget-tool {
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 18px;
  background: rgba(10, 38, 31, 0.72);
  padding: 22px;
  color: #fff;
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow);
}

.quick-planner {
  position: relative;
  display: grid;
  gap: 14px;
  overflow: hidden;
  animation: panelIn 0.85s ease 0.12s both;
}

.quick-planner::before,
.budget-tool::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.16), transparent 34%);
  opacity: 0.76;
}

.quick-planner > *,
.budget-tool > * {
  position: relative;
  z-index: 1;
}

.planner-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  padding-bottom: 12px;
}

.planner-top strong {
  max-width: 120px;
  color: #fff;
  font-size: 1.05rem;
  line-height: 1.15;
  text-align: right;
}

.planner-visual-strip {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.3fr 0.9fr 0.9fr;
  gap: 8px;
}

.planner-visual-strip img {
  width: 100%;
  height: 74px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 12px;
  object-fit: cover;
  filter: saturate(1.08) contrast(0.96);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.18);
  transition: transform 0.28s ease, filter 0.28s ease;
}

.planner-visual-strip img:hover {
  transform: translateY(-3px) scale(1.02);
  filter: saturate(1.18) contrast(1);
}

.quick-planner label,
.budget-tool label {
  display: grid;
  gap: 8px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.82rem;
  font-weight: 800;
}

.quick-planner input,
.quick-planner select,
.budget-tool input,
.budget-tool select {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.26);
  color: #fff;
  outline: none;
  padding: 12px 13px;
  font-weight: 700;
}

.quick-planner option,
.budget-tool option {
  color: #17231f;
  background: #fff;
}

.planner-submit {
  border: 0;
  background: var(--green-2);
  color: #fff;
  box-shadow: 0 12px 30px rgba(21, 113, 87, 0.28);
}

.planner-submit:hover,
.package-cta:hover,
.btn-main:hover,
.btn-ghost:hover,
.package-cta-band a:hover,
.testimonial-cta-band a:hover,
.footer-actions a:hover {
  transform: translateY(-2px);
  filter: saturate(1.08);
}

.travel-ripple {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.54);
  pointer-events: none;
  transform: translate(-50%, -50%) scale(0);
  animation: ripplePop 0.68s ease-out forwards;
}

.btn-main > *,
.btn-ghost > *,
.planner-submit > *,
.package-cta > *,
.package-cta-band a > *,
.testimonial-cta-band a > *,
.footer-actions a > * {
  position: relative;
  z-index: 1;
}

.quick-planner.is-ready,
.budget-tool.is-ready {
  animation: panelReady 0.48s ease;
}

.btn-main:active,
.btn-ghost:active,
.planner-submit:active,
.package-cta:active,
.package-cta-band a:active,
.testimonial-cta-band a:active,
.footer-actions a:active {
  transform: translateY(0) scale(0.98);
}

.planner-note {
  margin: -2px 0 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.78rem;
  line-height: 1.55;
}

.hero-stats {
  position: absolute;
  z-index: 3;
  left: 50%;
  bottom: 0;
  width: min(1180px, calc(100% - 40px));
  transform: translateX(-50%);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-bottom: 0;
  border-radius: 18px 18px 0 0;
  background: rgba(10, 38, 31, 0.76);
  color: #fff;
  backdrop-filter: blur(18px);
  animation: fadeUp 0.85s ease 0.25s both;
}

.hero-stats div {
  padding: 18px 20px;
}

.hero-stats div + div {
  border-left: 1px solid rgba(255, 255, 255, 0.14);
}

.hero-stats strong,
.hero-stats span {
  display: block;
}

.hero-stats strong {
  font-size: 1.35rem;
}

.hero-stats span {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.82rem;
  font-weight: 700;
}

.section-band {
  padding: 86px 0;
}

.intro-band {
  background: var(--paper);
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.75fr) 1.25fr;
  gap: 36px;
  align-items: start;
}

.intro-grid h2,
.section-head h2,
.planner-copy h2 {
  color: #10211b;
  font-size: 3.2rem;
  line-height: 1;
}

.intro-copy {
  margin: 18px 0 0;
  color: var(--muted);
  line-height: 1.75;
}

.service-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.service-strip article,
.package-card,
.flow-grid article {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 18px 50px rgba(20, 34, 29, 0.08);
}

.service-strip article {
  padding: 22px;
  min-height: 186px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.service-strip article:hover {
  transform: translateY(-5px);
  border-color: rgba(15, 74, 58, 0.2);
  box-shadow: 0 24px 64px rgba(20, 34, 29, 0.12);
}

.service-strip svg {
  color: var(--green-2);
  font-size: 1.45rem;
}

.service-strip strong,
.service-strip span {
  display: block;
}

.service-strip strong {
  margin-top: 18px;
  font-size: 1.05rem;
}

.service-strip span {
  margin-top: 8px;
  color: var(--muted);
  line-height: 1.55;
}

.packages-section {
  background:
    linear-gradient(180deg, #f6eee3, #efe3d4);
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 28px;
}

.section-head.on-dark h2 {
  color: #fff;
}

.section-lead {
  max-width: 390px;
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.7;
}

.destination-showcase {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, #0d211c 0%, #143f35 58%, #213c42 100%);
  color: #fff;
}

.destination-showcase::before {
  content: "";
  position: absolute;
  inset: 26px 0 auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(240, 199, 106, 0.48), transparent);
}

.showcase-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr 1fr;
  grid-auto-rows: 230px;
  gap: 14px;
}

.showcase-item {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  background: #10211b;
  isolation: isolate;
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.22);
  transform: translateZ(0);
}

.showcase-large {
  grid-row: span 2;
}

.showcase-item img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transform: scale(1.04);
  transition: transform 0.45s, filter 0.45s;
}

.showcase-item::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(0deg, rgba(4, 18, 14, 0.86), transparent 62%),
    linear-gradient(135deg, rgba(9, 35, 29, 0.34), transparent 52%);
}

.showcase-item:hover img {
  transform: scale(1.1);
  filter: saturate(1.08);
}

.showcase-copy {
  position: absolute;
  inset: auto 18px 18px;
  z-index: 2;
}

.showcase-copy span {
  display: inline-flex;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  color: var(--green);
  padding: 6px 9px;
  font-size: 0.72rem;
  font-weight: 900;
}

.showcase-copy strong {
  display: block;
  margin-top: 10px;
  color: #fff;
  font-size: 1.3rem;
  line-height: 1.1;
}

.showcase-large .showcase-copy strong {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 2.7rem;
}

.showcase-copy p {
  max-width: 390px;
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.6;
}

.filter-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.filter-btn {
  position: relative;
  min-height: 40px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--muted);
  padding: 0 14px;
  font-weight: 900;
  cursor: pointer;
  overflow: hidden;
  isolation: isolate;
  box-shadow: 0 8px 22px rgba(18, 33, 28, 0.04);
  transition: background 0.2s, color 0.2s, transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}

.filter-btn.active {
  background: var(--green);
  color: #fff;
  border-color: rgba(15, 74, 58, 0.5);
  box-shadow: 0 14px 34px rgba(15, 74, 58, 0.18);
}

.filter-btn:hover {
  transform: translateY(-2px);
  border-color: rgba(15, 74, 58, 0.26);
}

.filter-btn.is-popped {
  animation: filterPop 0.38s ease;
}

.package-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  perspective: 1200px;
}

.package-grid.is-switching .package-card {
  animation: packageSwitch 0.42s ease both;
}

.package-card {
  position: relative;
  overflow: hidden;
  transform-style: preserve-3d;
  will-change: transform;
  isolation: isolate;
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s, filter 0.25s;
}

.package-card::after {
  content: "";
  position: absolute;
  inset: auto 18px 0;
  height: 56px;
  z-index: -1;
  border-radius: 999px;
  background: rgba(21, 113, 87, 0.18);
  filter: blur(22px);
  opacity: 0;
  transition: opacity 0.25s ease;
}

.package-card:hover {
  transform: translateY(-6px);
  border-color: rgba(15, 74, 58, 0.22);
  box-shadow: 0 24px 70px rgba(18, 33, 28, 0.16);
}

.package-card:hover::after,
.package-card:focus-within::after {
  opacity: 1;
}

.package-media {
  position: relative;
  min-height: 190px;
  background: #0f4a3a;
  overflow: hidden;
}

.package-media::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(110deg, transparent 20%, rgba(255, 255, 255, 0.14) 36%, transparent 52%);
  transform: translateX(-120%);
  transition: transform 0.55s ease;
}

.package-media img {
  width: 100%;
  height: 100%;
  min-height: 190px;
  object-fit: cover;
  display: block;
  filter: saturate(1.02) contrast(0.96);
  transform: scale(1.04);
  transition: transform 0.35s, filter 0.35s;
}

.package-card:hover .package-media img {
  transform: scale(1.1);
}

.package-card:hover .package-media::before {
  transform: translateX(120%);
}

.package-media::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(0deg, rgba(5, 17, 14, 0.86), transparent 62%),
    linear-gradient(135deg, rgba(15, 74, 58, 0.72), transparent 54%);
}

.package-media.city::after { background: linear-gradient(0deg, rgba(10, 28, 45, 0.86), transparent 62%), linear-gradient(135deg, rgba(55, 111, 151, 0.72), transparent 54%); }
.package-media.coast::after { background: linear-gradient(0deg, rgba(20, 61, 70, 0.86), transparent 62%), linear-gradient(135deg, rgba(191, 95, 69, 0.68), transparent 54%); }
.package-media.mountain::after { background: linear-gradient(0deg, rgba(22, 35, 28, 0.88), transparent 62%), linear-gradient(135deg, rgba(96, 76, 48, 0.72), transparent 54%); }
.package-media.corporate::after { background: linear-gradient(0deg, rgba(23, 35, 31, 0.88), transparent 62%), linear-gradient(135deg, rgba(55, 111, 151, 0.62), transparent 54%); }
.package-media.study::after { background: linear-gradient(0deg, rgba(41, 36, 26, 0.88), transparent 62%), linear-gradient(135deg, rgba(195, 146, 47, 0.6), transparent 54%); }
.package-media.asia::after { background: linear-gradient(0deg, rgba(5, 29, 30, 0.88), transparent 62%), linear-gradient(135deg, rgba(15, 113, 87, 0.74), transparent 54%); }
.package-media.europe::after { background: linear-gradient(0deg, rgba(20, 28, 48, 0.86), transparent 62%), linear-gradient(135deg, rgba(55, 111, 151, 0.72), transparent 54%); }
.package-media.africa::after { background: linear-gradient(0deg, rgba(32, 29, 20, 0.88), transparent 62%), linear-gradient(135deg, rgba(195, 146, 47, 0.66), transparent 54%); }
.package-media.desert::after { background: linear-gradient(0deg, rgba(39, 25, 15, 0.88), transparent 62%), linear-gradient(135deg, rgba(191, 95, 69, 0.72), transparent 54%); }

.package-badge {
  position: absolute;
  left: 14px;
  bottom: 14px;
  z-index: 2;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--green);
  padding: 7px 10px;
  font-size: 0.72rem;
  font-weight: 900;
}

.package-best {
  position: absolute;
  right: 14px;
  bottom: 14px;
  z-index: 2;
  border-radius: 999px;
  background: rgba(8, 26, 21, 0.7);
  color: #fff;
  padding: 7px 10px;
  font-size: 0.72rem;
  font-weight: 900;
  backdrop-filter: blur(10px);
}

.package-body {
  padding: 20px;
}

.package-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 14px;
}

.package-meta span {
  border-radius: 999px;
  background: #f2ebdf;
  color: #5d655f;
  padding: 6px 9px;
  font-size: 0.72rem;
  font-weight: 800;
}

.package-card h3 {
  margin: 0;
  font-size: 1.28rem;
  line-height: 1.18;
}

.package-card p {
  min-height: 78px;
  margin: 12px 0 0;
  color: var(--muted);
  line-height: 1.6;
}

.package-points {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
  margin: 16px 0 0;
  padding: 0;
}

.package-points li {
  border-radius: 999px;
  background: #f7f0e5;
  color: #59655f;
  padding: 6px 9px;
  font-size: 0.72rem;
  font-weight: 800;
}

.package-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-top: 18px;
}

.package-price {
  display: grid;
  gap: 2px;
}

.package-price span {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 800;
}

.package-price strong {
  color: var(--green);
  font-size: 1.16rem;
}

.package-cta {
  min-height: 40px;
  border-radius: 999px;
  background: var(--gold);
  color: #fff;
  padding: 0 13px;
  font-size: 0.86rem;
  font-weight: 900;
  box-shadow: 0 12px 26px rgba(195, 146, 47, 0.18);
}

.package-note {
  margin-top: 18px;
  border: 1px solid rgba(15, 74, 58, 0.14);
  border-radius: 14px;
  background: rgba(255, 253, 248, 0.72);
  color: var(--muted);
  padding: 14px 16px;
  line-height: 1.6;
}

.package-note strong {
  color: var(--green);
}

.package-cta-band {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 18px;
  border-radius: 18px;
  background: var(--green);
  color: #fff;
  padding: 22px;
  box-shadow: 0 22px 60px rgba(15, 74, 58, 0.18);
}

.package-cta-band::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(120deg, transparent 14%, rgba(255, 255, 255, 0.1) 28%, transparent 44%);
  animation: heroSweep 7s ease-in-out infinite alternate;
}

.package-cta-band span,
.package-cta-band strong {
  display: block;
}

.package-cta-band span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.84rem;
  font-weight: 800;
}

.package-cta-band strong {
  margin-top: 4px;
  font-size: 1.22rem;
}

.package-cta-band a {
  min-height: 44px;
  border-radius: 999px;
  background: #f0c76a;
  color: #10211b;
  padding: 0 16px;
  font-weight: 900;
  white-space: nowrap;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.16);
}

.promise-section {
  background: #fffdf8;
}

.promise-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  align-items: stretch;
}

.promise-panel,
.trip-board {
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #fff;
  box-shadow: var(--soft-shadow);
}

.promise-panel {
  padding: 30px;
}

.promise-panel h2 {
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 3rem;
  line-height: 1;
}

.promise-list {
  display: grid;
  gap: 12px;
  list-style: none;
  margin: 24px 0 0;
  padding: 0;
}

.promise-list li {
  border-left: 4px solid var(--gold);
  background: #fbf6ed;
  border-radius: 12px;
  padding: 15px 16px;
}

.promise-list strong,
.promise-list span {
  display: block;
}

.promise-list span {
  margin-top: 5px;
  color: var(--muted);
  line-height: 1.55;
}

.trip-board {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  padding: 18px;
  background:
    linear-gradient(135deg, rgba(15, 74, 58, 0.08), transparent 44%),
    #fff;
}

.board-card {
  display: grid;
  align-content: space-between;
  min-height: 150px;
  border-radius: 16px;
  background: #f5efe5;
  padding: 18px;
}

.board-card.featured {
  background: var(--green);
  color: #fff;
}

.board-card.accent {
  background: var(--gold);
  color: #fff;
}

.board-card span {
  color: inherit;
  opacity: 0.72;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.board-card strong {
  display: block;
  margin-top: 28px;
  font-size: 1.12rem;
  line-height: 1.25;
}

.planner-section {
  background:
    linear-gradient(135deg, #10211b 0%, #123a31 56%, #203236 100%);
  color: #fff;
}

.planner-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 36px;
  align-items: center;
}

.planner-copy h2,
.planner-copy p {
  color: #fff;
}

.planner-copy p {
  max-width: 560px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.75;
}

.budget-tool {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  overflow: hidden;
}

.budget-tool label:nth-child(3),
.budget-result,
.budget-tool .planner-submit {
  grid-column: 1 / -1;
}

.budget-result {
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.1);
  padding: 18px;
}

.budget-result span,
.budget-result p {
  color: rgba(255, 255, 255, 0.66);
}

.budget-result strong {
  display: block;
  margin-top: 6px;
  font-size: 3.25rem;
  line-height: 1;
}

.budget-result p {
  margin: 8px 0 0;
}

.flow-section {
  background: #f7f0e5;
}

.compact-head {
  margin-bottom: 22px;
}

.flow-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.flow-grid article {
  padding: 22px;
  position: relative;
  overflow: hidden;
}

.flow-grid article::after {
  content: "";
  position: absolute;
  inset: auto 18px 0;
  height: 4px;
  border-radius: 999px 999px 0 0;
  background: var(--gold);
  opacity: 0.55;
}

.flow-grid span {
  display: inline-flex;
  color: var(--coral);
  font-weight: 900;
}

.flow-grid strong {
  display: block;
  margin-top: 18px;
  font-size: 1.02rem;
}

.flow-grid p {
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.55;
}

.travel-testimonials {
  background:
    linear-gradient(180deg, #fffdf8 0%, #eef5f0 100%);
}

.testimonial-lead {
  max-width: 430px;
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.testimonial-stage {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 18px;
  align-items: stretch;
}

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

.testimonial-card {
  position: relative;
  min-height: 300px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 20px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #fff;
  padding: 24px;
  box-shadow: var(--soft-shadow);
  overflow: hidden;
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
}

.testimonial-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: var(--gold);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.28s ease;
}

.testimonial-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 0%, rgba(255, 255, 255, 0.36) 48%, transparent 62%);
  transform: translateX(-130%);
  pointer-events: none;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  border-color: rgba(15, 74, 58, 0.2);
  box-shadow: 0 24px 70px rgba(18, 33, 28, 0.14);
}

.testimonial-card:hover::before {
  transform: scaleY(1);
}

.testimonial-card:hover::after {
  animation: testimonialSweep 0.9s ease;
}

.travel-testimonials .testimonial-card.reveal-item.is-visible {
  animation: testimonialCardRise 0.7s cubic-bezier(.2,.9,.3,1) both;
}

.travel-testimonials .testimonial-card.reveal-item.is-visible:nth-child(2) {
  animation-delay: 0.08s;
}

.travel-testimonials .testimonial-card.reveal-item.is-visible:nth-child(3) {
  animation-delay: 0.16s;
}

.testimonial-card.featured {
  grid-column: 1 / -1;
  min-height: 230px;
  background: var(--green);
  color: #fff;
}

.testimonial-meta,
.testimonial-author {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.testimonial-meta span {
  border-radius: 999px;
  background: #f6eee3;
  color: var(--green);
  padding: 7px 10px;
  font-size: 0.72rem;
  font-weight: 900;
}

.testimonial-card.featured .testimonial-meta span {
  background: rgba(255, 255, 255, 0.16);
  color: #fff;
}

.testimonial-meta strong {
  color: var(--gold);
  font-size: 1.05rem;
  animation: testimonialScorePulse 2.6s ease-in-out infinite;
}

.testimonial-card.featured .testimonial-meta strong {
  color: #f0c76a;
}

.testimonial-card p {
  position: relative;
  margin: 0;
  color: var(--muted);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.22rem;
  line-height: 1.5;
  z-index: 1;
}

.testimonial-card.featured p {
  color: rgba(255, 255, 255, 0.86);
}

.testimonial-author {
  position: relative;
  align-items: flex-end;
  border-top: 1px solid var(--line);
  padding-top: 16px;
  z-index: 1;
}

.testimonial-card.featured .testimonial-author {
  border-color: rgba(255, 255, 255, 0.16);
}

.testimonial-author strong,
.testimonial-author span {
  display: block;
}

.testimonial-author strong {
  color: var(--ink);
}

.testimonial-card.featured .testimonial-author strong {
  color: #fff;
}

.testimonial-author span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.78rem;
}

.testimonial-card.featured .testimonial-author span {
  color: rgba(255, 255, 255, 0.62);
}

.testimonial-visual {
  position: relative;
  min-height: 500px;
  overflow: hidden;
  border-radius: 22px;
  background:
    linear-gradient(150deg, rgba(15, 74, 58, 0.94), rgba(32, 50, 54, 0.96));
  border: 1px solid rgba(240, 199, 106, 0.24);
  box-shadow: 0 26px 80px rgba(18, 33, 28, 0.18);
  animation: testimonialFloatPanel 7.5s ease-in-out infinite;
}

.testimonial-route-line {
  position: absolute;
  inset: 38px 30px auto;
  height: 2px;
  background: linear-gradient(90deg, transparent, #f0c76a, transparent);
}

.testimonial-route-line::before,
.testimonial-route-line::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #f0c76a;
  transform: translateY(-50%);
  box-shadow: 0 0 0 9px rgba(240, 199, 106, 0.12);
}

.testimonial-route-line::before { left: 18%; }
.testimonial-route-line::after {
  right: 18%;
  animation: testimonialRoutePulse 2.4s ease-in-out infinite;
}

.travel-photo-stack {
  position: absolute;
  inset: 70px 24px 104px;
}

.travel-photo-stack img {
  position: absolute;
  width: 72%;
  height: 190px;
  display: block;
  object-fit: cover;
  border-radius: 18px;
  border: 2px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.28);
  transform: rotate(var(--rot, 0deg));
  animation: testimonialPhotoLift 6.5s ease-in-out infinite;
}

.travel-photo-stack img:nth-child(1) {
  top: 0;
  left: 0;
  --rot: -5deg;
}

.travel-photo-stack img:nth-child(2) {
  top: 105px;
  right: 0;
  --rot: 4deg;
  animation-delay: 0.35s;
}

.travel-photo-stack img:nth-child(3) {
  left: 18px;
  bottom: 0;
  --rot: -2deg;
  animation-delay: 0.7s;
}

.testimonial-map-card {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 24px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: #fff;
  padding: 16px;
  backdrop-filter: blur(14px);
}

.testimonial-map-card span {
  display: block;
  color: #f0c76a;
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.testimonial-map-card strong {
  display: block;
  margin-top: 6px;
  line-height: 1.25;
}

.testimonial-cta-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 18px;
  border-radius: 18px;
  background: #10211b;
  color: #fff;
  padding: 22px;
  box-shadow: 0 22px 60px rgba(18, 33, 28, 0.16);
}

.testimonial-cta-band span,
.testimonial-cta-band strong {
  display: block;
}

.testimonial-cta-band span {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.82rem;
  font-weight: 900;
}

.testimonial-cta-band strong {
  margin-top: 4px;
  font-size: 1.15rem;
}

.testimonial-cta-band a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border-radius: 999px;
  background: #f0c76a;
  color: #10211b;
  padding: 0 16px;
  font-weight: 900;
  white-space: nowrap;
}

@keyframes testimonialSweep {
  from { transform: translateX(-130%); }
  to { transform: translateX(130%); }
}

@keyframes testimonialCardRise {
  from { opacity: 0; transform: translateY(24px) scale(0.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes testimonialScorePulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.08); }
}

@keyframes testimonialFloatPanel {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-7px); }
}

@keyframes testimonialPhotoLift {
  0%, 100% { transform: translateY(0) rotate(var(--rot, 0deg)); }
  50% { transform: translateY(-7px) rotate(var(--rot, 0deg)); }
}

@keyframes testimonialRoutePulse {
  0%, 100% { opacity: 0.55; transform: translateY(-50%) scale(1); }
  50% { opacity: 1; transform: translateY(-50%) scale(1.18); }
}

.travel-footer {
  background: #081a15;
  color: #fff;
  padding: 42px 0 30px;
}

.faq-section {
  background: var(--paper);
}

.faq-layout {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 28px;
}

.faq-layout h2 {
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 3rem;
  line-height: 1;
}

.faq-list {
  display: grid;
  gap: 10px;
}

.faq-list details {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  padding: 16px 18px;
  box-shadow: 0 12px 35px rgba(18, 33, 28, 0.06);
}

.faq-list summary {
  cursor: pointer;
  color: var(--green);
  font-weight: 900;
}

.faq-list p {
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.6;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.footer-brand img {
  width: 46px;
  height: 46px;
}

.travel-footer p {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.66);
}

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

.footer-actions a {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  padding: 0 13px;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 800;
}

.photo-credit {
  margin-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 16px;
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.76rem;
  line-height: 1.7;
}

.photo-credit a {
  color: rgba(255, 255, 255, 0.72);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.floating-wa {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 30;
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  box-shadow: 0 18px 40px rgba(16, 60, 44, 0.34);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
  animation: waPulse 3.4s ease-in-out infinite;
}

.floating-wa:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 24px 54px rgba(16, 60, 44, 0.42);
}

.floating-wa svg {
  font-size: 1.7rem;
}

:focus-visible {
  outline: 3px solid rgba(195, 146, 47, 0.62);
  outline-offset: 4px;
}

.reveal-item {
  opacity: 0;
  transform: translateY(20px);
  filter: blur(6px);
  transition: opacity 0.65s ease, transform 0.65s ease, filter 0.65s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  transition-delay: var(--reveal-delay, 0ms);
}

.reveal-item.is-visible {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

.package-card.reveal-item.is-visible:hover {
  transform: translateY(-6px);
}

.service-strip article.reveal-item.is-visible:hover {
  transform: translateY(-5px);
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes panelIn {
  from {
    opacity: 0;
    transform: translateY(24px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes heroDrift {
  from {
    transform: scale(1.03) translate3d(0, 0, 0);
  }
  to {
    transform: scale(1.11) translate3d(-1.8%, -1.2%, 0);
  }
}

@keyframes heroSweep {
  from {
    transform: translateX(-28%);
  }
  to {
    transform: translateX(28%);
  }
}

@keyframes routePulse {
  0%,
  100% {
    opacity: 0.28;
    transform: scaleX(0.78);
  }
  50% {
    opacity: 1;
    transform: scaleX(1);
  }
}

@keyframes floatCard {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-7px);
  }
}

@keyframes waPulse {
  0%,
  100% {
    box-shadow: 0 18px 40px rgba(16, 60, 44, 0.34);
  }
  50% {
    box-shadow: 0 18px 40px rgba(16, 60, 44, 0.34), 0 0 0 10px rgba(37, 211, 102, 0.1);
  }
}

@keyframes ripplePop {
  to {
    opacity: 0;
    transform: translate(-50%, -50%) scale(18);
  }
}

@keyframes filterPop {
  0% {
    transform: translateY(-1px) scale(1);
  }
  48% {
    transform: translateY(-3px) scale(1.05);
  }
  100% {
    transform: translateY(-1px) scale(1);
  }
}

@keyframes packageSwitch {
  from {
    opacity: 0;
    transform: translateY(14px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes panelReady {
  0%,
  100% {
    box-shadow: var(--shadow);
  }
  50% {
    box-shadow: var(--shadow), 0 0 0 6px rgba(240, 199, 106, 0.16);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }

  .reveal-item {
    opacity: 1;
    transform: none;
    filter: none;
  }

  .travel-cursor-glow {
    display: none;
  }
}

@media (max-width: 980px) {
  .hero-content,
  .intro-grid,
  .planner-layout {
    grid-template-columns: 1fr;
  }

  .hero-content {
    padding-top: 130px;
  }

  .hero-route-preview {
    grid-template-columns: repeat(3, minmax(120px, 1fr));
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .package-grid,
  .service-strip,
  .flow-grid,
  .testimonial-grid,
  .showcase-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .testimonial-stage {
    grid-template-columns: 1fr;
  }

  .testimonial-visual {
    min-height: 390px;
  }

  .travel-photo-stack img {
    width: 58%;
  }

  .showcase-large {
    grid-column: 1 / -1;
    grid-row: span 1;
  }

  .promise-layout,
  .faq-layout {
    grid-template-columns: 1fr;
  }

  .section-head {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 680px) {
  .travel-nav {
    top: 10px;
    left: 50%;
    width: calc(100% - 20px);
    align-items: flex-start;
    flex-direction: column;
  }

  .nav-links {
    width: 100%;
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .hero-content {
    width: min(100% - 24px, 1180px);
    padding: 154px 0 130px;
  }

  .hero-copy h1 {
    font-size: 4rem;
  }

  .hero-copy p {
    font-size: 1rem;
  }

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

  .hero-route-preview::before {
    display: none;
  }

  .hero-route-preview article {
    min-height: 112px;
  }

  .hero-route-preview span {
    padding-top: 52px;
  }

  .quick-planner {
    padding: 16px;
  }

  .hero-stats {
    width: calc(100% - 24px);
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-stats div {
    padding: 12px 10px;
  }

  .hero-stats div + div {
    border-left: 0;
  }

  .hero-stats strong {
    font-size: 1.05rem;
  }

  .hero-stats span {
    font-size: 0.7rem;
  }

  .container {
    width: min(100% - 28px, 1180px);
  }

  .section-band {
    padding: 62px 0;
  }

  .package-grid,
  .service-strip,
  .flow-grid,
  .testimonial-grid,
  .budget-tool,
  .trip-board,
  .showcase-grid {
    grid-template-columns: 1fr;
  }

  .showcase-grid {
    grid-auto-rows: 250px;
  }

  .package-cta-band {
    align-items: flex-start;
    flex-direction: column;
  }

  .testimonial-card {
    min-height: 0;
    padding: 22px;
  }

  .testimonial-card.featured {
    grid-column: auto;
  }

  .testimonial-card p {
    font-size: 1.08rem;
  }

  .testimonial-visual {
    min-height: 330px;
    border-radius: 18px;
  }

  .travel-photo-stack {
    inset: 62px 18px 96px;
  }

  .travel-photo-stack img {
    width: 66%;
    height: 132px;
    border-radius: 14px;
  }

  .travel-photo-stack img:nth-child(2) {
    top: 76px;
  }

  .travel-photo-stack img:nth-child(3) {
    left: 12px;
  }

  .testimonial-cta-band {
    align-items: flex-start;
    flex-direction: column;
  }

  .intro-grid h2,
  .section-head h2,
  .planner-copy h2,
  .promise-panel h2,
  .faq-layout h2 {
    font-size: 2.25rem;
  }

  .budget-result strong {
    font-size: 2.4rem;
  }

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

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