:root {
  --navy: #0b2f2a;
  --navy-2: #123c2f;
  --forest: #0b2f2a;
  --focus: #f5b841;
  --accent: #0b2f2a;
  --green: #123c2f;
  --gold: #f5b841;
  --gold-dark: #d9931d;
  --cream: #fbf8ee;
  --mist: #f1ead8;
  --ice: #fffaf0;
  --ink: #10231f;
  --muted: #6f766d;
  --white: #ffffff;
  --shadow: 0 22px 70px rgba(11, 47, 42, .16);
  --shadow-soft: 0 14px 38px rgba(11, 47, 42, .1);
  --radius: 8px;
  --container: 1180px;
  --header-h: 92px;
  --font-body: "Aptos", "Inter", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-display: "Aptos Display", "Inter", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: var(--font-body);
  background:
    radial-gradient(circle at 8% 2%, rgba(245, 184, 65, .16), transparent 28%),
    linear-gradient(180deg, var(--cream), #fffaf0 52%, var(--cream));
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

::selection {
  color: var(--navy);
  background: rgba(255, 181, 54, .55);
}

body.nav-open {
  overflow: hidden;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

.container {
  width: min(100% - 32px, var(--container));
  margin-inline: auto;
}

.section-pad {
  padding: 96px 0;
}

.site-header {
  position: fixed;
  z-index: 50;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-h);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 14px clamp(16px, 4vw, 48px);
  color: var(--white);
  transition: background .25s ease, box-shadow .25s ease, height .25s ease;
}

.site-header.scrolled {
  height: 84px;
  background: rgba(11, 47, 42, .96);
  box-shadow: 0 10px 30px rgba(0, 0, 0, .16);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  padding: 4px 7px;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 8px 22px rgba(0, 0, 0, .16);
}

.brand img {
  width: clamp(142px, 12vw, 180px);
  max-height: 48px;
  height: auto;
  object-fit: contain;
  display: block;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(14px, 2vw, 26px);
  font-size: 14px;
  font-weight: 850;
  letter-spacing: .01em;
}

.main-nav a {
  position: relative;
  opacity: .93;
}

.main-nav a::after {
  position: absolute;
  content: "";
  left: 0;
  right: 0;
  bottom: -8px;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform .2s ease;
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after {
  transform: scaleX(1);
}

.mobile-nav-logo {
  display: none;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.phone-link {
  font-weight: 900;
  white-space: nowrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 12px 18px;
  border: 0;
  border-radius: 999px;
  font-weight: 800;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
}

.btn-gold {
  color: #211400;
  background: linear-gradient(135deg, #ffd977, var(--gold) 55%, #ff9f1c);
  box-shadow: 0 14px 30px rgba(255, 181, 54, .34);
}

.btn-navy {
  color: var(--white);
  background: linear-gradient(135deg, var(--navy), var(--navy-2));
  box-shadow: 0 12px 26px rgba(7, 27, 44, .24);
}

.btn-white {
  color: var(--navy);
  background: rgba(255, 255, 255, .94);
}

.btn-white.bordered {
  border: 1px solid rgba(6, 43, 58, .12);
}

.btn-ghost {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, .36);
  background: rgba(255, 255, 255, .12);
  backdrop-filter: blur(12px);
}

.nav-toggle {
  display: none;
}

.preloader {
  position: fixed;
  z-index: 100;
  inset: 0;
  display: grid;
  place-items: center;
  gap: 16px;
  color: var(--navy);
  background: var(--cream);
  transition: opacity .4s ease, visibility .4s ease;
}

.preloader img {
  width: 92px;
  animation: floatLogo 1.6s ease-in-out infinite;
}

.preloader span {
  margin-top: -44vh;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.preloader.hidden {
  opacity: 0;
  visibility: hidden;
}

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

.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  padding-top: calc(var(--header-h) + 80px);
}

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

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  background:
    radial-gradient(circle at 74% 18%, rgba(255, 181, 54, .28), transparent 30%),
    radial-gradient(circle at 12% 86%, rgba(245, 184, 65, .14), transparent 28%),
    linear-gradient(100deg, rgba(7, 31, 28, .9) 0%, rgba(11, 47, 42, .74) 46%, rgba(245, 184, 65, .18) 100%);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) 430px;
  align-items: center;
  gap: 44px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 34px;
  height: 2px;
  background: currentColor;
}

.hero h1,
.section-copy h2,
.section-head h2,
.adventure-content h2,
.contact-card h2 {
  margin: 0;
  font-family: var(--font-display);
  line-height: 1.04;
  letter-spacing: 0;
  font-weight: 950;
}

.hero h1 {
  max-width: 820px;
  font-size: clamp(48px, 6.8vw, 84px);
}

.hero-copy p {
  max-width: 630px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, .9);
  font-size: clamp(18px, 2vw, 21px);
  line-height: 1.58;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.trust-row span {
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 999px;
  background: rgba(255, 255, 255, .12);
  backdrop-filter: blur(12px);
  font-size: 14px;
  font-weight: 800;
}

.quick-inquiry,
.booking-form,
.contact-card,
.ticket-panel {
  border: 1px solid rgba(255, 255, 255, .34);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .18);
  box-shadow: var(--shadow);
  backdrop-filter: blur(22px);
}

.quick-inquiry {
  padding: 24px;
}

.form-heading {
  display: grid;
  gap: 4px;
  margin-bottom: 18px;
}

.form-heading span {
  color: var(--gold);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.form-heading strong {
  font-size: 24px;
  line-height: 1.2;
}

label {
  display: grid;
  gap: 7px;
  margin-bottom: 14px;
  font-size: 14px;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(7, 27, 44, .14);
  border-radius: var(--radius);
  color: var(--ink);
  background: var(--white);
  padding: 12px 14px;
  outline: none;
  transition: border .2s ease, box-shadow .2s ease;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--focus);
  box-shadow: 0 0 0 4px rgba(245, 184, 65, .22);
}

.form-note {
  min-height: 24px;
  margin: 12px 0 0;
  font-weight: 800;
}

.form-note.success {
  color: #0d7c58;
}

.form-note.error {
  color: #bd2f2f;
}

.stats-strip {
  background: linear-gradient(135deg, var(--navy), #092d40 54%, #06372e);
  color: var(--white);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, .12);
}

.stats-grid div {
  padding: 26px 20px;
  background: var(--navy);
}

.stats-grid strong {
  display: block;
  color: var(--accent);
  font-size: clamp(24px, 3vw, 36px);
  line-height: 1;
}

.stats-grid span {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, .78);
  font-weight: 700;
}

.two-col {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, .9fr);
  align-items: center;
  gap: 64px;
}

.image-stack {
  position: relative;
}

.main-photo {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.mini-card {
  position: absolute;
  right: 22px;
  bottom: 22px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  color: var(--navy);
  background: rgba(255, 255, 255, .92);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  font-weight: 900;
  backdrop-filter: blur(16px);
}

.mini-card img {
  width: 42px;
}

.section-copy h2,
.section-head h2,
.contact-card h2 {
  font-size: clamp(34px, 4.2vw, 54px);
}

.section-copy p,
.section-head p,
.adventure-content p,
.contact-card address,
.contact-card p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.72;
}

.about-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
  margin-top: 28px;
}

.text-link {
  color: var(--navy);
  font-weight: 900;
  text-decoration: underline;
  text-decoration-color: var(--gold);
  text-decoration-thickness: 3px;
  text-underline-offset: 6px;
}

.package-section,
.destinations-section,
.testimonials-section {
  background:
    radial-gradient(circle at 90% 8%, rgba(245, 184, 65, .1), transparent 24%),
    linear-gradient(180deg, var(--white), var(--cream));
}

.section-head {
  max-width: 780px;
  margin-bottom: 36px;
}

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

.package-card {
  overflow: hidden;
  border: 1px solid rgba(7, 27, 44, .1);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .95);
  box-shadow: var(--shadow-soft);
  transition: transform .22s ease, box-shadow .22s ease;
}

.package-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 24px 60px rgba(7, 27, 44, .18);
}

.package-media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 11;
}

.package-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .45s ease;
}

img.using-fallback {
  background: var(--mist);
}

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

.tag {
  position: absolute;
  left: 14px;
  top: 14px;
  padding: 7px 11px;
  color: var(--navy);
  background: linear-gradient(135deg, var(--gold), #ffe4a3);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
}

.package-body {
  padding: 22px;
}

.package-meta {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.package-body h3 {
  margin: 10px 0 8px;
  font-size: 22px;
  font-weight: 950;
  line-height: 1.18;
}

.package-body p {
  color: var(--muted);
  margin: 0;
}

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

.highlights li {
  padding: 6px 9px;
  color: var(--navy);
  background: linear-gradient(135deg, var(--mist), var(--ice));
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
}

.card-actions {
  display: flex;
  gap: 10px;
}

.card-actions .btn {
  flex: 1;
  min-height: 40px;
  padding: 9px 12px;
  font-size: 14px;
}

.services-grid,
.why-grid,
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.service-card,
.why-card,
.testimonial {
  margin: 0;
  padding: 24px;
  border: 1px solid rgba(7, 27, 44, .09);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .84);
  box-shadow: var(--shadow-soft);
  transition: transform .22s ease, border-color .22s ease;
}

.service-card:hover,
.why-card:hover,
.testimonial:hover {
  transform: translateY(-5px);
  border-color: rgba(244, 182, 63, .58);
}

.icon {
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  color: var(--navy);
  background: linear-gradient(135deg, var(--gold), #ffe4a3);
  border-radius: var(--radius);
  font-size: 13px;
  font-weight: 950;
}

.service-card h3,
.why-card h3 {
  margin: 18px 0 10px;
  line-height: 1.18;
}

.service-card p,
.why-card p,
.testimonial blockquote {
  margin: 0;
  color: var(--muted);
}

.destination-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr 1fr;
  grid-auto-rows: 230px;
  gap: 18px;
}

.destination-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--navy), var(--gold));
  box-shadow: var(--shadow-soft);
}

.destination-card.tall {
  grid-row: span 2;
}

.destination-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .82;
  transition: transform .45s ease, opacity .3s ease;
}

.destination-card:hover img {
  transform: scale(1.06);
  opacity: .68;
}

.destination-card div {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 18px;
  color: var(--white);
  text-shadow: 0 6px 20px rgba(0, 0, 0, .4);
}

.destination-card span {
  color: var(--gold);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.destination-card h3 {
  margin: 4px 0 0;
  font-size: 26px;
}

.split-highlight {
  background:
    radial-gradient(circle at 20% 16%, rgba(245, 184, 65, .16), transparent 30%),
    linear-gradient(135deg, var(--cream), var(--ice));
}

.feature-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 24px;
}

.feature-list span {
  padding: 14px;
  border-left: 4px solid var(--accent);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-soft);
  font-weight: 800;
}

.ticket-panel {
  padding: 38px;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(7, 27, 44, .94), rgba(8, 122, 89, .9)),
    url("assets/photos/flight.png") center/cover;
}

.ticket-panel span {
  color: var(--gold);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.ticket-panel h3 {
  margin: 14px 0 8px;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1;
}

.ticket-panel p {
  color: rgba(255, 255, 255, .82);
}

.adventure-banner {
  position: relative;
  min-height: 620px;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--white);
}

.adventure-banner > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.adventure-banner::after {
  position: absolute;
  content: "";
  inset: 0;
  background:
    radial-gradient(circle at 80% 20%, rgba(255, 181, 54, .2), transparent 28%),
    linear-gradient(90deg, rgba(7, 27, 44, .9), rgba(7, 27, 44, .58), rgba(14, 165, 183, .18));
}

.adventure-content {
  position: relative;
  z-index: 1;
  max-width: 720px;
}

.adventure-content h2 {
  font-size: clamp(40px, 6vw, 72px);
}

.adventure-content p {
  color: rgba(255, 255, 255, .88);
  font-size: 19px;
}

.why-card strong {
  color: var(--forest);
  font-size: 36px;
  line-height: 1;
}

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

.testimonial blockquote {
  font-size: 17px;
}

.testimonial figcaption {
  margin-top: 20px;
  color: var(--navy);
  font-weight: 950;
}

.testimonial figcaption span {
  display: block;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

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

.gallery-grid img {
  width: 100%;
  aspect-ratio: 1 / 1.16;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.contact-section {
  background:
    radial-gradient(circle at 12% 18%, rgba(255, 181, 54, .18), transparent 24%),
    radial-gradient(circle at 86% 14%, rgba(245, 184, 65, .12), transparent 28%),
    linear-gradient(135deg, var(--ice), var(--cream));
}

.contact-grid {
  display: grid;
  grid-template-columns: .86fr 1.14fr;
  gap: 34px;
  align-items: start;
}

.contact-card,
.booking-form {
  padding: 32px;
  color: var(--ink);
  background: rgba(255, 255, 255, .88);
}

.contact-card > img {
  width: min(320px, 100%);
  height: auto;
  object-fit: contain;
  object-position: left center;
  margin-bottom: 28px;
  border-radius: var(--radius);
}

address {
  font-style: normal;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

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

.full {
  grid-column: 1 / -1;
}

.site-footer {
  color: rgba(255, 255, 255, .78);
  background:
    radial-gradient(circle at 92% 0%, rgba(245, 184, 65, .14), transparent 26%),
    linear-gradient(135deg, #071f1c, var(--navy) 52%, #061a17);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr .9fr .9fr 1.25fr;
  gap: 38px;
  padding: 68px 0 42px;
}

.footer-brand p,
.site-footer p {
  margin: 0;
}

.footer-brand p {
  max-width: 34ch;
  color: rgba(255, 255, 255, .72);
}

.footer-logo {
  width: min(320px, 100%);
  height: auto;
  object-fit: contain;
  object-position: left center;
  display: block;
  padding: 10px;
  margin-bottom: 18px;
  border-radius: var(--radius);
  background: #fff;
}

.site-footer h3 {
  position: relative;
  color: var(--white);
  margin: 0 0 18px;
  padding-bottom: 12px;
}

.site-footer h3::after {
  position: absolute;
  content: "";
  left: 0;
  bottom: 0;
  width: 38px;
  height: 2px;
  border-radius: 999px;
  background: var(--gold);
}

.site-footer a {
  display: block;
  margin: 9px 0;
  color: rgba(255, 255, 255, .82);
  font-weight: 700;
}

.site-footer a:hover {
  color: var(--gold);
}

.footer-column {
  min-width: 0;
}

.site-footer .footer-link,
.footer-contact-line {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  min-width: 0;
}

.site-footer .footer-link {
  margin: 4px -10px;
  padding: 8px 10px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  color: rgba(255, 255, 255, .82);
  transition: background .2s ease, border-color .2s ease, color .2s ease, transform .2s ease;
}

.site-footer .footer-link:hover {
  color: var(--white);
  background: rgba(255, 255, 255, .07);
  border-color: rgba(245, 184, 65, .22);
  transform: translateX(3px);
}

.site-footer .footer-link svg,
.footer-contact-line > svg {
  flex: 0 0 18px;
  width: 18px;
  height: 18px;
  margin-top: 3px;
  color: var(--gold);
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.site-footer .footer-link span,
.footer-contact-line span {
  min-width: 0;
}

.footer-contact {
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .045);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .08);
}

.footer-contact-line {
  margin: 4px 0 8px;
  color: rgba(255, 255, 255, .82);
  font-weight: 700;
}

.footer-booking-numbers {
  margin: 4px 0 8px;
  line-height: 1.7;
}

.site-footer .footer-booking-numbers a {
  display: inline;
  margin: 0;
  color: rgba(255, 255, 255, .9);
}

.socials {
  display: flex;
  gap: 10px;
  margin-top: 16px;
}

.socials a {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  margin: 0;
  border-radius: 50%;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, .16);
  box-shadow: 0 12px 26px rgba(0, 0, 0, .18);
  transition: transform .2s ease, filter .2s ease;
}

.socials a:hover {
  transform: translateY(-2px);
  filter: brightness(1.08);
}

.socials svg {
  width: 21px;
  height: 21px;
  fill: currentColor;
}

.social-link.facebook {
  background: #1877f2;
}

.social-link.instagram {
  background:
    radial-gradient(circle at 30% 107%, #fdf497 0 16%, #fd5949 45%, #d6249f 65%, #285aeb 100%);
}

.social-link.tiktok {
  background: #000000;
}

.footer-bottom {
  padding: 20px 16px;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, .1);
}

.floating-actions {
  position: fixed;
  z-index: 40;
  right: 18px;
  bottom: 88px;
  display: grid;
  gap: 10px;
}

.float-btn,
.back-to-top {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border: 0;
  border-radius: 50%;
  box-shadow: var(--shadow-soft);
  cursor: pointer;
}

.float-btn svg,
.back-to-top svg {
  width: 23px;
  height: 23px;
  fill: currentColor;
}

.float-btn.call {
  color: var(--white);
  background: var(--navy);
}

.float-btn.whatsapp {
  color: var(--white);
  background: #25d366;
}

.back-to-top {
  position: fixed;
  z-index: 40;
  right: 18px;
  bottom: 24px;
  color: var(--navy);
  background: var(--gold);
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s ease, transform .2s ease;
}

.back-to-top.visible {
  opacity: 1;
  pointer-events: auto;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .65s ease, transform .65s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1120px) {
  .site-header {
    grid-template-columns: auto auto 1fr;
    gap: 16px;
  }

  .nav-toggle {
    display: inline-grid;
    place-items: center;
    width: 46px;
    height: 46px;
    margin-left: auto;
    border: 1px solid rgba(255, 255, 255, .24);
    border-radius: 50%;
    background: rgba(255, 255, 255, .12);
  }

  .nav-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--white);
    margin: 3px 0;
    transition: transform .2s ease, opacity .2s ease;
  }

  .nav-open .nav-toggle span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .nav-open .nav-toggle span:nth-child(2) {
    opacity: 0;
  }

  .nav-open .nav-toggle span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  .main-nav {
    position: fixed;
    inset: 0 0 0 auto;
    width: min(360px, 88vw);
    display: grid;
    align-content: start;
    justify-content: stretch;
    gap: 0;
    padding: 24px;
    color: var(--ink);
    background: var(--white);
    box-shadow: var(--shadow);
    transform: translateX(105%);
    transition: transform .25s ease;
  }

  .main-nav.open {
    transform: translateX(0);
  }

  .main-nav a {
    padding: 15px 0;
    border-bottom: 1px solid rgba(6, 43, 58, .1);
  }

  .main-nav a::after {
    display: none;
  }

  .mobile-nav-logo {
    display: block;
    width: min(100%, 330px);
    height: auto;
    object-fit: contain;
    object-position: center;
    margin: 0 auto 22px;
    border-radius: var(--radius);
    background: var(--white);
  }

  .header-actions .phone-link {
    display: none;
  }

  .hero-grid,
  .two-col,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .quick-inquiry {
    max-width: 560px;
  }

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

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

@media (max-width: 760px) {
  :root {
    --header-h: 86px;
  }

  .section-pad {
    padding: 70px 0;
  }

  .site-header {
    grid-template-columns: auto auto;
    gap: 12px;
    padding: 10px 16px;
  }

  .brand img {
    width: 142px;
    max-height: 46px;
    height: auto;
  }

  .brand {
    padding: 4px 6px;
  }

  .header-actions {
    position: fixed;
    left: 16px;
    right: 16px;
    bottom: 14px;
    z-index: 45;
    justify-content: space-between;
    padding: 10px;
    border: 1px solid rgba(255, 255, 255, .24);
    border-radius: 999px;
    background: rgba(6, 43, 58, .94);
    box-shadow: var(--shadow);
  }

  .header-actions .phone-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    min-height: 40px;
    padding: 0 13px;
    color: var(--white);
    background: var(--navy);
    border-radius: 999px;
    font-size: 0;
  }

  .header-actions .phone-link::after {
    content: "";
    width: 18px;
    height: 18px;
    background: currentColor;
    -webkit-mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6.6 10.8c1.7 3.3 3.3 4.9 6.6 6.6l2.2-2.2c.3-.3.8-.4 1.2-.3 1.3.4 2.6.6 4 .6.7 0 1.2.5 1.2 1.2v3.5c0 .7-.5 1.2-1.2 1.2C10.7 21.4 2.6 13.3 2.6 3.4c0-.7.5-1.2 1.2-1.2h3.5c.7 0 1.2.5 1.2 1.2 0 1.4.2 2.7.6 4 .1.4 0 .9-.3 1.2l-2.2 2.2Z'/%3E%3C/svg%3E") center / contain no-repeat;
    mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6.6 10.8c1.7 3.3 3.3 4.9 6.6 6.6l2.2-2.2c.3-.3.8-.4 1.2-.3 1.3.4 2.6.6 4 .6.7 0 1.2.5 1.2 1.2v3.5c0 .7-.5 1.2-1.2 1.2C10.7 21.4 2.6 13.3 2.6 3.4c0-.7.5-1.2 1.2-1.2h3.5c.7 0 1.2.5 1.2 1.2 0 1.4.2 2.7.6 4 .1.4 0 .9-.3 1.2l-2.2 2.2Z'/%3E%3C/svg%3E") center / contain no-repeat;
  }

  .header-actions .btn {
    min-height: 40px;
    padding: 9px 13px;
    font-size: 14px;
  }

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

  .hero-grid {
    gap: 28px;
  }

  .hero h1 {
    font-size: clamp(43px, 15vw, 64px);
  }

  .hero-ctas .btn {
    width: 100%;
  }

  .hero-ctas .btn-ghost {
    display: none;
  }

  .stats-grid,
  .package-grid,
  .services-grid,
  .why-grid,
  .testimonial-grid,
  .gallery-grid,
  .footer-grid,
  .form-grid,
  .feature-list {
    grid-template-columns: 1fr;
  }

  .destination-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 260px;
  }

  .destination-card.tall {
    grid-row: span 1;
  }

  .contact-card,
  .booking-form,
  .quick-inquiry {
    padding: 22px;
  }

  .card-actions,
  .contact-actions {
    flex-direction: column;
  }

  .floating-actions,
  .back-to-top {
    right: 16px;
  }

  .floating-actions {
    bottom: 96px;
  }

  .floating-actions .call {
    display: none;
  }

  .back-to-top {
    bottom: 36px;
  }

  .footer-bottom {
    padding-bottom: 92px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation: none !important;
    transition: none !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
