:root {
  --orange: #ff6800;
  --orange-2: #ff8a1f;
  --orange-deep: #e85d00;
  --black: #0c0f12;
  --charcoal: #14191e;
  --ink: #11161c;
  --muted: #8b949e;
  --line: #e8eaed;
  --light: #f4f5f7;
  --white: #fff;
  --radius: 18px;
  --radius-sm: 14px;
  --shadow: 0 18px 50px rgba(0, 0, 0, 0.22);
  --shadow-soft: 0 12px 32px rgba(15, 23, 32, 0.08);
  --container: min(1220px, calc(100% - 48px));
  --header-h: 88px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 88px; }
body {
  margin: 0;
  font-family: "Plus Jakarta Sans", ui-sans-serif, system-ui, sans-serif;
  color: var(--white);
  background: var(--black);
  line-height: 1.5;
}
a { text-decoration: none; color: inherit; }
img { display: block; width: 100%; max-width: 100%; }
button, input, select { font: inherit; }
.container { width: var(--container); margin-inline: auto; }
.fi { display: inline-flex; align-items: center; justify-content: center; line-height: 1; }

.eyebrow {
  color: var(--orange);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.18em;
  display: inline-block;
}
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  color: var(--orange);
  white-space: nowrap;
}
.text-link i { font-size: 13px; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 999px;
  padding: 13px 22px;
  font-weight: 700;
  font-size: 14px;
  border: 0;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}
.btn:hover { transform: translateY(-1px); filter: brightness(1.05); }
.btn-orange {
  background: linear-gradient(135deg, var(--orange), var(--orange-2));
  color: #fff;
  box-shadow: 0 8px 18px rgba(255, 104, 0, 0.22);
}
.btn i { font-size: 14px; }

/* Header */
.site-header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 40;
  transition: background 0.25s ease, backdrop-filter 0.25s ease;
}
.site-header.scrolled {
  position: fixed;
  background: rgba(12, 15, 18, 0.86);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.nav-wrap {
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.brand img { width: 178px; height: auto; }
.desktop-nav {
  display: flex;
  gap: 28px;
  font-size: 14px;
  font-weight: 500;
}
.desktop-nav a {
  opacity: 0.9;
  position: relative;
}
.desktop-nav a:hover { color: var(--orange); opacity: 1; }
.nav-actions { display: flex; align-items: center; gap: 6px; }
.icon-btn, .menu-btn, .lang-btn {
  border: 0;
  background: transparent;
  color: white;
  cursor: pointer;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  transition: background 0.2s ease;
}
.icon-btn:hover, .lang-btn:hover, .menu-btn:hover { background: rgba(255, 255, 255, 0.08); }
.icon-btn i, .menu-btn i { font-size: 18px; }
.lang { position: relative; }
.lang-btn {
  width: auto;
  padding: 0 8px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  display: flex;
  align-items: center;
  gap: 2px;
}
.lang-btn i { font-size: 12px; }
.lang-menu {
  position: absolute;
  right: 0;
  top: calc(100% + 8px);
  margin: 0;
  padding: 8px;
  list-style: none;
  background: #111;
  border: 1px solid #2a2d31;
  border-radius: 12px;
  min-width: 168px;
  box-shadow: var(--shadow);
}
.lang-menu button {
  width: 100%;
  text-align: left;
  background: none;
  border: 0;
  color: #fff;
  padding: 8px 10px;
  border-radius: 8px;
  cursor: pointer;
}
.lang-menu button:hover { background: #1c2126; }
.menu-btn { display: none; }
.mobile-menu { display: none; }

/* Hero */
.hero {
  min-height: 100vh;
  min-height: 100dvh;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hero-media {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background: #0c0f12;
}
.hero-video {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.hero-video iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 177.78vh;
  height: 100vh;
  min-width: 100%;
  min-height: 56.25vw;
  border: 0;
  transform: translate(-50%, -50%) scale(1.18);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: url("../images/hero/hero-machupicchu.jpg") center / cover no-repeat;
  transform: scale(1.04);
  z-index: 1;
  transition: opacity 0.9s ease;
}
.hero.is-video-ready .hero-bg { opacity: 0; }
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(5, 8, 10, 0.82) 0%, rgba(5, 8, 10, 0.48) 38%, rgba(5, 8, 10, 0.12) 68%, rgba(5, 8, 10, 0.28)),
    linear-gradient(0deg, rgba(5, 8, 10, 0.78) 0%, transparent 42%);
}
.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  padding-top: 108px;
  padding-bottom: 72px;
  flex: 1;
}
.hero-copy { max-width: 720px; }
.hero h1 {
  font-size: clamp(48px, 6.4vw, 84px);
  line-height: 0.94;
  margin: 14px 0 18px;
  letter-spacing: -0.055em;
  font-weight: 800;
}
.hero h1 span, .story h2 span { color: var(--orange); }
.hero p {
  font-size: 18px;
  line-height: 1.6;
  color: #e8eaed;
  max-width: 560px;
  margin: 0;
  font-weight: 400;
}
.search-card {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr auto;
  background: #fff;
  border-radius: 20px;
  padding: 8px;
  margin-top: 32px;
  box-shadow: var(--shadow);
  align-items: center;
}
.search-card label {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px 16px;
  border-right: 1px solid var(--line);
  color: #111;
  min-width: 0;
}
.search-card label i {
  font-size: 18px;
  color: var(--orange);
  flex-shrink: 0;
}
.search-card span { display: flex; flex-direction: column; min-width: 0; width: 100%; }
.search-card small {
  font-size: 11px;
  font-weight: 700;
  color: #8a9199;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.search-card input,
.search-card select {
  border: 0;
  outline: none;
  width: 100%;
  height: 26px;
  background: transparent;
  color: #1a1f24;
  font-weight: 600;
  padding: 0;
}
.search-card .btn { height: 48px; padding-inline: 22px; }
.hero-features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 28px;
}
.hero-features div {
  display: flex;
  gap: 10px;
  align-items: center;
}
.hero-features i {
  font-size: 22px;
  color: var(--orange);
  flex-shrink: 0;
}
.hero-features span {
  font-size: 13px;
  color: #fff;
  line-height: 1.3;
  font-weight: 600;
}
.hero-meta {
  position: relative;
  z-index: 2;
  padding-bottom: 28px;
}
.hero-meta-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
}
.hero-pager {
  display: flex;
  align-items: center;
  gap: 12px;
  letter-spacing: 0.08em;
}
.hero-pager .pager-line {
  width: 56px;
  height: 1px;
  background: rgba(255, 255, 255, 0.45);
  position: relative;
  display: inline-block;
}
.hero-pager .pager-line:after {
  content: "";
  position: absolute;
  left: 0;
  top: -1px;
  width: 28%;
  height: 3px;
  background: var(--orange);
  border-radius: 99px;
}
.hero-place {
  display: flex;
  align-items: center;
  gap: 6px;
}
.hero-place i { font-size: 14px; color: var(--orange); }

/* Sections */
.section { padding: 72px 0; }
.dark-section {
  background: #101417;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.dark-section::before,
.plan::before,
.site-footer::before {
  content: "";
  position: absolute;
  width: min(140vw, 1280px);
  height: min(140vw, 1280px);
  background: url("../images/branding/isotipo.png") center / contain no-repeat;
  opacity: 0.04;
  pointer-events: none;
  z-index: 0;
}
.dark-section::before {
  right: -18%;
  top: -32%;
}
.dark-section > *,
.plan > *,
.site-footer > * {
  position: relative;
  z-index: 1;
}
.light-section { background: #fff; color: var(--ink); }
.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 28px;
}
.section-head h2 {
  font-size: clamp(28px, 3vw, 40px);
  margin: 6px 0 0;
  letter-spacing: -0.03em;
  font-weight: 800;
}

.cards { display: grid; gap: 14px; }
.destinations-grid { grid-template-columns: repeat(6, 1fr); }
.card, .mini-card {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  min-height: 248px;
  background: #222;
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.18);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.card:hover, .mini-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.28);
}
.card:after, .mini-card:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 42%, rgba(0, 0, 0, 0.82));
}
.card img, .mini-card img {
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
  transition: transform 0.45s ease;
}
.card:hover img, .mini-card:hover img { transform: scale(1.07); }
.card > div {
  position: absolute;
  z-index: 2;
  left: 16px;
  right: 14px;
  bottom: 14px;
}
.card h3 { margin: 0; font-size: 20px; font-weight: 800; }
.card p { margin: 3px 0 0; color: #e5e7eb; font-size: 13px; }

.experience-grid { grid-template-columns: repeat(8, 1fr); }
.mini-card { min-height: 196px; }
.mini-card span {
  position: absolute;
  z-index: 2;
  left: 12px;
  right: 10px;
  bottom: 12px;
  font-size: 13px;
  font-weight: 800;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 6px;
}
.mini-card span i {
  font-size: 15px;
  color: var(--orange);
  flex-shrink: 0;
}

/* Story */
.story {
  position: relative;
  overflow: hidden;
  background: #0e1216;
}
.story-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
}
.story-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8, 10, 12, 0.9) 0%, rgba(8, 10, 12, 0.8) 48%, rgba(8, 10, 12, 0.76) 100%);
  pointer-events: none;
}
.story-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 28px;
  padding: 44px 0;
}
.story-copy {
  position: relative;
  z-index: 1;
  max-width: 520px;
}
.story-copy .eyebrow { margin-bottom: 14px; }
.story h2 {
  font-size: clamp(32px, 3.6vw, 48px);
  line-height: 1.05;
  letter-spacing: -0.045em;
  margin: 0 0 14px;
  font-weight: 800;
}
.story h2 span {
  display: block;
  color: var(--orange);
}
.story p {
  max-width: 420px;
  color: #e6eaee;
  line-height: 1.6;
  margin: 0 0 22px;
  font-size: 15px;
}
.story-aside {
  display: grid;
  gap: 14px;
}
.stats {
  background: rgba(10, 13, 16, 0.92);
  backdrop-filter: blur(16px);
  border-radius: 18px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
}
.stats article {
  padding: 18px 18px;
  border-right: 1px solid rgba(255, 255, 255, 0.07);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.stats article:nth-child(2n) { border-right: 0; }
.stats article:nth-child(n + 3) { border-bottom: 0; }
.stat-ico {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(255, 104, 0, 0.16);
  color: var(--orange);
  display: grid;
  place-items: center;
  margin-bottom: 8px;
  font-size: 15px;
}
.stats b {
  display: block;
  font-size: 26px;
  line-height: 1;
  color: #fff;
  letter-spacing: -0.04em;
  margin-bottom: 4px;
}
.stats article > span:not(.stat-ico) {
  font-size: 13px;
  color: #b4bbc3;
  line-height: 1.35;
}
.orange-panel {
  background: linear-gradient(135deg, var(--orange) 0%, #ff8a1f 100%);
  padding: 22px 22px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  min-height: 118px;
  border-radius: 18px;
  position: relative;
  overflow: hidden;
}
.orange-kicker {
  margin: 0 0 8px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.78);
}
.orange-panel h3 {
  font-size: clamp(24px, 2vw, 32px);
  line-height: 1.05;
  margin: 0;
  font-weight: 800;
  letter-spacing: -0.03em;
}
.orange-logo {
  width: 100px;
  height: auto;
  opacity: 0.95;
  flex-shrink: 0;
  align-self: flex-end;
}

/* Testimonials */
.testimonials { background: var(--light); color: var(--ink); }
.t-controls { display: flex; gap: 8px; }
.t-nav {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid #dfe3e8;
  background: #fff;
  color: var(--ink);
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}
.t-nav:hover {
  background: var(--orange);
  border-color: var(--orange);
  color: #fff;
}
.t-nav i { font-size: 16px; }
.t-viewport { overflow: hidden; }
.t-track {
  display: flex;
  gap: 20px;
  width: 100%;
  transition: transform 0.5s cubic-bezier(0.22, 0.7, 0.3, 1);
}
.t-card {
  flex: 0 0 calc((100% - 40px) / 3);
  min-width: 0;
  background: #fff;
  border: 1px solid #eceff2;
  border-radius: 20px;
  padding: 28px 26px 24px;
  box-shadow: 0 12px 32px rgba(15, 23, 32, 0.06);
  display: flex;
  flex-direction: column;
  min-height: 292px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.t-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(15, 23, 32, 0.1);
}
.t-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}
.quote-ico {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: rgba(255, 104, 0, 0.1);
  color: var(--orange);
  display: grid;
  place-items: center;
  font-size: 18px;
}
.stars {
  color: var(--orange);
  display: flex;
  gap: 3px;
  font-size: 13px;
}
.t-card p {
  margin: 0;
  color: #3a4450;
  font-size: 16px;
  line-height: 1.65;
  letter-spacing: -0.01em;
  flex: 1;
}
.t-card-foot {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid #eef0f3;
}
.t-card-foot strong { display: block; font-size: 15px; }
.t-card-foot small { color: #7b8490; font-size: 13px; }
img.avatar,
.avatar-fallback {
  width: 48px;
  height: 48px;
  max-width: 48px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}
.avatar-fallback {
  display: grid;
  place-items: center;
  background: #1b2128;
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.04em;
}
.t-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 22px;
}
.t-dots button {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 0;
  border-radius: 99px;
  background: #cfd5dc;
  cursor: pointer;
  transition: width 0.25s ease, background 0.25s ease;
}
.t-dots button.is-active {
  width: 22px;
  background: var(--orange);
}

/* Plan trip */
.plan {
  background: #101417;
  color: #fff;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.plan::before {
  left: -22%;
  bottom: -36%;
  width: min(145vw, 1320px);
  height: min(145vw, 1320px);
}
.plan-grid {
  display: grid;
  grid-template-columns: 1fr 0.92fr;
  gap: 48px;
  align-items: center;
}
.plan-copy h2 {
  font-size: clamp(34px, 4vw, 52px);
  letter-spacing: -0.045em;
  line-height: 1.02;
  margin: 10px 0 16px;
  font-weight: 800;
}
.plan-copy > p {
  color: #c5ccd3;
  max-width: 520px;
  line-height: 1.65;
  margin: 0 0 32px;
  font-size: 16px;
}
.plan-steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 18px;
}
.plan-steps li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.plan-steps li > span {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: rgba(255, 104, 0, 0.14);
  color: var(--orange);
  display: grid;
  place-items: center;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.04em;
  flex-shrink: 0;
}
.plan-steps strong {
  display: block;
  font-size: 16px;
  margin-bottom: 2px;
}
.plan-steps small {
  color: #9aa3ab;
  font-size: 13px;
  line-height: 1.45;
}
.plan-form {
  background: #fff;
  color: var(--ink);
  border-radius: 24px;
  padding: 32px 28px 28px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
}
.plan-form h3 {
  margin: 0;
  font-size: 22px;
  letter-spacing: -0.03em;
}
.plan-form > p {
  margin: 6px 0 20px;
  color: #6b7380;
  font-size: 14px;
}
.plan-form label {
  display: grid;
  gap: 6px;
  font-size: 12px;
  font-weight: 700;
  color: #3d4652;
  margin-bottom: 12px;
}
.plan-form input,
.plan-form select,
.plan-form textarea {
  width: 100%;
  border: 1px solid #e4e7eb;
  background: #f7f8fa;
  border-radius: 12px;
  padding: 12px 14px;
  color: #111;
  outline: none;
  resize: vertical;
}
.plan-form input:focus,
.plan-form select:focus,
.plan-form textarea:focus {
  border-color: var(--orange);
  background: #fff;
}
.plan-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.plan-form .btn {
  width: 100%;
  margin-top: 8px;
}

/* Footer */
.site-footer {
  background: #080a0c;
  color: #fff;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.site-footer::before {
  right: -14%;
  bottom: -38%;
  width: min(140vw, 1200px);
  height: min(140vw, 1200px);
  opacity: 0.035;
}
.footer-news {
  background: rgba(16, 20, 23, 0.42);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding: 32px 0;
}
.footer-news-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.footer-news h3 {
  margin: 6px 0 6px;
  font-size: clamp(22px, 2.2vw, 28px);
  letter-spacing: -0.03em;
  font-weight: 800;
}
.footer-news p {
  margin: 0;
  color: #9aa3ab;
  font-size: 14px;
}
.newsletter {
  display: flex;
  background: #fff;
  border-radius: 999px;
  overflow: hidden;
  min-width: min(100%, 420px);
  flex-shrink: 0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
}
.newsletter input {
  border: 0;
  outline: 0;
  padding: 14px 18px;
  width: 100%;
  color: #111;
  background: transparent;
}
.newsletter button {
  border: 0;
  background: var(--orange);
  color: #fff;
  padding: 0 22px;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  white-space: nowrap;
}
.newsletter button:hover { filter: brightness(1.06); }
.footer-main { padding: 56px 0 44px; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 0.9fr 0.9fr 1.2fr;
  gap: 40px 32px;
}
.footer-logo-link { display: inline-block; }
.footer-logo { width: 176px; }
.footer-brand p {
  color: #9aa3ab;
  font-size: 14px;
  line-height: 1.65;
  margin: 16px 0 20px;
  max-width: 320px;
}
.footer-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
}
.footer-cta:hover { color: var(--orange); }
.footer-cta i { font-size: 13px; color: var(--orange); }
.footer-grid h4 {
  margin: 0 0 16px;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fff;
}
.footer-grid nav a {
  display: block;
  color: #9aa3ab;
  font-size: 14px;
  line-height: 2.05;
}
.footer-grid nav a:hover { color: #fff; }
.footer-contact p,
.footer-contact > a {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #9aa3ab;
  font-size: 14px;
  line-height: 1.5;
  margin: 0 0 12px;
}
.footer-contact > a:hover { color: #fff; }
.footer-contact i {
  color: var(--orange);
  font-size: 15px;
  width: 18px;
}
.socials { display: flex; gap: 8px; margin-top: 18px; }
.socials a {
  width: 38px;
  height: 38px;
  border: 1px solid #2a2f34;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #d0d4d8;
  transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
}
.socials a:hover {
  border-color: var(--orange);
  color: var(--orange);
  background: rgba(255, 104, 0, 0.08);
}
.socials i { font-size: 15px; }
.footer-bottom {
  border-top: 1px solid #1c2126;
}
.copyright {
  padding: 16px 0 20px;
  color: #7a828a;
  font-size: 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.footer-legal {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}
.footer-legal a { color: #7a828a; }
.footer-legal a:hover { color: #fff; }

.toast {
  position: fixed;
  right: 20px;
  bottom: 20px;
  background: #111;
  color: #fff;
  padding: 14px 18px;
  border-radius: 12px;
  box-shadow: var(--shadow);
  transform: translateY(120px);
  opacity: 0;
  transition: 0.3s;
  z-index: 50;
  border-left: 3px solid var(--orange);
}
.toast.show { transform: translateY(0); opacity: 1; }

@media (max-width: 1100px) {
  .destinations-grid { grid-template-columns: repeat(3, 1fr); }
  .experience-grid { grid-template-columns: repeat(4, 1fr); }
  .story-inner {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 40px 0;
  }
  .t-card { flex-basis: calc((100% - 20px) / 2); }
  .plan-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-news-inner { flex-direction: column; align-items: stretch; gap: 18px; }
  .newsletter { min-width: 0; width: 100%; max-width: 480px; }
}

@media (max-width: 900px) {
  :root { --container: min(100% - 32px, 1220px); --header-h: 76px; }
  .desktop-nav, .lang { display: none; }
  .nav-actions > :not(.menu-btn) { display: none; }
  .menu-btn { display: grid; }
  .brand img { width: 148px; }
  .mobile-menu {
    position: absolute;
    right: 16px;
    top: 72px;
    background: #111;
    border: 1px solid #2a2d31;
    border-radius: 16px;
    padding: 12px;
    flex-direction: column;
    min-width: 230px;
    box-shadow: var(--shadow);
  }
  .mobile-menu.show { display: flex; }
  .mobile-menu a { padding: 11px 12px; border-radius: 10px; font-weight: 600; }
  .mobile-menu a:hover { background: #1c2126; }
  .mobile-menu .btn { margin-top: 8px; }
  .hero-grid { grid-template-columns: 1fr; padding-top: 96px; }
  .hero h1 { font-size: 48px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 700px) {
  .search-card { grid-template-columns: 1fr; padding: 10px; }
  .search-card label { border-right: 0; border-bottom: 1px solid #eee; padding: 8px 10px; }
  .search-card .btn { width: 100%; margin-top: 8px; }
  .hero-features { grid-template-columns: 1fr 1fr; gap: 14px; }
  .section { padding: 48px 0; }
  .section-head { align-items: flex-start; flex-direction: column; }
  .destinations-grid, .experience-grid { grid-template-columns: 1fr 1fr; }
  .card { min-height: 190px; }
  .mini-card { min-height: 140px; }
  .stats article { padding: 16px 14px; }
  .orange-panel { min-height: 110px; padding: 20px 18px; }
  .orange-logo { width: 88px; }
  .t-card { flex-basis: 100%; min-height: 260px; }
  .testimonials .section-head {
    flex-direction: row;
    align-items: flex-end;
  }
  .plan { padding: 56px 0; }
  .plan-form { padding: 24px 20px; }
  .plan-form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .copyright { flex-direction: column; text-align: center; }
  .footer-legal { justify-content: center; }
  .footer-contact .socials { justify-content: flex-start; }
  .hero-meta-inner { font-size: 12px; }
}
