:root {
  --surface: #0b0d10;
  --surface-dim: #16130e;
  --surface-low: #1e1b16;
  --surface-panel: #221f1a;
  --surface-high: #2d2a24;
  --ivory: #f4f0e8;
  --muted: #d0c5b3;
  --silver: #aeb7c2;
  --gold: #d8b86a;
  --gold-bright: #f5d483;
  --edge: rgba(174, 183, 194, 0.18);
  --shadow: rgba(0, 0, 0, 0.48);
  --container: 1440px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--surface);
  color: var(--ivory);
  font-family: Inter, system-ui, sans-serif;
  line-height: 1.6;
}

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

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

.site-header {
  position: fixed;
  z-index: 10;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 22px clamp(20px, 4vw, 64px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(11, 13, 16, 0.48);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: "Noto Serif", Georgia, serif;
  font-size: 20px;
  white-space: nowrap;
}

.brand-logo {
  width: 46px;
  height: 46px;
  border-radius: 999px;
  object-fit: cover;
  box-shadow: 0 0 18px rgba(216, 184, 106, 0.14);
}

.primary-nav {
  display: flex;
  gap: clamp(16px, 2.4vw, 34px);
  color: rgba(244, 240, 232, 0.72);
  font-size: 12px;
}

.primary-nav a {
  transition: color 180ms ease;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 600;
  color: #251a00;
  background: var(--gold);
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
  background: var(--gold-bright);
  border-color: rgba(255, 255, 255, 0.34);
}

.button-small {
  min-height: 42px;
  padding: 0 18px;
  white-space: nowrap;
}

.button-primary {
  padding: 0 28px;
}

.section-full {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
}

.hero,
.pool {
  display: grid;
  place-items: center;
  text-align: center;
}

.pool-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pool-image {
  opacity: 0.54;
}

.hero-space,
.hero-moon {
  position: absolute;
  inset: 0;
  transform: translate3d(0, var(--parallax-y, 0), 0);
  will-change: transform;
}

.hero-space {
  background:
    radial-gradient(circle at 51% 34%, rgba(174, 183, 194, 0.18) 0 1px, transparent 2px),
    radial-gradient(circle at 18% 40%, rgba(244, 240, 232, 0.12) 0 1px, transparent 2px),
    radial-gradient(circle at 78% 29%, rgba(244, 240, 232, 0.11) 0 1px, transparent 2px),
    radial-gradient(circle at 64% 70%, rgba(216, 184, 106, 0.12) 0 1px, transparent 2px),
    linear-gradient(180deg, #05070a 0%, #090c10 42%, #0b0d10 100%);
  background-size: auto, auto, auto, auto, 100% 100%;
}

.hero-earth {
  position: absolute;
  top: 49svh;
  left: 50%;
  right: auto;
  bottom: auto;
  z-index: 1;
  width: clamp(330px, 37vw, 610px);
  height: clamp(330px, 37vw, 610px);
  object-fit: contain;
  opacity: 0.82;
  filter: saturate(0.82) brightness(0.82) drop-shadow(0 0 44px rgba(87, 132, 158, 0.34));
  transform: translate3d(-50%, var(--parallax-y, 0), 0);
}

.hero-moon {
  top: auto;
  z-index: 2;
  height: 58svh;
  bottom: -6svh;
  background-image: linear-gradient(to bottom, transparent 0 28%, rgba(11, 13, 16, 0.02) 45%, rgba(11, 13, 16, 0.42) 100%), url("./assets/hero-moon-foreground.png");
  background-position: center bottom;
  background-repeat: no-repeat;
  background-size: 100% auto;
  filter: brightness(1.58) contrast(1.1);
}

.hero-scrim,
.pool-scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(11, 13, 16, 0.08), rgba(11, 13, 16, 0.24) 48%, var(--surface) 100%),
    radial-gradient(circle at 50% 56%, transparent 0, rgba(11, 13, 16, 0.62) 78%);
}

.hero-scrim {
  z-index: 3;
}

.pool-scrim {
  background:
    linear-gradient(to bottom, var(--surface), rgba(11, 13, 16, 0.12) 42%, var(--surface)),
    radial-gradient(circle at 50% 50%, transparent 0, rgba(11, 13, 16, 0.5) 74%);
}

.hero-content,
.pool-content {
  position: relative;
  z-index: 1;
  padding-top: 88px;
}

.hero-content {
  z-index: 4;
  width: min(900px, calc(100% - 40px));
}

.pool-content {
  width: min(1120px, calc(100% - 40px));
}

.hero h1,
.pool h2,
.copy-block h2,
.section-heading h2,
.privacy h2 {
  margin: 0;
  font-family: "Noto Serif", Georgia, serif;
  font-weight: 400;
  line-height: 1.12;
}

.hero h1,
.pool h2 {
  font-size: clamp(52px, 7vw, 104px);
}

.copy-block h2,
.section-heading h2,
.privacy h2 {
  font-size: clamp(36px, 4vw, 64px);
}

.hero-content p:not(.eyebrow),
.section-heading > p:not(.eyebrow) {
  max-width: 680px;
  margin: 28px auto 40px;
  color: var(--silver);
  font-size: 18px;
}

.pool-content > p:not(.eyebrow) {
  max-width: 740px;
  margin: 28px auto 44px;
  color: var(--silver);
  font-size: 18px;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--silver);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
}

.accent {
  color: var(--gold);
}

.scroll-cue {
  position: absolute;
  z-index: 4;
  bottom: 36px;
  left: 50%;
  display: grid;
  justify-items: center;
  gap: 12px;
  color: rgba(174, 183, 194, 0.7);
  font-size: 12px;
  text-transform: uppercase;
  transform: translateX(-50%);
}

.scroll-cue i {
  width: 1px;
  height: 48px;
  background: currentColor;
}

.section-band {
  padding: clamp(96px, 12vw, 168px) clamp(20px, 4vw, 64px);
  background: var(--surface);
}

.alternate {
  border-block: 1px solid var(--edge);
  background: var(--surface-low);
}

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

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(360px, 1fr);
  align-items: center;
  gap: clamp(48px, 8vw, 120px);
}

.copy-block {
  max-width: 620px;
}

.copy-block > p:not(.eyebrow),
.privacy-list {
  color: var(--muted);
  font-size: 17px;
}

.metric-row {
  display: flex;
  flex-wrap: wrap;
  gap: 42px;
  margin-top: 36px;
  padding-top: 36px;
  border-top: 1px solid var(--edge);
}

.metric-row strong {
  display: block;
  color: var(--gold);
  font-family: "Noto Serif", Georgia, serif;
  font-size: 32px;
  font-weight: 400;
  line-height: 1;
}

.metric-row span {
  display: block;
  margin-top: 10px;
  color: var(--silver);
  font-size: 12px;
  text-transform: uppercase;
}

.image-frame {
  position: relative;
  margin: 0;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 32px 80px var(--shadow);
}

.image-frame::after,
.suite-card::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(to top, rgba(11, 13, 16, 0.28), transparent 52%);
  pointer-events: none;
}

.image-frame.tall {
  aspect-ratio: 4 / 5;
}

.image-frame img,
.suite-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 72px;
  text-align: center;
}

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

.suite-card {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  background: var(--surface-panel);
}

.suite-card img {
  position: absolute;
  inset: 0;
  opacity: 0.78;
  transition: transform 700ms ease, opacity 700ms ease;
}

.suite-card:hover img {
  opacity: 0.9;
  transform: scale(1.035);
}

.suite-card > div {
  position: absolute;
  z-index: 1;
  left: 0;
  right: 0;
  bottom: 0;
  padding: clamp(26px, 4vw, 44px);
  background: linear-gradient(to top, rgba(11, 13, 16, 0.92), rgba(11, 13, 16, 0));
}

.suite-card h3 {
  margin: 0 0 12px;
  font-family: "Noto Serif", Georgia, serif;
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 400;
}

.suite-card p {
  max-width: 420px;
  margin: 0 0 22px;
  color: var(--silver);
}

.suite-card a {
  color: var(--gold);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(216, 184, 106, 0.42);
}

.lounge-details {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin: 0 auto;
  text-align: left;
}

.lounge-details article {
  min-height: 230px;
  padding: 24px;
  border: 1px solid rgba(174, 183, 194, 0.16);
  border-radius: 12px;
  background: rgba(11, 13, 16, 0.58);
  backdrop-filter: blur(18px);
}

.lounge-details span {
  display: block;
  margin-bottom: 28px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 600;
}

.lounge-details h3 {
  margin: 0 0 12px;
  font-family: "Noto Serif", Georgia, serif;
  font-size: 24px;
  font-weight: 400;
  line-height: 1.25;
}

.lounge-details p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
}

.privacy-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(320px, 1fr);
  gap: clamp(44px, 8vw, 120px);
  align-items: start;
}

.privacy-list {
  display: grid;
  gap: 22px;
  margin: 0;
}

.privacy-list p {
  margin: 0;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--edge);
}

.inquiry-shell {
  width: min(820px, calc(100% - 40px));
  margin: 0 auto;
}

.inquiry-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  padding: clamp(26px, 5vw, 52px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  background: rgba(11, 13, 16, 0.36);
  box-shadow: 0 30px 80px var(--shadow);
}

.inquiry-form label {
  display: grid;
  gap: 10px;
}

.inquiry-form span {
  color: var(--silver);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
}

.inquiry-form input,
.inquiry-form select {
  width: 100%;
  min-height: 50px;
  border: 1px solid rgba(174, 183, 194, 0.22);
  border-radius: 8px;
  padding: 0 14px;
  color: var(--ivory);
  background: rgba(11, 13, 16, 0.7);
  font: inherit;
}

.inquiry-form input:focus,
.inquiry-form select:focus {
  outline: 2px solid rgba(216, 184, 106, 0.42);
  border-color: var(--gold);
}

.wide {
  grid-column: 1 / -1;
}

.site-footer {
  display: grid;
  justify-items: center;
  gap: 28px;
  padding: 72px 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: #050607;
  color: rgba(244, 240, 232, 0.52);
  text-align: center;
}

.site-footer p {
  margin: 0;
  font-family: "Noto Serif", Georgia, serif;
  font-size: 20px;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
  font-size: 12px;
  text-transform: uppercase;
}

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

@media (max-width: 900px) {
  .site-header {
    align-items: flex-start;
  }

  .primary-nav {
    display: none;
  }

  .split,
  .suite-grid,
  .lounge-details,
  .privacy-grid {
    grid-template-columns: 1fr;
  }

  .copy-block {
    max-width: none;
  }

  .suite-card {
    min-height: 460px;
  }

  .pool {
    min-height: auto;
    padding: 132px 0 96px;
  }

  .lounge-details article {
    min-height: 0;
  }
}

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

  .brand {
    font-size: 18px;
  }

  .button-small {
    display: none;
  }

  .hero-content,
  .pool-content {
    padding-top: 48px;
  }

  .hero-content p:not(.eyebrow),
  .pool-content p:not(.eyebrow),
  .section-heading > p:not(.eyebrow) {
    font-size: 16px;
  }

  .inquiry-form {
    grid-template-columns: 1fr;
  }

  .suite-card {
    min-height: 420px;
  }
}
