:root {
  --navy-980: #061225;
  --navy-930: #0a1d3a;
  --navy-860: #153860;
  --gold-560: #a9873f;
  --gold-430: #d3b676;
  --sand-050: #f4efe5;
  --stone-100: #ece7de;
  --warm-white: #fdfbf7;
  --text-strong: #11243d;
  --text-mid: #3f5368;
  --text-soft: #6f8197;
  --ring: 0 0 0 3px rgba(168, 135, 63, 0.26);
  --elev-1: 0 12px 32px rgba(6, 18, 37, 0.08);
  --elev-2: 0 24px 56px rgba(6, 18, 37, 0.14);
}

body {
  color: var(--text-strong);
  background:
    radial-gradient(circle at 6% 12%, rgba(211, 182, 118, 0.14), transparent 34%),
    radial-gradient(circle at 96% 6%, rgba(17, 36, 61, 0.08), transparent 28%),
    linear-gradient(180deg, #f3f6fa 0%, var(--warm-white) 42%, #fffdf8 100%);
}

::selection {
  background: rgba(168, 135, 63, 0.22);
  color: #0f284a;
}

p {
  color: var(--text-mid);
}

h1,
h2,
h3,
h4 {
  color: #102742;
  letter-spacing: 0.025em;
}

.btn {
  font-size: 0.86rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.86rem 1.26rem;
  transition: transform 220ms ease, box-shadow 220ms ease, background-color 220ms ease, border-color 220ms ease;
}

.btn--primary {
  background: linear-gradient(145deg, var(--gold-560), #967534);
  box-shadow: 0 10px 26px rgba(149, 112, 39, 0.35);
}

.btn--primary:hover,
.btn--primary:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(149, 112, 39, 0.42);
}

.btn--ghost {
  border-color: rgba(26, 47, 75, 0.25);
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(5px);
}

.btn--ghost:hover,
.btn--ghost:focus-visible {
  border-color: var(--gold-560);
  transform: translateY(-2px);
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: none;
  box-shadow: var(--ring);
}

.hero {
  border-radius: 0 0 42px 42px;
  box-shadow: inset 0 -80px 100px rgba(5, 16, 34, 0.42);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(211, 182, 118, 0.65), transparent);
}

.hero__eyebrow,
.page-hero__eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #cfdeef;
  margin-bottom: 0.6rem;
}

.hero h1 {
  text-wrap: balance;
}

.hero__lead {
  font-size: clamp(1rem, 1.9vw, 1.2rem);
  line-height: 1.75;
}

.section {
  margin-top: clamp(3rem, 6vw, 5.8rem);
}

.section__head h2,
.intro h2,
.lifestyle h2,
.legacy-vision h2 {
  position: relative;
  padding-bottom: 0.5rem;
}

.section__head h2::after,
.intro h2::after,
.lifestyle h2::after,
.legacy-vision h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 66px;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--gold-430), rgba(211, 182, 118, 0));
}

.card,
.content-panel,
.lifestyle__panel,
.legacy-vision__panel {
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.95), rgba(249, 245, 236, 0.8));
  border-color: rgba(202, 178, 123, 0.28);
  box-shadow: var(--elev-1);
  transition: transform 260ms ease, box-shadow 260ms ease, border-color 260ms ease;
}

.card:hover,
.content-panel:hover,
.lifestyle__panel:hover,
.legacy-vision__panel:hover {
  transform: translateY(-4px);
  border-color: rgba(169, 135, 63, 0.42);
  box-shadow: var(--elev-2);
}

.card a {
  position: relative;
  color: #163a63;
}

.card a::after {
  content: "";
  display: block;
  width: 0;
  height: 1px;
  background: rgba(22, 58, 99, 0.7);
  transition: width 220ms ease;
}

.card a:hover::after,
.card a:focus-visible::after {
  width: 100%;
}

.site-footer {
  background: linear-gradient(180deg, #f8f5ee, #f6f8fc 35%, #ffffff 100%);
}

.site-footer__links a {
  border-radius: 999px;
  padding: 0.18rem 0.56rem;
  transition: background-color 180ms ease, color 180ms ease;
}

.site-footer__links a:hover,
.site-footer__links a:focus-visible {
  background: rgba(169, 135, 63, 0.14);
}

.page-hero {
  background: linear-gradient(140deg, #0a1f3d, #133963 52%, #0f3156 100%);
  border: 1px solid rgba(211, 182, 118, 0.26);
  box-shadow: var(--elev-2);
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 92% 8%, rgba(211, 182, 118, 0.26), transparent 36%);
  pointer-events: none;
}

.page-content {
  gap: 1.1rem;
}

.content-panel {
  position: relative;
}

.content-panel::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  border-radius: 16px 0 0 16px;
  background: linear-gradient(180deg, rgba(163, 131, 66, 0.65), rgba(163, 131, 66, 0));
}

.stat {
  background: linear-gradient(180deg, #f8fcff, #f3f7ff);
  border-color: #d2deed;
}

[data-page="maps"] .page-hero {
  background: linear-gradient(140deg, #0a2447, #13507f 56%, #0f3f6f 100%);
}

[data-page="investors"] .page-hero {
  background: linear-gradient(140deg, #101f3a, #22466f 56%, #162f53 100%);
}

[data-page="condos-hotel"] .page-hero {
  background: linear-gradient(140deg, #10263f, #1d4e73 56%, #184560 100%);
}

[data-page="contact"] .page-hero {
  background: linear-gradient(140deg, #12233f, #335c86 55%, #21486d 100%);
}

.contact-layout {
  display: grid;
  gap: 1rem;
}

.contact-aside {
  background: linear-gradient(165deg, #ffffff, #f8f2e7);
  border: 1px solid rgba(202, 178, 123, 0.32);
  border-radius: 16px;
  padding: 1rem;
  box-shadow: var(--elev-1);
}

.contact-aside h3 {
  font-size: 1.22rem;
  margin-bottom: 0.3rem;
}

.contact-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.55rem;
  font-size: 0.94rem;
  color: var(--text-mid);
}

.location-placeholder {
  margin-top: 0.9rem;
  border-radius: 12px;
  border: 1px dashed rgba(95, 118, 147, 0.45);
  min-height: 150px;
  padding: 0.85rem;
  display: grid;
  align-content: end;
  background: linear-gradient(160deg, rgba(228, 236, 246, 0.65), rgba(251, 245, 232, 0.7));
}

.location-placeholder small {
  color: var(--text-soft);
}

[data-animate] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 620ms cubic-bezier(0.22, 1, 0.36, 1), transform 620ms cubic-bezier(0.22, 1, 0.36, 1);
}

[data-animate].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (min-width: 960px) {
  .contact-layout {
    grid-template-columns: 1.2fr 0.8fr;
    align-items: start;
  }
}

@media (prefers-reduced-motion: reduce) {
  [data-animate],
  .card,
  .content-panel,
  .lifestyle__panel,
  .legacy-vision__panel,
  .btn {
    transition: none !important;
    transform: none !important;
    opacity: 1 !important;
  }
}
