﻿:root {
  --bg: #07080a;
  --bg-elev: #0d1014;
  --surface: rgba(16, 19, 24, 0.72);
  --surface-strong: rgba(16, 19, 24, 0.92);
  --text: #f2f4f7;
  --muted: #99a4b3;
  --gold: #caa26f;
  --gold-soft: rgba(202, 162, 111, 0.18);
  --line: rgba(255, 255, 255, 0.14);
  --line-strong: rgba(255, 255, 255, 0.26);
  --shadow-1: 0 18px 48px rgba(0, 0, 0, 0.36);
  --shadow-2: 0 32px 90px rgba(0, 0, 0, 0.55);
  --radius-sm: 0.85rem;
  --radius-md: 1.2rem;
  --radius-lg: 1.6rem;
  --container: min(1280px, 92vw);
  --header-h: 78px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(140% 95% at 85% 0%, rgba(86, 118, 153, 0.2), transparent 58%),
    radial-gradient(100% 80% at 10% 10%, rgba(202, 162, 111, 0.11), transparent 62%),
    var(--bg);
  line-height: 1.62;
}

.page-home {
  min-height: 100svh;
}

.page-home.menu-open {
  overflow: hidden;
}

.skip-link {
  position: fixed;
  top: 0.7rem;
  left: 0.7rem;
  z-index: 140;
  transform: translateY(-170%);
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: rgba(9, 12, 16, 0.95);
  color: #e7c694;
  padding: 0.5rem 0.9rem;
  font-size: 0.76rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: transform 0.2s ease;
}

.skip-link:focus-visible {
  transform: translateY(0);
}

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

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

.container {
  width: var(--container);
  margin-inline: auto;
}

.hero-layout > *,
.editorial-layout > *,
.architecture-layout > *,
.location-layout > *,
.contact-layout > * {
  min-width: 0;
}

[id] {
  scroll-margin-top: calc(var(--header-h) + 14px);
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Sora", "Manrope", sans-serif;
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.01em;
}

p {
  margin: 0;
}

.hero-lead,
.scenario-card p,
.resort-card p,
.location-copy p,
.legal-brief p,
.contact-copy p,
.form-meta,
.faq-list p,
.investment-note {
  overflow-wrap: anywhere;
}

.eyebrow {
  margin: 0 0 0.7rem;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}

.section {
  padding: clamp(4.2rem, 8vw, 8rem) 0;
  position: relative;
}

.section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: var(--container);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  pointer-events: none;
}

.section-head {
  max-width: 64rem;
  margin-bottom: clamp(1.4rem, 3vw, 2.2rem);
}

.section-head h2 {
  font-size: clamp(2rem, 4.6vw, 3.8rem);
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 120;
  height: 2px;
  pointer-events: none;
}

.scroll-progress span {
  display: block;
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, #d9c39c, #b48349);
  box-shadow: 0 0 14px rgba(202, 162, 111, 0.85);
  transition: width 0.12s linear;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-h);
  border-bottom: 1px solid transparent;
  background: rgba(8, 10, 13, 0.5);
  backdrop-filter: blur(14px);
  transition: background 0.32s ease, border-color 0.32s ease;
}

.site-header.is-scrolled {
  background: rgba(8, 10, 13, 0.92);
  border-color: var(--line);
}

.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  flex-direction: column;
  gap: 0.1rem;
}

.brand-mark {
  font-family: "Sora", sans-serif;
  letter-spacing: 0.1em;
  font-size: 1.35rem;
  font-weight: 700;
}

.brand-sub {
  letter-spacing: 0.26em;
  text-transform: uppercase;
  font-size: 0.58rem;
  color: var(--muted);
}

.menu-toggle {
  display: none;
  font: inherit;
  font-size: 0.82rem;
  color: var(--text);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.54rem 0.94rem;
  background: transparent;
  cursor: pointer;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(0.8rem, 1.6vw, 1.5rem);
  font-size: 0.84rem;
  letter-spacing: 0.06em;
}

.site-nav a {
  color: #f2f5f8;
  transition: color 0.24s ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: #d7b180;
}

.nav-phone {
  margin-left: 0.2rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.52rem 0.86rem;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.nav-cta {
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  padding: 0.52rem 0.94rem;
}

.hero {
  min-height: calc(100svh - 1px);
  position: relative;
  overflow: hidden;
}

.hero-background {
  position: absolute;
  inset: 0;
  transform: translate3d(0, var(--hero-shift, 0px), 0);
}

.hero-bg-main,
.hero-bg-layer {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  will-change: transform;
}

.hero-bg-main {
  filter: saturate(0.92) brightness(0.58);
  animation: bgZoom 22s ease-in-out infinite alternate;
}

.hero-bg-layer {
  mix-blend-mode: screen;
  opacity: 0.24;
  filter: saturate(0.95) brightness(0.62);
  animation: bgPulse 10s ease-in-out infinite;
}

.hero-noise {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.11) 0.55px, transparent 0.55px);
  background-size: 3px 3px;
  opacity: 0.08;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(110deg, rgba(7, 8, 11, 0.9), rgba(7, 8, 11, 0.3) 58%, rgba(7, 8, 11, 0.82)),
    linear-gradient(to top, rgba(7, 8, 11, 0.86), rgba(7, 8, 11, 0.2) 52%);
}

.hero-layout {
  position: relative;
  z-index: 1;
  min-height: calc(100svh - var(--header-h));
  padding-top: clamp(4.8rem, 9vh, 8rem);
  padding-bottom: clamp(4.8rem, 9vh, 6.8rem);
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(0, 0.88fr);
  gap: clamp(1.1rem, 3vw, 2.2rem);
  align-items: end;
}

.hero-content {
  max-width: 48rem;
}

.hero h1 {
  font-size: clamp(2.5rem, 7.2vw, 6rem);
  max-width: 14ch;
  margin-bottom: 1rem;
  text-wrap: balance;
}

.hero-lead {
  max-width: 43ch;
  color: #e1eaf4;
  font-size: clamp(1rem, 1.8vw, 1.22rem);
}

.hero-actions {
  margin-top: 1.55rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.btn {
  min-height: 3rem;
  padding: 0.56rem 1.24rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font: inherit;
  font-size: 0.78rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.btn-gold {
  color: #17120c;
  background: linear-gradient(135deg, #d8bf98, #bd8b50);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.4);
}

.btn-gold:hover,
.btn-gold:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.5);
}

.btn-ghost {
  border-color: var(--line-strong);
  background: rgba(9, 11, 14, 0.35);
  color: #d7deea;
}

.btn-ghost:hover,
.btn-ghost:focus-visible {
  border-color: rgba(202, 162, 111, 0.72);
  color: #ecd8bb;
}

.hero-facts {
  margin-top: 1.5rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.6rem;
}

.hero-facts article {
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 0.9rem;
  padding: 0.7rem 0.8rem;
  background: rgba(11, 14, 18, 0.46);
  backdrop-filter: blur(8px);
}

.hero-facts strong {
  font-family: "Sora", sans-serif;
  font-size: 0.94rem;
  color: #f4d7aa;
}

.hero-facts p {
  margin-top: 0.18rem;
  color: #c7d2df;
  font-size: 0.74rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.hero-form-wrap {
  display: flex;
  justify-content: flex-end;
}

.hero-form {
  width: min(100%, 30rem);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-lg);
  background: rgba(10, 13, 18, 0.76);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-2);
  padding: clamp(0.95rem, 2.2vw, 1.35rem);
  display: grid;
  gap: 0.62rem;
}

.hero-form-eyebrow {
  color: #f0c997;
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero-form h2 {
  font-size: clamp(1.35rem, 2.9vw, 1.85rem);
  margin-bottom: 0.12rem;
}

.hero-form-note {
  color: #b9c7d8;
  font-size: 0.9rem;
  margin-bottom: 0.2rem;
}

.hero-form label {
  font-size: 0.82rem;
  color: #afbbce;
}

.hero-form input[type="text"],
.hero-form input[type="tel"] {
  min-height: 2.75rem;
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 0.72rem;
  background: rgba(7, 10, 14, 0.6);
  color: var(--text);
  font: inherit;
  padding: 0.72rem 0.76rem;
}

.hero-form input:focus-visible {
  outline: 1px solid #e3bd89;
  outline-offset: 2px;
}

.hero-form .btn {
  width: 100%;
  margin-top: 0.15rem;
}

.hero-form .checkbox-row {
  font-size: 0.8rem;
}

.hp-field {
  display: none !important;
}

.hero-checkbox {
  margin-top: 0.05rem;
}

.hero-legal {
  color: #97a6bc;
  font-size: 0.72rem;
}

.hero-legal a {
  color: #e4bb85;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.hero-ticker {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(8, 10, 13, 0.54);
  overflow: hidden;
  backdrop-filter: blur(6px);
}

.hero-ticker-track {
  width: max-content;
  display: flex;
  gap: 1.8rem;
  padding: 0.52rem 0;
  animation: ticker 30s linear infinite;
}

.hero-ticker-track span {
  position: relative;
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #cfdae8;
  padding-left: 1rem;
}

.hero-ticker-track span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 0.32rem;
  height: 0.32rem;
  border-radius: 50%;
  background: var(--gold);
}

.section-editorial {
  background:
    radial-gradient(120% 90% at 100% 0%, rgba(123, 166, 208, 0.13), transparent 58%),
    linear-gradient(180deg, rgba(9, 11, 15, 0.82), rgba(9, 11, 15, 0.94));
}

.editorial-layout {
  display: grid;
  grid-template-columns: 1.06fr 0.94fr;
  gap: clamp(1rem, 2.8vw, 1.8rem);
  align-items: stretch;
}

.editorial-copy h2 {
  font-size: clamp(2rem, 4.8vw, 3.9rem);
  max-width: 17ch;
  margin-bottom: 0.9rem;
}

.editorial-copy p {
  max-width: 52ch;
  color: #c2cfdd;
}

.editorial-metrics {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.7rem;
}

.editorial-metrics article {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(15, 18, 23, 0.76);
  padding: 1rem;
  box-shadow: var(--shadow-1);
}

.editorial-metrics strong {
  display: block;
  color: #f3cc98;
  font-family: "Sora", sans-serif;
  font-size: clamp(1.25rem, 2.8vw, 2rem);
}

.editorial-metrics p {
  margin-top: 0.24rem;
  color: #b8c4d2;
}

.section-scenarios {
  background: linear-gradient(180deg, rgba(8, 10, 14, 0.95), rgba(7, 8, 10, 0.95));
}

.scenario-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
}

.scenario-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background:
    linear-gradient(145deg, rgba(123, 166, 208, 0.11), transparent 42%),
    rgba(15, 18, 23, 0.8);
  padding: 1.2rem;
  min-height: 15rem;
  display: grid;
  align-content: start;
  gap: 0.72rem;
  transition: transform 0.24s ease, border-color 0.24s ease;
}

.scenario-card:hover {
  transform: translateY(-4px);
  border-color: rgba(202, 162, 111, 0.55);
}

.scenario-index {
  display: inline-flex;
  width: 2.2rem;
  height: 2.2rem;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  color: #c7d2e2;
  font-size: 0.72rem;
}

.scenario-card h3 {
  font-size: clamp(1.56rem, 3vw, 2.2rem);
}

.scenario-card p {
  color: #c4d1df;
  max-width: 35ch;
}

.section-architecture {
  background:
    radial-gradient(90% 70% at 0% 10%, rgba(202, 162, 111, 0.1), transparent 65%),
    rgba(7, 9, 12, 0.94);
}

.architecture-layout {
  display: grid;
  grid-template-columns: 1fr 1.12fr;
  gap: clamp(1rem, 3vw, 2rem);
}

.architecture-copy h2 {
  font-size: clamp(2rem, 4.8vw, 3.8rem);
  max-width: 16ch;
  margin-bottom: 0.95rem;
}

.architecture-copy p {
  max-width: 50ch;
  color: #c2cedc;
}

.architecture-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1.3rem;
}

.architecture-tags span {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(14, 17, 21, 0.68);
  padding: 0.48rem 0.74rem;
  color: #b7c4d5;
  font-size: 0.71rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.architecture-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}

.gallery-main,
.gallery-side {
  margin: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  overflow: hidden;
  background: #0d1116;
  box-shadow: var(--shadow-1);
}

.gallery-main {
  grid-column: span 2;
  aspect-ratio: 16 / 9.2;
}

.gallery-side {
  aspect-ratio: 16 / 10.2;
}

.gallery-main img,
.gallery-side img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.9);
}

.section-resort {
  background:
    radial-gradient(120% 90% at 100% 0%, rgba(123, 166, 208, 0.16), transparent 62%),
    rgba(8, 10, 13, 0.94);
}

.resort-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
}

.resort-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(13, 16, 21, 0.84);
  overflow: hidden;
  min-height: 0;
  display: grid;
  grid-template-rows: auto 1fr;
  transition: transform 0.24s ease, border-color 0.24s ease;
}

.resort-card:hover {
  transform: translateY(-3px);
  border-color: rgba(202, 162, 111, 0.55);
}

.resort-card figure {
  margin: 0;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.resort-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.88);
}

.resort-card div {
  padding: 0.82rem 0.9rem 0.95rem;
  display: grid;
  gap: 0.35rem;
  align-content: start;
}

.resort-card h3 {
  font-size: 1.18rem;
}

.resort-card p {
  color: #c0cedd;
  font-size: 0.9rem;
}

.section-location {
  background: linear-gradient(180deg, rgba(8, 10, 13, 0.96), rgba(7, 8, 10, 0.96));
}

.location-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(1rem, 3vw, 1.9rem);
  align-items: start;
}

.map-shell {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #111720;
  box-shadow: var(--shadow-2);
  min-height: 31rem;
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
}

.map-shell iframe {
  width: 100%;
  height: 100%;
  min-height: 0;
  border: 0;
}

.map-link {
  display: inline-flex;
  padding: 0.7rem 1rem;
  font-size: 0.8rem;
  color: #d8b27f;
  border-top: 1px solid var(--line);
  width: 100%;
  justify-content: center;
  background: rgba(8, 10, 13, 0.9);
}

.location-copy h2 {
  font-size: clamp(2rem, 4.8vw, 3.8rem);
  margin-bottom: 0.9rem;
}

.location-copy p {
  color: #c0cedd;
}

.location-times {
  margin-top: 1.25rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.65rem;
}

.location-times article {
  border: 1px solid var(--line);
  border-radius: 0.9rem;
  background: rgba(14, 17, 22, 0.8);
  padding: 0.72rem 0.8rem;
}

.location-times strong {
  font-family: "Sora", sans-serif;
  color: #f0c997;
  font-size: 1rem;
}

.location-times p {
  margin-top: 0.2rem;
  color: #b8c5d4;
  font-size: 0.8rem;
}

.legal-brief {
  margin-top: 1.1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 0.92rem;
  background: rgba(15, 18, 23, 0.76);
}

.legal-brief h3 {
  font-size: 1.15rem;
  margin-bottom: 0.4rem;
}

.legal-brief p {
  color: #c1cedd;
  font-size: 0.94rem;
}

.section-investment {
  background:
    radial-gradient(100% 100% at 0% 0%, rgba(202, 162, 111, 0.14), transparent 66%),
    rgba(8, 10, 13, 0.95);
}

.investment-wrap {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface-strong);
  padding: clamp(1rem, 3.3vw, 2rem);
  box-shadow: var(--shadow-2);
}

.investment-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.7rem;
}

.investment-grid article {
  border: 1px solid var(--line);
  border-radius: 0.9rem;
  background: rgba(14, 16, 21, 0.72);
  padding: 0.9rem;
}

.investment-grid strong {
  font-family: "Sora", sans-serif;
  font-size: clamp(1.18rem, 2.7vw, 1.85rem);
  color: #f2cc9b;
}

.investment-grid p {
  margin-top: 0.3rem;
  color: #b7c4d2;
}

.investment-note {
  margin-top: 0.78rem;
  color: #9facc0;
  font-size: 0.82rem;
}

.section-contact {
  background: linear-gradient(180deg, rgba(7, 8, 10, 0.95), rgba(7, 8, 10, 0.98));
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1rem, 3vw, 2rem);
}

.contact-copy h2 {
  font-size: clamp(2rem, 4.8vw, 3.8rem);
  margin-bottom: 0.95rem;
}

.contact-copy p {
  max-width: 36ch;
  color: #bfcddd;
}

.contact-form {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(14, 17, 22, 0.84);
  padding: clamp(0.9rem, 2.5vw, 1.5rem);
  display: grid;
  gap: 0.65rem;
}

.contact-form label {
  font-size: 0.84rem;
  color: #aebacc;
}

.contact-form input[type="text"],
.contact-form input[type="tel"] {
  min-height: 2.8rem;
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 0.72rem;
  background: rgba(8, 10, 13, 0.55);
  color: var(--text);
  font: inherit;
  padding: 0.74rem 0.78rem;
}

.contact-form input:focus-visible {
  outline: 1px solid #e3bd89;
  outline-offset: 2px;
}

.checkbox-row {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  color: #bcc8d8;
  font-size: 0.84rem;
  line-height: 1.45;
}

.checkbox-row input[type="checkbox"] {
  appearance: none;
  width: 1rem;
  height: 1rem;
  margin-top: 0.14rem;
  border: 1px solid var(--line-strong);
  background: transparent;
  cursor: pointer;
  flex: 0 0 auto;
  position: relative;
}

.checkbox-row input[type="checkbox"]:checked {
  border-color: #d9b582;
  background: rgba(217, 181, 130, 0.2);
}

.checkbox-row input[type="checkbox"]:checked::after {
  content: "";
  position: absolute;
  left: 0.3rem;
  top: 0.07rem;
  width: 0.3rem;
  height: 0.6rem;
  border-right: 2px solid #f0d5ad;
  border-bottom: 2px solid #f0d5ad;
  transform: rotate(40deg);
}

.checkbox-row a {
  color: #e5be89;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.form-meta {
  font-size: 0.75rem;
  color: #a5b1c0;
}

.contact-form button:disabled {
  opacity: 0.84;
  cursor: default;
  transform: none;
  box-shadow: none;
}

.section-faq {
  padding-top: 3.8rem;
  padding-bottom: 4.8rem;
}

.section-faq h2 {
  font-size: clamp(1.95rem, 4.5vw, 3.2rem);
  margin-bottom: 0.95rem;
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
  padding: 0.95rem 0;
}

.faq-list summary {
  list-style: none;
  cursor: pointer;
  font-family: "Sora", sans-serif;
  font-size: clamp(1.08rem, 2.4vw, 1.5rem);
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list p {
  margin-top: 0.5rem;
  max-width: 62ch;
  color: #bcc9d8;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: #06080b;
  padding: 1.15rem 0 1.3rem;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.9rem;
  flex-wrap: wrap;
}

.footer-brand {
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #99a7bb;
}

.footer-phone {
  font-family: "Sora", "Manrope", sans-serif;
  font-size: 0.88rem;
  letter-spacing: 0.04em;
  color: #e5c190;
  white-space: nowrap;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.footer-links a {
  font-size: 0.77rem;
  color: #b7c4d6;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.mobile-cta {
  position: fixed;
  left: 50%;
  bottom: 0.8rem;
  transform: translateX(-50%);
  width: min(92vw, 27rem);
  min-height: 3rem;
  border-radius: 999px;
  border: 1px solid rgba(216, 195, 156, 0.68);
  background: rgba(9, 12, 15, 0.95);
  color: #f0d2a5;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 90;
}

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

.js-enabled .reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.75s ease, transform 0.75s ease;
  transition-delay: var(--reveal-delay, 0s);
}

.js-enabled .reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

.legal-page {
  min-height: 100svh;
}

.legal-header {
  position: sticky;
  top: 0;
  z-index: 60;
  border-bottom: 1px solid var(--line);
  background: rgba(9, 11, 14, 0.9);
  backdrop-filter: blur(10px);
}

.legal-header-inner {
  height: 4.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.legal-back {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.45rem 0.76rem;
  font-size: 0.82rem;
}

.legal-main {
  padding: clamp(2rem, 4vw, 4rem) 0;
}

.legal-article {
  width: min(920px, 92vw);
  margin-inline: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(13, 16, 21, 0.9);
  padding: clamp(1.1rem, 3vw, 2.2rem);
  display: grid;
  gap: 0.9rem;
}

.legal-article h1 {
  font-size: clamp(2rem, 5vw, 3.3rem);
}

.legal-article h2 {
  font-size: clamp(1.35rem, 3vw, 1.95rem);
  margin-top: 0.8rem;
}

.legal-article p,
.legal-article li {
  color: #bcc8d8;
}

.legal-article ul {
  margin: 0;
  padding-left: 1.15rem;
  display: grid;
  gap: 0.42rem;
}

.legal-meta {
  color: #9ba7b9;
  font-size: 0.82rem;
}

@keyframes ticker {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@keyframes bgZoom {
  from {
    transform: scale(1.03);
  }

  to {
    transform: scale(1.12);
  }
}

@keyframes bgPulse {
  0%,
  100% {
    opacity: 0.2;
  }

  50% {
    opacity: 0.32;
  }
}

@media (max-width: 1180px) {
  .hero-layout,
  .editorial-layout,
  .architecture-layout,
  .location-layout,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .hero-layout {
    align-items: center;
    padding-bottom: 6.6rem;
  }

  .hero-content {
    max-width: 100%;
  }

  .architecture-gallery {
    grid-template-columns: 1fr 1fr;
  }

  .gallery-main {
    grid-column: span 2;
    aspect-ratio: 16 / 9.4;
  }

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

  .map-shell {
    min-height: 24rem;
  }
}

@media (max-width: 880px) {
  .page-home {
    padding-bottom: 4.4rem;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: absolute;
    right: 4vw;
    top: calc(100% + 0.5rem);
    width: min(18rem, 90vw);
    border: 1px solid var(--line);
    border-radius: 0.9rem;
    background: rgba(9, 12, 16, 0.96);
    display: grid;
    gap: 0.45rem;
    padding: 0.8rem;
    transform-origin: top right;
    transform: scale(0.95);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.22s ease, opacity 0.22s ease;
  }

  .site-nav.is-open {
    transform: scale(1);
    opacity: 1;
    pointer-events: auto;
  }

  .site-nav a {
    padding: 0.3rem 0.2rem;
  }

  .nav-phone {
    margin-left: 0;
    width: 100%;
    justify-content: center;
    display: inline-flex;
  }

  .hero-facts,
  .investment-grid,
  .location-times {
    grid-template-columns: 1fr;
  }

  .hero-form-wrap {
    justify-content: flex-start;
  }

  .hero-form {
    max-width: 100%;
  }

  .hero h1 {
    font-size: clamp(2.3rem, 12vw, 4.4rem);
  }

  .scenario-grid,
  .resort-grid,
  .editorial-metrics {
    grid-template-columns: 1fr;
  }

  .mobile-cta {
    display: flex;
  }
}

@media (max-width: 620px) {
  .section {
    padding: 3.8rem 0;
  }

  .hero-layout {
    min-height: calc(100svh - var(--header-h));
    padding-top: 4.6rem;
    padding-bottom: 6.2rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .btn {
    width: 100%;
  }

  .hero-facts article {
    padding: 0.62rem 0.7rem;
  }

  .resort-card div {
    padding: 0.72rem 0.75rem 0.82rem;
  }

  .map-shell {
    min-height: 21rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }

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