:root {
  --bg: #07131d;
  --bg-deep: #04101a;
  --panel: rgba(7, 25, 38, 0.72);
  --panel-solid: #0f2434;
  --panel-soft: #102f42;
  --text: #f6f2ea;
  --muted: #b7c7d3;
  --line: rgba(255, 255, 255, 0.12);
  --accent: #e6973f;
  --accent-soft: #ffcb8f;
  --sea: #5db9c5;
  --sea-deep: #0d5f6e;
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
  --radius-lg: 28px;
  --radius-md: 20px;
  --radius-sm: 14px;
  --container: min(1160px, calc(100vw - 40px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Plus Jakarta Sans", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(93, 185, 197, 0.22), transparent 28%),
    radial-gradient(circle at top right, rgba(230, 151, 63, 0.18), transparent 22%),
    linear-gradient(180deg, #0b1d2b 0%, var(--bg) 46%, var(--bg-deep) 100%);
}

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

address {
  font-style: normal;
}

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

.page-shell {
  min-height: 100vh;
  overflow: hidden;
}

.site-header,
.section,
.site-footer {
  width: var(--container);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 22px 0;
  backdrop-filter: blur(22px);
}

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

.language-switcher {
  display: inline-flex;
  align-items: center;
  padding: 4px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
}

.language-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  min-height: 36px;
  padding: 0 12px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  font: inherit;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  cursor: pointer;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.language-button:hover,
.language-button:focus-visible {
  color: var(--text);
}

.language-button.is-active {
  color: #072030;
  background: linear-gradient(135deg, var(--accent) 0%, #ffc583 100%);
}

.brand img,
.footer-logo {
  width: 185px;
}

.site-nav {
  display: flex;
  gap: 24px;
  color: var(--muted);
  font-size: 0.95rem;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--text);
}

.hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  margin: 0 0 48px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.hero-media,
.hero-media video,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(4, 16, 26, 0.9) 0%, rgba(4, 16, 26, 0.54) 44%, rgba(4, 16, 26, 0.22) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.1) 0%, rgba(4, 16, 26, 0.48) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 1040px;
  padding: 112px 56px 64px;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--accent-soft);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  line-height: 0.95;
}

h1 {
  font-size: clamp(3.3rem, 7.2vw, 5.9rem);
  max-width: 20ch;
}

h2 {
  font-size: clamp(2.15rem, 4.1vw, 3.75rem);
  max-width: 20ch;
}

h3 {
  font-size: clamp(1.8rem, 2.4vw, 2.3rem);
}

.hero-copy,
.intro p,
.tour-card p,
.detail-card p,
.promise-copy p,
.point-card span,
.cta-card p,
.metrics-card p {
  color: var(--muted);
  line-height: 1.7;
}

.hero-copy {
  max-width: 58ch;
  margin: 24px 0 0;
  font-size: 1.04rem;
}

.hero-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

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

.button-primary {
  color: #072030;
  background: linear-gradient(135deg, var(--accent) 0%, #ffc583 100%);
}

.button-secondary,
.button-ghost {
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.04);
}

.hero-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: 40px 0 0;
  padding: 0;
  list-style: none;
}

.hero-facts li,
.metrics-card,
.detail-card,
.review-card,
.point-card {
  backdrop-filter: blur(18px);
  background: rgba(10, 28, 41, 0.54);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: var(--shadow);
}

.hero-facts li {
  padding: 18px;
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  line-height: 1.5;
}

.section {
  padding: 48px 0;
}

.intro-grid,
.section-heading,
.experience-layout,
.promise-panel,
.cta-card {
  display: grid;
  gap: 24px;
}

.intro-grid {
  grid-template-columns: 1.2fr 0.8fr;
  align-items: start;
  margin-top: 28px;
}

.metrics-card {
  padding: 30px;
  border-radius: var(--radius-lg);
}

.metrics-card span {
  color: var(--accent-soft);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.72rem;
  font-weight: 700;
}

.metrics-card strong {
  display: block;
  margin-top: 12px;
  font-size: 2rem;
  font-family: "Cormorant Garamond", serif;
}

.section-heading {
  align-items: end;
  margin-bottom: 24px;
}

.tour-grid,
.review-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.tour-card {
  display: grid;
  grid-template-rows: auto 1fr;
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
}

.tour-card img {
  flex-shrink: 0;
  aspect-ratio: 4 / 3;
  width: 100%;
  object-fit: cover;
}

.tour-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  padding: 24px;
}

.tour-card__body > span {
  margin-bottom: 0;
}

.tour-card__body p {
  margin: 0;
}

.tour-card span {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--sea);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-weight: 700;
}

.tour-card__cta {
  min-height: 44px;
  margin-top: auto;
  padding: 0 18px;
}

.experience-layout {
  grid-template-columns: 1.06fr 0.94fr;
  align-items: start;
}

.experience-feature {
  overflow: hidden;
  border-radius: 34px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
}

.experience-feature img {
  width: 100%;
  aspect-ratio: 4 / 4.4;
  object-fit: cover;
}

.experience-feature__copy {
  padding: 28px;
}

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

.detail-card {
  min-height: 180px;
  padding: 24px;
  border-radius: var(--radius-md);
}

.promise-panel,
.cta-card {
  align-items: center;
  padding: 34px;
  border-radius: 34px;
  border: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(14, 37, 52, 0.86) 0%, rgba(8, 23, 35, 0.9) 100%);
  box-shadow: var(--shadow);
}

.promise-panel {
  grid-template-columns: 1.1fr 0.9fr;
}

.promise-points {
  display: grid;
  gap: 14px;
}

.point-card {
  padding: 20px;
  border-radius: var(--radius-md);
}

.point-card strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1.1rem;
}

.review-card {
  margin: 0;
  padding: 28px;
  border-radius: var(--radius-lg);
}

.review-card p {
  margin: 0 0 24px;
  font-size: 1.03rem;
  line-height: 1.8;
}

.review-card footer {
  color: var(--accent-soft);
  font-size: 0.95rem;
  font-weight: 700;
}

.cta-card {
  grid-template-columns: 1.2fr auto;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 0 0 48px;
  color: var(--muted);
}

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

.js .reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 700ms ease, transform 700ms ease;
}

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

@media (max-width: 1080px) {
  .tour-grid,
  .review-grid,
  .experience-list,
  .promise-panel,
  .cta-card,
  .experience-layout,
  .intro-grid {
    grid-template-columns: 1fr;
  }

  .hero-facts {
    grid-template-columns: 1fr;
    max-width: 420px;
  }

  .site-nav {
    display: none;
  }
}

@media (max-width: 720px) {
  .site-header {
    padding: 16px 0;
  }

  .button-ghost {
    display: none;
  }

  .header-actions {
    margin-left: auto;
  }

  .hero {
    min-height: auto;
  }

  .hero-content {
    max-width: 100%;
    padding: 108px 24px 28px;
  }

  h1 {
    font-size: clamp(2.5rem, 10.5vw, 3.65rem);
    max-width: 12.5ch;
  }

  h2 {
    font-size: clamp(1.8rem, 7.8vw, 2.55rem);
    max-width: 13ch;
  }

  h3 {
    font-size: clamp(1.45rem, 6.4vw, 1.9rem);
  }

  .tour-grid,
  .review-grid {
    grid-template-columns: 1fr;
  }

  .experience-list {
    grid-template-columns: 1fr;
  }

  .promise-panel,
  .cta-card {
    padding: 24px;
  }

  .site-footer {
    flex-direction: column;
    align-items: flex-start;
  }
}
