:root {
  --bg: #1b2740;
  --bg-2: #243555;
  --bg-3: #11192b;
  --surface: #2e4469;
  --surface-2: #3a5681;
  --surface-3: #152033;
  --text: #f5f3ee;
  --muted: #b7bcc7;
  --line: rgba(255, 255, 255, 0.08);
  --line-strong: rgba(255, 255, 255, 0.16);
  --accent: #d6b36a;
  --accent-2: #f0e6cf;
  --success: #6ba47d;
  --error: #c56b6b;
  --ease: cubic-bezier(0.19, 1, 0.22, 1);
  --header-h: 88px;
  --max: 1440px;
  --shadow-xl: 0 36px 100px rgba(4, 10, 20, 0.54);
  --shadow-card: 0 24px 64px rgba(5, 11, 22, 0.36);
  --shadow-soft: 0 16px 42px rgba(4, 10, 20, 0.24);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: "Inter", sans-serif;
  background:
    linear-gradient(180deg, #2b3b5d 0%, #1f2d48 26%, #18233a 58%, #101929 100%);
  color: var(--text);
  overflow-x: hidden;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  background:
    radial-gradient(circle at 10% 8%, rgba(106, 143, 214, 0.18), transparent 24%),
    radial-gradient(circle at 86% 12%, rgba(191, 214, 248, 0.08), transparent 16%),
    radial-gradient(circle at 50% 118%, rgba(8, 14, 25, 0.74), transparent 46%),
    linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0));
}
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(255,255,255,0.012), transparent 18%, transparent 82%, rgba(255,255,255,0.01)),
    linear-gradient(180deg, rgba(5, 10, 19, 0), rgba(5, 10, 19, 0.28));
}
img,
video {
  display: block;
  max-width: 100%;
}
a {
  text-decoration: none;
  color: inherit;
}
.container {
  max-width: var(--max);
}

#site-loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background:
    radial-gradient(circle at top, rgba(214, 179, 106, 0.09), transparent 24%),
    linear-gradient(180deg, #263755, #11192b);
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    opacity 0.8s var(--ease),
    visibility 0.8s var(--ease);
}
#site-loader.hide {
  opacity: 0;
  visibility: hidden;
}
.site-loader__inner {
  width: min(200px, 56vw);
  text-align: center;
}
.site-loader__logo {
  width: min(200px, 56vw);
  aspect-ratio: 200 / 80;
  margin: 0 auto 22px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.site-loader__logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  margin: 0 auto;
  filter: drop-shadow(0 14px 34px rgba(0, 0, 0, 0.35));
  backface-visibility: hidden;
  transform: translateZ(0);
}
.site-loader__line {
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.12);
  overflow: hidden;
}
.site-loader__line span {
  display: block;
  height: 100%;
  width: 0;
  background: var(--accent);
  animation: loaderLine 1.8s var(--ease) forwards;
}
@keyframes loaderLine {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}

#page-transition {
  position: fixed;
  inset: 0;
  z-index: 9998;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 0.55s var(--ease),
    visibility 0.55s var(--ease);
}
#page-transition.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.page-transition__layer {
  position: absolute;
  inset: 0;
  transform: translateY(100%);
}
.page-transition__layer--one {
  background: var(--bg-3);
}
.page-transition__layer--two {
  background:
    radial-gradient(circle at top left, rgba(86, 125, 201, 0.20), transparent 24%),
    linear-gradient(180deg, var(--bg-2), var(--bg-3));
  transition-delay: 0.08s;
}
#page-transition.active .page-transition__layer--one,
#page-transition.active .page-transition__layer--two {
  transform: translateY(0);
  transition: transform 0.92s var(--ease);
}
.page-transition__inner {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  justify-content: center;
}
.page-transition__logo {
  width: min(200px, 56vw);
  aspect-ratio: 200 / 80;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateY(8px);
  transition:
    opacity 0.38s var(--ease),
    transform 0.55s var(--ease);
  transition-delay: 0.22s;
  will-change: opacity, transform;
}
.page-transition__logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  backface-visibility: hidden;
  transform: translateZ(0);
}
#page-transition.active .page-transition__logo {
  opacity: 1;
  transform: translateY(0);
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 950;
  border-bottom: 1px solid transparent;
  transition:
    background 0.55s var(--ease),
    backdrop-filter 0.55s var(--ease),
    border-color 0.55s var(--ease),
    box-shadow 0.55s var(--ease),
    transform 0.45s var(--ease);
}
.site-header.is-scrolled {
  background: rgb(34 32 47 / 72%);
  backdrop-filter: blur(22px) saturate(135%);
  -webkit-backdrop-filter: blur(22px) saturate(135%);
  border-color: var(--line-strong);
  box-shadow: 0 14px 46px rgba(3, 8, 18, 0.34);
}

body.inner-page .site-header.is-scrolled {
  background: rgb(34 32 47 / 72%);
}
.site-header__inner {
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.site-logo,
.site-footer__brand,
.site-menu__logo {
  display: inline-flex;
  align-items: center;
}
.site-logo img {
  width: auto;
}
.site-footer__brand img {
  height: auto;
  width: auto;
}
.site-menu__logo img {
  height: 38px;
  width: auto;
}
.site-nav {
  gap: 36px;
}
.site-nav a,
.site-footer__links a {
  position: relative;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(255, 255, 255, 0.88);
  transition: color 0.3s var(--ease);
}
.site-nav a::after,
.site-footer__links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 100%;
  height: 1px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.3s var(--ease);
}
.site-nav a:hover,
.site-nav a.is-active,
.site-footer__links a:hover {
  color: var(--accent);
}
.site-nav a:hover::after,
.site-nav a.is-active::after,
.site-footer__links a:hover::after {
  transform: scaleX(1);
}
.site-header__actions {
  display: flex;
  align-items: center;
  gap: 16px;
}
.site-ticket-btn {
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  align-items: center;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 0.16em;
  transition:
    border-color 0.3s var(--ease),
    color 0.3s var(--ease),
    background 0.3s var(--ease);
}
.site-ticket-btn:hover {
  border-color: var(--accent);
  color: var(--accent);
}
.site-burger {
  width: 48px;
  height: 48px;
  border: 0;
  background: transparent;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
}
.site-burger span {
  display: block;
  width: 24px;
  height: 1px;
  background: #fff;
  margin-left: auto;
}

.site-menu {
  position: fixed;
  inset: 0;
  z-index: 980;
  background:
    linear-gradient(180deg, rgba(33, 47, 74, 0.98), rgba(21, 31, 49, 0.985)),
    radial-gradient(circle at top right, rgba(214,179,106,0.08), transparent 22%),
    radial-gradient(circle at left center, rgba(133, 169, 238, 0.12), transparent 26%);
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.4s var(--ease),
    visibility 0.4s var(--ease);
  padding: 28px 20px;
}
.site-menu.open {
  opacity: 1;
  visibility: visible;
}
.site-menu__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 80px;
}
.site-menu__close {
  border: 0;
  background: transparent;
  color: #fff;
  font-size: 42px;
  line-height: 1;
}
.site-menu__nav {
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.site-menu__nav a {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(34px, 8vw, 74px);
  line-height: 1;
  transition: color 0.3s var(--ease);
}
.site-menu__nav a.is-active {
  color: var(--accent);
}

.hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
}
.hero__media,
.hero__media img,
.hero__media video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      to top,
      rgba(0, 0, 0, 0.62) 8%,
      rgba(0, 0, 0, 0.22) 52%,
      rgba(0, 0, 0, 0.10) 100%
    ),
    radial-gradient(
      circle at 18% 20%,
      rgba(214, 179, 106, 0.08),
      transparent 26%
    );
}
.hero__content {
  position: relative;
  z-index: 2;
}
.hero__copy {
  padding-bottom: 8vh;
  max-width: 920px;
}
.eyebrow {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  color: var(--accent);
  margin-bottom: 16px;
}
.hero__copy h1,
.section-title,
.inner-hero h1 {
  font-family: "Cormorant Garamond", serif;
  line-height: 0.98;
}
.hero__copy h1 {
  font-size: clamp(54px, 8vw, 110px);
  margin-bottom: 20px;
  text-shadow: 0 6px 28px rgba(0, 0, 0, 0.42);
}
.hero__copy p,
.section-text,
.site-footer__text,
.project-card__body p,
.pillar-card p,
.info-card p,
.contact-list span,
.legal-copy p,
.project-card__meta p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.9;
}
.hero__copy p {
  color: rgba(245, 243, 238, 0.88);
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.38);
}
.eyebrow {
  text-shadow: 0 4px 18px rgba(0, 0, 0, 0.32);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.text-center .hero__actions {
  justify-content: center;
}
.btn-luxury {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  min-width: 200px;
  min-height: 52px;
  padding: 0 24px;
  border: 1px solid var(--accent);
  background: linear-gradient(135deg, #e0c283 0%, #d6b36a 46%, #c8a45b 100%);
  color: #111;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 0.16em;
  box-shadow: 0 14px 30px rgba(214, 179, 106, 0.14);
  transition:
    transform 0.45s var(--ease),
    box-shadow 0.45s var(--ease),
    border-color 0.45s var(--ease),
    color 0.45s var(--ease),
    background 0.45s var(--ease);
}

.btn-luxury::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: -24%;
  width: 18%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.42), transparent);
  transform: skewX(-18deg);
  transition: left 0.8s var(--ease);
}
.btn-luxury:hover {
  background: transparent;
  color: var(--accent);
  transform: translateY(-2px);
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.26);
}

.btn-luxury:hover::before {
  left: 116%;
}
.btn-luxury--ghost {
  background: rgba(255, 255, 255, 0.03);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.14);
  box-shadow: none;
}
.btn-luxury--ghost:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: rgba(255, 255, 255, 0.01);
}

.section {
  padding: 120px 0;
  position: relative;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.028), rgba(255, 255, 255, 0.006)),
    linear-gradient(180deg, rgba(18, 28, 45, 0.78), rgba(13, 20, 33, 0.9));
}

main > .section:nth-of-type(odd):not(.section--dark):not(.stats-band):not(.cta-section) {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.022), rgba(255, 255, 255, 0.004)),
    linear-gradient(180deg, rgba(23, 34, 53, 0.82), rgba(12, 19, 31, 0.94));
}

main > .section:nth-of-type(even):not(.section--dark):not(.stats-band):not(.cta-section) {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.032), rgba(255, 255, 255, 0.008)),
    linear-gradient(180deg, rgba(28, 40, 62, 0.76), rgba(15, 22, 36, 0.9));
}
.section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 10% 0%, rgba(255, 255, 255, 0.05), transparent 22%),
    radial-gradient(circle at 92% 100%, rgba(103, 137, 204, 0.08), transparent 18%),
    linear-gradient(180deg, rgba(255,255,255,0.018), rgba(255,255,255,0));
  opacity: 0.72;
}
.section::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.14), transparent);
  opacity: 0.85;
}

.section + .section::before {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.024), rgba(255,255,255,0) 24%),
    radial-gradient(circle at 50% 0%, rgba(214, 179, 106, 0.05), transparent 32%);
}
.section > .container,
.section > .container-fluid {
  position: relative;
  z-index: 1;
}
.section--dark {
  background:
    linear-gradient(180deg, rgba(9, 16, 29, 0.62), rgba(7, 12, 23, 0.36)),
    linear-gradient(180deg, #1c2942 0%, #131c2f 100%);
}
.section--dark::before {
  background:
    radial-gradient(circle at 85% 18%, rgba(133, 169, 238, 0.12), transparent 22%),
    radial-gradient(circle at 12% 100%, rgba(214, 179, 106, 0.05), transparent 24%),
    linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0));
  opacity: 0.78;
}
.section--tight-top {
  padding-top: 100px;
}
.section-head {
  margin-bottom: 20px;
}
.section-title {
  font-size: clamp(34px, 4vw, 58px);
  letter-spacing: -0.022em;
  max-width: 15ch;
  text-wrap: balance;
}
.section-subtitle {
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent-2);
  margin-top: 10px;
}

.pillar-card,
.project-card,
.info-card,
.copy-panel,
.contact-form,
.contact-details,
.legal-panel,
.form-alert,
.media-panel,
.content-image,
.destination-card {
  display: block;
  position: relative;
  overflow: hidden;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.12),
    rgba(255, 255, 255, 0.05) 12%,
    rgba(13, 20, 33, 0.26) 100%
  );
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 26px;
  box-shadow: var(--shadow-card), inset 0 1px 0 rgba(255,255,255,0.06);
  backdrop-filter: blur(16px) saturate(130%);
  -webkit-backdrop-filter: blur(16px) saturate(130%);
}

.pillar-card::before,
.project-card::before,
.info-card::before,
.copy-panel::before,
.contact-form::before,
.contact-details::before,
.legal-panel::before,
.form-alert::before,
.media-panel::before,
.content-image::before,
.destination-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.08), transparent 24%, transparent 72%, rgba(255,255,255,0.04) 100%),
    radial-gradient(circle at top right, rgba(214, 179, 106, 0.06), transparent 26%);
  opacity: 0.78;
}
.pillar-card {
  padding: 38px;
  min-height: 260px;
  transition:
    transform 0.55s var(--ease),
    border-color 0.55s var(--ease),
    box-shadow 0.55s var(--ease),
    background 0.55s var(--ease),
    filter 0.55s var(--ease);
}
.pillar-card:hover {
  transform: translateY(-10px) scale(1.01);
  border-color: rgba(214, 179, 106, 0.35);
  box-shadow: var(--shadow-xl);
  filter: saturate(1.03);
  background: linear-gradient(
    180deg,
    rgba(255,255,255,0.15),
    rgba(255,255,255,0.055) 12%,
    rgba(18, 27, 43, 0.22) 100%
  );
}
.pillar-card__index {
  display: block;
  color: var(--accent);
  font-size: 13px;
  letter-spacing: 0.2em;
  margin-bottom: 18px;
}
.pillar-card h3,
.project-card__body h3,
.info-card h3,
.legal-panel h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 44px;
  line-height: 1.02;
  margin-bottom: 16px;
}

.stats-band {
  background:
    radial-gradient(circle at 50% -10%, rgba(214, 179, 106, 0.06), transparent 36%),
    linear-gradient(180deg, #273857 0%, #172235 100%);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.stat-block {
  padding: 30px 0;
  border-top: 1px solid var(--line);
}
.stat-block--light {
  border-top-color: rgba(255, 255, 255, 0.08);
}
.stat-block__value {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(40px, 5vw, 76px);
  line-height: 1;
  margin-bottom: 12px;
}
.stat-block__label {
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}

.media-panel,
.content-image,
.project-card img,
.destination-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.media-panel {
  min-height: 620px;
  overflow: hidden;
  border: 1px solid var(--line);
}
.copy-panel {
  padding: 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.text-link {
  display: inline-block;
  margin-top: 24px;
  color: var(--accent);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.project-card {
  height: 100%;
  overflow: hidden;
  transition:
    transform 0.55s var(--ease),
    border-color 0.55s var(--ease),
    box-shadow 0.55s var(--ease),
    filter 0.55s var(--ease);
}
.project-card:hover {
  transform: translateY(-10px) scale(1.01);
  border-color: rgba(214, 179, 106, 0.3);
  box-shadow: var(--shadow-xl);
  filter: saturate(1.03);
}
.project-card img {
  height: 280px;
  transition:
    transform 0.9s var(--ease),
    filter 0.9s var(--ease);
}
.project-card:hover img {
  transform: scale(1.05);
  filter: saturate(1.02) contrast(1.04);
}
.project-card--large img {
  height: 320px;
}
.project-card__body {
  padding: 28px;
}
.project-card__meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}
.project-card__number {
  font-size: 12px;
  letter-spacing: 0.22em;
  color: var(--accent);
  text-transform: uppercase;
}
.projects-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  align-items: stretch;
}
.projects-grid__item {
  display: flex;
}
.project-card--masonry {
  height: 100%;
  width: 100%;
  padding: 30px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.12),
    rgba(255, 255, 255, 0.05) 14%,
    rgba(16, 24, 38, 0.28) 100%
  );
}
.project-card--masonry .project-card__body {
  padding: 0;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.project-card--masonry h3 {
  font-size: 30px;
  line-height: 1.15;
  margin-bottom: 14px;
}
.project-card--masonry p {
  margin-bottom: 0;
}

.destination-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}
.destination-grid--full {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.destination-card {
  position: relative;
  overflow: hidden;
  min-height: 420px;
  border: 1px solid var(--line);
  display: block;
  transition:
    transform 0.6s var(--ease),
    border-color 0.6s var(--ease),
    box-shadow 0.6s var(--ease),
    filter 0.6s var(--ease);
}
.destination-card:hover {
  transform: translateY(-10px) scale(1.01);
  border-color: rgba(214, 179, 106, 0.32);
  box-shadow: var(--shadow-xl);
  filter: saturate(1.02);
}
.destination-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  transition: transform 0.8s var(--ease);
}
.destination-card:hover img {
  transform: scale(1.04);
}
.destination-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      to top,
      rgba(0, 0, 0, 0.86) 10%,
      rgba(0, 0, 0, 0.26) 56%,
      rgba(0, 0, 0, 0.08) 100%
    ),
    linear-gradient(
      135deg,
      rgba(255,255,255,0.08) 0%,
      transparent 30%,
      transparent 100%
    );
}
.destination-card__content {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.destination-card__content strong {
  font-family: "Cormorant Garamond", serif;
  font-size: 38px;
  line-height: 1;
}
.destination-card__content span {
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-2);
}
.destination-card--static {
  cursor: default;
}
.destination-card--static:hover {
  transform: translateY(-4px);
  filter: saturate(1.01);
}
.destination-card--static:hover img {
  transform: scale(1.025);
}
.destination-grid--curated {
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-auto-rows: 110px;
  grid-auto-flow: dense;
  gap: 24px;
}
.destination-grid--curated .destination-card {
  min-height: 100%;
}
.destination-grid--curated .destination-card:nth-child(1) {
  grid-column: 1 / span 7;
  grid-row: 1 / span 4;
}
.destination-grid--curated .destination-card:nth-child(2) {
  grid-column: 8 / span 5;
  grid-row: 1 / span 2;
}
.destination-grid--curated .destination-card:nth-child(3) {
  grid-column: 8 / span 5;
  grid-row: 3 / span 2;
}
.destination-grid--curated .destination-card:nth-child(4) {
  grid-column: 1 / span 6;
  grid-row: 5 / span 2;
}
.destination-grid--curated .destination-card:nth-child(5) {
  grid-column: 7 / span 6;
  grid-row: 5 / span 2;
}
.destination-grid--curated .destination-card__content strong {
  font-size: clamp(34px, 2.9vw, 52px);
}
.destination-grid--curated .destination-card:nth-child(n + 2):nth-child(-n + 5) .destination-card__content strong {
  font-size: clamp(28px, 2.1vw, 38px);
}

.inner-shell {
  background: linear-gradient(180deg, #22314e 0%, #18243a 42%, #101929 100%);
}
.inner-hero {
  position: relative;
  overflow: hidden;
  min-height: auto;
  background:
    radial-gradient(
      circle at top left,
      rgba(117, 154, 228, 0.2),
      transparent 28%
    ),
    radial-gradient(
      circle at 82% 18%,
      rgba(201, 220, 255, 0.08),
      transparent 16%
    ),
    linear-gradient(180deg, #304263 0%, #202d46 44%, #131c2f 100%);
}
.inner-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.045),
    transparent 28%,
    rgba(255, 255, 255, 0.018) 64%,
    transparent 100%
  );
  pointer-events: none;
}
.inner-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 140px;
  background: linear-gradient(to top, rgba(17, 25, 39, 0.62), transparent);
  pointer-events: none;
}
.inner-hero__row {
  position: relative;
  z-index: 1;
  min-height: clamp(500px, 72vh, 700px);
  align-items: flex-end;
  justify-content: center;
  padding-top: calc(var(--header-h) + 34px);
  padding-bottom: 72px;
}
.inner-hero--small .inner-hero__row {
  min-height: clamp(430px, 60vh, 560px);
}
.inner-hero h1 {
  font-size: clamp(36px, 4.8vw, 64px);
  margin: 0 auto 18px;
  max-width: 16ch;
  letter-spacing: -0.022em;
  text-wrap: balance;
  text-align: center;
}
.inner-hero__lead {
  max-width: 860px;
  margin-inline: auto;
  color: rgba(245, 243, 238, 0.82);
  text-align: center;
}

.inner-hero .eyebrow {
  text-align: center;
}

.inner-hero__row > [class*='col-'] {
  margin-inline: auto;
}
.content-image {
  min-height: 560px;
  border: 1px solid var(--line);
}
.service-media {
  width: min(100%, 430px);
}
.service-media--right {
  margin-left: auto;
}
.service-media .content-image {
  min-height: 360px;
  max-height: 420px;
  object-fit: contain;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.08),
    rgba(255, 255, 255, 0.025),
    rgba(19, 29, 46, 0.16)
  );
  padding: 18px;
}
.info-card {
  padding: 34px;
  min-height: 100%;
}
.contact-form,
.contact-details,
.legal-panel {
  padding: 40px;
}
.contact-list {
  list-style: none;
  padding: 0;
  margin: 28px 0 0;
  display: grid;
  gap: 18px;
}
.contact-list li {
  display: grid;
  gap: 4px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.contact-list strong {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
}
.luxury-input {
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 0;
  color: #fff;
  padding: 18px 0;
  font-size: 16px;
}
.luxury-input:focus {
  background: transparent;
  color: #fff;
  box-shadow: none;
  border-color: var(--accent);
}
.luxury-input::placeholder {
  color: rgba(255, 255, 255, 0.45);
}
.form-note {
  font-size: 12px;
  line-height: 1.7;
  letter-spacing: 0.04em;
  color: var(--muted);
}
.form-alert {
  margin-bottom: 28px;
  padding: 18px 20px;
}
.form-alert--success {
  border-color: rgba(107, 164, 125, 0.45);
}
.form-alert--error {
  border-color: rgba(197, 107, 107, 0.45);
}
.form-alert strong {
  display: block;
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.form-alert--success strong {
  color: var(--success);
}
.form-alert--error strong {
  color: var(--error);
}
.form-alert p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.legal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}
.legal-copy {
  display: grid;
  gap: 18px;
}
.legal-section-list {
  display: grid;
  gap: 24px;
}
.legal-section-list .info-card h3 {
  font-size: 32px;
}

.cta-section {
  padding-top: 100px;
  background:
    radial-gradient(circle at 50% 0%, rgba(214, 179, 106, 0.06), transparent 34%),
    linear-gradient(180deg, rgba(21, 30, 48, 0.92), rgba(12, 18, 29, 0.96));
}

.cta-section .container {
  max-width: 980px;
}

.cta-section .section-title {
  max-width: 18ch;
  margin-inline: auto;
  text-wrap: balance;
}

.cta-section .eyebrow {
  text-align: center;
}
.site-footer {
  padding: 56px 0;
  border-top: 1px solid var(--line);
  background: linear-gradient(180deg, #22304b 0%, #162033 100%);
}
.site-footer__inner {
  display: flex;
  justify-content: space-between;
  gap: 30px;
}
.site-footer__text {
  margin-top: 10px;
  max-width: 600px;
}
.site-footer__links {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
  align-content: flex-start;
}

.reveal {
  opacity: 0;
  transform: translateY(34px) scale(0.975);
  filter: blur(14px);
  transition:
    opacity 1.05s var(--ease),
    transform 1.05s var(--ease),
    filter 1.05s var(--ease);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform, filter;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
}

.contact-details--compact {
  max-width: 980px;
  margin: 0 auto;
}

.contact-details--compact .section-title {
  max-width: 18ch;
  margin-inline: auto;
}

.contact-highlights {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 34px;
}

.contact-highlight {
  padding: 26px 22px;
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.03));
  border: 1px solid rgba(255,255,255,0.1);
}

.contact-highlight strong {
  display: block;
  margin-bottom: 10px;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
}

.contact-highlight span {
  color: rgba(245,243,238,0.9);
  line-height: 1.8;
}

@media (max-width: 1199.98px) {
  .destination-grid--full {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .destination-grid--curated {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-auto-rows: auto;
  }
  .destination-grid--curated .destination-card,
  .destination-grid--curated .destination-card:nth-child(1),
  .destination-grid--curated .destination-card:nth-child(2),
  .destination-grid--curated .destination-card:nth-child(3),
  .destination-grid--curated .destination-card:nth-child(4),
  .destination-grid--curated .destination-card:nth-child(5) {
    grid-column: auto;
    grid-row: auto;
    min-height: 380px;
  }
}

@media (max-width: 991.98px) {
  .section {
    padding: 90px 0;
  }
  .site-footer__inner {
    flex-direction: column;
  }
  .destination-grid,
  .destination-grid--full,
  .destination-grid--curated {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .media-panel {
    min-height: 420px;
  }
  .copy-panel,
  .contact-form,
  .contact-details,
  .pillar-card,
  .legal-panel {
    padding: 28px;
  }
  .project-card img {
    height: 240px;
  }
  .projects-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .inner-hero__row {
    padding-top: calc(var(--header-h) + 26px);
    padding-bottom: 54px;
  }
}

@media (max-width: 767.98px) {
  .destination-grid,
  .destination-grid--full,
  .destination-grid--curated {
    grid-template-columns: 1fr;
  }
  .destination-card {
    min-height: 340px;
  }
  .content-image {
    min-height: 360px;
  }
  .project-card__body h3,
  .pillar-card h3,
  .info-card h3 {
    font-size: 34px;
  }
  .hero__actions,
  .legal-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .btn-luxury {
    width: 100%;
  }
  .projects-grid {
    grid-template-columns: 1fr;
  }
  .site-logo img,
  .site-menu__logo img {
    height: 30px;
  }
  .site-footer__brand img {
    height: 28px;
  }
  .inner-hero h1 {
    max-width: none;
  }

  .contact-highlights {
    grid-template-columns: 1fr;
  }
}


.section-title.section-title--full,
.contact-details:not(.contact-details--compact) .section-title,
.legal-panel .section-title {
  max-width: none;
}
