:root {
  color-scheme: light;
  --bg: #fdf2fb;
  --surface: rgba(255, 255, 255, 0.9);
  --surface-strong: #ffffff;
  --surface-soft: #f8e8ff;
  --text: #1f2940;
  --muted: #667085;
  --line: rgba(82, 44, 122, 0.12);
  --brand: #8b5cf6;
  --brand-deep: #5b3b8a;
  --brand-soft: #f5dcff;
  --navy: #17233f;
  --pink: #ff78af;
  --success: #1d9a6c;
  --shadow-lg: 0 20px 50px rgba(23, 35, 63, 0.12);
  --shadow-md: 0 10px 30px rgba(23, 35, 63, 0.08);
  --radius-xl: 28px;
  --radius-lg: 20px;
  --radius-md: 16px;
  --container: 1200px;
}

html.dark {
  color-scheme: dark;
  --bg: #160f24;
  --surface: rgba(20, 24, 41, 0.88);
  --surface-strong: #171b2d;
  --surface-soft: #241a38;
  --text: #f6f4ff;
  --muted: #c4bfd8;
  --line: rgba(224, 212, 255, 0.12);
  --brand: #b48cff;
  --brand-deep: #d8c6ff;
  --brand-soft: rgba(180, 140, 255, 0.14);
  --navy: #ecf1ff;
  --pink: #ff9fc7;
  --shadow-lg: 0 20px 50px rgba(0, 0, 0, 0.32);
  --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.24);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Plus Jakarta Sans", sans-serif;
  background:
    radial-gradient(circle at 12% 8%, rgba(255, 120, 175, 0.28), transparent 24%),
    radial-gradient(circle at 82% 10%, rgba(139, 92, 246, 0.34), transparent 28%),
    radial-gradient(circle at 50% 55%, rgba(236, 72, 153, 0.12), transparent 30%),
    linear-gradient(135deg, #fff1f8 0%, #f7e8ff 42%, #efe1ff 100%);
  color: var(--text);
  min-height: 100vh;
  transition: background-color 0.35s ease, color 0.35s ease;
}

html.dark body {
  background:
    radial-gradient(circle at 12% 8%, rgba(255, 120, 175, 0.18), transparent 24%),
    radial-gradient(circle at 82% 12%, rgba(180, 140, 255, 0.28), transparent 30%),
    radial-gradient(circle at 50% 58%, rgba(236, 72, 153, 0.08), transparent 28%),
    linear-gradient(135deg, #160f24 0%, #1d1430 42%, #27173f 100%);
}

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

a {
  color: inherit;
}

.container-shell {
  width: min(calc(100% - 2rem), var(--container));
  margin: 0 auto;
}

.section-shell {
  padding: 4.5rem 0;
}

.section-shell-lg {
  padding: 6rem 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.5rem 0.9rem;
  border-radius: 999px;
  background: var(--brand-soft);
  color: var(--brand-deep);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.brand-wordmark {
  font-family: "Cormorant Garamond", serif;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.glass-panel {
  background: var(--surface);
  backdrop-filter: blur(16px);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
}

.premium-card {
  background: var(--surface-strong);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.soft-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(244, 236, 255, 0.9));
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
}

html.dark .soft-card {
  background: linear-gradient(180deg, rgba(23, 27, 45, 0.96), rgba(29, 33, 54, 0.92));
}

.btn-primary,
.btn-secondary,
.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease, color 0.25s ease;
}

.btn-primary {
  background: linear-gradient(135deg, var(--brand), var(--pink));
  color: #fff;
  padding: 0.95rem 1.4rem;
  box-shadow: 0 18px 35px rgba(139, 92, 246, 0.26);
}

.btn-secondary {
  background: var(--surface-strong);
  color: var(--navy);
  border: 1px solid var(--line);
  padding: 0.95rem 1.4rem;
}

.btn-ghost {
  color: var(--brand-deep);
  padding: 0.75rem 1rem;
}

.btn-primary:hover,
.btn-secondary:hover,
.btn-ghost:hover {
  transform: translateY(-2px);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  padding: 0.9rem 0;
  transition: padding 0.25s ease, background-color 0.25s ease;
}

.site-header.scrolled {
  padding: 0.55rem 0;
}

.nav-shell {
  border-radius: 999px;
  padding: 0.9rem 1rem;
}

.nav-link {
  position: relative;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s ease;
}

.nav-link:hover,
.nav-link.active {
  color: var(--brand-deep);
}

.nav-link.active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.55rem;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--brand), var(--pink));
}

.hero-grid {
  display: grid;
  gap: 2rem;
  align-items: center;
}

.hero-visual {
  position: relative;
}

.metric-card {
  border-radius: var(--radius-md);
  padding: 1rem;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(255, 255, 255, 0.75);
  box-shadow: var(--shadow-md);
}

html.dark .metric-card {
  background: rgba(23, 27, 45, 0.88);
  border-color: rgba(255, 255, 255, 0.08);
}

.icon-bubble {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, rgba(139, 92, 246, 0.18), rgba(255, 120, 175, 0.18));
  color: var(--brand-deep);
}

.trip-card,
.story-card,
.team-card,
.blog-card,
.value-card,
.faq-item,
.contact-card {
  height: 100%;
}

.trip-card img,
.story-card img,
.team-card img,
.blog-card img,
.gallery-shot img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  background: var(--brand-soft);
  color: var(--brand-deep);
  font-size: 0.78rem;
  font-weight: 700;
}

.stat-number {
  font-size: clamp(2rem, 5vw, 3.6rem);
  line-height: 1;
  font-weight: 800;
  color: var(--brand-deep);
}

.footer-link {
  color: var(--muted);
  text-decoration: none;
}

.footer-link:hover {
  color: var(--brand-deep);
}

.form-field {
  width: 100%;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: var(--surface-strong);
  color: var(--text);
  padding: 0.95rem 1rem;
  font: inherit;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-field:focus {
  outline: none;
  border-color: rgba(139, 92, 246, 0.52);
  box-shadow: 0 0 0 4px rgba(139, 92, 246, 0.12);
}

.field-error {
  border-color: rgba(220, 38, 38, 0.45);
}

.error-text {
  color: #dc2626;
  font-size: 0.84rem;
  margin-top: 0.35rem;
}

.success-text {
  color: var(--success);
  font-size: 0.92rem;
  margin-top: 1rem;
  font-weight: 600;
}

.loading-screen {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  background: linear-gradient(180deg, rgba(252, 249, 255, 0.98), rgba(247, 243, 255, 0.98));
  transition: opacity 0.35s ease, visibility 0.35s ease;
}

html.dark .loading-screen {
  background: linear-gradient(180deg, rgba(15, 18, 33, 0.98), rgba(19, 24, 43, 0.98));
}

.loading-screen.hidden {
  opacity: 0;
  visibility: hidden;
}

.loader-orbit {
  width: 84px;
  height: 84px;
  border-radius: 50%;
  border: 3px solid rgba(139, 92, 246, 0.18);
  border-top-color: var(--brand);
  animation: spin 1s linear infinite;
}

.mobile-menu {
  display: none;
}

.mobile-menu.open {
  display: block;
}

.map-placeholder {
  min-height: 320px;
  background:
    linear-gradient(135deg, rgba(23, 35, 63, 0.9), rgba(139, 92, 246, 0.82)),
    linear-gradient(180deg, #f4ecff, #fff);
  color: #fff;
}

.gallery-shot {
  overflow: hidden;
  cursor: pointer;
}

.gallery-shot button {
  all: unset;
  cursor: pointer;
  display: block;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  background: rgba(7, 10, 19, 0.82);
}

.lightbox.open {
  display: flex;
}

.lightbox-panel {
  width: min(100%, 960px);
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: var(--surface-strong);
  box-shadow: var(--shadow-lg);
}

.lightbox img {
  width: 100%;
  max-height: 78vh;
  object-fit: cover;
}

.back-to-top {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 45;
  width: 3.2rem;
  height: 3.2rem;
  border: 0;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand), var(--pink));
  color: #fff;
  box-shadow: 0 18px 35px rgba(139, 92, 246, 0.26);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -3rem;
  z-index: 120;
  background: var(--navy);
  color: #fff;
  padding: 0.75rem 1rem;
  border-radius: 999px;
}

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

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

@media (min-width: 768px) {
  .section-shell {
    padding: 5.5rem 0;
  }

  .hero-grid {
    grid-template-columns: 1.05fr 0.95fr;
  }
}

@media (max-width: 1023px) {
  .desktop-nav {
    display: none;
  }
}

@media (max-width: 767px) {
  .nav-shell {
    border-radius: 28px;
  }

  .section-shell-lg {
    padding: 5rem 0;
  }

  .back-to-top {
    right: 0.8rem;
    bottom: 0.8rem;
  }
}
