@font-face {
  font-family: "Bodoni Moda";
  src: url("../fonts/bodoni-moda-400.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Manrope";
  src: url("../fonts/manrope-400.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Manrope";
  src: url("../fonts/manrope-500.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Manrope";
  src: url("../fonts/manrope-600.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

:root {
  --ink: #17201c;
  --forest: #17251f;
  --forest-deep: #0d1813;
  --paper: #f3f2ed;
  --white: #fff;
  --muted: #66716b;
  --line: rgba(23, 32, 28, .16);
  --line-light: rgba(255, 255, 255, .22);
  --gold: #d8bd8b;
  --copper: #a75d42;
  --wa: #25d366;
  --shell: min(1480px, calc(100vw - 96px));
  --section-space: clamp(104px, 10vw, 176px);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 84px;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Manrope", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  letter-spacing: 0;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

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

button {
  color: inherit;
  font: inherit;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: -100px;
  z-index: 999;
  padding: 12px 18px;
  background: var(--white);
  color: var(--ink);
  transition: top .2s ease;
}

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

.page-loader {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  background: var(--forest-deep);
  color: var(--gold);
  transition: opacity .7s ease, visibility .7s ease;
}

.page-loader.is-hidden {
  opacity: 0;
  visibility: hidden;
}

.page-loader__mark {
  font-family: "Bodoni Moda", Georgia, serif;
  font-size: 72px;
  line-height: 1;
}

.page-loader__line {
  position: absolute;
  left: 50%;
  bottom: 42%;
  width: 120px;
  height: 1px;
  overflow: hidden;
  background: rgba(255, 255, 255, .15);
  transform: translateX(-50%);
}

.page-loader__line span {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--gold);
  transform: translateX(-100%);
  animation: loader-line 1.1s ease forwards;
}

@keyframes loader-line {
  to { transform: translateX(0); }
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  display: grid;
  grid-template-columns: minmax(210px, 1fr) auto minmax(210px, 1fr);
  align-items: center;
  width: 100%;
  height: 84px;
  padding: 0 48px;
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, .18);
  transition: height .35s ease, color .35s ease, background .35s ease, border-color .35s ease;
}

.site-header.is-scrolled {
  height: 72px;
  color: var(--ink);
  background: rgba(243, 242, 237, .96);
  border-color: var(--line);
  backdrop-filter: blur(16px);
}

.brand {
  display: flex;
  flex-direction: column;
  justify-self: start;
  line-height: 1;
}

.brand__name {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .18em;
}

.brand__place {
  margin-top: 8px;
  font-size: 10px;
  letter-spacing: .34em;
  opacity: .75;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: clamp(24px, 2.8vw, 46px);
}

.desktop-nav a {
  position: relative;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.desktop-nav a::after {
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100%;
  height: 1px;
  background: currentColor;
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .3s ease;
}

.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-self: end;
  gap: 10px;
  min-height: 42px;
  padding: 0 18px;
  border: 1px solid currentColor;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .09em;
  text-transform: uppercase;
  transition: background .25s ease, color .25s ease;
}

.header-cta:hover {
  background: var(--white);
  color: var(--forest);
}

.site-header.is-scrolled .header-cta:hover {
  background: var(--forest);
  color: var(--white);
}

.header-cta svg,
.button svg,
.floating-whatsapp svg {
  width: 19px;
  height: 19px;
  fill: currentColor;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  background: transparent;
}

.menu-toggle span {
  display: block;
  width: 25px;
  height: 1px;
  margin: 7px auto;
  background: currentColor;
  transition: transform .3s ease;
}

.menu-toggle[aria-expanded="true"] span:first-child {
  transform: translateY(4px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:last-child {
  transform: translateY(-4px) rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: none;
  grid-template-rows: 1fr auto;
  padding: 124px 28px 34px;
  background: var(--forest-deep);
  color: var(--white);
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s ease, visibility .3s ease;
}

.mobile-menu.is-open {
  opacity: 1;
  visibility: visible;
}

.mobile-menu nav {
  align-self: center;
}

.mobile-menu nav a {
  display: flex;
  align-items: baseline;
  gap: 18px;
  padding: 13px 0;
  border-bottom: 1px solid var(--line-light);
  font-family: "Bodoni Moda", Georgia, serif;
  font-size: clamp(36px, 9vw, 48px);
  line-height: 1.08;
}

.mobile-menu nav span {
  font-family: "Manrope", Arial, sans-serif;
  font-size: 10px;
  letter-spacing: .12em;
  opacity: .5;
}

.mobile-menu__foot {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  padding-top: 24px;
  font-size: 11px;
  line-height: 1.5;
}

.mobile-menu__foot p {
  margin: 0;
  opacity: .65;
}

.mobile-menu__foot a {
  color: var(--gold);
  text-align: right;
}

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

.section {
  padding: var(--section-space) 0;
}

.section-grid {
  display: grid;
  grid-template-columns: minmax(190px, .58fr) 1.42fr;
  gap: 8vw;
}

.eyebrow {
  margin: 0;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .2em;
  line-height: 1.4;
  text-transform: uppercase;
}

.display-title {
  max-width: 1050px;
  margin: 0;
  font-family: "Bodoni Moda", Georgia, serif;
  font-size: clamp(64px, 7vw, 122px);
  font-weight: 400;
  line-height: .92;
}

.section-lead {
  max-width: 650px;
  margin: 40px 0 0;
  color: var(--muted);
  font-size: clamp(17px, 1.25vw, 21px);
  line-height: 1.75;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 58px;
  padding: 0 28px;
  border: 1px solid transparent;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .08em;
  text-align: center;
  text-transform: uppercase;
  transition: background .25s ease, border-color .25s ease, color .25s ease, transform .25s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button--accent {
  background: var(--gold);
  color: var(--forest-deep);
}

.button--accent:hover {
  background: var(--white);
  border-color: var(--white);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.text-link span {
  font-size: 16px;
  transition: transform .25s ease;
}

.text-link:hover span {
  transform: translateY(4px);
}

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

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  background: var(--forest-deep);
  color: var(--white);
}

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

.hero__image {
  background: url("../images/hero-tower.webp") center center / cover no-repeat;
  transform: scale(1.06);
  transition: transform 1.8s cubic-bezier(.2, .7, .2, 1);
}

body.is-loaded .hero__image {
  transform: scale(1);
}

.hero__veil {
  background:
    linear-gradient(90deg, rgba(6, 14, 10, .72) 0%, rgba(6, 14, 10, .26) 54%, rgba(6, 14, 10, .08) 100%),
    linear-gradient(0deg, rgba(6, 14, 10, .62) 0%, transparent 45%);
}

.hero__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: min(900px, calc(100% - 96px));
  min-height: 100svh;
  padding: 138px 0 164px 7vw;
}

.hero__eyebrow {
  margin-bottom: 28px;
  color: var(--gold);
}

.hero h1 {
  max-width: 920px;
  margin: 0;
  font-family: "Bodoni Moda", Georgia, serif;
  font-size: clamp(74px, 7.4vw, 136px);
  font-weight: 400;
  line-height: .9;
}

.hero__intro {
  max-width: 620px;
  margin: 36px 0 0;
  color: rgba(255, 255, 255, .8);
  font-size: clamp(16px, 1.25vw, 20px);
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: 34px;
  margin-top: 42px;
}

.hero__facts {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, minmax(180px, 1fr));
  width: min(780px, 62vw);
  background: rgba(13, 24, 19, .86);
  backdrop-filter: blur(12px);
}

.hero__facts div {
  padding: 24px 30px;
  border-left: 1px solid var(--line-light);
}

.hero__facts span,
.hero__facts strong {
  display: block;
}

.hero__facts span {
  margin-bottom: 7px;
  color: var(--gold);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.hero__facts strong {
  font-size: 13px;
  font-weight: 500;
}

.hero__scroll {
  position: absolute;
  left: 48px;
  bottom: 40px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}

.hero__scroll i {
  display: block;
  width: 1px;
  height: 52px;
  background: rgba(255, 255, 255, .55);
}

.residence {
  background: var(--paper);
}

.residence__copy {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 44px;
  max-width: 920px;
  margin-top: 62px;
  color: var(--muted);
  font-size: 17px;
}

.residence__copy p {
  margin: 0;
}

.residence__visual {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(280px, .55fr);
  align-items: stretch;
  margin-top: 94px;
}

.residence__portrait {
  min-height: 710px;
  margin: 0;
  overflow: hidden;
}

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

.residence__statement {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 100%;
  padding: 60px;
  background: var(--forest);
  color: var(--white);
}

.residence__statement .eyebrow {
  margin-bottom: auto;
  color: var(--gold);
}

.residence__statement strong {
  font-family: "Bodoni Moda", Georgia, serif;
  font-size: clamp(110px, 10vw, 182px);
  font-weight: 400;
  line-height: .9;
}

.residence__statement span {
  max-width: 230px;
  margin-top: 20px;
  color: rgba(255, 255, 255, .7);
  font-size: 14px;
}

.fact-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--white);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.fact-strip__item {
  min-height: 170px;
  padding: 42px 4vw;
  border-right: 1px solid var(--line);
}

.fact-strip__item:last-child {
  border-right: 0;
}

.fact-strip__item span,
.fact-strip__item strong {
  display: block;
}

.fact-strip__item span {
  margin-bottom: 26px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.fact-strip__item strong {
  font-family: "Bodoni Moda", Georgia, serif;
  font-size: clamp(27px, 2.1vw, 38px);
  font-weight: 400;
  line-height: 1.15;
}

.everyday {
  background: var(--white);
}

.everyday__heading {
  margin-bottom: 84px;
}

.everyday__grid {
  display: grid;
  grid-template-columns: 1.34fr .66fr;
  grid-template-rows: auto auto;
  gap: 24px;
}

.feature-panel {
  position: relative;
  min-height: 410px;
  margin: 0;
  overflow: hidden;
}

.feature-panel > span,
.feature-panel--image > div span {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .14em;
}

.feature-panel h3 {
  margin: 12px 0 12px;
  font-family: "Bodoni Moda", Georgia, serif;
  font-size: clamp(38px, 3.5vw, 64px);
  font-weight: 400;
  line-height: 1;
}

.feature-panel p {
  max-width: 540px;
  margin: 0;
}

.feature-panel--image {
  grid-row: 1 / 3;
  min-height: 844px;
  color: var(--white);
}

.feature-panel--image::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(8, 15, 12, .78), transparent 60%);
  content: "";
}

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

.feature-panel--image > div {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 1;
  padding: 54px;
}

.feature-panel--solid,
.feature-panel--outline {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 46px;
}

.feature-panel--solid {
  background: var(--copper);
  color: var(--white);
}

.feature-panel--solid .eyebrow {
  color: rgba(255, 255, 255, .7);
}

.feature-panel--outline {
  border: 1px solid var(--line);
  background: var(--paper);
}

.feature-panel--outline p:not(.eyebrow) {
  color: var(--muted);
}

.facilities {
  background: var(--forest-deep);
  color: var(--white);
}

.facilities__intro,
.layouts__heading {
  display: grid;
  grid-template-columns: 1.4fr .6fr;
  align-items: end;
  gap: 7vw;
  margin-bottom: 84px;
}

.facilities .section-lead,
.layouts .section-lead {
  margin: 0 0 8px;
  color: rgba(255, 255, 255, .62);
}

.facilities__intro .eyebrow,
.layouts__heading .eyebrow {
  margin-bottom: 28px;
  color: var(--gold);
}

.facilities__hero {
  position: relative;
  height: clamp(520px, 61vw, 860px);
  margin: 0;
  overflow: hidden;
}

.facilities__hero::after,
.facility-card::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(7, 14, 10, .72), transparent 55%);
  content: "";
}

.facilities__hero img,
.facility-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .8s ease;
}

.facilities__hero:hover img,
.facility-card:hover img {
  transform: scale(1.025);
}

.facilities__hero figcaption,
.facility-card figcaption {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 1;
  display: flex;
  align-items: baseline;
  gap: 24px;
  width: 100%;
  padding: 38px 42px;
}

.facilities__hero figcaption span,
.facility-card figcaption span {
  color: var(--gold);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.facilities__hero figcaption strong {
  font-family: "Bodoni Moda", Georgia, serif;
  font-size: clamp(28px, 3vw, 48px);
  font-weight: 400;
}

.facility-gallery {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 24px;
  margin-top: 24px;
}

.facility-card {
  position: relative;
  height: clamp(330px, 35vw, 500px);
  margin: 0;
  overflow: hidden;
}

.facility-card--wide {
  height: clamp(410px, 42vw, 620px);
}

.facility-card:nth-child(3) {
  margin-top: -80px;
}

.facility-card figcaption {
  justify-content: space-between;
}

.facility-card figcaption strong {
  font-family: "Bodoni Moda", Georgia, serif;
  font-size: clamp(24px, 2.2vw, 36px);
  font-weight: 400;
}

.facility-list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  margin-top: 96px;
  border-top: 1px solid var(--line-light);
  border-left: 1px solid var(--line-light);
}

.facility-list span {
  min-height: 86px;
  padding: 28px 22px;
  border-right: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
  color: rgba(255, 255, 255, .74);
  font-size: 12px;
}

.location {
  background: var(--paper);
}

.location__heading {
  margin-bottom: 84px;
}

.location__feature {
  display: grid;
  grid-template-columns: 1.45fr .55fr;
  min-height: 610px;
  background: var(--forest);
  color: var(--white);
}

.location__feature figure {
  min-height: 610px;
  margin: 0;
  overflow: hidden;
}

.location__feature figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.location__feature > div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 60px;
}

.location__feature .eyebrow {
  color: var(--gold);
}

.location__feature h3 {
  margin: 24px 0;
  font-family: "Bodoni Moda", Georgia, serif;
  font-size: clamp(40px, 4.2vw, 70px);
  font-weight: 400;
  line-height: .98;
}

.location__feature > div > p:not(.eyebrow) {
  color: rgba(255, 255, 255, .68);
}

.location__feature dl {
  margin: 36px 0 0;
  border-top: 1px solid var(--line-light);
}

.location__feature dl div {
  display: grid;
  grid-template-columns: 84px 1fr;
  padding: 15px 0;
  border-bottom: 1px solid var(--line-light);
}

.location__feature dt {
  color: var(--gold);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.location__feature dd {
  margin: 0;
  font-size: 13px;
}

.location__lower {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 0;
  margin-top: 96px;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.location__aerial {
  margin: 0;
  padding: 28px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.location__aerial img {
  width: 100%;
  height: clamp(260px, 32vw, 440px);
  object-fit: cover;
  object-position: center 72%;
}

.location__aerial figcaption,
.layout-viewer__plan figcaption {
  margin-top: 14px;
  color: var(--muted);
  font-size: 10px;
}

.location__accordion {
  border-right: 1px solid var(--line);
}

.accordion-item {
  border-bottom: 1px solid var(--line);
}

.accordion-item button {
  display: grid;
  grid-template-columns: 44px 1fr 30px;
  align-items: center;
  width: 100%;
  min-height: 104px;
  padding: 0 32px;
  border: 0;
  background: transparent;
  cursor: pointer;
  text-align: left;
}

.accordion-item button span {
  color: var(--muted);
  font-size: 9px;
}

.accordion-item button strong {
  font-family: "Bodoni Moda", Georgia, serif;
  font-size: clamp(28px, 2.7vw, 43px);
  font-weight: 400;
}

.accordion-item button i {
  position: relative;
  width: 18px;
  height: 18px;
  justify-self: end;
}

.accordion-item button i::before,
.accordion-item button i::after {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 18px;
  height: 1px;
  background: var(--ink);
  content: "";
  transform: translate(-50%, -50%);
  transition: transform .25s ease;
}

.accordion-item button i::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.accordion-item.is-open button i::after {
  transform: translate(-50%, -50%) rotate(0);
}

.accordion-panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .35s ease;
}

.accordion-item.is-open .accordion-panel {
  grid-template-rows: 1fr;
}

.accordion-panel ul {
  min-height: 0;
  margin: 0;
  padding: 0 32px;
  overflow: hidden;
  list-style: none;
}

.accordion-item.is-open .accordion-panel ul {
  padding-bottom: 24px;
}

.accordion-panel li {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 12px 0;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 12px;
}

.accordion-panel small {
  text-align: right;
}

.layouts {
  background: var(--forest-deep);
  color: var(--white);
}

.layout-tabs {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
  margin-bottom: 20px;
}

.layout-tabs button {
  min-height: 84px;
  padding: 16px 18px;
  border: 1px solid var(--line-light);
  background: transparent;
  color: rgba(255, 255, 255, .7);
  cursor: pointer;
  text-align: left;
  transition: background .25s ease, border-color .25s ease, color .25s ease;
}

.layout-tabs button:hover,
.layout-tabs button[aria-selected="true"] {
  border-color: var(--gold);
  background: var(--gold);
  color: var(--forest-deep);
}

.layout-tabs span,
.layout-tabs small {
  display: block;
}

.layout-tabs span {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.layout-tabs small {
  margin-top: 6px;
  font-size: 11px;
}

.layout-viewer {
  display: grid;
  grid-template-columns: .56fr 1.44fr;
  min-height: 720px;
  background: var(--white);
  color: var(--ink);
}

.layout-viewer__details {
  display: flex;
  flex-direction: column;
  padding: 58px;
  background: #ece9df;
}

.layout-viewer__details .eyebrow {
  color: var(--copper);
}

.layout-viewer__details h3 {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin: 20px 0 0;
  font-family: "Bodoni Moda", Georgia, serif;
  font-size: clamp(82px, 8vw, 142px);
  font-weight: 400;
  line-height: .9;
  white-space: nowrap;
}

.layout-viewer__details h3 span {
  font-size: .24em;
  white-space: nowrap;
}

.layout-viewer__summary {
  max-width: 440px;
  margin: 42px 0;
  color: var(--muted);
}

.layout-viewer__details dl {
  margin: 0 0 46px;
  border-top: 1px solid var(--line);
}

.layout-viewer__details dl div {
  display: flex;
  justify-content: space-between;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}

.layout-viewer__details dt {
  color: var(--muted);
  font-size: 10px;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.layout-viewer__details dd {
  margin: 0;
  font-weight: 600;
}

.layout-viewer__details .button {
  align-self: flex-start;
  margin-top: auto;
  background: var(--forest);
  color: var(--white);
}

.layout-viewer__details .button:hover {
  border-color: var(--forest);
  background: transparent;
  color: var(--forest);
}

.layout-viewer__plan {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 40px;
}

.layout-viewer__plan img {
  width: min(100%, 770px);
  max-height: 620px;
  object-fit: contain;
  transition: opacity .2s ease, transform .35s ease;
}

.layout-viewer__plan img.is-changing {
  opacity: 0;
  transform: translateY(10px);
}

.outlook {
  background: var(--white);
}

.outlook__heading {
  margin-bottom: 84px;
}

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

.outlook__grid figure {
  position: relative;
  height: clamp(380px, 42vw, 620px);
  margin: 0;
  overflow: hidden;
}

.outlook__grid figure:nth-child(2),
.outlook__grid figure:nth-child(4) {
  transform: translateY(64px);
}

.outlook__grid figure::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(8, 15, 12, .65), transparent 52%);
  content: "";
}

.outlook__grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .8s ease;
}

.outlook__grid figure:hover img {
  transform: scale(1.025);
}

.outlook__grid figcaption {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 1;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  width: 100%;
  padding: 30px;
  color: var(--white);
}

.outlook__grid figcaption span {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.outlook__grid figcaption strong {
  font-family: "Bodoni Moda", Georgia, serif;
  font-size: 32px;
  font-weight: 400;
}

.contact {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 760px;
  margin-top: 64px;
  overflow: hidden;
  color: var(--white);
}

.contact__image,
.contact__veil {
  position: absolute;
  inset: 0;
}

.contact__image {
  background: url("../images/arrival.webp") center / cover no-repeat;
}

.contact__veil {
  background: linear-gradient(90deg, rgba(8, 17, 12, .86), rgba(8, 17, 12, .34) 58%, rgba(8, 17, 12, .08));
}

.contact__content {
  position: relative;
  z-index: 1;
  width: min(760px, calc(100% - 96px));
  margin-left: 8vw;
}

.contact__content .eyebrow {
  margin-bottom: 24px;
  color: var(--gold);
}

.contact__content h2 {
  margin: 0;
  font-family: "Bodoni Moda", Georgia, serif;
  font-size: clamp(68px, 7vw, 116px);
  font-weight: 400;
  line-height: .92;
}

.contact__content > p:not(.eyebrow) {
  max-width: 560px;
  margin: 34px 0;
  color: rgba(255, 255, 255, .76);
  font-size: 18px;
}

.site-footer {
  display: grid;
  grid-template-columns: .45fr .55fr;
  gap: 40px 7vw;
  padding: 76px 7vw 54px;
  background: var(--forest-deep);
  color: var(--white);
}

.site-footer__brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.site-footer__brand span {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: .18em;
}

.site-footer__brand small {
  margin-top: 9px;
  color: var(--gold);
  font-size: 10px;
  letter-spacing: .32em;
}

.site-footer nav {
  display: flex;
  justify-content: flex-end;
  gap: 30px;
}

.site-footer nav button {
  padding: 0;
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, .66);
  cursor: pointer;
  font-size: 11px;
}

.site-footer nav button:hover {
  color: var(--white);
}

.site-footer > p {
  grid-column: 1 / -1;
  max-width: 1080px;
  margin: 10px 0 0;
  padding-top: 28px;
  border-top: 1px solid var(--line-light);
  color: rgba(255, 255, 255, .42);
  font-size: 10px;
}

.floating-whatsapp {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 70;
  display: grid;
  place-items: center;
  width: 60px;
  height: 60px;
  border: 1px solid rgba(255, 255, 255, .65);
  border-radius: 50%;
  background: var(--wa);
  color: var(--white);
  box-shadow: 0 14px 35px rgba(0, 0, 0, .18);
  transition: transform .25s ease;
}

.floating-whatsapp:hover {
  transform: translateY(-4px);
}

.floating-whatsapp svg {
  width: 30px;
  height: 30px;
}

.legal-dialog {
  width: min(1040px, calc(100vw - 40px));
  max-height: min(84vh, 900px);
  padding: 0;
  border: 0;
  background: var(--paper);
  color: var(--ink);
}

.legal-dialog::backdrop {
  background: rgba(5, 11, 8, .72);
  backdrop-filter: blur(5px);
}

.legal-dialog > div {
  padding: 76px clamp(30px, 7vw, 94px);
}

.legal-dialog h2 {
  margin: 14px 0 42px;
  font-family: "Bodoni Moda", Georgia, serif;
  font-size: clamp(54px, 7vw, 88px);
  font-weight: 400;
  line-height: 1;
}

.legal-dialog h3 {
  margin: 38px 0 12px;
  font-family: "Bodoni Moda", Georgia, serif;
  font-size: 30px;
  font-weight: 400;
}

.legal-dialog p {
  color: var(--muted);
}

.legal-dialog__close {
  position: sticky;
  top: 0;
  z-index: 1;
  float: right;
  width: 58px;
  height: 58px;
  margin: 12px 12px 0 0;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--paper);
  cursor: pointer;
  font-family: Arial, sans-serif;
  font-size: 32px;
  font-weight: 300;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .8s ease, transform .8s cubic-bezier(.2, .7, .2, 1);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1180px) {
  :root {
    --shell: min(100% - 56px, 1180px);
  }

  .site-header {
    grid-template-columns: 1fr auto auto;
    padding: 0 28px;
  }

  .desktop-nav {
    display: none;
  }

  .header-cta {
    margin-right: 12px;
  }

  .menu-toggle {
    display: block;
  }

  .mobile-menu {
    display: grid;
  }

  .residence__visual {
    grid-template-columns: 1.2fr .8fr;
  }

  .residence__portrait {
    min-height: 600px;
  }

  .location__feature {
    grid-template-columns: 1.15fr .85fr;
  }

  .layout-viewer {
    grid-template-columns: .72fr 1.28fr;
  }

  .facility-list {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 820px) {
  :root {
    --shell: calc(100% - 32px);
    --section-space: 88px;
  }

  html {
    scroll-padding-top: 72px;
  }

  .site-header,
  .site-header.is-scrolled {
    height: 72px;
    padding: 0 16px;
  }

  .site-header.is-menu-open {
    color: var(--white);
    background: var(--forest-deep);
    border-color: var(--line-light);
  }

  .brand__name {
    font-size: 11px;
  }

  .brand__place {
    margin-top: 6px;
    font-size: 8px;
  }

  .header-cta {
    width: 42px;
    min-height: 42px;
    margin-right: 4px;
    padding: 0;
    border-radius: 50%;
  }

  .header-cta span {
    display: none;
  }

  .mobile-menu {
    padding: 96px 20px 26px;
  }

  .mobile-menu__foot {
    font-size: 10px;
  }

  .section-grid,
  .facilities__intro,
  .layouts__heading {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .display-title {
    font-size: clamp(49px, 14vw, 68px);
    line-height: .96;
  }

  .section-lead {
    margin-top: 25px;
    font-size: 16px;
    line-height: 1.7;
  }

  .hero {
    min-height: 820px;
  }

  .hero__image {
    background-position: 62% center;
  }

  .hero__veil {
    background:
      linear-gradient(0deg, rgba(6, 14, 10, .9) 0%, rgba(6, 14, 10, .4) 65%, rgba(6, 14, 10, .12) 100%);
  }

  .hero__content {
    justify-content: flex-end;
    width: auto;
    min-height: 660px;
    padding: 116px 22px 54px;
  }

  .hero__eyebrow {
    margin-bottom: 20px;
  }

  .hero h1 {
    font-size: clamp(54px, 15vw, 72px);
    line-height: .92;
  }

  .hero__intro {
    margin-top: 24px;
    font-size: 15px;
    line-height: 1.65;
  }

  .hero__actions {
    align-items: stretch;
    flex-direction: column;
    gap: 18px;
    margin-top: 28px;
  }

  .hero__actions .button {
    width: 100%;
  }

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

  .hero__facts {
    position: relative;
    grid-template-columns: 1fr;
    width: 100%;
    background: var(--forest-deep);
    backdrop-filter: none;
  }

  .hero__facts div {
    display: grid;
    grid-template-columns: 90px 1fr;
    align-items: center;
    padding: 17px 22px;
    border-top: 1px solid var(--line-light);
    border-left: 0;
  }

  .hero__facts span {
    margin: 0;
  }

  .hero__facts strong {
    font-size: 12px;
  }

  .hero__scroll {
    display: none;
  }

  .residence__copy {
    grid-template-columns: 1fr;
    gap: 18px;
    margin-top: 34px;
    font-size: 15px;
  }

  .residence__visual {
    grid-template-columns: 1fr;
    margin-top: 50px;
  }

  .residence__portrait {
    min-height: 440px;
  }

  .residence__statement {
    min-height: 320px;
    padding: 34px;
  }

  .residence__statement strong {
    margin-top: 60px;
    font-size: 116px;
  }

  .fact-strip {
    grid-template-columns: 1fr 1fr;
  }

  .fact-strip__item {
    min-height: 138px;
    padding: 28px 20px;
    border-bottom: 1px solid var(--line);
  }

  .fact-strip__item:nth-child(2) {
    border-right: 0;
  }

  .fact-strip__item span {
    margin-bottom: 18px;
  }

  .fact-strip__item strong {
    font-size: 25px;
  }

  .everyday__heading,
  .location__heading,
  .outlook__heading {
    margin-bottom: 48px;
  }

  .everyday__grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    gap: 14px;
  }

  .feature-panel,
  .feature-panel--image {
    grid-row: auto;
    min-height: 420px;
  }

  .feature-panel--image img {
    position: absolute;
  }

  .feature-panel--image > div {
    padding: 30px;
  }

  .feature-panel--solid,
  .feature-panel--outline {
    min-height: 340px;
    padding: 28px;
  }

  .feature-panel h3 {
    font-size: 42px;
  }

  .facilities__intro,
  .layouts__heading {
    margin-bottom: 48px;
  }

  .facilities__hero {
    height: 470px;
  }

  .facilities__hero figcaption,
  .facility-card figcaption {
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
    padding: 24px;
  }

  .facilities__hero figcaption strong {
    font-size: 28px;
    line-height: 1.15;
  }

  .facility-gallery {
    grid-template-columns: 1fr;
    gap: 14px;
    margin-top: 14px;
  }

  .facility-card,
  .facility-card--wide {
    height: 390px;
  }

  .facility-card:nth-child(3) {
    margin-top: 0;
  }

  .facility-card figcaption strong {
    font-size: 28px;
  }

  .facility-list {
    grid-template-columns: 1fr 1fr;
    margin-top: 54px;
  }

  .facility-list span {
    min-height: 72px;
    padding: 20px 14px;
    font-size: 11px;
  }

  .location__feature {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .location__feature figure {
    min-height: 390px;
  }

  .location__feature > div {
    padding: 34px 26px;
  }

  .location__feature h3 {
    font-size: 47px;
  }

  .location__lower {
    grid-template-columns: 1fr;
    margin-top: 48px;
  }

  .location__aerial {
    padding: 14px;
  }

  .accordion-item button {
    grid-template-columns: 36px 1fr 24px;
    min-height: 92px;
    padding: 0 18px;
  }

  .accordion-item button strong {
    font-size: 31px;
  }

  .accordion-panel ul {
    padding: 0 18px;
  }

  .accordion-panel li {
    font-size: 11px;
  }

  .layout-tabs {
    display: flex;
    gap: 10px;
    margin-right: -16px;
    padding-right: 16px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .layout-tabs::-webkit-scrollbar {
    display: none;
  }

  .layout-tabs button {
    flex: 0 0 128px;
    min-height: 78px;
    scroll-snap-align: start;
  }

  .layout-viewer {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .layout-viewer__details {
    padding: 34px 24px;
  }

  .layout-viewer__details h3 {
    font-size: 90px;
  }

  .layout-viewer__summary {
    margin: 30px 0;
    font-size: 14px;
  }

  .layout-viewer__details .button {
    align-self: stretch;
  }

  .layout-viewer__plan {
    min-height: 440px;
    padding: 24px 14px;
  }

  .layout-viewer__plan img {
    max-height: 430px;
  }

  .outlook__grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .outlook__grid figure,
  .outlook__grid figure:nth-child(2),
  .outlook__grid figure:nth-child(4) {
    height: 390px;
    transform: none;
  }

  .outlook__grid figcaption {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
    padding: 22px;
  }

  .outlook__grid figcaption strong {
    font-size: 30px;
  }

  .contact {
    align-items: flex-end;
    min-height: 700px;
    margin-top: 0;
  }

  .contact__image {
    background-position: 58% center;
  }

  .contact__veil {
    background: linear-gradient(0deg, rgba(8, 17, 12, .92), rgba(8, 17, 12, .16) 78%);
  }

  .contact__content {
    width: auto;
    margin: 0;
    padding: 0 22px 58px;
  }

  .contact__content h2 {
    font-size: 56px;
  }

  .contact__content > p:not(.eyebrow) {
    margin: 26px 0;
    font-size: 15px;
  }

  .contact__content .button {
    width: 100%;
  }

  .site-footer {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 52px 22px 100px;
  }

  .site-footer nav {
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 16px 22px;
  }

  .site-footer > p {
    margin-top: 0;
  }

  .floating-whatsapp {
    right: 18px;
    bottom: 18px;
    width: 56px;
    height: 56px;
  }

  .legal-dialog {
    width: calc(100vw - 20px);
    max-height: 90vh;
  }

  .legal-dialog > div {
    padding: 50px 24px;
  }

  .legal-dialog h2 {
    margin-bottom: 28px;
    font-size: 52px;
  }

  .legal-dialog h3 {
    font-size: 26px;
  }
}

@media (max-width: 420px) {
  .mobile-menu__foot p {
    display: none;
  }

  .mobile-menu__foot a {
    text-align: left;
  }

  .hero {
    min-height: 800px;
  }

  .fact-strip__item strong {
    font-size: 21px;
  }

  .location__feature figure {
    min-height: 330px;
  }

  .location__feature h3 {
    font-size: 42px;
  }

  .layout-viewer__details h3 {
    font-size: 78px;
  }
}

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

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

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