:root {
  --bg: #efe8dc;
  --surface: rgba(248, 242, 233, 0.9);
  --surface-strong: #f7f0e6;
  --surface-dark: #111c18;
  --text: #16211d;
  --muted: #5d665f;
  --accent: #b99762;
  --accent-deep: #9c7a49;
  --accent-soft: #dcc08e;
  --teal: #1f3b36;
  --line: rgba(22, 33, 29, 0.12);
  --shadow: 0 25px 70px rgba(14, 18, 16, 0.12);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --max-width: 1200px;
  --nav-width: 1340px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: "Poppins", "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(185, 151, 98, 0.16), transparent 24%),
    radial-gradient(circle at top right, rgba(31, 59, 54, 0.16), transparent 34%),
    linear-gradient(180deg, #f5eee3 0%, #efe6d8 46%, #e6ddcf 100%);
  overflow-x: hidden;
  margin: auto;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea,
select {
  font: inherit;
}

.site-shell {
  min-height: 100vh;
  padding-top: 6.2rem;
  overflow-x: hidden;
}

.section {
  width: min(var(--max-width), calc(100% - 2rem));
  margin: 0 auto;
}

.topbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  padding-top: 1rem;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.3s ease, padding-top 0.48s cubic-bezier(0.22, 1, 0.36, 1);
}

.topbar-inner {
  position: relative;
  width: min(var(--nav-width), calc(100% - 1.2rem));
  margin: 0 auto;
  padding: 0.7rem 1rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  backdrop-filter: blur(18px);
  background: linear-gradient(180deg, rgba(15, 26, 22, 0.96), rgba(19, 33, 28, 0.95));
  border: 1px solid rgba(185, 151, 98, 0.22);
  border-radius: 28px;
  box-shadow: 0 18px 50px rgba(10, 14, 13, 0.22);
  transition:
    width 0.48s cubic-bezier(0.22, 1, 0.36, 1),
    padding 0.48s cubic-bezier(0.22, 1, 0.36, 1),
    border-radius 0.48s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.4s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.4s cubic-bezier(0.22, 1, 0.36, 1),
    background 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.topbar.scrolled {
  padding-top: 0;
}

.topbar.scrolled .topbar-inner {
  width: 100%;
  padding: 0.7rem max(1rem, calc((100vw - var(--max-width)) / 2));
  border-radius: 0;
  border-left: 0;
  border-right: 0;
  border-top: 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  min-width: 0;
  overflow: hidden;
  flex-shrink: 1;
}

.brand > span:not(.brand-mark) {
  overflow: hidden;
  min-width: 0;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 0.96rem;
  color: #f8f1e5;
  letter-spacing: 0.02em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.brand small {
  color: rgba(220, 192, 142, 0.92);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.brand-mark {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(185, 151, 98, 0.08);
  border: 1px solid rgba(220, 192, 142, 0.26);
}

.brand-mark svg,
.hero-brand-icon svg,
.footer-brand-mark svg {
  width: 100%;
  height: 100%;
}

.brand-mark path,
.hero-brand-icon path,
.footer-brand-mark path {
  fill: none;
  stroke: var(--accent-soft);
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.nav-panel {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1rem;
  margin-left: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  color: rgba(248, 241, 229, 0.74);
  flex-wrap: nowrap;
}

.site-nav a {
  padding: 0.5rem 0.95rem;
  border-radius: 999px;
  transition: color 0.25s ease, background 0.25s ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: #fff8ee;
  background: rgba(220, 192, 142, 0.1);
}

.nav-actions {
  display: flex;
  align-items: center;
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 50%;
  background: rgba(220, 192, 142, 0.08);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: #f5eddf;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.35rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-deep));
  color: #0f1613;
  box-shadow: 0 14px 34px rgba(156, 122, 73, 0.25);
}

.button-secondary {
  background: rgba(248, 242, 233, 0.1);
  border-color: rgba(220, 192, 142, 0.24);
  color: #f5eddf;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 2.4rem;
  padding: 2rem;
  align-items: stretch;
  margin-top: 1.2rem;
  border-radius: 40px;
  background:
    linear-gradient(135deg, rgba(14, 25, 21, 0.98), rgba(22, 37, 31, 0.94)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent 70%);
  border: 1px solid rgba(185, 151, 98, 0.18);
  box-shadow: 0 28px 80px rgba(10, 14, 13, 0.22);
  min-height: calc(100svh - 7.5rem);
}

.hero-copy,
.hero-panel {
  min-width: 0;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.78rem;
  color: rgba(220, 192, 142, 0.88);
  margin-bottom: 0.9rem;
  font-weight: 800;
}

.hero h1,
.section-heading h2,
.contact-copy h2 {
  font-family: "poppins";
  font-weight: 700;
  line-height: 0.95;
}

.hero h1 {
  font-size: clamp(3.4rem, 7vw, 6rem);
  max-width: 11ch;
  color: #f6efe2;
}

.hero-text,
.section-heading p,
.contact-copy p {
  color: var(--muted);
  line-height: 1.75;
}

.hero-text {
  margin: 1rem 0 1.25rem;
  max-width: 58ch;
  color: rgba(244, 235, 223, 0.76);
}

.hero-brandline {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: 1rem;
  padding: 0.4rem 0.85rem 0.4rem 0.45rem;
  border-radius: 999px;
  background: rgba(220, 192, 142, 0.08);
  border: 1px solid rgba(220, 192, 142, 0.16);
  color: rgba(248, 241, 229, 0.8);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-brand-icon {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(220, 192, 142, 0.08);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.hero-highlights {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}

.hero-mini-card {
  padding: 1rem 1.1rem;
  border-radius: var(--radius-md);
  background: rgba(248, 242, 233, 0.08);
  border: 1px solid rgba(220, 192, 142, 0.14);
}

.hero-mini-card span,
.hero-quick-card span {
  display: block;
  margin-bottom: 0.45rem;
  color: var(--accent-deep);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.68rem;
  font-weight: 800;
}

.hero-mini-card strong {
  font-size: 0.96rem;
  line-height: 1.6;
  color: #f6efe2;
}

.hero-stats {
  margin-top: 1.35rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.hero-stats article,
.trust-item,
.destination-card,
.package-card,
.experience-card,
.testimonial-card,
.faq-item {
  border: 1px solid rgba(255, 255, 255, 0.54);
  background: var(--surface);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow);
}

.hero-stats article {
  padding: 1.1rem;
  border-radius: var(--radius-md);
}

.hero-stats strong {
  display: block;
  font-size: 2rem;
  color: var(--accent-deep);
}

.hero-stats span {
  color: var(--muted);
  font-size: 0.9rem;
}

.hero-panel {
  display: grid;
  gap: 1rem;
  align-content: start;
}

.hero-scene {
  min-height: 530px;
  padding: 2rem;
  display: flex;
  align-items: flex-end;
  border-radius: 36px;
  overflow: hidden;
  position: relative;
  background:
    linear-gradient(180deg, rgba(11, 21, 20, 0.1) 0%, rgba(6, 9, 8, 0.78) 100%),
    url("https://images.unsplash.com/photo-1501554728187-ce583db33af7?auto=format&fit=crop&w=1200&q=80");
  background-size: cover;
  background-position: center;
  border: 1px solid rgba(220, 192, 142, 0.14);
  box-shadow: 0 26px 80px rgba(28, 28, 24, 0.18);
}

.hero-scene-copy {
  color: #fff9f1;
  max-width: 34rem;
}

.hero-scene-copy p {
  color: rgba(255, 249, 241, 0.82);
  text-transform: uppercase;
  letter-spacing: 0.13em;
  font-size: 0.75rem;
  margin-bottom: 0.8rem;
}

.hero-scene-copy h2 {
  font-family: "Poppins", "Segoe UI", sans-serif;
  font-size: clamp(2.2rem, 4vw, 3.3rem);
  line-height: 0.98;
  margin-bottom: 1rem;
}

.hero-scene-copy ul {
  list-style: none;
  display: grid;
  gap: 0.7rem;
}

.hero-scene-copy li {
  padding-left: 1rem;
  position: relative;
  line-height: 1.65;
}

.hero-scene-copy li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7rem;
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 50%;
  background: var(--accent-soft);
}

.hero-quick-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.hero-quick-card {
  padding: 1rem 1.05rem;
  border-radius: var(--radius-lg);
  background: rgba(248, 242, 233, 0.92);
  border: 1px solid rgba(185, 151, 98, 0.14);
  box-shadow: var(--shadow);
}

.hero-quick-card strong {
  display: block;
  margin-bottom: 0.35rem;
}

.hero-quick-card small {
  color: var(--muted);
  line-height: 1.65;
}

.hero-quick-card.accent {
  background: linear-gradient(135deg, rgba(38, 64, 58, 0.98), rgba(16, 29, 25, 0.98));
  color: #fdf7ee;
}

.hero-quick-card.accent span,
.hero-quick-card.accent small {
  color: rgba(220, 192, 142, 0.82);
}

.trust-band {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.2rem;
  padding: 1rem 0 1.2rem;
}

.hero-stats article,
.trust-item,
.destination-card,
.package-card,
.experience-card,
.testimonial-card,
.faq-item {
  border-radius: var(--radius-lg);
}

.trust-item {
  padding: 1.4rem;
}

.trust-item strong {
  display: block;
  margin-bottom: 0.55rem;
}

.trust-item p {
  color: var(--muted);
  line-height: 1.7;
}

.trust-item strong,
.package-card span,
.card-topline span {
  color: var(--accent-deep);
}

.section-heading {
  margin-bottom: 1.35rem;
  max-width: 760px;
}

.section-heading h2 {
  font-size: clamp(2.6rem, 5vw, 4.3rem);
  margin-bottom: 0.9rem;
}

.destinations,
.fleet,
.packages,
.experience,
.testimonials,
.faq,
.contact {
  padding: 1.9rem 0;
}

.destination-grid,
.package-cards,
.experience-grid,
.testimonial-grid {
  display: grid;
  gap: 1.2rem;
}

.destination-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.destination-card {
  overflow: hidden;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.destination-card:hover {
  transform: translateY(-6px);
}

.destination-card.is-hidden {
  display: none;
}

.card-image {
  min-height: 220px;
  background-size: cover;
  background-position: center;
}

.card-image.rara {
  background-image: linear-gradient(rgba(17, 27, 28, 0.05), rgba(17, 27, 28, 0.2)), url("https://images.unsplash.com/photo-1464823063530-08f10ed1a2dd?auto=format&fit=crop&w=1200&q=80");
}

.card-image.mustang {
  background-image: linear-gradient(rgba(17, 27, 28, 0.1), rgba(17, 27, 28, 0.18)), url("https://images.unsplash.com/photo-1518005020951-eccb494ad742?auto=format&fit=crop&w=1200&q=80");
}

.card-image.kathmandu {
  background-image: linear-gradient(rgba(17, 27, 28, 0.1), rgba(17, 27, 28, 0.25)), url("https://images.unsplash.com/photo-1544737151-6e4b7c7b3b5d?auto=format&fit=crop&w=1200&q=80");
}

.card-image.chitwan {
  background-image: linear-gradient(rgba(17, 27, 28, 0.1), rgba(17, 27, 28, 0.2)), url("https://images.unsplash.com/photo-1516426122078-c23e76319801?auto=format&fit=crop&w=1200&q=80");
}

.card-image.lumbini {
  background-image: linear-gradient(rgba(17, 27, 28, 0.08), rgba(17, 27, 28, 0.22)), url("https://images.unsplash.com/photo-1512632578888-169bbbc64f33?auto=format&fit=crop&w=1200&q=80");
}

.card-image.pokhara {
  background-image: linear-gradient(rgba(17, 27, 28, 0.08), rgba(17, 27, 28, 0.22)), url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?auto=format&fit=crop&w=1200&q=80");
}

.card-body {
  padding: 1.4rem;
}

.card-topline {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  margin-bottom: 0.9rem;
}

.card-topline span {
  color: var(--accent-deep);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.7rem;
  font-weight: 800;
}

.card-topline strong {
  font-size: 1.35rem;
}

.card-body p,
.meta-list {
  color: var(--muted);
  line-height: 1.72;
}

.meta-list {
  list-style: none;
  display: grid;
  gap: 0.45rem;
  margin-top: 1rem;
}

.fleet-accordion {
  display: grid;
  gap: 0.85rem;
}

.fleet-item {
  border-radius: var(--radius-lg);
  border: 1px solid rgba(185, 151, 98, 0.14);
  background: rgba(248, 242, 233, 0.86);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.fleet-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.1rem;
  border: 0;
  background: transparent;
  text-align: left;
  cursor: pointer;
}

.fleet-trigger small {
  display: block;
  margin-bottom: 0.3rem;
  color: var(--accent-deep);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.68rem;
  font-weight: 800;
}

.fleet-trigger strong {
  font-size: 1.05rem;
  color: var(--text);
}

.fleet-arrow {
  width: 0.8rem;
  height: 0.8rem;
  border-right: 2px solid var(--accent-deep);
  border-bottom: 2px solid var(--accent-deep);
  transform: rotate(45deg);
  transition: transform 0.25s ease;
  flex: 0 0 auto;
  margin-right: 0.35rem;
}

.fleet-content {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.3s ease, padding 0.3s ease, border-top-color 0.3s ease;
  padding: 0 1.1rem;
  border-top: 1px solid transparent;
}

.fleet-content-inner {
  overflow: hidden;
}

.fleet-content p {
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.fleet-item.open .fleet-content {
  grid-template-rows: 1fr;
  padding: 0 1.1rem 1.1rem;
  border-top-color: rgba(185, 151, 98, 0.14);
}

.fleet-item.open .fleet-arrow {
  transform: rotate(-135deg);
  margin-top: 0.25rem;
}

.panel-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.panel-includes h4 {
  margin-bottom: 0.75rem;
}

.panel-includes ul {
  padding-left: 1.15rem;
  color: var(--muted);
  line-height: 1.8;
}

.package-cards,
.experience-grid,
.testimonial-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.package-card,
.experience-card,
.testimonial-card {
  padding: 1.45rem;
}

.package-card span {
  display: inline-block;
  margin-bottom: 0.7rem;
  color: var(--accent-deep);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.7rem;
  font-weight: 800;
}

.package-card h3,
.experience-card h3 {
  margin-bottom: 0.7rem;
  font-size: 1.3rem;
}

.package-card p,
.experience-card p,
.testimonial-card p {
  color: var(--muted);
  line-height: 1.75;
}

.process-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}

.process-strip article {
  padding: 1.25rem;
  border-radius: var(--radius-md);
  background: rgba(21, 35, 31, 0.92);
  color: #fff5e9;
}

.process-strip strong {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 0.85rem;
  border-radius: 50%;
  background: rgba(240, 211, 183, 0.16);
  color: var(--accent-soft);
}

.process-strip p {
  line-height: 1.7;
}

.faq-list {
  display: grid;
  gap: 1rem;
}

.faq-item {
  padding: 0.45rem 1.1rem;
}

.faq-question {
  width: 100%;
  text-align: left;
  padding: 1rem 0;
  background: transparent;
  border: 0;
  font-size: 1.05rem;
  font-weight: 700;
  cursor: pointer;
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.3s ease, padding-bottom 0.3s ease;
}

.faq-answer p {
  overflow: hidden;
  color: var(--muted);
  line-height: 1.75;
}

.faq-item.open .faq-answer {
  grid-template-rows: 1fr;
  padding-bottom: 0.9rem;
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 1.2rem;
  align-items: start;
}

.social-panel {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 1rem 0;
}

.social-panel h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.social-panel p {
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.social-icons {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: transparent;
  border: 1px solid var(--line);
  color: var(--teal);
  transition: all 0.2s ease;
}

.social-icon svg {
  width: 20px;
  height: 20px;
}

.social-icon:hover {
  background: var(--teal);
  color: #fff;
  border-color: var(--teal);
}

.site-footer {
  width: min(var(--max-width), calc(100% - 2rem));
  margin: 0 auto;
  padding: 2rem 0 3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  color: var(--muted);
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.footer-brand p {
  color: var(--text);
  font-weight: 700;
}

.footer-brand small {
  color: var(--accent-deep);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-brand-mark {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(17, 28, 24, 0.94);
  border: 1px solid rgba(185, 151, 98, 0.16);
}

[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

[data-reveal="left"] {
  transform: translateX(28px);
}

[data-reveal].revealed {
  opacity: 1;
  transform: translate(0, 0);
}

@media (max-width: 1080px) {
  .hero,
  .fleet-layout {
    grid-template-columns: 2fr;
  }

  .destination-grid,
  .package-cards,
  .experience-grid,
  .testimonial-grid,
  .trust-band,
  .process-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-scene {
    min-height: 460px;
  }

  .hero-quick-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 860px) {
  .site-shell {
    padding-top: 5.1rem;
  }

  .topbar {
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    padding-top: 0.5rem;
  }

  .topbar-inner {
    width: calc(100% - 1rem);
    max-width: none;
    margin: 0 auto;
    padding: 0.7rem 0.85rem;
    border-radius: 22px;
    border-top: 1px solid rgba(185, 151, 98, 0.22);
    border-left: 1px solid rgba(185, 151, 98, 0.22);
    border-right: 1px solid rgba(185, 151, 98, 0.22);
  }

  .topbar.scrolled .topbar-inner {
    width: calc(100% - 1rem);
    padding: 0.7rem 0.85rem;
    border-radius: 22px;
    border-top: 1px solid rgba(185, 151, 98, 0.22);
    border-left: 1px solid rgba(185, 151, 98, 0.22);
    border-right: 1px solid rgba(185, 151, 98, 0.22);
  }

  .topbar.mobile-hidden {
    transform: translateY(calc(-100% - 0.8rem));
    opacity: 0;
  }

  .nav-toggle {
    display: block;
    margin-left: auto;
  }

  .nav-panel {
    display: flex;
    position: absolute;
    top: calc(100% + 0.55rem);
    left: 0;
    right: 0;
    width: 100%;
    max-width: 100%;
    padding: 0.8rem;
    border: 1px solid rgba(185, 151, 98, 0.22);
    background: linear-gradient(180deg, rgba(15, 26, 22, 0.98), rgba(19, 33, 28, 0.98));
    border-radius: 22px;
    flex-direction: column;
    align-items: stretch;
    gap: 0.75rem;
    margin-left: 0;
    box-shadow: 0 18px 45px rgba(10, 14, 13, 0.24);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
    box-sizing: border-box;
  }

  .topbar.menu-open .nav-panel {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-nav {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.35rem;
  }

  .site-nav a {
    width: 100%;
    background: rgba(220, 192, 142, 0.08);
  }

  .nav-actions {
    width: 100%;
    margin-left: 0;
  }

  .topbar.menu-open .nav-toggle span:first-child {
    transform: translateY(6px) rotate(45deg);
  }

  .topbar.menu-open .nav-toggle span:nth-child(2) {
    opacity: 0;
  }

  .topbar.menu-open .nav-toggle span:last-child {
    transform: translateY(-6px) rotate(-45deg);
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: calc(100svh - 6.5rem);
    padding: 1rem;
    gap: 1rem;
    border-radius: 30px;
  }

  .hero-panel {
    display: none;
  }

  .hero-highlights,
  .contact-layout,
  .destination-grid,
  .package-cards,
  .experience-grid,
  .testimonial-grid,
  .trust-band,
  .panel-grid,
  .process-strip {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .hero {
    min-height: calc(100svh - 5.75rem);
    padding: 0.95rem;
  }

  .hero h1 {
    font-size: clamp(2.2rem, 9.6vw, 3.05rem);
    max-width: 11.5ch;
    line-height: 0.93;
  }

  .hero-stats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.5rem;
  }

  .hero-stats article {
    padding: 0.72rem 0.6rem;
  }

  .hero-stats strong {
    font-size: 1.35rem;
  }

  .hero-stats span {
    font-size: 0.72rem;
  }

  .hero-text {
    margin: 0.8rem 0 0.95rem;
    font-size: 0.9rem;
    line-height: 1.62;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.65rem;
  }

  .hero-scene {
    min-height: 390px;
    padding: 1.4rem;
  }

  .hero-scene-copy h2 {
    font-size: clamp(1.9rem, 9vw, 2.6rem);
  }

  .site-footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .section {
    width: min(var(--max-width), calc(100% - 1.2rem));
  }

}

@media (max-width: 560px) {
  .topbar {
    padding-top: 0.45rem;
  }

  .topbar-inner {
    padding: 0.55rem 0.65rem;
    border-radius: 20px;
    width: calc(100% - 0.9rem);
  }

  .topbar.scrolled .topbar-inner {
    width: calc(100% - 0.9rem);
    padding: 0.55rem 0.65rem;
    border-radius: 20px;
  }

  .brand {
    gap: 0.55rem;
  }

  .brand-mark {
    width: 34px;
    height: 34px;
  }

  .brand strong {
    font-size: 0.74rem;
    line-height: 1.15;
  }

  .brand small {
    font-size: 0.74rem;
  }

  .site-nav a,
  .nav-cta {
    width: 100%;
  }

  .hero-actions .button,
  .nav-cta {
    justify-content: center;
  }

  .hero-brandline {
    width: 100%;
    justify-content: flex-start;
    margin-bottom: 0.8rem;
    padding: 0.34rem 0.7rem 0.34rem 0.38rem;
    font-size: 0.68rem;
    letter-spacing: 0.07em;
  }

  .hero-highlights {
    display: none;
  }

  .hero h1 {
    font-size: clamp(2rem, 10vw, 2.65rem);
    max-width: 10.8ch;
  }

  .hero-actions {
    grid-template-columns: 1fr 1fr;
  }

  .hero-mini-card,
  .hero-quick-card,
  .trust-item,
  .package-card,
  .experience-card,
  .testimonial-card,
  .social-panel {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .fleet-trigger,
  .fleet-item.open .fleet-content {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .hero-stats {
    gap: 0.4rem;
  }

  .button {
    padding: 0.72rem 0.85rem;
    font-size: 0.82rem;
  }

  .brand small {
    display: none;
  }

  .nav-toggle {
    width: 36px;
    height: 36px;
  }
}

@media (max-width: 440px) {
  .site-shell {
    padding-top: 4.4rem;
  }

  .hero {
    min-height: auto;
    padding: 0.85rem;
    border-radius: 26px;
  }

  .eyebrow {
    font-size: 0.7rem;
    margin-bottom: 0.65rem;
  }

  .hero-brand-icon {
    width: 28px;
    height: 28px;
  }

  .hero-text {
    font-size: 0.86rem;
  }

  .hero-actions {
    gap: 0.55rem;
  }

  .hero-stats strong {
    font-size: 1.2rem;
  }

  .hero-stats span {
    font-size: 0.68rem;
  }
}
