:root {
  --ink: #241a14;
  --muted: #746b63;
  --line: #e9e2d9;
  --paper: #f8faf7;
  --white: #ffffff;
  --sun: #f47a1f;
  --earth: #6b2f1d;
  --river: #4d9eb1;
  --leaf: #506f4f;
  --gold: #d99a38;
  --shadow: 0 18px 60px rgba(45, 31, 20, 0.12);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    linear-gradient(180deg, rgba(244, 122, 31, 0.09), transparent 360px),
    radial-gradient(circle at 8% 10%, rgba(77, 158, 177, 0.16), transparent 300px),
    var(--paper);
  color: var(--ink);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

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

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

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 20;
  background: var(--ink);
  color: var(--white);
  padding: 0.75rem 1rem;
  border-radius: var(--radius);
}

.skip-link:focus {
  top: 1rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  border-bottom: 1px solid rgba(233, 226, 217, 0.8);
  background: rgba(255, 252, 247, 0.9);
  backdrop-filter: blur(18px);
}

.nav-shell {
  width: min(1180px, calc(100% - 32px));
  min-height: 74px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-weight: 800;
  letter-spacing: 0;
}

.brand img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
}

.nav-toggle {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.nav-button {
  width: 44px;
  height: 44px;
  display: grid;
  place-content: center;
  gap: 5px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  cursor: pointer;
}

.nav-button span {
  width: 18px;
  height: 2px;
  background: var(--ink);
  border-radius: 999px;
}

.nav-links {
  position: absolute;
  left: 16px;
  right: 16px;
  top: 82px;
  display: grid;
  gap: 0.35rem;
  padding: 0.75rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
  transform: translateY(-12px);
  opacity: 0;
  pointer-events: none;
  transition: 180ms ease;
}

.nav-toggle:checked ~ .nav-links {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.nav-links a {
  padding: 0.8rem 0.9rem;
  border-radius: var(--radius);
  color: var(--muted);
  font-weight: 650;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  background: #f7efe5;
  color: var(--ink);
}

.nav-links a.active {
  color: var(--earth);
  background: #f7efe5;
}

/* About page */
.about-hero {
  padding: 3rem 0;
  background: linear-gradient(145deg, #fff8ee, rgba(231, 243, 235, 0.75));
}

.about-hero-grid,
.story-section,
.stranger-feature,
.choose-section {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

.about-lead {
  max-width: 620px;
  color: var(--muted);
  font-size: 1.08rem;
}

.about-hero-image,
.stranger-image {
  position: relative;
  overflow: hidden;
  min-height: 390px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.about-hero-image img,
.stranger-image img {
  width: 100%;
  height: 100%;
  min-height: 390px;
  object-fit: cover;
}

.about-stat-card {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  display: grid;
  width: min(250px, calc(100% - 2rem));
  padding: 1rem;
  border: 1px solid rgba(255,255,255,.5);
  border-radius: var(--radius);
  background: rgba(255,255,255,.86);
  backdrop-filter: blur(12px);
}

.about-stat-card strong,
.choose-highlight strong {
  color: var(--earth);
  font: 700 2rem/1 Georgia, serif;
}

.about-stat-card span,
.choose-highlight span { color: var(--muted); }

.story-section { padding: 5rem 0; align-items: start; }
.story-copy p { margin-top: 0; color: var(--muted); font-size: 1.02rem; }
.about-tinted { padding-bottom: 5rem; background: #f0f4ec; }
.about-heading { padding-top: 5rem; }

.duration-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.duration-grid div {
  display: grid;
  padding: 1.25rem;
  border: 1px solid rgba(80,111,79,.18);
  border-radius: var(--radius);
  background: var(--white);
}

.duration-grid strong { color: var(--leaf); font: 700 2.2rem/1 Georgia, serif; }
.duration-grid span { margin-top: .4rem; color: var(--muted); }

.traveler-row { display: flex; flex-wrap: wrap; gap: .6rem; margin-top: 1.5rem; }
.traveler-row span { padding: .5rem .75rem; border: 1px solid rgba(80,111,79,.22); border-radius: 999px; background: rgba(255,255,255,.72); color: #36563b; font-size: .86rem; font-weight: 750; }

.stranger-feature { padding: 5rem 0; }
.stranger-copy p { color: var(--muted); }
.services-section { padding-bottom: 5rem; background: #231a14; color: var(--white); }
.services-section .section-heading p { color: rgba(255,255,255,.65); }
.service-grid { display: grid; gap: 1rem; }
.service-grid article { padding: 1.35rem; border: 1px solid rgba(255,255,255,.12); border-radius: var(--radius); background: rgba(255,255,255,.06); }
.service-number { display: inline-block; margin-bottom: 1rem; color: var(--sun); font-weight: 850; }
.service-grid ul { margin: 1rem 0 0; padding-left: 1.2rem; color: rgba(255,255,255,.7); }
.service-grid li + li { margin-top: .3rem; }

.choose-section { padding: 5rem 0; align-items: start; }
.choose-copy > p:not(.eyebrow) { color: var(--muted); }
.choose-highlight { display: grid; gap: .3rem; margin-top: 1.5rem; padding: 1.25rem; border-left: 4px solid var(--sun); background: #fff4e6; }
.check-list { display: grid; gap: .7rem; margin: 0; padding: 0; list-style: none; }
.check-list li { position: relative; padding: .8rem 1rem .8rem 2.8rem; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); }
.check-list li::before { content: "✓"; position: absolute; left: 1rem; color: #1f8f4d; font-weight: 900; }

.values-section { padding: 5rem 0; background: #f4eadc; }
.values-grid { display: grid; gap: 1rem; }
.values-grid article { padding: 1.5rem; border-top: 3px solid var(--sun); border-radius: var(--radius); background: rgba(255,255,255,.76); }
.values-grid article p:last-child { color: var(--muted); }
.about-cta { max-width: 880px; padding: 5rem 0; text-align: center; }
.about-cta h2 { margin-bottom: 1.5rem; }

.nav-links .nav-cta {
  background: linear-gradient(135deg, #1f8f4d, #155c38);
  color: var(--white);
  text-align: center;
  box-shadow: 0 10px 22px rgba(31, 143, 77, 0.2);
}

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

.hero {
  min-height: calc(100svh - 74px);
  display: grid;
  align-items: center;
  gap: 2.5rem;
  padding: 3rem 0 2rem;
}

.hero-copy {
  position: relative;
}

.hero-copy::before {
  content: "";
  position: absolute;
  width: 72px;
  height: 4px;
  left: 0;
  top: -1.1rem;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--sun), var(--river));
}

.eyebrow {
  margin: 0 0 0.85rem;
  color: var(--sun);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.03;
  letter-spacing: 0;
}

h1 {
  max-width: 680px;
  font-size: clamp(2.15rem, 6vw, 4.25rem);
}

h2 {
  font-size: clamp(1.65rem, 4.2vw, 3rem);
}

h3 {
  margin: 0;
  font-size: 1.18rem;
  line-height: 1.2;
}

.hero-text,
.section-heading p,
.why-copy p,
.contact-panel p {
  max-width: 600px;
  color: var(--muted);
  font-size: 0.98rem;
}

.hero-actions,
.contact-actions,
.card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  align-items: center;
}

.btn {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.72rem 1rem;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-size: 0.94rem;
  font-weight: 850;
  line-height: 1.1;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, border-color 180ms ease;
}

.btn:hover,
.card-actions a:hover,
.floating-whatsapp:hover {
  transform: translateY(-2px);
}

.primary {
  background: #1f8f4d;
  color: var(--white);
  box-shadow: 0 10px 22px rgba(31, 143, 77, 0.22);
}

.secondary {
  border-color: rgba(36, 26, 20, 0.14);
  background: var(--white);
  color: var(--ink);
  box-shadow: 0 8px 18px rgba(36, 26, 20, 0.08);
}

.social-btn,
.social-button {
  color: #8e234f;
  border-color: rgba(194, 36, 103, 0.2);
  background: #fff;
  box-shadow: 0 8px 18px rgba(194, 36, 103, 0.12);
}

.instagram-btn {
  background: #fff;
}

.social-icon {
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
}

.footer-social {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1.4rem;
}

.hero-proof span {
  padding: 0.45rem 0.7rem;
  border: 1px solid rgba(80, 111, 79, 0.22);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: #36563b;
  font-size: 0.82rem;
  font-weight: 800;
}

.hero-visual {
  position: relative;
  min-height: 460px;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--ink);
  box-shadow: 0 22px 70px rgba(45, 31, 20, 0.18);
  isolation: isolate;
}

.hero-visual > img {
  width: 100%;
  height: 100%;
  min-height: 460px;
  object-fit: cover;
}

.hero-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(18, 34, 26, 0.04), rgba(18, 34, 26, 0.38)),
    radial-gradient(circle at 18% 16%, rgba(255, 190, 87, 0.24), transparent 28%);
  z-index: 1;
}

.hero-slider {
  position: relative;
  min-height: 460px;
  overflow: hidden;
  border-radius: 16px;
  background: var(--ink);
  box-shadow: 0 22px 70px rgba(45, 31, 20, 0.18);
  isolation: isolate;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 600ms ease, visibility 600ms ease;
}

.hero-slide.active {
  opacity: 1;
  visibility: visible;
}

.hero-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 29, 22, 0.05) 35%, rgba(15, 29, 22, 0.82));
}

.hero-slide img {
  width: 100%;
  height: 100%;
  min-height: 460px;
  object-fit: cover;
}

.slide-caption {
  position: absolute;
  left: 1.25rem;
  right: 1.25rem;
  bottom: 4.5rem;
  z-index: 2;
  max-width: 430px;
  color: var(--white);
}

.slide-caption span,
.slide-caption strong,
.slide-caption small { display: block; }
.slide-caption span { margin-bottom: .35rem; color: #ffd29e; font-size: .78rem; font-weight: 850; letter-spacing: .08em; text-transform: uppercase; }
.slide-caption strong { font: 700 clamp(1.55rem, 4vw, 2.4rem)/1.05 Georgia, serif; }
.slide-caption small { margin-top: .5rem; color: rgba(255,255,255,.78); font-size: .92rem; }

.slider-arrow {
  position: absolute;
  top: 50%;
  z-index: 3;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255,255,255,.4);
  border-radius: 50%;
  background: rgba(20,24,20,.42);
  color: var(--white);
  font-size: 1.2rem;
  cursor: pointer;
  backdrop-filter: blur(8px);
  transform: translateY(-50%);
}

.slider-arrow:hover { background: rgba(20,24,20,.7); }
.slider-arrow.previous { left: 1rem; }
.slider-arrow.next { right: 1rem; }
.slider-dots { position: absolute; left: 1.25rem; bottom: 1.3rem; z-index: 3; display: flex; gap: .5rem; }
.slider-dot { width: 9px; height: 9px; padding: 0; border: 0; border-radius: 999px; background: rgba(255,255,255,.48); cursor: pointer; transition: width 180ms ease, background 180ms ease; }
.slider-dot.active { width: 28px; background: var(--white); }

.glass-card {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  z-index: 3;
  width: min(260px, calc(100% - 2rem));
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(12px);
  box-shadow: 0 14px 34px rgba(44, 31, 20, 0.16);
}

.glass-card span,
.glass-card small {
  display: block;
  color: var(--muted);
}

.glass-card strong {
  display: block;
  margin: 0.2rem 0;
  line-height: 1.2;
}

.intro-band {
  display: grid;
  gap: 1px;
  overflow: hidden;
  margin-top: 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--line);
  box-shadow: 0 14px 34px rgba(45, 31, 20, 0.06);
}

.intro-band div {
  padding: 1.25rem;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(247, 239, 229, 0.72));
}

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

.intro-band span {
  color: var(--muted);
}

.section-heading {
  padding: 5rem 0 1.5rem;
}

.heading-row {
  display: flex;
  flex-wrap: wrap;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
}

.trip-count {
  padding: .45rem .75rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  color: var(--muted);
  font-size: .82rem;
  font-weight: 800;
}

.package-grid,
.destination-grid {
  display: grid;
  gap: 1rem;
}

.package-card,
.destination-card,
.why-list div {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 8px 30px rgba(45, 31, 20, 0.06);
}

.package-card {
  display: grid;
  border-top: 3px solid rgba(244, 122, 31, 0.38);
}

.package-art,
.destination-art {
  position: relative;
  min-height: 210px;
  overflow: hidden;
  background: #dfe7dc;
}

.package-art img,
.destination-art img {
  width: 100%;
  height: 100%;
  min-height: 210px;
  object-fit: cover;
  transition: transform 220ms ease;
}

.place-chip {
  position: absolute;
  left: 0.8rem;
  bottom: 0.8rem;
  max-width: calc(100% - 1.6rem);
  padding: 0.4rem 0.65rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 850;
  line-height: 1.2;
  box-shadow: 0 10px 26px rgba(24, 20, 16, 0.16);
}

.package-body {
  padding: 1.2rem;
}

.featured-trip {
  border: 2px solid rgba(244, 122, 31, .55);
  background: linear-gradient(145deg, #fffaf2, #fff);
  box-shadow: 0 20px 55px rgba(92, 53, 22, .14);
}

.featured-label {
  position: absolute;
  right: .8rem;
  top: .8rem;
  padding: .42rem .7rem;
  border-radius: 999px;
  background: var(--sun);
  color: var(--white);
  font-size: .74rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .05em;
  box-shadow: 0 8px 20px rgba(244,122,31,.3);
}

.trip-meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .6rem;
  margin: 1rem 0;
}

.trip-meta span {
  padding: .7rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--earth);
  font-size: .86rem;
  font-weight: 800;
}

.trip-meta small {
  display: block;
  margin-bottom: .15rem;
  color: var(--muted);
  font-size: .68rem;
  font-weight: 750;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.loading-trips,
.data-error {
  grid-column: 1 / -1;
  padding: 2rem;
  border: 1px dashed var(--line);
  border-radius: var(--radius);
  color: var(--muted);
  text-align: center;
}

.pill {
  display: inline-flex;
  margin-bottom: 0.75rem;
  padding: 0.3rem 0.65rem;
  border-radius: 999px;
  background: #f7efe5;
  color: var(--earth);
  font-size: 0.78rem;
  font-weight: 800;
}

.package-body p,
.package-body li,
.destination-card p,
.why-list p {
  color: var(--muted);
}

.package-body ul {
  margin: 1rem 0;
  padding-left: 1.2rem;
}

.card-actions {
  border-top: 1px solid var(--line);
  padding-top: 1rem;
}

.card-actions a {
  flex: 1 1 130px;
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.64rem 0.75rem;
  border-radius: var(--radius);
  font-size: 0.92rem;
  font-weight: 820;
  transition: 180ms ease;
}

.card-actions a:first-child {
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--earth);
}

.card-actions a:last-child {
  background: #6b2f1d;
  color: var(--white);
}

.featured-card {
  border-color: rgba(244, 122, 31, 0.35);
}

.wide-card {
  background: #fff7ed;
}

.valley {
  background-image:
    linear-gradient(180deg, rgba(40, 29, 21, 0.05), rgba(40, 29, 21, 0.3)),
    radial-gradient(circle at 24% 26%, #ffbe57 0 12%, transparent 12.5%),
    linear-gradient(158deg, transparent 0 42%, #4e6f4f 42% 62%, transparent 62%),
    linear-gradient(22deg, #6b2f1d 0 48%, #d96827 48%);
}

.falls {
  background-image:
    linear-gradient(180deg, rgba(16, 45, 36, 0.1), rgba(16, 45, 36, 0.34)),
    linear-gradient(105deg, transparent 0 45%, rgba(105, 199, 219, 0.9) 45% 58%, transparent 58%),
    linear-gradient(155deg, #3f5e42 0 48%, transparent 48%),
    linear-gradient(25deg, #8c4c2a 0 48%, #d99a38 48%);
}

.plateau {
  background-image:
    linear-gradient(180deg, rgba(255,255,255,0.1), rgba(46, 38, 29, 0.3)),
    radial-gradient(circle at 76% 24%, #f47a1f 0 10%, transparent 10.5%),
    linear-gradient(160deg, #8fb9bf 0 42%, transparent 42%),
    linear-gradient(12deg, #506f4f 0 50%, #c45f26 50%);
}

.forest {
  background-image:
    linear-gradient(180deg, rgba(255,255,255,0.05), rgba(17, 50, 38, 0.34)),
    repeating-linear-gradient(90deg, rgba(255,255,255,0.18) 0 2px, transparent 2px 56px),
    linear-gradient(150deg, #2f5b43 0 50%, transparent 50%),
    linear-gradient(30deg, #6f351f 0 48%, #d99a38 48%);
}

.monsoon {
  background-image:
    linear-gradient(180deg, rgba(28, 51, 53, 0.06), rgba(28, 51, 53, 0.35)),
    repeating-linear-gradient(110deg, rgba(255,255,255,0.25) 0 2px, transparent 2px 18px),
    linear-gradient(145deg, #4d9eb1 0 44%, transparent 44%),
    linear-gradient(20deg, #506f4f 0 50%, #6b2f1d 50%);
}

.destination-section {
  margin-top: 4rem;
  background:
    linear-gradient(180deg, rgba(36, 26, 20, 0.92), rgba(36, 26, 20, 0.98)),
    url("../images/koraput-hero-highlands.png") center / cover fixed;
  color: var(--white);
}

.destination-section .section-heading p {
  color: rgba(255, 255, 255, 0.7);
}

.destination-grid {
  padding-bottom: 5rem;
}

.destination-card {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.12);
  color: var(--white);
}

.destination-card h3,
.destination-card p {
  padding-inline: 1rem;
}

.destination-card h3 {
  padding-top: 1rem;
}

.destination-card p {
  padding-bottom: 1rem;
  color: rgba(255, 255, 255, 0.72);
}

.coffee {
  background-image:
    radial-gradient(circle at 28% 26%, #f7b550 0 12%, transparent 12.5%),
    linear-gradient(150deg, #608063 0 46%, transparent 46%),
    linear-gradient(25deg, #8f4b2b 0 52%, #2e533c 52%);
}

.water {
  background-image:
    linear-gradient(105deg, transparent 0 40%, #8ad4e5 40% 56%, transparent 56%),
    linear-gradient(150deg, #305e49 0 46%, transparent 46%),
    linear-gradient(24deg, #714025 0 50%, #ca6a2b 50%);
}

.market {
  background-image:
    radial-gradient(circle at 70% 30%, #d99a38 0 10%, transparent 10.5%),
    repeating-linear-gradient(90deg, rgba(255,255,255,0.22) 0 3px, transparent 3px 70px),
    linear-gradient(150deg, #6b2f1d 0 48%, transparent 48%),
    linear-gradient(25deg, #506f4f 0 52%, #c45f26 52%);
}

.why-section {
  display: grid;
  gap: 2rem;
  padding: 5rem 0;
}

.why-list {
  display: grid;
  gap: 1rem;
}

.why-list div {
  padding: 1.1rem;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(248, 250, 247, 0.9));
}

.why-list span {
  display: inline-flex;
  color: var(--sun);
  font-weight: 900;
  margin-bottom: 0.4rem;
}

.why-list strong {
  display: block;
  font-size: 1.08rem;
}

.contact-panel {
  display: grid;
  gap: 1.5rem;
  margin-bottom: 4rem;
  padding: 1.25rem;
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(255, 241, 223, 0.9)),
    url("../images/koraput-local-market.png") center / cover;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  width: 100%;
}

.social-links a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1rem;
  border-radius: var(--radius);
  font-weight: 850;
}

.site-footer {
  margin-top: 1rem;
  padding: 3rem max(16px, calc((100% - 1180px) / 2)) 6.25rem;
  background: #17100c;
  color: rgba(255, 255, 255, 0.72);
}

.footer-grid {
  display: grid;
  gap: 2rem;
}

.footer-brand a {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--white);
  font-weight: 850;
}

.footer-brand img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
}

.footer-brand p {
  max-width: 340px;
  margin: 1rem 0 0;
}

.footer-column {
  display: grid;
  align-content: start;
  gap: 0.55rem;
}

.footer-column h2 {
  margin: 0 0 0.4rem;
  color: var(--white);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 0.92rem;
  line-height: 1.2;
}

.footer-column a,
.footer-column span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.94rem;
}

.footer-column a:hover,
.footer-column a:focus-visible {
  color: var(--white);
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.75rem;
  margin-top: 2.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.86rem;
}

.floating-whatsapp {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 9;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  padding: 0.72rem;
  border-radius: 50%;
  background: #1f8f4d;
  color: var(--white);
  font-size: 0.92rem;
  font-weight: 850;
  box-shadow: 0 12px 26px rgba(31, 143, 77, 0.24);
  transition: transform 180ms ease;
}

.floating-whatsapp img,
.floating-instagram img {
  width: 28px;
  height: 28px;
}

.floating-instagram {
  position: fixed;
  right: 1rem;
  bottom: 4.8rem;
  z-index: 9;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  padding: 0.65rem;
  border-radius: 50%;
  background: var(--white);
  color: var(--white);
  font-size: 0.92rem;
  font-weight: 850;
  box-shadow: 0 12px 26px rgba(194, 36, 103, 0.24);
  transition: transform 180ms ease;
}

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

@media (prefers-reduced-motion: no-preference) {
.package-card,
.destination-card,
.why-list div {
    transition: transform 180ms ease, box-shadow 180ms ease;
  }

  .package-card:hover,
  .destination-card:hover,
  .why-list div:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
  }

  .package-card:hover img,
  .destination-card:hover img {
    transform: scale(1.04);
  }
}

@media (min-width: 680px) {
  .intro-band,
  .destination-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1.4fr repeat(3, 1fr);
  }

  .package-card {
    grid-template-columns: minmax(220px, 0.78fr) 1fr;
  }

  .wide-card {
    grid-column: 1 / -1;
    grid-template-columns: minmax(280px, 0.8fr) 1fr;
  }

  .contact-panel {
    padding: 2rem;
  }

  .hero-visual,
  .hero-visual > img {
    min-height: 520px;
  }

  .hero-slider,
  .hero-slide img { min-height: 520px; }

  .duration-grid { grid-template-columns: repeat(4, 1fr); }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .values-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (min-width: 920px) {
  .nav-button {
    display: none;
  }

  .nav-links {
    position: static;
    display: flex;
    align-items: center;
    gap: 0.2rem;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .nav-links a {
    padding: 0.65rem 0.8rem;
  }

  .nav-links .nav-cta {
    margin-left: 0.35rem;
    padding-inline: 1rem;
    border-radius: var(--radius);
  }

  .hero {
    grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
    gap: 3rem;
    padding-top: 3.5rem;
  }

  .hero-visual,
  .hero-visual > img {
    min-height: 610px;
  }

  .hero-slider,
  .hero-slide img { min-height: 610px; }

  .package-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .package-card {
    grid-template-columns: 1fr;
  }

  .featured-trip {
    grid-column: span 2;
    grid-template-columns: minmax(300px, .9fr) 1.1fr;
  }

  .featured-card {
    transform: translateY(-1rem);
  }

  .wide-card {
    grid-template-columns: minmax(340px, 0.65fr) 1fr;
  }

  .why-section,
  .contact-panel {
    grid-template-columns: 0.9fr 1fr;
    align-items: center;
  }

  .why-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .about-hero-grid { grid-template-columns: .9fr 1.1fr; }
  .story-section { grid-template-columns: .85fr 1.15fr; }
  .stranger-feature { grid-template-columns: 1.05fr .95fr; }
  .choose-section { grid-template-columns: .85fr 1.15fr; }
  .service-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (min-width: 1120px) {
  .package-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .wide-card {
    grid-column: span 2;
  }

  .featured-trip { grid-column: span 2; }
}

@media (max-width: 919px) {
  .hero { min-height: auto; }
}
