@font-face {
  font-family: "Inter Tight";
  src: url("assets/fonts/InterTight-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Inter Tight";
  src: url("assets/fonts/InterTight-SemiBold.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Inter Tight";
  src: url("assets/fonts/InterTight-ExtraBold.woff2") format("woff2");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

:root {
  --ink: #090a0d;
  --graphite: #111319;
  --graphite-soft: #171a21;
  --paper: #f5f4f0;
  --white: #ffffff;
  --muted: #a7abb2;
  --line: rgba(255, 255, 255, 0.14);
  --coral: #ff6542;
  --magenta: #df3d87;
  --cyan: #28d5c1;
  --blue: #2e78ff;
  --shell: min(1180px, calc(100% - 40px));
  --radius: 26px;
  --shadow: 0 28px 90px rgba(0, 0, 0, 0.28);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--ink);
  overflow-x: clip;
}

body {
  margin: 0;
  color: var(--white);
  background:
    radial-gradient(circle at 8% 24%, rgba(255, 101, 66, 0.08), transparent 24%),
    radial-gradient(circle at 93% 48%, rgba(40, 213, 193, 0.07), transparent 25%),
    linear-gradient(180deg, #090a0d 0%, #101218 48%, #090a0d 100%);
  font-family: "Inter Tight", Arial, sans-serif;
  line-height: 1.5;
  overflow-x: clip;
  text-rendering: optimizeLegibility;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  background-image: radial-gradient(rgba(255, 255, 255, 0.06) 0.6px, transparent 0.6px);
  background-size: 7px 7px;
  mask-image: linear-gradient(to bottom, black, transparent 80%);
  content: "";
  pointer-events: none;
  opacity: 0.18;
}

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

a {
  color: inherit;
}

button,
input,
select {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 1000;
  padding: 10px 14px;
  color: var(--ink);
  background: var(--white);
  transform: translateY(-180%);
}

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

:focus-visible {
  outline: 3px solid var(--cyan);
  outline-offset: 4px;
}

.flow-section {
  position: relative;
  isolation: isolate;
}

section[id] {
  scroll-margin-top: 82px;
}

.flow-section:not(.hero)::before {
  position: absolute;
  top: -100px;
  right: -15vw;
  left: -15vw;
  height: 220px;
  z-index: -1;
  background: radial-gradient(ellipse at center, rgba(255, 255, 255, 0.025), transparent 66%);
  content: "";
  pointer-events: none;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--cyan);
  font-family: ui-monospace, "SFMono-Regular", Menlo, monospace;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  letter-spacing: -0.045em;
}

h1 {
  margin-bottom: 22px;
  font-size: clamp(3.5rem, 6.4vw, 6.5rem);
  font-weight: 800;
  line-height: 0.88;
}

h1 span {
  display: inline-block;
  max-width: 820px;
  color: rgba(255, 255, 255, 0.77);
  font-size: 0.51em;
  font-weight: 400;
  line-height: 1.02;
}

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

h2 {
  max-width: 850px;
  margin-bottom: 24px;
  font-size: clamp(2.55rem, 5.4vw, 5.4rem);
  font-weight: 600;
  line-height: 0.98;
}

h3 {
  font-size: clamp(1.3rem, 2.1vw, 2rem);
  line-height: 1.05;
}

.topbar {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 100;
  border-bottom: 1px solid transparent;
  transition: background 240ms ease, border-color 240ms ease, backdrop-filter 240ms ease;
}

.topbar.is-scrolled {
  border-color: var(--line);
  background: rgba(8, 9, 12, 0.78);
  backdrop-filter: blur(18px);
}

.topbar__inner {
  display: flex;
  min-height: 82px;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.identity {
  width: 46px;
  line-height: 0;
}

.identity img {
  width: 100%;
  height: auto;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-left: auto;
}

.desktop-nav a {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.9rem;
  text-decoration: none;
  transition: color 180ms ease;
}

.desktop-nav a:hover {
  color: var(--white);
}

.capture-cta {
  position: relative;
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 0 28px;
  border: 1px solid rgba(223, 61, 135, 0.55);
  border-radius: 100px;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(223, 61, 135, 0.16) 0%, rgba(9, 10, 13, 0.35) 100%);
  box-shadow:
    0 12px 34px -14px rgba(223, 61, 135, 0.55),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.005em;
  text-decoration: none;
  transition:
    transform 280ms cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 280ms ease,
    background 280ms ease,
    border-color 280ms ease;
  overflow: hidden;
}

.capture-cta:hover {
  transform: translateY(-2px);
  border-color: var(--coral);
  background: linear-gradient(135deg, var(--coral) 0%, #b8306a 100%);
  box-shadow:
    0 20px 46px -14px rgba(223, 61, 135, 0.75),
    inset 0 1px 0 rgba(255, 255, 255, 0.14);
}

.capture-cta:active {
  transform: translateY(0);
}

.capture-cta span[aria-hidden] {
  font-size: 1.05rem;
  transition: transform 260ms cubic-bezier(0.22, 1, 0.36, 1);
}

.capture-cta:hover span[aria-hidden] {
  transform: translateX(3px);
}

.capture-cta--small {
  min-height: 44px;
  padding-inline: 20px;
  font-size: 0.88rem;
}

.capture-cta--accent {
  border-color: rgba(40, 213, 193, 0.55);
  background:
    linear-gradient(135deg, rgba(40, 213, 193, 0.16) 0%, rgba(9, 10, 13, 0.35) 100%);
  box-shadow:
    0 12px 34px -14px rgba(40, 213, 193, 0.55),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.capture-cta--accent:hover {
  color: var(--ink);
  border-color: var(--cyan);
  background: linear-gradient(135deg, var(--cyan) 0%, #1cb39d 100%);
  box-shadow:
    0 20px 46px -14px rgba(40, 213, 193, 0.75),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.capture-cta--dark {
  border-color: rgba(9, 10, 13, 0.25);
  color: var(--ink);
  background: linear-gradient(135deg, #ffffff 0%, #f3f4f6 100%);
  box-shadow: 0 10px 30px -14px rgba(0, 0, 0, 0.35);
}

.capture-cta--dark:hover {
  color: var(--white);
  border-color: var(--ink);
  background: linear-gradient(135deg, var(--ink) 0%, #1a1d24 100%);
  box-shadow: 0 20px 46px -14px rgba(0, 0, 0, 0.55);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.88rem;
  text-underline-offset: 5px;
}

.text-link:hover {
  color: var(--white);
}

.hero {
  display: grid;
  min-height: 98svh;
  align-items: end;
  overflow: hidden;
  background: #090a0d;
}

.hero::after {
  position: absolute;
  right: 0;
  bottom: -2px;
  left: 0;
  height: 190px;
  z-index: 1;
  background: linear-gradient(to bottom, transparent, #0b0d11 82%);
  content: "";
}

.hero__media,
.hero__veil {
  position: absolute;
  inset: 0;
}

.hero__media {
  left: 48%;
  width: 52%;
  -webkit-mask-image: linear-gradient(to right, transparent, black 14%);
  mask-image: linear-gradient(to right, transparent, black 14%);
}

.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero__veil {
  z-index: 0;
  background:
    linear-gradient(90deg, rgba(6, 7, 9, 0.94) 0%, rgba(6, 7, 9, 0.74) 34%, rgba(6, 7, 9, 0.12) 71%, rgba(6, 7, 9, 0.28) 100%),
    linear-gradient(0deg, rgba(6, 7, 9, 0.74) 0%, transparent 45%);
}

.hero__inner {
  position: relative;
  z-index: 2;
  display: grid;
  padding-top: 140px;
  padding-bottom: 106px;
  grid-template-columns: minmax(0, 1fr) 240px;
  align-items: end;
  gap: 70px;
}

.hero__copy {
  max-width: 830px;
}

.hero__copy h1 {
  max-width: 720px;
}

.hero__brand {
  display: block;
  width: 112px;
  margin-bottom: 24px;
  filter: drop-shadow(0 12px 28px rgba(0, 0, 0, 0.24));
}

.hero__lead {
  max-width: 610px;
  margin-bottom: 26px;
  color: rgba(255, 255, 255, 0.74);
  font-size: clamp(1.05rem, 1.7vw, 1.38rem);
}

.hero__condition {
  display: grid;
  max-width: 530px;
  margin: 0 0 30px;
  padding: 18px 0 18px 22px;
  border-left: 2px solid var(--cyan);
  gap: 2px;
}

.hero__condition span {
  color: var(--cyan);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero__condition strong {
  font-size: clamp(1.3rem, 2.2vw, 2rem);
  letter-spacing: -0.025em;
}

.hero__condition small {
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.74rem;
}

.hero__actions,
.section-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.hero__facts {
  display: grid;
  margin: 0;
  border-top: 1px solid var(--line);
}

.hero__facts div {
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.hero__facts dt {
  margin-bottom: 3px;
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero__facts dd {
  margin: 0;
  font-size: 1.05rem;
}

.signal-orbit {
  position: absolute;
  width: 520px;
  height: 520px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  pointer-events: none;
}

.signal-orbit::before,
.signal-orbit::after {
  position: absolute;
  border-radius: 50%;
  content: "";
}

.signal-orbit::before {
  inset: 20%;
  border: 1px solid rgba(40, 213, 193, 0.2);
}

.signal-orbit::after {
  top: 9%;
  left: 12%;
  width: 12px;
  height: 12px;
  background: var(--coral);
  box-shadow:
    28px 18px 0 var(--magenta),
    54px 3px 0 var(--cyan),
    84px 28px 0 var(--blue);
}

.signal-orbit--hero {
  right: -290px;
  bottom: -180px;
  z-index: 1;
}

.location {
  padding: 118px 0 125px;
  background:
    radial-gradient(circle at 72% 48%, rgba(40, 213, 193, 0.08), transparent 28%),
    linear-gradient(180deg, #0b0d11 0%, #10131a 100%);
}

.location__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.83fr) minmax(430px, 1.17fr);
  align-items: center;
  gap: clamp(60px, 8vw, 120px);
}

.location__copy > p:not(.eyebrow) {
  max-width: 580px;
  color: var(--muted);
  font-size: 1.1rem;
}

.location__copy address {
  margin: 27px 0;
  color: rgba(255, 255, 255, 0.76);
  font-style: normal;
}

.location__highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 26px;
}

.location__highlights span {
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 100px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.78rem;
}

.location__map {
  position: relative;
  margin: 0;
}

.location__map::before {
  position: absolute;
  inset: -14px;
  z-index: -1;
  border: 1px solid rgba(40, 213, 193, 0.22);
  border-radius: 40px;
  content: "";
}

.location__map__frame {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  max-height: 640px;
  overflow: hidden;
  border-radius: 32px;
  box-shadow: var(--shadow);
  background: #0d0f13;
}

.location__map__frame img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.18);
  transform-origin: center;
}

.location__map__legend {
  position: absolute;
  left: 16px;
  bottom: 16px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  border-radius: 100px;
  background: rgba(9, 10, 13, 0.75);
  backdrop-filter: blur(10px);
  color: #fff;
  font-size: 0.72rem;
  letter-spacing: 0.02em;
}

.location__map__legend::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #7dd3fc;
  box-shadow: 0 0 0 3px rgba(125, 211, 252, 0.25);
}

.location__map figcaption {
  margin-top: 13px;
  color: rgba(255, 255, 255, 0.43);
  font-size: 0.72rem;
  text-align: right;
}

.signal-thread {
  position: absolute;
  top: -45px;
  left: 50%;
  width: 1px;
  height: 90px;
  z-index: 3;
  background: linear-gradient(var(--coral), var(--cyan));
}

.signal-thread span {
  position: absolute;
  bottom: -5px;
  left: -5px;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 24px var(--cyan);
}

.conditions {
  padding: 120px 0 132px;
  background:
    radial-gradient(circle at 12% 28%, rgba(223, 61, 135, 0.09), transparent 28%),
    linear-gradient(180deg, #10131a 0%, #12141a 100%);
}

.conditions__grid {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 34px 72px;
}

.conditions__statement p:not(.eyebrow) {
  max-width: 500px;
  color: var(--muted);
  font-size: 1.05rem;
}

.conditions__features {
  display: grid;
  gap: 2px;
}

.conditions__features article {
  position: relative;
  display: grid;
  min-height: 145px;
  padding: 24px 26px 23px 82px;
  border-top: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.018);
}

.conditions__features article:last-child {
  border-bottom: 1px solid var(--line);
}

.conditions__features .feature-primary {
  background: linear-gradient(90deg, rgba(40, 213, 193, 0.12), transparent);
}

.feature-index {
  position: absolute;
  top: 26px;
  left: 24px;
  color: var(--cyan);
  font-family: ui-monospace, "SFMono-Regular", Menlo, monospace;
  font-size: 0.75rem;
}

.conditions__features h3 {
  margin-bottom: 8px;
}

.conditions__features p {
  max-width: 580px;
  margin: 0;
  color: var(--muted);
}

.conditions__action {
  display: flex;
  grid-column: 1 / -1;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 34px 0 0;
  border-top: 1px solid var(--line);
}

.conditions__action p {
  max-width: 520px;
  margin: 0;
  color: var(--muted);
}

.city {
  padding: 120px 0 132px;
  overflow: hidden;
  background:
    radial-gradient(circle at 24% 46%, rgba(255, 101, 66, 0.08), transparent 29%),
    linear-gradient(180deg, #12141a 0%, #0d0f14 100%);
}

.city__grid {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  align-items: center;
  gap: clamp(60px, 8vw, 120px);
}

.city__visual {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 36px;
  padding: 20px 0;
}

.city__logo {
  width: min(340px, 78%);
  height: auto;
  filter: drop-shadow(0 18px 38px rgba(0, 0, 0, 0.2));
}

.award {
  width: min(380px, 100%);
  padding: 22px 24px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(9, 10, 13, 0.85);
  backdrop-filter: blur(16px);
}

.award img {
  width: 170px;
  margin-bottom: 14px;
}

.award p {
  display: grid;
  margin: 0;
  gap: 4px;
}

.award strong {
  font-size: 1rem;
}

.award span {
  color: var(--muted);
  font-size: 0.76rem;
}

.city__copy > p:not(.eyebrow) {
  max-width: 630px;
  color: var(--muted);
  font-size: 1.08rem;
}

.clean-list {
  display: grid;
  margin: 32px 0;
  padding: 0;
  list-style: none;
}

.clean-list li {
  position: relative;
  padding: 13px 0 13px 28px;
  border-top: 1px solid var(--line);
}

.clean-list li:last-child {
  border-bottom: 1px solid var(--line);
}

.clean-list li::before {
  position: absolute;
  top: 20px;
  left: 4px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--coral);
  content: "";
}

.opus-signature {
  display: grid;
  margin: 0 0 34px;
  padding: 25px 0;
  border-bottom: 1px solid var(--line);
  grid-template-columns: 130px 1fr;
  align-items: center;
  gap: 28px;
}

.opus-signature p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.floorplans {
  padding: 120px 0 136px;
  background:
    radial-gradient(circle at 84% 18%, rgba(46, 120, 255, 0.08), transparent 25%),
    linear-gradient(180deg, #0d0f14 0%, #10131a 100%);
}

.section-heading {
  margin-bottom: 50px;
}

.section-heading > p:not(.eyebrow):not(.interaction-hint) {
  max-width: 560px;
  color: var(--muted);
}

.section-heading--split {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 50px;
}

.section-heading--split h2 {
  margin-bottom: 0;
}

.section-heading--split > p {
  max-width: 390px;
  margin-bottom: 5px;
}

.interaction-hint {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 0;
  color: var(--cyan);
  font-size: 0.92rem;
}

.interaction-hint span {
  font-size: 1.4rem;
}

.floorplan-selector {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  align-items: stretch;
  gap: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.025);
  box-shadow: var(--shadow);
}

.floorplan-tabs {
  display: grid;
  align-content: stretch;
  background: rgba(255, 255, 255, 0.015);
}

.floorplan-tabs button {
  display: grid;
  padding: 20px 22px;
  border: 0;
  border-bottom: 1px solid var(--line);
  color: rgba(255, 255, 255, 0.56);
  background: transparent;
  text-align: left;
  cursor: pointer;
  transition: color 180ms ease, background 180ms ease, padding-left 180ms ease;
}

.floorplan-tabs button:last-child {
  border-bottom: 0;
}

.floorplan-tabs button[aria-selected="true"] {
  padding-left: 30px;
  color: var(--white);
  background: linear-gradient(90deg, rgba(40, 213, 193, 0.18), transparent);
  box-shadow: inset 2px 0 0 var(--cyan);
}

.floorplan-tabs strong {
  font-size: 1.35rem;
  letter-spacing: -0.03em;
}

.floorplan-tabs span {
  font-size: 0.77rem;
}

.floorplan-panel {
  display: grid;
  min-width: 0;
  color: var(--ink);
  background: var(--paper);
}

.floorplan-panel > img {
  width: 100%;
  height: 570px;
  padding: 30px;
  object-fit: contain;
}

.floorplan-panel__caption {
  display: flex;
  min-height: 96px;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  padding: 20px 28px;
  border-top: 1px solid rgba(9, 10, 13, 0.12);
}

.floorplan-panel__caption > div {
  display: grid;
}

.floorplan-panel__caption span {
  color: #62666d;
  font-size: 0.72rem;
  text-transform: uppercase;
}

.floorplan-panel__caption strong {
  font-size: 1.7rem;
  letter-spacing: -0.035em;
}

.experience {
  padding: 120px 0 130px;
  background:
    radial-gradient(circle at 12% 56%, rgba(223, 61, 135, 0.08), transparent 27%),
    linear-gradient(180deg, #10131a 0%, #0d0f13 100%);
}

.carousel {
  position: relative;
}

.carousel__viewport {
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--graphite);
}

.carousel__track {
  display: flex;
  transition: transform 650ms cubic-bezier(0.22, 1, 0.36, 1);
}

.carousel__slide {
  position: relative;
  min-width: 100%;
  margin: 0;
}

.carousel__slide img {
  width: 100%;
  height: 640px;
  object-fit: cover;
}

.carousel__slide::after {
  position: absolute;
  inset: 40% 0 0;
  background: linear-gradient(transparent, rgba(5, 6, 8, 0.84));
  content: "";
  pointer-events: none;
}

.carousel__slide figcaption {
  position: absolute;
  right: 40px;
  bottom: 34px;
  left: 40px;
  z-index: 2;
  display: grid;
  gap: 3px;
}

.carousel__slide figcaption strong {
  font-size: clamp(1.55rem, 3vw, 2.7rem);
  letter-spacing: -0.04em;
}

.carousel__slide figcaption span {
  color: rgba(255, 255, 255, 0.68);
}

.carousel__controls {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  padding-top: 18px;
}

.carousel__controls button {
  display: grid;
  width: 48px;
  height: 48px;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--white);
  background: transparent;
  place-items: center;
  cursor: pointer;
  transition: border-color 180ms ease, background 180ms ease;
}

.carousel__controls button:hover {
  border-color: var(--cyan);
  background: rgba(40, 213, 193, 0.1);
}

.carousel__status {
  min-width: 58px;
  color: var(--muted);
  font-family: ui-monospace, "SFMono-Regular", Menlo, monospace;
  font-size: 0.78rem;
  text-align: center;
}

.decorated {
  display: grid;
  margin-top: 92px;
  grid-template-columns: 0.38fr 0.62fr;
  align-items: center;
  gap: 65px;
}

.decorated__heading h3 {
  margin-bottom: 18px;
  font-size: clamp(2.1rem, 4vw, 3.8rem);
}

.decorated__heading > p {
  max-width: 330px;
  color: var(--muted);
}

.carousel--compact .carousel__slide img {
  height: 390px;
}

.carousel--compact .carousel__slide figcaption {
  right: 25px;
  bottom: 22px;
  left: 25px;
}

.carousel--compact .carousel__slide figcaption strong {
  font-size: 1.4rem;
}

.experience__cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 35px;
  margin-top: 74px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
}

.experience__cta p {
  max-width: 560px;
  margin: 0;
  color: var(--muted);
}

.faq {
  padding: 115px 0 125px;
  background: linear-gradient(180deg, #0d0f13, #101218);
}

.faq__grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 90px;
}

.faq__items details {
  border-top: 1px solid var(--line);
}

.faq__items details:last-child {
  border-bottom: 1px solid var(--line);
}

.faq__items summary {
  position: relative;
  padding: 23px 45px 23px 0;
  font-size: 1.08rem;
  font-weight: 600;
  list-style: none;
  cursor: pointer;
}

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

.faq__items summary::after {
  position: absolute;
  top: 21px;
  right: 8px;
  color: var(--cyan);
  content: "+";
  font-size: 1.35rem;
  font-weight: 400;
}

.faq__items details[open] summary::after {
  content: "−";
}

.faq__items details p {
  max-width: 680px;
  padding: 0 40px 22px 0;
  color: var(--muted);
}

.conversion {
  padding: 125px 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 80% 45%, rgba(40, 213, 193, 0.13), transparent 32%),
    radial-gradient(circle at 8% 86%, rgba(255, 101, 66, 0.13), transparent 25%),
    #090a0d;
}

.conversion__grid {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  align-items: center;
  gap: clamp(65px, 9vw, 130px);
}

.conversion__copy {
  position: relative;
}

.conversion__logo {
  width: 112px;
  height: auto;
  margin-bottom: 25px;
  filter: drop-shadow(0 12px 28px rgba(0, 0, 0, 0.22));
}

.conversion__copy > p:not(.eyebrow) {
  max-width: 520px;
  color: var(--muted);
  font-size: 1.04rem;
}

.agent {
  display: grid;
  margin-top: 32px;
  padding: 22px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.agent strong {
  font-size: 1.1rem;
}

.agent span {
  color: var(--muted);
  font-size: 0.84rem;
}

.lead-form {
  padding: clamp(28px, 4vw, 46px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.045);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px 18px;
}

.field {
  display: grid;
  gap: 7px;
}

.field label {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.76rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.field input,
.field select {
  width: 100%;
  min-height: 52px;
  padding: 0 2px;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 0;
  color: var(--white);
  background: transparent;
  outline: none;
}

.field select {
  color-scheme: dark;
}

.field input:focus,
.field select:focus {
  border-bottom-color: var(--cyan);
}

.field [aria-invalid="true"] {
  border-bottom-color: var(--coral);
}

.field__error {
  min-height: 17px;
  color: #ff937a;
  font-size: 0.72rem;
}

.consent {
  display: grid;
  margin-top: 20px;
  color: var(--muted);
  font-size: 0.78rem;
  grid-template-columns: 18px 1fr;
  align-items: start;
  gap: 10px;
}

.consent input {
  width: 16px;
  height: 16px;
  accent-color: var(--cyan);
}

.capture-cta--submit {
  width: 100%;
  margin-top: 18px;
  cursor: pointer;
}

.capture-cta--submit:disabled {
  cursor: wait;
  opacity: 0.65;
}

.form-status {
  min-height: 24px;
  margin: 13px 0 0;
  color: var(--cyan);
  font-size: 0.8rem;
  text-align: center;
}

.privacy {
  margin: 0;
  color: rgba(255, 255, 255, 0.42);
  font-size: 0.69rem;
  text-align: center;
}

.signal-orbit--form {
  right: -230px;
  bottom: -260px;
  opacity: 0.6;
}

.footer {
  padding: 40px 0;
  border-top: 1px solid var(--line);
  background: #07080a;
}

.footer__grid {
  display: grid;
  grid-template-columns: 130px 1fr auto;
  align-items: center;
  gap: 28px;
}

.footer__grid > div {
  display: grid;
}

.footer__grid span {
  color: var(--muted);
  font-size: 0.8rem;
}

.footer__grid > a {
  font-size: 0.9rem;
}

.footer__grid p {
  grid-column: 1 / -1;
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.69rem;
}

.wa-fab {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 90;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px 14px 16px;
  border: 0;
  border-radius: 100px;
  color: #fff;
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
  box-shadow: 0 18px 40px -10px rgba(37, 211, 102, 0.55);
  font-family: inherit;
  font-size: 0.92rem;
  font-weight: 600;
  cursor: pointer;
  transition: transform 240ms cubic-bezier(0.22, 1, 0.36, 1), box-shadow 240ms ease, opacity 240ms ease;
}

.wa-fab:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 50px -10px rgba(37, 211, 102, 0.75);
}

.wa-fab svg {
  width: 22px;
  height: 22px;
  fill: #fff;
  flex-shrink: 0;
}

.wa-fab.is-hidden {
  opacity: 0;
  pointer-events: none;
  transform: translateY(24px);
}

.wa-popover {
  position: fixed;
  right: 22px;
  bottom: 96px;
  z-index: 91;
  width: min(340px, calc(100% - 32px));
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(9, 10, 13, 0.97);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(24px);
  color: #fff;
  transform: translateY(12px) scale(0.98);
  opacity: 0;
  pointer-events: none;
  transition: opacity 220ms ease, transform 220ms ease;
}

.wa-popover[data-open="true"] {
  opacity: 1;
  transform: none;
  pointer-events: auto;
}

.wa-popover h3 {
  margin: 0 0 6px;
  font-size: 1.1rem;
}

.wa-popover > p {
  margin: 0 0 16px;
  color: var(--muted);
  font-size: 0.85rem;
}

.wa-popover label {
  display: block;
  margin: 8px 0 5px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.7rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.wa-popover input,
.wa-popover select {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
  font-family: inherit;
  font-size: 0.94rem;
}

.wa-popover input:focus,
.wa-popover select:focus {
  outline: none;
  border-color: var(--cyan);
}

.wa-popover button[type="submit"] {
  width: 100%;
  margin-top: 16px;
  padding: 14px;
  border: 0;
  border-radius: 100px;
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
  color: #fff;
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: transform 200ms ease, box-shadow 200ms ease;
}

.wa-popover button[type="submit"]:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 30px -8px rgba(37, 211, 102, 0.6);
}

.wa-popover__close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 30px;
  height: 30px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  cursor: pointer;
  font-size: 1rem;
  line-height: 1;
}

.wa-popover__error {
  margin-top: 8px;
  color: #ff8a9c;
  font-size: 0.78rem;
  min-height: 1em;
}

.js [data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms ease, transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
}

.js [data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 980px) {
  :root {
    --shell: min(100% - 30px, 760px);
  }

  .desktop-nav {
    display: none;
  }

  .hero__inner,
  .location__grid,
  .conditions__grid,
  .city__grid,
  .faq__grid,
  .conversion__grid {
    grid-template-columns: 1fr;
  }

  .hero__inner {
    padding-top: 140px;
    gap: 44px;
  }

  .hero__facts {
    grid-template-columns: repeat(3, 1fr);
  }

  .hero__facts div {
    padding-right: 15px;
  }

  .location__grid {
    gap: 70px;
  }

  .location__map {
    width: min(650px, 92%);
    margin-inline: auto;
  }

  .conditions__features {
    margin-top: 20px;
  }

  .city__grid {
    gap: 70px;
  }

  .city__visual {
    order: 2;
  }

  .city__copy {
    order: 1;
  }

  .floorplan-selector {
    grid-template-columns: 1fr;
  }

  .floorplan-tabs {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1px;
    background: var(--line);
    overflow: visible;
  }

  .floorplan-tabs button {
    min-width: 0;
    padding: 16px 14px;
    border: 0;
    background: #0f1116;
    text-align: center;
  }

  .floorplan-tabs button strong {
    font-size: 1.15rem;
  }

  .floorplan-tabs button[aria-selected="true"] {
    padding: 16px 14px;
    box-shadow: inset 0 -3px 0 var(--cyan);
    background: linear-gradient(180deg, rgba(40, 213, 193, 0.15), transparent);
  }

  .decorated {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .decorated__heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 30px;
  }

  .faq__grid,
  .conversion__grid {
    gap: 55px;
  }
}

@media (max-width: 700px) {
  :root {
    --shell: calc(100% - 32px);
    --radius: 20px;
  }

  h1 {
    font-size: clamp(3rem, 14.6vw, 4.6rem);
  }

  h1 span {
    font-size: 0.48em;
  }

  h2 {
    font-size: clamp(2.45rem, 11.8vw, 3.8rem);
  }

  .topbar__inner {
    min-height: 72px;
  }

  .identity {
    width: 40px;
  }

  .capture-cta--small {
    min-height: 42px;
  }

  .hero {
    min-height: 100svh;
    align-items: end;
  }

  .hero__media img {
    object-position: center top;
  }

  .hero__media {
    left: 0;
    width: 100%;
    -webkit-mask-image: none;
    mask-image: none;
  }

  .hero__veil {
    background:
      linear-gradient(0deg, rgba(5, 6, 8, 0.98) 5%, rgba(5, 6, 8, 0.84) 46%, rgba(5, 6, 8, 0.18) 76%, rgba(5, 6, 8, 0.22) 100%);
  }

  .hero__inner {
    padding-top: 125px;
    padding-bottom: 46px;
  }

  .hero__brand {
    width: 92px;
  }

  .hero__lead {
    font-size: 1rem;
  }

  .hero__actions,
  .section-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero__actions .capture-cta,
  .section-actions .capture-cta {
    width: 100%;
  }

  .hero__actions .text-link,
  .section-actions .text-link {
    justify-content: center;
  }

  .hero__facts {
    display: none;
  }

  .hero__facts div {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 13px 0;
  }

  .location,
  .conditions,
  .city,
  .floorplans,
  .experience,
  .faq,
  .conversion {
    padding-block: 76px;
  }

  .location__grid {
    gap: 55px;
  }

  .location__map {
    width: 100%;
  }

  .location__map img {
    max-height: 460px;
  }

  .conditions__features article {
    min-height: auto;
    padding: 22px 18px 22px 58px;
  }

  .feature-index {
    left: 17px;
  }

  .conditions__action,
  .experience__cta {
    align-items: stretch;
    flex-direction: column;
  }

  .conditions__action .capture-cta,
  .experience__cta .capture-cta {
    width: 100%;
  }

  .city__visual {
    gap: 26px;
  }

  .city__logo {
    width: 70%;
  }

  .opus-signature {
    grid-template-columns: 1fr;
  }

  .opus-signature img {
    width: 112px;
  }

  .section-heading--split,
  .decorated__heading {
    display: block;
  }

  .section-heading--split > p {
    margin-top: 22px;
  }

  .floorplan-panel > img {
    height: 410px;
    padding: 14px;
  }

  .floorplan-panel__caption {
    align-items: stretch;
    flex-direction: column;
  }

  .carousel__slide img {
    height: 450px;
  }

  .carousel__slide figcaption {
    right: 22px;
    bottom: 22px;
    left: 22px;
  }

  .carousel--compact .carousel__slide img {
    height: 340px;
  }

  .experience__cta {
    margin-top: 55px;
  }

  .form-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .lead-form {
    padding: 25px 20px;
  }

  .footer__grid {
    grid-template-columns: 1fr;
  }

  .footer__grid > img {
    width: 105px;
  }

  .wa-fab {
    right: 14px;
    bottom: 14px;
    padding: 12px 18px 12px 14px;
    font-size: 0.85rem;
  }

  .wa-popover {
    right: 14px;
    left: 14px;
    bottom: 78px;
    width: auto;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .js [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
