:root {
  --bg: #0a0f12;
  --bg-soft: #10181c;
  --panel: rgba(14, 21, 25, 0.78);
  --panel-strong: #131d22;
  --text: #f6f1e7;
  --muted: #c8c0b4;
  --line: rgba(255, 255, 255, 0.1);
  --accent: #f0a53a;
  --accent-deep: #bd7723;
  --accent-soft: rgba(240, 165, 58, 0.16);
  --link: #5faeef;
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
  --radius: 28px;
  --radius-sm: 18px;
  --container: min(1180px, calc(100vw - 48px));
  --section-space: clamp(72px, 9vw, 128px);
  --header-height: 92px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at top, rgba(40, 61, 72, 0.55), transparent 30%),
    linear-gradient(180deg, #0c1114 0%, #0b0f12 45%, #0a0e10 100%);
  font-family: "Cormorant Garamond", Georgia, serif;
  line-height: 1.55;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
input,
textarea {
  font: inherit;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -48px;
  z-index: 1000;
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--accent);
  color: #111;
}

.skip-link:focus {
  top: 16px;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 30;
  transition: background-color 260ms ease, backdrop-filter 260ms ease, border-color 260ms ease;
  border-bottom: 1px solid transparent;
}

.site-header.is-scrolled,
.site-header.site-header--solid {
  background: rgba(7, 11, 14, 0.82);
  backdrop-filter: blur(18px);
  border-color: rgba(255, 255, 255, 0.08);
}

.landing-brand-shell {
  position: fixed;
  inset: 0 0 auto;
  z-index: 30;
  pointer-events: none;
  transition: opacity 220ms ease, visibility 220ms ease;
}

.landing-brand-inner {
  width: var(--container);
  min-height: var(--header-height);
  margin: 0 auto;
  display: flex;
  align-items: center;
}

.landing-brand-shell .brand {
  pointer-events: auto;
}

.landing-brand-shell.is-hidden {
  opacity: 0;
  visibility: hidden;
}

.header-inner {
  width: var(--container);
  min-height: var(--header-height);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}

.brand img {
  width: 60px;
  height: 60px;
  object-fit: cover;
}

.brand-logo {
  opacity: 0;
  animation: headerLogoFade 700ms ease 140ms forwards;
}

.brand-mark {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.brand-line {
  display: inline-block;
  font: inherit;
  letter-spacing: inherit;
  text-transform: inherit;
  color: inherit;
}

.brand-char {
  display: inline-block;
  opacity: 0;
  animation: headerLetterReveal 420ms ease forwards;
}

.brand-mark--animated strong .brand-char {
  animation-delay: calc(260ms + (var(--char-index) * 28ms));
}

.brand-mark--animated span .brand-char {
  animation-delay: calc(520ms + (var(--char-index) * 20ms));
}

.brand-mark > strong,
.brand-mark > span {
  font-family: "Space Grotesk", Arial, sans-serif;
  letter-spacing: 0.12em;
  color: #fff;
  white-space: nowrap;
}

.brand-mark > strong {
  font-size: 1rem;
  text-transform: uppercase;
}

.brand-mark > span {
  font-size: 0.72rem;
  margin-top: 4px;
  color: var(--accent);
  text-transform: uppercase;
}

@keyframes headerLogoFade {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes headerLetterReveal {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.desktop-nav {
  margin-left: auto;
}

.desktop-nav ul,
.footer-nav ul,
.social-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.desktop-nav > ul {
  display: flex;
  align-items: center;
  gap: clamp(12px, 1.7vw, 28px);
}

.desktop-nav li {
  position: relative;
}

.desktop-nav a,
.mobile-nav a,
.nav-dropdown-toggle,
.mobile-nav-heading {
  position: relative;
  font-family: "Space Grotesk", Arial, sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.86);
  transition: color 200ms ease;
}

.nav-dropdown-toggle {
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.desktop-nav a::after,
.mobile-nav a::after,
.nav-dropdown-toggle::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100%;
  height: 1px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 200ms ease;
}

.desktop-nav a:hover,
.desktop-nav a:focus-visible,
.desktop-nav a[aria-current="page"],
.nav-dropdown-toggle:hover,
.nav-dropdown-toggle:focus-visible,
.nav-dropdown-toggle[aria-current="page"],
.mobile-nav a:hover,
.mobile-nav a:focus-visible,
.mobile-nav a[aria-current="page"] {
  color: #fff;
}

.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after,
.desktop-nav a[aria-current="page"]::after,
.nav-dropdown-toggle:hover::after,
.nav-dropdown-toggle:focus-visible::after,
.nav-dropdown-toggle[aria-current="page"]::after,
.mobile-nav a:hover::after,
.mobile-nav a:focus-visible::after,
.mobile-nav a[aria-current="page"]::after {
  transform: scaleX(1);
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 18px);
  left: 0;
  min-width: 220px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity 200ms ease, transform 200ms ease;
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  text-align: left;
}

.nav-dropdown-menu li {
  width: 100%;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu,
.nav-dropdown.is-open .nav-dropdown-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.mobile-nav-group {
  display: grid;
  gap: 12px;
}

.mobile-nav-heading {
  color: rgba(255, 255, 255, 0.66);
}

.mobile-nav-heading[aria-current="page"] {
  color: #fff;
}

.mobile-nav-sublist {
  list-style: none;
  margin: 0;
  padding: 0 0 0 18px;
  display: grid;
  gap: 14px;
}

.menu-button {
  display: none;
  margin-left: auto;
  width: 50px;
  height: 50px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
}

.menu-button span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
  transition: transform 220ms ease, opacity 220ms ease;
}

.menu-open .menu-button span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.menu-open .menu-button span:nth-child(2) {
  opacity: 0;
}

.menu-open .menu-button span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.mobile-nav {
  position: fixed;
  inset: var(--header-height) 20px auto;
  z-index: 25;
  padding: 26px;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(8, 12, 15, 0.95);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-12px);
  transition: opacity 220ms ease, transform 220ms ease;
}

.menu-open .mobile-nav {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.mobile-nav ul {
  list-style: none;
  display: grid;
  gap: 16px;
  margin: 0;
  padding: 0;
}

.page-shell {
  position: relative;
  overflow: clip;
}

.hero,
.page-hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: end;
}

.hero-media,
.page-hero-media {
  position: absolute;
  inset: 0;
}

.hero-media::after,
.page-hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(7, 11, 14, 0.38) 0%, rgba(7, 11, 14, 0.52) 45%, rgba(7, 11, 14, 0.86) 100%),
    linear-gradient(90deg, rgba(7, 11, 14, 0.82) 0%, rgba(7, 11, 14, 0.2) 50%, rgba(7, 11, 14, 0.55) 100%);
}

.hero-media img,
.hero-media video,
.page-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-content,
.page-hero-content {
  position: relative;
  z-index: 1;
  width: var(--container);
  margin: 0 auto;
  padding: calc(var(--header-height) + 72px) 0 88px;
}

.hero-copy {
  max-width: 720px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
  font-family: "Space Grotesk", Arial, sans-serif;
  font-size: 0.84rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--accent);
}

.eyebrow::before {
  content: "";
  width: 42px;
  height: 1px;
  background: currentColor;
}

h1,
h2,
h3,
h4 {
  margin: 0;
  line-height: 0.98;
  font-weight: 500;
}

.hero h1,
.page-hero h1 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(3.4rem, 9vw, 6.8rem);
  letter-spacing: 0.01em;
}

.hero-copy--home h1 {
  font-size: clamp(2.55rem, 6.75vw, 5.1rem);
}

.hero h1 .accent,
.page-hero h1 .accent,
.section-title .accent,
.split-heading .accent {
  color: var(--accent);
}

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

.lead,
.page-hero-copy,
.body-copy {
  margin-top: 22px;
  max-width: 720px;
  font-size: clamp(1.18rem, 2vw, 1.5rem);
  color: var(--muted);
}

.section {
  width: var(--container);
  margin: 0 auto;
  padding: var(--section-space) 0;
}

.section--home-tight {
  padding: calc(var(--section-space) * 0.45) 0;
}

.section--location-first {
  padding-bottom: calc(var(--section-space) * 0.3);
}

.section--location-second {
  padding-top: calc(var(--section-space) * 0.3);
}

.section--about-first {
  padding-bottom: calc(var(--section-space) * 0.3);
}

.section--about-second {
  padding-top: calc(var(--section-space) * 0.3);
}

.section--yoga-first {
  padding-bottom: calc(var(--section-space) * 0.5);
}

.section--yoga-second {
  padding-top: calc(var(--section-space) * 0.5);
  padding-bottom: calc(var(--section-space) * 0.5);
}

.section--yoga-third {
  padding-top: calc(var(--section-space) * 0.5);
}

.section--tracking-first,
.section--cafe-first {
  padding-bottom: calc(var(--section-space) * 0.5);
}

.section--tracking-second,
.section--cafe-second {
  padding-top: calc(var(--section-space) * 0.5);
}

.section--gallery-intro {
  padding-bottom: calc(var(--section-space) * 0.42);
}

.section--gallery-tight {
  padding-top: calc(var(--section-space) * 0.38);
}

.section-header {
  max-width: 780px;
  margin-bottom: 44px;
}

.section-header--investment {
  max-width: none;
  margin-bottom: 0;
}

.section-header--investment .body-copy {
  max-width: none;
}

.section-kicker {
  margin-bottom: 12px;
  font-family: "Space Grotesk", Arial, sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
}

.section-kicker--welcome {
  font-size: 1rem;
}

.section-title,
.split-heading {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2.2rem, 4vw, 4rem);
  line-height: 1.05;
}

.split-heading--welcome {
  font-size: clamp(1.1rem, 2vw, 2rem);
  max-width: 620px;
}

.section-subtitle {
  margin-top: 18px;
  font-size: 1.25rem;
  color: var(--muted);
}

.button,
.button-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 54px;
  padding: 0 26px;
  border-radius: 999px;
  font-family: "Space Grotesk", Arial, sans-serif;
  font-size: 0.88rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: transform 220ms ease, background-color 220ms ease, border-color 220ms ease, color 220ms ease;
}

.button {
  background: var(--accent);
  color: #15110d;
}

.button:hover,
.button:focus-visible {
  background: #ffb95a;
  transform: scale(0.97);
}

.button-ghost {
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #fff;
  background: rgba(255, 255, 255, 0.04);
}

.button-ghost:hover,
.button-ghost:focus-visible {
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(255, 255, 255, 0.36);
  transform: scale(0.97);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 30px;
}

.welcome-grid,
.split-grid,
.contact-grid,
.location-grid {
  display: grid;
  gap: 34px;
}

.welcome-grid,
.location-grid {
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  align-items: center;
}

.welcome-grid--home {
  align-items: stretch;
}

.welcome-copy {
  padding-top: 18px;
  display: flex;
  flex-direction: column;
}

.image-frame--welcome {
  height: 100%;
  min-height: 100%;
}

.image-frame--serenity {
  height: 520px;
}

.image-frame--serenity img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 38% 50%;
  transform: scale(1.15);
}

.image-frame--serenity.is-visible img {
  animation: serenityImageZoomOut 5s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

@keyframes serenityImageZoomOut {
  from {
    transform: scale(1.15);
  }

  to {
    transform: scale(1);
  }
}

.image-frame--tracking {
  height: 520px;
}

.image-frame--tracking img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.15);
}

.image-frame--tracking.is-visible img {
  animation: trackingImageZoomOut 5s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

@keyframes trackingImageZoomOut {
  from {
    transform: scale(1.15);
  }

  to {
    transform: scale(1);
  }
}

.image-frame--cafe {
  height: 520px;
}

.image-frame--cafe img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.15);
}

.image-frame--cafe.is-visible img {
  animation: cafeImageZoomOut 5s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

@keyframes cafeImageZoomOut {
  from {
    transform: scale(1.15);
  }

  to {
    transform: scale(1);
  }
}

.split-grid {
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  align-items: center;
}

.split-grid--location {
  height: 100%;
  align-items: end;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  padding-top: 0;
}

.image-frame--location {
  overflow: hidden;
  background: transparent;
  border: 0;
  border-radius: 36px;
}

.image-frame--location-left {
  width: 100%;
  height: 594px;
  margin-left: -24px;
}

.image-frame--location-right {
  width: 100%;
  height: 594px;
  margin-bottom: 32px;
  margin-left: -14px;
}

.image-frame--location img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.15);
}

.image-frame--location.is-visible img {
  animation: locationImageZoomOut 3s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

@keyframes locationImageZoomOut {
  from {
    transform: scale(1.15);
  }

  to {
    transform: scale(1);
  }
}

.location-grid--location {
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
  align-items: center;
  gap: 16px;
}

.rounded-panel--location {
  background: transparent;
  border: 0;
  border-radius: 0;
  padding: 0;
  box-shadow: none;
}

.rounded-panel--location .section-kicker {
  margin-bottom: 34px;
}

.rounded-panel--location .split-heading {
  padding: 18px 0 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
}

.rounded-panel--location .body-copy {
  max-width: 640px;
  margin-top: 36px;
}


.image-frame,
.rounded-panel,
.story-card,
.feature-card,
.experience-card,
.dome-card,
.masonry-card,
.contact-card,
.signup-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(16, 24, 29, 0.86), rgba(13, 19, 23, 0.86));
}

.image-frame {
  overflow: hidden;
}

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

.rounded-panel {
  padding: clamp(26px, 4vw, 42px);
}

.rounded-panel.rounded-panel--location {
  background: transparent;
  border: 0;
  border-radius: 0;
  padding: 0;
  box-shadow: none;
}

.rounded-panel.rounded-panel--plain,
.contact-card.contact-card--plain {
  background: transparent;
  border: 0;
  border-radius: 0;
  padding: 0;
  box-shadow: none;
}

.rounded-panel--plain .body-copy,
.contact-card--plain {
  max-width: 760px;
}

.rounded-panel.rounded-panel--article {
  background: transparent;
  border: 0;
  border-radius: 0;
  padding: 0;
  box-shadow: none;
}

.body-copy--article {
  text-align: center;
  max-width: 680px;
  margin: 26px auto;
}

.article-divider {
  position: relative;
  width: min(100%, 720px);
  height: 32px;
  margin: 0 auto;
}

.article-divider::before,
.article-divider::after {
  content: "";
  position: absolute;
  top: 50%;
  width: calc(50% - 50px);
  height: 2px;
  background: rgba(255, 255, 255, 0.9);
  transform: translateY(-50%);
}

.article-divider::before {
  left: 0;
}

.article-divider::after {
  right: 0;
}

.article-divider {
  background:
    radial-gradient(circle at 50% 50%, transparent 0 34px, transparent 34px),
    none;
}

.article-divider:has(*) {
  background: none;
}

.article-divider::marker {
  content: "";
}

.article-divider::selection {
  background: transparent;
}

.article-divider {
  --divider-stroke: rgba(255, 255, 255, 0.9);
}

.article-divider::before,
.article-divider::after {
  background: var(--divider-stroke);
}

.article-divider {
  mask: none;
}

.article-divider {
  overflow: visible;
}

.article-divider {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='32' viewBox='0 0 120 32'%3E%3Cpath d='M13 10c12 0 18-7 30-7 12 0 18 7 30 7 12 0 18-7 30-7 12 0 18 7 30 7' fill='none' stroke='white' stroke-width='3' stroke-linecap='round'/%3E%3Cpath d='M13 18c12 0 18-7 30-7 12 0 18 7 30 7 12 0 18-7 30-7 12 0 18 7 30 7' fill='none' stroke='white' stroke-width='3' stroke-linecap='round'/%3E%3Cpath d='M13 26c12 0 18-7 30-7 12 0 18 7 30 7 12 0 18-7 30-7 12 0 18 7 30 7' fill='none' stroke='white' stroke-width='3' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 84px 22px;
}

.body-copy p,
.rounded-panel p,
.story-card p,
.feature-card p,
.experience-card p,
.dome-card p,
.masonry-copy p,
.contact-card p,
.signup-copy p {
  margin: 0;
  font-size: clamp(1.05rem, 1.75vw, 1.28rem);
  color: var(--muted);
}

.body-copy p + p,
.rounded-panel p + p,
.contact-card p + p {
  margin-top: 16px;
}

.cta-block {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  margin-top: 28px;
}

.tabs-shell {
  padding: 28px;
}

.tabs-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 26px;
}

.tab-button {
  padding: 14px 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  cursor: pointer;
  color: var(--muted);
  font-family: "Space Grotesk", Arial, sans-serif;
  font-size: 0.82rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transition:
    background-color 180ms ease,
    border-color 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.tab-button:hover,
.tab-button:focus-visible {
  background: rgba(240, 165, 58, 0.14);
  border-color: rgba(240, 165, 58, 0.4);
  color: #fff;
  transform: scale(0.97);
}

.tab-button[aria-selected="true"] {
  background: var(--accent-soft);
  color: #fff;
  border-color: rgba(240, 165, 58, 0.32);
}

.tab-panel {
  display: none;
}

.tab-panel.is-active {
  display: grid;
}

.amenity-card {
  grid-template-columns: 120px minmax(0, 1fr);
  gap: 28px;
  align-items: start;
  padding: 24px;
}

.amenity-icon {
  display: grid;
  place-items: center;
  width: 120px;
  height: 120px;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.04);
}

.amenity-icon img {
  width: 84px;
  height: 84px;
  object-fit: contain;
}

.amenity-copy h3,
.story-card h3,
.feature-card h3,
.experience-card h3,
.dome-card h3,
.contact-card h3 {
  font-family: "Space Grotesk", Arial, sans-serif;
  font-size: 1.25rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.amenity-copy p {
  margin-top: 14px;
}

.experience-cards,
.feature-grid,
.domes-grid,
.related-grid,
.contact-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: 1.2fr 0.8fr;
}

.experience-cards {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

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

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

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

.related-grid--compact {
  grid-template-columns: repeat(2, minmax(260px, 340px));
  justify-content: center;
  gap: 18px;
}

.related-grid--compact .story-card {
  max-width: 340px;
}

.related-grid--compact .story-card img {
  aspect-ratio: 1.12;
}

.related-grid--compact .card-body {
  padding: 18px;
}

.related-grid--compact .story-card h3 {
  font-size: 1rem;
}

.related-grid--compact .story-card p {
  font-size: 1rem;
}

.related-grid--compact .button-ghost {
  min-height: 46px;
  padding: 0 20px;
  font-size: 0.76rem;
}

.experience-card,
.feature-card,
.dome-card,
.story-card,
.contact-card {
  overflow: hidden;
}

.experience-card {
  display: flex;
  flex-direction: column;
}

.experience-card img,
.feature-card img,
.dome-card img,
.story-card img {
  aspect-ratio: 0.82;
  object-fit: cover;
  width: 100%;
}

.feature-card img {
  aspect-ratio: 1.55;
}

.dome-card img {
  aspect-ratio: 0.92;
}

.dome-image-link {
  display: block;
  overflow: hidden;
}

.dome-image-link img {
  transition:
    filter 1200ms ease,
    transform 1200ms ease;
}

.dome-card.reveal img {
  filter: blur(14px);
  transform: scale(1.04);
}

.dome-card.reveal.is-visible img {
  filter: blur(0);
  transform: scale(1);
}

.dome-card.reveal.is-visible .dome-image-link:hover img,
.dome-card.reveal.is-visible .dome-image-link:focus-visible img {
  transform: scale(1.05);
}

.dome-card img.dome-image-sauna-focus {
  object-position: 78% 50%;
}

.card-body {
  padding: 24px;
}

.experience-card .card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
}

.card-body p {
  margin-top: 12px;
}

.contact-card h3 + p {
  margin-top: 24px;
}

.experience-card .cta-block {
  margin-top: auto;
  padding-top: 28px;
}

.meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 16px 0 18px;
  color: var(--muted);
  font-family: "Space Grotesk", Arial, sans-serif;
  font-size: 0.86rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.price {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  margin: 16px 0 10px;
  font-family: "Space Grotesk", Arial, sans-serif;
}

.price strong {
  font-size: 1.8rem;
  color: var(--accent);
}

.masonry {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr 0.9fr;
  gap: 24px;
}

.masonry-card {
  overflow: hidden;
}

.masonry-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.masonry-card:nth-child(1) {
  grid-row: span 2;
  min-height: 920px;
}

.masonry-card:not(:first-child) {
  min-height: 448px;
}

.gallery-intro {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: end;
  margin-bottom: 44px;
}

.gallery-title {
  max-width: 700px;
}

.gallery-subtitle {
  max-width: 680px;
  font-size: clamp(1.02rem, 1.7vw, 1.22rem);
}

.gallery-carousel {
  position: relative;
  padding: 0 40px;
}

.gallery-carousel-viewport {
  overflow: hidden;
}

.gallery-carousel-track {
  display: flex;
  gap: 18px;
  transition: transform 420ms ease;
  will-change: transform;
}

.gallery-slide {
  flex: 0 0 calc((100% - 36px) / 3);
  margin: 0;
  overflow: hidden;
  border-radius: 10px;
}

.gallery-slide img {
  width: 100%;
  aspect-ratio: 0.67;
  object-fit: cover;
  display: block;
  transition: transform 420ms ease;
}

.gallery-slide:hover img,
.gallery-slide:focus-within img {
  transform: scale(1.06);
}

.gallery-carousel-arrow {
  position: absolute;
  top: 50%;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 48px;
  height: 96px;
  padding: 0;
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.95);
  cursor: pointer;
  transform: translateY(-50%);
}

.gallery-carousel-arrow span {
  font-size: 5rem;
  line-height: 1;
  font-weight: 300;
  text-shadow: 0 0 18px rgba(255, 255, 255, 0.2);
}

.gallery-carousel-arrow--prev {
  left: 68px;
}

.gallery-carousel-arrow--next {
  right: 68px;
}

.gallery-carousel-arrow:hover,
.gallery-carousel-arrow:focus-visible {
  transform: translateY(-50%) scale(0.97);
}

.gallery-carousel-arrow:focus-visible {
  outline: 2px solid rgba(240, 165, 58, 0.7);
  outline-offset: 4px;
}

.gallery-lightbox[hidden] {
  display: none;
}

.gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: grid;
  place-items: center;
  padding: 24px;
}

.gallery-lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.82);
  opacity: 0;
  transition: opacity 280ms ease;
}

.gallery-lightbox-dialog {
  position: relative;
  z-index: 1;
  width: min(1400px, calc(100vw - 48px));
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 20px;
  opacity: 0;
  transform: scale(0.96);
  transition: opacity 280ms ease, transform 280ms ease;
}

.gallery-lightbox.is-open .gallery-lightbox-backdrop,
.gallery-lightbox.is-open .gallery-lightbox-dialog {
  opacity: 1;
}

.gallery-lightbox.is-open .gallery-lightbox-dialog {
  transform: scale(1);
}

.gallery-lightbox-stage {
  display: grid;
  place-items: center;
  min-height: min(80vh, 900px);
}

.gallery-lightbox-stage img {
  width: 100%;
  max-width: min(1100px, calc(100vw - 220px));
  max-height: 80vh;
  object-fit: contain;
  border-radius: 10px;
}

.gallery-lightbox-arrow,
.gallery-lightbox-close {
  display: grid;
  place-items: center;
  padding: 0;
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.95);
  cursor: pointer;
}

.gallery-lightbox-arrow {
  width: 48px;
  height: 96px;
}

.gallery-lightbox-arrow span {
  font-size: 5rem;
  line-height: 1;
  font-weight: 300;
  text-shadow: 0 0 18px rgba(255, 255, 255, 0.2);
}

.gallery-lightbox-close {
  position: absolute;
  top: -12px;
  right: 0;
  width: 68px;
  height: 68px;
  font-size: 3.4rem;
  line-height: 1;
}

.gallery-lightbox-arrow:hover,
.gallery-lightbox-arrow:focus-visible,
.gallery-lightbox-close:hover,
.gallery-lightbox-close:focus-visible {
  transform: scale(0.97);
}

.gallery-lightbox-arrow:focus-visible,
.gallery-lightbox-close:focus-visible {
  outline: 2px solid rgba(240, 165, 58, 0.7);
  outline-offset: 4px;
}

body.gallery-lightbox-open {
  overflow: hidden;
}

.feature-panels {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
  margin-top: 32px;
}

.feature-panel {
  min-height: 620px;
  padding: 28px 26px 24px;
  border-radius: 0;
  background: rgba(10, 10, 12, 0.58);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.feature-panel-icon {
  display: grid;
  place-items: center;
  width: 88px;
  height: 88px;
  margin-bottom: 26px;
  color: #fff;
}

.feature-panel-icon svg {
  width: 72px;
  height: 72px;
}

.feature-panel p {
  margin: 0;
  color: #fff;
  font-size: clamp(1.05rem, 1.7vw, 1.34rem);
  line-height: 1.38;
}

.feature-panel-line {
  width: 72px;
  height: 3px;
  margin-top: auto;
  background: rgba(255, 255, 255, 0.92);
}

.section--gallery-tight .section-subtitle {
  margin-top: 28px;
}

.section--investor-tight {
  padding: calc(var(--section-space) * 0.52) 0;
}

.section--investor-why,
.section--investor-next {
  padding-top: calc(var(--section-space) * 0.42);
}

.section--investor-next {
  padding-top: calc(var(--section-space) * 0.189);
}

.hero--investor .hero-media::after {
  background:
    linear-gradient(180deg, rgba(7, 11, 14, 0.4) 0%, rgba(7, 11, 14, 0.58) 42%, rgba(7, 11, 14, 0.9) 100%),
    linear-gradient(90deg, rgba(7, 11, 14, 0.84) 0%, rgba(7, 11, 14, 0.22) 48%, rgba(7, 11, 14, 0.62) 100%);
}

.hero--investor .hero-content {
  padding-top: calc(var(--header-height) + 6px);
  padding-bottom: 54px;
}

.hero-copy--investor {
  max-width: 1180px;
}

.investor-hero-proof {
  width: min(100%, 1130px);
  margin-top: 30px;
}

.investor-hero-proof-line {
  width: min(100%, 900px);
  height: 1px;
  background: rgba(255, 255, 255, 0.25);
}

.investor-hero-proof-copy {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-top: 30px;
}

.investor-hero-proof-icon {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  color: var(--accent);
  flex: 0 0 54px;
}

.investor-hero-proof-icon svg {
  width: 48px;
  height: 48px;
}

.investor-hero-proof-copy p {
  margin: 0;
  max-width: 900px;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1.15rem, 1.7vw, 1.45rem);
  line-height: 1.35;
}

.investor-metrics,
.investor-grid {
  display: grid;
  gap: 22px;
}

.investor-metrics {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  padding: 18px 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(13, 21, 27, 0.82), rgba(9, 14, 18, 0.9));
}

.investor-card,
.investor-cta {
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(16, 24, 29, 0.78), rgba(11, 17, 21, 0.86));
}

.investor-metric {
  padding: 18px 18px 16px;
  min-height: 224px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  text-align: center;
  position: relative;
}

.investor-metric:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 12px;
  right: 0;
  width: 1px;
  height: calc(100% - 24px);
  background: rgba(255, 255, 255, 0.14);
}

.investor-metric-icon {
  display: grid;
  place-items: center;
  width: 74px;
  height: 74px;
  margin-bottom: 14px;
  color: var(--accent);
}

.investor-metric-icon svg {
  width: 64px;
  height: 64px;
}

.investor-metric-label {
  display: inline-block;
  min-height: 52px;
  margin-bottom: 10px;
  font-family: "Space Grotesk", Arial, sans-serif;
  font-size: 0.92rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
}

.investor-metric p,
.investor-card p {
  margin: 0;
  color: #f3efe8;
  font-size: 1.2rem;
  line-height: 1.45;
}

.investor-metric-body {
  font-family: "Space Grotesk", Arial, sans-serif;
  font-size: clamp(1.45rem, 2.2vw, 2.2rem) !important;
  letter-spacing: 0.02em;
  line-height: 1.22 !important;
}

.split-grid--investor {
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.94fr);
  align-items: stretch;
}

.image-frame--investor {
  min-height: 520px;
}

.image-frame--investor img {
  transform: scale(1.15);
}

.image-frame--investor.is-visible img {
  animation: investorImageZoomOut 5s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

@keyframes investorImageZoomOut {
  from {
    transform: scale(1.15);
  }
  to {
    transform: scale(1);
  }
}

.investor-grid--thesis {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.investor-grid--package {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.investor-mini-metrics {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 18px;
}

.investor-mini-metric {
  padding: 18px 18px 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(14, 21, 27, 0.52), rgba(10, 15, 19, 0.68));
  text-align: center;
}

.investor-mini-metric-icon {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  margin: 0 auto 12px;
  color: #ffffff;
}

.investor-mini-metric-icon svg {
  width: 44px;
  height: 44px;
}

.investor-mini-metric h3 {
  margin: 0 0 10px;
  color: var(--accent);
  font-family: "Space Grotesk", Arial, sans-serif;
  font-size: 0.86rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  line-height: 1.3;
}

.investor-mini-metric p {
  margin: 0;
  color: #f3efe8;
  font-family: "Space Grotesk", Arial, sans-serif;
  font-size: clamp(1.15rem, 1.7vw, 1.5rem);
  letter-spacing: 0.02em;
  line-height: 1.2;
}

.investor-card {
  padding: 28px 24px;
  border-radius: 26px;
}

.investor-card h3 {
  margin-bottom: 14px;
  font-family: "Space Grotesk", Arial, sans-serif;
  font-size: 1.08rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.investor-card--package {
  min-height: 220px;
}

.investor-grid--package {
  gap: 22px;
}

.investor-grid--package .investor-card--package {
  position: relative;
  padding: 28px 24px;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.investor-grid--package .investor-card--package::after {
  content: "";
  position: absolute;
  top: 18px;
  bottom: 18px;
  right: -11px;
  width: 1px;
  background: rgba(255, 255, 255, 0.2);
}

.investor-grid--package .investor-card--package:last-child::after {
  display: none;
}

.investor-package-note {
  margin: 22px 0 0;
  max-width: 980px;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1.15rem, 1.7vw, 1.45rem);
  line-height: 1.35;
}

.investor-cta {
  padding: clamp(30px, 4vw, 44px);
  border-radius: 28px;
}

.investor-cta--plain {
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.section--investor-divider {
  border-top: 0;
}

.investor-phase-divider {
  display: grid;
  width: var(--container);
  margin: 0 auto;
  justify-items: center;
  gap: 22px;
  padding: calc(var(--section-space) * 0.18) 0;
  transform: none;
}

.investor-phase-line {
  display: block;
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.16);
}

.investor-phase-text {
  color: var(--accent);
  font-family: "Space Grotesk", Arial, sans-serif;
  font-size: 1rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-align: center;
}

.investor-display-title {
  margin: 0;
  line-height: 1.05;
}

.investor-status-layout,
.investor-financial-layout {
  display: grid;
  grid-template-columns: minmax(190px, 0.54fr) minmax(0, 2.06fr);
  gap: 40px;
  align-items: start;
}

.investor-status-layout {
  align-items: stretch;
}

.investor-status-intro .body-copy,
.investor-financial-intro .body-copy {
  max-width: 420px;
  margin-top: 14px;
}

.investor-status-rule {
  width: 46px;
  height: 1px;
  margin: 28px 0 30px;
  background: rgba(248, 182, 74, 0.75);
}

.investor-opening-box {
  display: flex;
  align-items: center;
  gap: 18px;
  width: min(100%, 272px);
  margin-top: 17px;
  padding: 22px 12px 22px 4px;
  border: 1px solid rgba(248, 182, 74, 0.65);
  border-radius: 18px;
  background: rgba(11, 17, 21, 0.56);
}

.investor-opening-icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  color: var(--accent);
  flex: 0 0 48px;
}

.investor-opening-icon svg {
  width: 42px;
  height: 42px;
}

.investor-opening-label {
  font-family: "Space Grotesk", Arial, sans-serif;
  font-size: 0.76rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: var(--accent);
}

.investor-opening-value {
  margin-top: 6px;
  font-family: "Space Grotesk", Arial, sans-serif;
  font-size: clamp(1.45rem, 2vw, 2.15rem);
  line-height: 1;
  color: #f6f2ea;
}

.investor-opening-subvalue {
  margin-top: 8px;
  color: #f6f2ea;
  font-family: "Space Grotesk", Arial, sans-serif;
  font-size: clamp(0.77rem, 0.95vw, 0.84rem);
  line-height: 1.1;
}

.investor-opening-value--stacked {
  font-size: clamp(0.77rem, 0.95vw, 0.84rem);
  line-height: 1.1;
}

.investor-opening-value--stacked strong,
.investor-opening-subvalue strong {
  font-weight: 700;
}

.investor-status-cards {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 14px;
  height: 100%;
}

.investor-status-card {
  position: relative;
  min-height: 100%;
  padding: 26px 20px 22px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(16, 24, 29, 0.84), rgba(11, 17, 21, 0.9));
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.investor-status-check {
  position: absolute;
  top: 12px;
  right: 12px;
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: var(--accent);
  color: #071017;
}

.investor-status-check svg {
  width: 16px;
  height: 16px;
}

.investor-status-icon {
  display: grid;
  place-items: center;
  width: 92px;
  height: 92px;
  margin: 12px auto 24px;
  border: 1px solid rgba(248, 182, 74, 0.78);
  border-radius: 999px;
  color: var(--accent);
}

.investor-status-icon svg {
  width: 46px;
  height: 46px;
}

.investor-status-icon-image {
  width: 52px;
  height: 52px;
  object-fit: contain;
  filter: brightness(0) saturate(100%) invert(70%) sepia(66%) saturate(1117%) hue-rotate(350deg) brightness(102%) contrast(95%);
}

.investor-status-card h3 {
  margin: 0;
  min-height: 5.6em;
  color: #f6f2ea;
  font-family: "Instrument Sans", "Space Grotesk", Arial, sans-serif;
  font-size: 1.1rem;
  line-height: 1.35;
}

.investor-status-accent,
.investor-financial-accent {
  width: 42px;
  height: 1px;
  margin: 22px auto;
  background: rgba(248, 182, 74, 0.75);
}

.investor-status-accent {
  margin-top: 18px;
  margin-bottom: 22px;
}

.investor-status-card p {
  margin: 0;
  color: #f1ede6;
  font-size: 1.1rem;
  line-height: 1.55;
}

.investor-financial-main {
  display: grid;
  gap: 18px;
}

.investor-financial-panel {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0;
  padding: 14px 16px;
  border: 1px solid rgba(248, 182, 74, 0.22);
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(14, 21, 27, 0.82), rgba(10, 15, 19, 0.92));
}

.investor-financial-metric {
  position: relative;
  min-height: 330px;
  padding: 10px 22px 14px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.investor-financial-metric:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 18px;
  bottom: 18px;
  right: 0;
  width: 1px;
  background: rgba(255, 255, 255, 0.14);
}

.investor-financial-icon {
  display: grid;
  place-items: center;
  width: 74px;
  height: 74px;
  margin: 0 auto 12px;
  color: var(--accent);
}

.investor-financial-icon svg {
  width: 60px;
  height: 60px;
}

.investor-financial-label {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  max-width: 170px;
  color: #f4efe7;
  font-family: "Space Grotesk", Arial, sans-serif;
  font-size: 0.88rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  line-height: 1.35;
}

.investor-financial-value {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 72px;
  color: #f6f2ea;
  font-family: "Space Grotesk", Arial, sans-serif;
  font-size: clamp(2rem, 2.8vw, 3rem);
  line-height: 1;
}

.investor-financial-metric p {
  margin: 14px 0 0;
  max-width: 180px;
  color: #f1ede6;
  font-size: 1.08rem;
  line-height: 1.5;
}

.investor-financial-metric .investor-financial-accent {
  margin: 16px auto;
}

.investor-financial-footer {
  display: grid;
  grid-column: 1 / -1;
  width: 100%;
  grid-template-columns: minmax(0, 1.08fr) minmax(280px, 0.72fr);
  gap: 0;
  align-items: stretch;
  overflow: hidden;
  border: 1px solid rgba(248, 182, 74, 0.18);
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(14, 21, 27, 0.76), rgba(10, 15, 19, 0.88));
}

.investor-financial-note {
  display: flex;
  align-items: center;
  gap: 22px;
  padding: 26px 28px;
}

.investor-financial-note-icon {
  display: grid;
  place-items: center;
  width: 76px;
  height: 76px;
  color: var(--accent);
  flex: 0 0 76px;
}

.investor-financial-note-icon svg {
  width: 62px;
  height: 62px;
}

.investor-financial-note-label {
  margin-bottom: 12px;
  color: var(--accent);
  font-family: "Space Grotesk", Arial, sans-serif;
  font-size: 0.92rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.investor-financial-note p {
  margin: 0;
  color: #f1ede6;
  font-size: 1.15rem;
  line-height: 1.55;
}

.investor-financial-image {
  width: 100%;
  min-height: 214px;
  border: 0;
  border-radius: 0;
}

.investor-financial-image--underwriting {
  width: calc(100% - 18px);
  justify-self: start;
  margin: 18px 18px 18px 0;
}

.investor-financial-image--underwriting img {
  transform: scale(1.15);
  border-radius: 18px;
  object-position: 38% 50%;
}

.investor-financial-image--underwriting.is-visible img {
  animation: underwritingImageZoomOut 5s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

@keyframes underwritingImageZoomOut {
  from {
    transform: scale(1.15);
  }
  to {
    transform: scale(1);
  }
}

.investor-opening-box--revenue {
  width: min(100%, 340px);
}

.investor-status-intro .investor-opening-value {
  font-size: clamp(1.2rem, 1.55vw, 1.65rem);
}

.investor-cta .section-title,
.investor-cta .section-subtitle {
  max-width: 760px;
}

.signup-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 28px;
  padding: clamp(28px, 4vw, 44px);
  align-items: center;
}

.signup-panel--home {
  grid-template-columns: 1fr;
  min-height: 320px;
  justify-items: center;
  background:
    linear-gradient(180deg, rgba(8, 12, 15, 0.38), rgba(8, 12, 15, 0.7)),
    linear-gradient(90deg, rgba(8, 12, 15, 0.7), rgba(8, 12, 15, 0.3), rgba(8, 12, 15, 0.7)),
    url("assets/images/subscribe.jpg") center center / cover no-repeat;
}

.signup-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
}

.signup-brand img {
  width: 94px;
  height: 92px;
}

.signup-brand h2 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2rem, 3.4vw, 3.3rem);
}

.signup-form {
  display: flex;
  gap: 14px;
  align-items: center;
}

.contact-form {
  display: grid;
  gap: 16px;
}

.request-page-main {
  width: var(--container);
  min-height: 100svh;
  margin: 0 auto;
  display: grid;
  align-items: center;
  padding: calc(var(--header-height) + 28px) 0 48px;
}

.request-page-panel {
  width: min(100%, 760px);
  justify-self: center;
}

.request-page-title {
  max-width: 100%;
  margin-bottom: 42px;
}

.request-page-copy {
  margin: 0;
  max-width: 680px;
  color: var(--muted);
  font-size: clamp(1.08rem, 1.7vw, 1.25rem);
  line-height: 1.28;
}

.request-page-panel .contact-form {
  margin-top: 64px;
}

.request-page-panel .request-page-footnote {
  margin: 72px 0 0;
  text-align: center;
  color: rgba(255, 255, 255, 0.66);
  font-size: clamp(1.2rem, 1.95vw, 1.38rem);
  line-height: 1.32;
}

.request-page-footnote-secondary {
  margin: 10px 0 0;
  text-align: center;
  color: rgba(255, 255, 255, 0.54);
  font-size: 0.98rem;
  line-height: 1.4;
}

.signup-copy--home {
  width: 100%;
  max-width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
  padding-left: clamp(24px, 4vw, 56px);
  padding-right: clamp(24px, 4vw, 56px);
  text-align: left;
}

.section-kicker--subscribe {
  margin-bottom: 18px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.1rem, 2vw, 2rem);
  line-height: 1.05;
  letter-spacing: 0.08em;
}

.signup-copy--home p {
  max-width: 560px;
  margin-bottom: 0;
  color: #f3ede3;
  line-height: 1.28;
}

.signup-text-block {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  max-width: 360px;
}

.signup-action-block {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
  flex: 1;
  min-width: 0;
}

.signup-copy--home .form-status {
  text-align: left;
  min-height: 0;
  margin-top: 8px;
}

.button--subscribe {
  min-width: 190px;
  font-weight: 700;
}

.signup-copy--home .signup-form {
  width: 100%;
  max-width: 520px;
  justify-content: flex-end;
}

.signup-copy--home .signup-form input {
  min-height: 64px;
  font-size: 1.08rem;
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.28);
}

.signup-copy--home .signup-form input::placeholder {
  color: rgba(255, 255, 255, 0.88);
}

.signup-form input,
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 56px;
  padding: 0 20px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
}

.contact-form textarea {
  min-height: 160px;
  border-radius: 24px;
  padding: 18px 20px;
  resize: vertical;
}

.contact-form select {
  appearance: none;
  color: var(--muted);
}

.contact-form select option {
  color: #f6f2ea;
  background: #151b20;
}

.contact-form select optgroup {
  color: rgba(255, 255, 255, 0.68);
  background: #151b20;
  font-style: normal;
  font-weight: 700;
}

.signup-form button,
.contact-form button {
  border: 0;
  cursor: pointer;
}

.form-status {
  margin-top: 14px;
  min-height: 24px;
  color: #fff;
  font-size: 1rem;
}

.site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(12, 18, 21, 0.4), rgba(9, 13, 16, 0.96)),
    radial-gradient(circle at top, rgba(49, 79, 94, 0.14), transparent 40%);
}

.footer-inner {
  width: var(--container);
  margin: 0 auto;
  padding: 42px 0 32px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr 1fr;
  gap: 32px;
}

.footer-brand img {
  width: 94px;
  height: 92px;
}

.footer-brand {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
}

.footer-brand-mark {
  display: inline-flex;
  flex-direction: column;
  line-height: 1.05;
}

.footer-brand-mark strong,
.footer-brand-mark span {
  font-family: "Space Grotesk", Arial, sans-serif;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-brand-mark strong {
  font-size: 1.02rem;
  color: #fff;
}

.footer-brand-mark span {
  margin-top: 4px;
  font-size: 0.72rem;
  color: var(--accent);
}

.footer-brand h2 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 2.2rem;
}

.footer-brand p {
  margin-top: 16px;
  max-width: 340px;
  color: var(--muted);
  font-size: 1.08rem;
}

.footer-contact {
  flex-basis: 100%;
  margin-top: 12px;
  margin-left: 47px;
}

.footer-contact p {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  color: var(--muted);
  font-size: 1.02rem;
}

.footer-contact p + p {
  margin-top: 8px;
}

.footer-contact-icon {
  display: inline-grid;
  place-items: center;
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  color: #fff;
}

.footer-contact-icon svg {
  width: 18px;
  height: 18px;
}

.site-footer p {
  color: var(--muted);
  font-size: 1.05rem;
}

.footer-title {
  margin-bottom: 18px;
  font-family: "Space Grotesk", Arial, sans-serif;
  font-size: 0.92rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
}

.footer-nav ul {
  display: grid;
  gap: 4px;
}

.footer-nav a {
  color: var(--link);
}

.social-list {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 20px;
}

.social-list a {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  transition: transform 200ms ease, border-color 200ms ease;
}

.social-list a:hover,
.social-list a:focus-visible {
  transform: scale(0.97);
  border-color: rgba(240, 165, 58, 0.45);
}

.social-list svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.footer-bottom {
  width: var(--container);
  margin: 0 auto;
  padding: 0 0 28px;
  color: rgba(255, 255, 255, 0.72);
  font-family: "Space Grotesk", Arial, sans-serif;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  text-align: center;
}

.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 700ms ease, transform 700ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

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

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

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

  .image-frame--location img {
    animation: none;
    transform: none;
  }

  .dome-card.reveal img {
    filter: none;
    transform: none;
  }

  .image-frame--serenity img {
    animation: none;
    transform: none;
  }

  .image-frame--tracking img {
    animation: none;
    transform: none;
  }

  .image-frame--cafe img {
    animation: none;
    transform: none;
  }

  .brand-logo,
  .brand-char {
    animation: none;
    opacity: 1;
  }

  .gallery-card img {
    transform: none;
  }
}

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

  .menu-button {
    display: inline-grid;
    place-items: center;
  }

  .welcome-grid,
  .split-grid,
  .location-grid,
  .signup-panel,
  .footer-inner,
  .experience-cards,
  .feature-grid,
  .domes-grid,
  .related-grid,
  .contact-grid,
  .masonry {
    grid-template-columns: 1fr;
  }

  .masonry-card:nth-child(1),
  .masonry-card:not(:first-child) {
    min-height: 460px;
  }

  .split-grid--location {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 6px;
  }

  .image-frame--location-left {
    height: 440px;
    margin-left: -14px;
  }

  .image-frame--location-right {
    height: 440px;
    margin-bottom: 12px;
    margin-left: -9px;
  }

  .image-frame--serenity {
    height: 440px;
  }

  .image-frame--tracking {
    height: 440px;
  }

  .image-frame--cafe {
    height: 440px;
  }

  .gallery-intro {
    gap: 20px;
  }

  .related-grid--compact {
    grid-template-columns: repeat(2, minmax(220px, 320px));
  }

  .investor-metrics,
  .investor-grid--thesis,
  .investor-mini-metrics,
  .investor-grid--package,
  .split-grid--investor {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .investor-status-layout,
  .investor-financial-layout {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .investor-phase-divider {
    gap: 14px;
  }

  .investor-status-cards {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

  .investor-financial-metric:nth-child(2)::after,
  .investor-financial-metric:nth-child(4)::after {
    display: none;
  }

  .investor-financial-footer {
    grid-template-columns: 1fr;
  }

  .investor-grid--package .investor-card--package::after {
    display: none;
  }

  .hero--investor .hero-content {
    padding-top: calc(var(--header-height) + 10px);
  }

  .investor-hero-proof-copy {
    align-items: flex-start;
  }

  .investor-metrics {
    gap: 0;
  }

  .investor-metric:nth-child(2)::after {
    display: none;
  }

  .gallery-carousel {
    padding: 0 28px;
  }

  .gallery-slide {
    flex-basis: calc((100% - 18px) / 2);
  }

  .gallery-carousel-arrow--prev {
    left: 24px;
  }

  .gallery-carousel-arrow--next {
    right: 24px;
  }

  .gallery-lightbox-dialog {
    width: min(1100px, calc(100vw - 36px));
  }

  .gallery-lightbox-stage img {
    max-width: min(900px, calc(100vw - 160px));
  }

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

  .feature-panel {
    min-height: 540px;
  }
}

@media (max-width: 720px) {
  :root {
    --container: min(100vw - 32px, 1180px);
    --header-height: 84px;
  }

  .header-inner {
    gap: 16px;
    min-height: var(--header-height);
  }

  .brand img {
    width: 52px;
    height: 52px;
  }

  .brand-mark strong,
  .brand-mark span {
    letter-spacing: 0.08em;
  }

  .hero-content,
  .page-hero-content {
    padding-bottom: 64px;
  }

  .hero,
  .page-hero {
    min-height: 82svh;
  }

  .button,
  .button-ghost,
  .signup-form button {
    width: 100%;
  }

  .button-row,
  .cta-block,
  .signup-form {
    flex-direction: column;
    align-items: stretch;
  }

  .signup-copy--home {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .signup-text-block,
  .signup-action-block {
    align-items: center;
    max-width: 100%;
    width: 100%;
  }

  .signup-copy--home .form-status {
    text-align: center;
  }

  .tabs-shell,
  .rounded-panel,
  .card-body,
  .signup-panel {
    padding: 22px;
  }

  .amenity-card {
    grid-template-columns: 1fr;
  }

  .amenity-icon {
    width: 92px;
    height: 92px;
  }

  .amenity-icon img {
    width: 60px;
    height: 60px;
  }

  .split-grid--location {
    grid-template-columns: 1fr;
    gap: 18px;
    padding-top: 0;
    align-items: stretch;
  }

  .image-frame--location-left,
  .image-frame--location-right {
    height: 320px;
    margin-bottom: 0;
    margin-left: 0;
  }

  .image-frame--serenity {
    height: 320px;
  }

  .image-frame--tracking {
    height: 320px;
  }

  .image-frame--cafe {
    height: 320px;
  }

  .rounded-panel--location .split-heading {
    padding: 14px 0 18px;
  }

  .gallery-title {
    font-size: clamp(1.8rem, 9vw, 3rem);
  }

  .related-grid--compact {
    grid-template-columns: 1fr;
  }

  .investor-metrics,
  .investor-grid--thesis,
  .investor-mini-metrics,
  .investor-grid--package,
  .split-grid--investor {
    grid-template-columns: 1fr;
  }

  .investor-display-title {
    line-height: 1.05;
  }

  .investor-status-cards,
  .investor-financial-panel {
    grid-template-columns: 1fr;
  }

  .investor-status-card,
  .investor-financial-metric {
    min-height: 0;
  }

  .investor-financial-metric:not(:last-child)::after {
    top: auto;
    bottom: 0;
    left: 14px;
    right: 14px;
    width: auto;
    height: 1px;
  }

  .investor-financial-note {
    align-items: flex-start;
    padding: 22px;
  }

  .investor-financial-note-icon {
    width: 54px;
    height: 54px;
    flex-basis: 54px;
  }

  .investor-financial-note-icon svg {
    width: 44px;
    height: 44px;
  }

  .investor-financial-image {
    min-height: 180px;
  }

  .hero--investor .hero-content {
    padding-top: calc(var(--header-height) + 8px);
    padding-bottom: 48px;
  }

  .investor-hero-proof {
    margin-top: 24px;
  }

  .investor-hero-proof-copy {
    gap: 16px;
    margin-top: 24px;
  }

  .investor-hero-proof-icon {
    width: 42px;
    height: 42px;
    flex-basis: 42px;
  }

  .investor-hero-proof-icon svg {
    width: 38px;
    height: 38px;
  }

  .investor-hero-proof-copy p {
    font-size: 1rem;
  }

  .investor-metrics {
    padding: 12px 16px;
  }

  .investor-metric {
    min-height: 0;
    padding: 18px 10px;
  }

  .investor-metric:not(:last-child)::after {
    top: auto;
    bottom: 0;
    left: 10px;
    right: 10px;
    width: auto;
    height: 1px;
  }

  .investor-metric-label {
    min-height: 0;
  }

  .gallery-subtitle {
    font-size: 1rem;
  }

  .gallery-carousel {
    padding: 0 8px;
  }

  .gallery-slide {
    flex-basis: 100%;
  }

  .gallery-carousel-arrow {
    width: 36px;
    height: 72px;
  }

  .gallery-carousel-arrow span {
    font-size: 3.4rem;
  }

  .gallery-carousel-arrow--prev {
    left: 0;
  }

  .gallery-carousel-arrow--next {
    right: 0;
  }

  .gallery-lightbox {
    padding: 14px;
  }

  .gallery-lightbox-dialog {
    width: min(100vw - 16px, 760px);
    gap: 10px;
  }

  .gallery-lightbox-stage {
    min-height: 72vh;
  }

  .gallery-lightbox-stage img {
    max-width: calc(100vw - 84px);
    max-height: 72vh;
  }

  .gallery-lightbox-arrow {
    width: 34px;
    height: 72px;
  }

  .gallery-lightbox-arrow span {
    font-size: 3.4rem;
  }

  .gallery-lightbox-close {
    top: -4px;
    right: -2px;
    width: 54px;
    height: 54px;
    font-size: 2.8rem;
  }

  .feature-panels {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .feature-panel {
    min-height: 0;
    padding: 24px 20px 22px;
  }

  .feature-panel p {
    font-size: 1.1rem;
  }

  .image-frame--investor {
    min-height: 340px;
  }
}
