:root {
  --ink: #161616;
  --muted: #7b818a;
  --paper: #f1f1f1;
  --panel: #fbfbfb;
  --line: #e7e7e7;
  --white: #fff;
  --black: #111;
  --accent: #f05f45;
  --gold: #f5c24d;
  --shadow: 0 22px 60px rgba(0, 0, 0, .13);
  --soft-shadow: 0 12px 36px rgba(0, 0, 0, .08);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: radial-gradient(circle at top, #fafafa 0, var(--paper) 44%, #e8e8e8 100%);
  line-height: 1.45;
}
img, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }

.sr-only,
.hidden-email {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.page-shell {
  width: 100%;
  margin: 0;
  overflow: hidden;
  border-radius: 0;
  background: var(--panel);
  box-shadow: none;
}

.hero-card {
  position: relative;
  min-height: 720px;
  overflow: hidden;
  border-radius: 0;
  color: var(--white);
}
.hero-media,
.hero-media::after {
  position: absolute;
  inset: 0;
}
.hero-media { background: #111; }
.hero-media img,
.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-video {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity .35s ease;
}
.hero-video.is-ready { opacity: 1; }
.hero-media::after {
  content: "";
  background:
    linear-gradient(180deg, rgba(0, 0, 0, .48), rgba(0, 0, 0, .22) 42%, rgba(0, 0, 0, .58)),
    linear-gradient(90deg, rgba(0, 0, 0, .38), rgba(0, 0, 0, .05) 62%);
}

.site-header {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: 180px 1fr auto;
  align-items: center;
  gap: 18px;
  padding: 28px 42px 0;
}
.brand img {
  width: 145px;
  height: auto;
  filter: brightness(0) invert(1);
}
.site-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 6px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 999px;
  background: rgba(255, 255, 255, .12);
  backdrop-filter: blur(18px);
}
.site-nav a {
  padding: 8px 18px;
  border-radius: 999px;
  color: rgba(255, 255, 255, .78);
  font-size: 13px;
  font-weight: 700;
}
.site-nav a:hover {
  color: var(--white);
  background: rgba(255, 255, 255, .14);
}
.header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}
.social-link {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  color: var(--white);
  background: rgba(255, 255, 255, .16);
}
.social-link svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}
.login-pill {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 24px;
  border-radius: 999px;
  color: var(--black);
  background: var(--white);
  font-size: 13px;
  font-weight: 900;
  box-shadow: 0 12px 28px rgba(0, 0, 0, .14);
}
.menu-toggle { display: none; }

.legal-page {
  background: #f8f8f8;
}
.legal-header {
  padding-bottom: 28px;
  background: #171313;
}
.legal-hero {
  padding: clamp(80px, 10vw, 130px) 96px 54px;
  text-align: center;
}
.legal-hero h1 {
  max-width: 1200px;
  color: var(--black);
}
.legal-hero p:not(.eyebrow) {
  margin: 18px 0 0;
  color: var(--muted);
  font-weight: 800;
}
.legal-layout {
  display: grid;
  grid-template-columns: 260px minmax(0, 860px);
  gap: 34px;
  justify-content: center;
  align-items: start;
  padding: 0 96px 110px;
}
.legal-index {
  position: sticky;
  top: 24px;
  display: grid;
  gap: 8px;
  padding: 18px;
  border-radius: 18px;
  background: var(--white);
  box-shadow: var(--soft-shadow);
}
.legal-index a {
  padding: 10px 12px;
  border-radius: 999px;
  color: #5d636b;
  font-size: 13px;
  font-weight: 800;
}
.legal-index a:hover {
  color: var(--white);
  background: var(--black);
}
.legal-content {
  display: grid;
  gap: 18px;
}
.legal-content section {
  padding: clamp(28px, 4vw, 46px);
  border-radius: 20px;
  background: var(--white);
  box-shadow: var(--soft-shadow);
}
.legal-content h2 {
  margin-bottom: 18px;
  font-size: clamp(24px, 3vw, 36px);
}
.legal-content p {
  margin: 0;
  color: #59616a;
  font-size: 16px;
  line-height: 1.75;
}
.legal-content p + p {
  margin-top: 14px;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 820px;
  margin: 128px auto 0;
  padding: 0 28px;
  text-align: center;
}
.eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.eyebrow.dark { color: #a7a7a7; }
h1, h2, h3, p { overflow-wrap: anywhere; }
h1 {
  margin: 0 auto;
  max-width: 820px;
  font-size: clamp(46px, 6vw, 76px);
  line-height: .97;
  letter-spacing: 0;
}
h2 {
  margin: 0;
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.02;
  letter-spacing: 0;
}
h3 {
  margin: 0 0 6px;
  font-size: 18px;
  line-height: 1.15;
}
.hero-content p:not(.eyebrow) {
  max-width: 620px;
  margin: 18px auto 0;
  color: rgba(255, 255, 255, .78);
  font-size: 16px;
}

.hero-search {
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(0, 1fr) auto;
  gap: 0;
  width: min(760px, calc(100% - 48px));
  margin: 34px auto 0;
  padding: 7px;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 999px;
  background: rgba(255, 255, 255, .18);
  backdrop-filter: blur(22px);
}
.hero-search div {
  display: grid;
  gap: 2px;
  min-width: 0;
  padding: 6px 22px;
  border-right: 1px solid rgba(255, 255, 255, .2);
}
.hero-search div:nth-child(2) {
  border-right: 0;
}
.hero-search span {
  color: rgba(255, 255, 255, .72);
  font-size: 12px;
  font-weight: 900;
}
.hero-search strong {
  display: block;
  min-width: 0;
  overflow: hidden;
  color: var(--white);
  font-size: 14px;
  font-weight: 900;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.hero-search a,
.button.primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  color: var(--white);
  background: var(--black);
  font-weight: 900;
  cursor: pointer;
}
.hero-search a {
  min-width: 118px;
  min-height: 48px;
  padding: 0 22px;
  font-size: 14px;
}

.stats-row {
  position: relative;
  z-index: 5;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  width: min(980px, calc(100% - 90px));
  margin: -48px auto 76px;
}
.stats-row article {
  display: grid;
  justify-items: center;
  gap: 2px;
  min-height: 96px;
  padding: 18px 12px;
  border-radius: 10px;
  background: var(--white);
  box-shadow: var(--shadow);
}
.stats-row strong {
  font-size: 28px;
  line-height: 1;
}
.stats-row span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.section { padding: 0 96px 112px; }
.section-head { margin: 0 0 36px; }
.section-head.split {
  display: grid;
  grid-template-columns: 1fr minmax(260px, 420px);
  gap: 44px;
  align-items: end;
}
.section-head.compact {
  max-width: 1120px;
  margin-inline: auto;
  text-align: center;
}
.section-head.compact p:not(.eyebrow) {
  max-width: 920px;
  margin-inline: auto;
}
.section-head.stacked {
  max-width: 1040px;
  margin-inline: auto;
  text-align: center;
}
.section-head.stacked p:not(.eyebrow) {
  max-width: 920px;
  margin-inline: auto;
  margin-top: 16px;
}
.section-head p:not(.eyebrow) {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}
.section-head.compact p:not(.eyebrow) { margin-top: 14px; }

.destination-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, .9fr);
  grid-template-rows: repeat(3, 180px);
  gap: 18px;
}
.destination-card {
  position: relative;
  overflow: hidden;
  min-height: 180px;
  border-radius: 14px;
  background: var(--black);
  box-shadow: var(--soft-shadow);
}
.destination-card.large { grid-row: 1 / span 3; }
.destination-card img,
.package-card img,
.feature-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .45s ease;
}
.destination-card::after,
.package-card::after,
.feature-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, .68), rgba(0, 0, 0, .05) 58%);
}
.destination-card span {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 22px;
  z-index: 1;
  display: grid;
  gap: 4px;
  color: var(--white);
  font-size: 22px;
  font-weight: 900;
}
.destination-card small {
  color: rgba(255, 255, 255, .75);
  font-size: 12px;
  font-weight: 600;
}
.destination-card:hover img,
.package-card:hover img { transform: scale(1.05); }

.experience {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) minmax(320px, 1fr);
  gap: 56px;
  align-items: center;
}
.feature-photo {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  border-radius: 14px;
  color: var(--white);
  box-shadow: var(--shadow);
}
.feature-photo img {
  position: absolute;
  inset: 0;
}
.feature-copy {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 28px;
  z-index: 2;
  display: grid;
  justify-items: start;
  gap: 18px;
}
.feature-copy p {
  margin: 0;
  color: rgba(255, 255, 255, .82);
  font-size: 14px;
  line-height: 1.55;
}
.feature-copy a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 22px;
  border-radius: 999px;
  color: var(--black);
  background: var(--white);
  font-size: 13px;
  font-weight: 900;
  box-shadow: 0 12px 28px rgba(0, 0, 0, .18);
}
.steps h2 { margin-bottom: 26px; }
.steps article {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 16px;
  align-items: start;
  margin-top: 14px;
  padding: 20px;
  border-radius: 12px;
  background: var(--white);
  box-shadow: 0 8px 28px rgba(0, 0, 0, .05);
}
.steps article span {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  color: var(--black);
  background: #f3f3f3;
  font-size: 12px;
  font-weight: 900;
}
.steps article p { margin: 0; color: var(--muted); font-size: 14px; }

.service-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
}
.service-grid article {
  min-height: 128px;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 12px;
  padding: 18px;
  border-radius: 14px;
  background: var(--white);
  box-shadow: 0 10px 26px rgba(0, 0, 0, .05);
  text-align: center;
}
.service-grid span {
  display: grid;
  place-items: center;
  color: var(--accent);
}
.service-grid svg {
  width: 34px;
  height: 34px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.service-grid strong { font-size: 13px; }

.package-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.package-card {
  position: relative;
  min-height: 360px;
  overflow: hidden;
  border-radius: 18px;
  color: var(--white);
  box-shadow: var(--shadow);
}
.badge {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 2;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .18);
  backdrop-filter: blur(12px);
  font-size: 12px;
  font-weight: 800;
}
.package-card div {
  position: absolute;
  left: 22px;
  right: 110px;
  bottom: 22px;
  z-index: 2;
  display: grid;
  gap: 5px;
}
.package-card small { color: rgba(255, 255, 255, .72); }
.package-card strong { font-size: 20px; }
.package-card a {
  position: absolute;
  right: 18px;
  bottom: 20px;
  z-index: 2;
  padding: 10px 16px;
  border-radius: 999px;
  color: var(--black);
  background: var(--white);
  font-size: 12px;
  font-weight: 900;
}

.testimonial-carousel {
  max-width: 920px;
  margin: 0 auto;
}
.testimonial-track {
  position: relative;
  min-height: 310px;
  overflow: hidden;
}
.testimonial-card {
  position: absolute;
  inset: 0;
  display: grid;
  align-content: center;
  gap: 24px;
  padding: clamp(28px, 5vw, 56px);
  border-radius: 18px;
  background: var(--white);
  box-shadow: var(--soft-shadow);
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity .28s ease, transform .28s ease;
}
.testimonial-card.is-active {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.stars {
  color: var(--gold);
  font-size: 18px;
  letter-spacing: .12em;
}
.testimonial-card blockquote {
  margin: 0;
  max-width: 760px;
  font-size: clamp(20px, 3vw, 30px);
  font-weight: 800;
  line-height: 1.25;
}
.testimonial-person {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 12px 14px;
  align-items: center;
}
.testimonial-person span {
  grid-row: span 2;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  color: var(--white);
  background: var(--black);
  font-size: 13px;
  font-weight: 900;
}
.testimonial-person strong {
  align-self: end;
}
.testimonial-person small {
  align-self: start;
  color: var(--muted);
  font-size: 13px;
}
.testimonial-controls {
  position: relative;
  z-index: 4;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 18px;
  margin-top: 22px;
}
.testimonial-controls button {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  color: var(--white);
  background: var(--black);
  font-size: 18px;
  font-weight: 900;
  cursor: pointer;
}
.testimonial-dots {
  display: flex;
  gap: 8px;
}
.testimonial-dots button {
  width: 9px;
  height: 9px;
  min-width: 0;
  border-radius: 50%;
  padding: 0;
  background: #d4d4d4;
}
.testimonial-dots button.is-active {
  width: 24px;
  border-radius: 999px;
  background: var(--black);
}

.contact-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(360px, .82fr);
  align-items: stretch;
  gap: 24px;
  max-width: 1180px;
  margin: 42px auto 0;
}
.quote-form,
.contact-card {
  display: grid;
  gap: 18px;
  padding: clamp(34px, 4vw, 48px);
  border-radius: 20px;
  background: var(--white);
  box-shadow: var(--soft-shadow);
}
.quote-form {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-content: start;
}
.quote-form label {
  display: grid;
  gap: 10px;
  color: #5d636b;
  font-size: 13px;
  font-weight: 900;
}
.quote-form label:nth-child(3),
.quote-form label:nth-child(4),
.quote-form button { grid-column: 1 / -1; }
.quote-form input,
.quote-form textarea,
.newsletter input {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 16px 20px;
  background: #fafafa;
  outline: 0;
}
.quote-form textarea {
  min-height: 150px;
  border-radius: 20px;
  resize: vertical;
}
.quote-form input:focus,
.quote-form textarea:focus,
.newsletter input:focus {
  border-color: #bcbcbc;
  background: var(--white);
}
.button.primary {
  min-height: 58px;
  font-size: 16px;
}
.contact-card {
  align-content: center;
  gap: 24px;
  background: #171313;
  color: var(--white);
}
.contact-card h3 {
  margin: 0;
  font-size: 21px;
}
.contact-card p {
  max-width: 460px;
  margin: 0;
  color: rgba(255, 255, 255, .62);
  font-size: 15px;
  font-weight: 500;
  line-height: 1.5;
}
.contact-card a {
  color: var(--white);
  font-size: 16px;
  font-weight: 800;
}

.site-footer {
  display: grid;
  gap: 24px;
  padding: 70px 96px 34px;
  color: rgba(255, 255, 255, .66);
  background: #171313;
}
.footer-top {
  display: grid;
  grid-template-columns: minmax(280px, 380px) minmax(140px, 200px);
  justify-content: center;
  gap: 90px;
}
.footer-brand {
  display: grid;
  justify-items: start;
  gap: 12px;
  text-align: left;
}
.site-footer img {
  width: 135px;
  height: auto;
  margin: 0;
  filter: brightness(0) invert(1);
}
.site-footer p { margin: 0; }
.legal-links {
  grid-column: 1 / -1;
  justify-self: center;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  color: rgba(255, 255, 255, .78);
  font-size: 13px;
  font-weight: 700;
}
.legal-links span {
  color: rgba(255, 255, 255, .36);
}
.site-footer nav {
  display: grid;
  gap: 11px;
  justify-items: center;
  align-content: start;
}
.site-footer a,
.newsletter label {
  color: rgba(255, 255, 255, .82);
  font-size: 13px;
  font-weight: 700;
}
.newsletter {
  display: grid;
  align-content: start;
  justify-self: center;
  width: min(100%, 360px);
  margin-top: 26px;
  margin-bottom: 0;
  text-align: center;
}
.newsletter form {
  display: grid;
  gap: 10px;
}
.newsletter-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
  padding: 4px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 999px;
}
.newsletter-alert {
  padding: 9px 12px;
  border-radius: 10px;
  color: var(--white);
  background: rgba(255, 255, 255, .12);
  font-size: 12px;
}
.newsletter input {
  border: 0;
  color: var(--white);
  background: transparent;
  min-height: 38px;
  padding: 0 14px;
  font-size: 13px;
}
.newsletter button {
  border: 0;
  border-radius: 999px;
  min-height: 38px;
  padding: 0 16px;
  color: var(--black);
  background: var(--white);
  font-size: 12px;
  font-weight: 900;
}
.copyright {
  grid-column: 1 / -1;
  justify-self: center;
  padding-top: 0;
  margin-top: 6px;
  font-size: 12px;
}

@media (max-width: 980px) {
  .page-shell {
    width: 100%;
    margin: 0;
  }
  .hero-card { min-height: 680px; }
  .site-header {
    grid-template-columns: 1fr auto;
    padding: 22px 22px 0;
  }
  .legal-header {
    padding-bottom: 22px;
  }
  .menu-toggle {
    display: grid;
    gap: 5px;
    place-content: center;
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, .18);
  }
  .menu-toggle span:not(.sr-only) {
    width: 18px;
    height: 2px;
    background: var(--white);
  }
  .site-nav {
    position: absolute;
    top: 76px;
    left: 22px;
    right: 22px;
    display: none;
    border-radius: 16px;
    background: rgba(20, 20, 20, .88);
  }
  .site-nav.is-open { display: grid; }
  .header-actions { display: none; }
  .hero-content { margin-top: 110px; }
  .hero-search {
    grid-template-columns: 1fr;
    border-radius: 22px;
  }
  .hero-search div {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, .16);
  }
  .hero-search div:nth-child(2) {
    border-bottom: 0;
  }
  .hero-search a { min-height: 52px; }
  .stats-row,
  .destination-grid,
  .experience,
  .service-grid,
  .package-grid,
  .contact-panel,
  .site-footer,
  .section-head.split {
    grid-template-columns: 1fr;
  }
  .section { padding: 0 28px 78px; }
  .legal-hero {
    padding: 70px 28px 42px;
  }
  .legal-layout {
    grid-template-columns: 1fr;
    padding: 0 28px 78px;
  }
  .legal-index {
    position: static;
  }
  .stats-row { width: min(100% - 34px, 680px); }
  .destination-card.large { grid-row: span 1; }
  .feature-photo { min-height: 440px; }
  .site-footer { padding: 54px 28px 28px; }
  .footer-top {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .footer-brand {
    justify-items: center;
    text-align: center;
  }
  .legal-links {
    justify-content: center;
  }
  .newsletter { justify-self: stretch; }
}

@media (max-width: 620px) {
  .hero-card { min-height: 740px; }
  h1 { font-size: 43px; }
  h2 { font-size: 32px; }
  .stats-row { grid-template-columns: repeat(2, 1fr); margin-top: -34px; }
  .quote-form { grid-template-columns: 1fr; }
  .package-card { min-height: 330px; }
}
