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

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

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

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

:root {
  --forest: #173d32;
  --forest-dark: #0c251f;
  --ink: #17201e;
  --paper: #f4f6f2;
  --white: #fff;
  --mist: #dbe5dd;
  --line: #c8d2ca;
  --mint: #a9ddbc;
  --rust: #a64b33;
  --muted: #66716d;
  --display: "Bodoni Moda", "Times New Roman", serif;
  --sans: "Manrope", Arial, sans-serif;
  --shell: min(1320px, calc(100vw - 96px));
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
}

body.menu-open,
body.dialog-open {
  overflow: hidden;
}

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

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

button {
  color: inherit;
  font: inherit;
}

::selection {
  background: var(--mint);
  color: var(--forest-dark);
}

.skip-link {
  position: fixed;
  z-index: 500;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  background: white;
  transform: translateY(-160%);
  transition: transform 0.2s ease;
}

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

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

.section {
  padding: 136px 0;
}

.section--forest {
  background: var(--forest-dark);
  color: var(--white);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(170px, 0.3fr) minmax(0, 1fr);
  gap: 68px;
}

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

.eyebrow--light {
  color: rgba(255, 255, 255, 0.72);
}

.eyebrow--mint {
  color: var(--mint);
}

.display-title {
  max-width: 980px;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(62px, 7.4vw, 112px);
  font-weight: 400;
  line-height: 0.92;
}

.display-title--light {
  color: var(--white);
}

.section-lead {
  max-width: 630px;
  margin: 34px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.8;
}

.section-lead--light {
  color: rgba(255, 255, 255, 0.58);
}

.button {
  display: inline-flex;
  min-height: 56px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 15px 26px;
  border: 1px solid transparent;
  border-radius: 2px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  line-height: 1.2;
  text-transform: uppercase;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

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

.button--light {
  background: var(--white);
  color: var(--forest-dark);
}

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

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

.button--light:hover {
  background: var(--mint);
}

.button--forest:hover {
  background: var(--rust);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 28px;
  padding-bottom: 8px;
  border-bottom: 1px solid currentColor;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  transition: gap 0.25s ease, color 0.2s ease;
}

.text-link:hover {
  gap: 36px;
  color: var(--mint);
}

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

.page-loader {
  position: fixed;
  z-index: 600;
  inset: 0;
  display: grid;
  place-content: center;
  background: var(--paper);
  transition: visibility 0.6s ease, opacity 0.6s ease;
}

.page-loader img {
  width: 72px;
  height: auto;
  margin-inline: auto;
}

.page-loader span {
  display: block;
  width: 120px;
  height: 1px;
  margin-top: 22px;
  overflow: hidden;
  background: var(--line);
}

.page-loader span::after {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--forest);
  content: "";
  animation: loader-line 1s ease forwards;
  transform: translateX(-100%);
}

body.is-ready .page-loader {
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
}

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

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

.site-header.is-scrolled,
body.menu-open .site-header {
  height: 68px;
  background: var(--forest-dark);
}

.brand {
  display: inline-grid;
  width: max-content;
  line-height: 1;
  text-align: center;
}

.brand strong {
  font-family: var(--display);
  font-size: 20px;
  font-weight: 400;
  letter-spacing: 0.12em;
}

.brand span {
  margin-top: 3px;
  color: var(--mint);
  font-size: 7px;
  font-weight: 600;
  letter-spacing: 0.31em;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 30px;
}

.desktop-nav a {
  position: relative;
  font-size: 11px;
  font-weight: 500;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: -9px;
  left: 0;
  height: 1px;
  background: var(--mint);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.25s ease;
}

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

.header-cta {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  justify-self: end;
  gap: 9px;
  padding: 9px 14px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  transition: background 0.2s ease, color 0.2s ease;
}

.header-cta svg {
  width: 17px;
  height: 17px;
}

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

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.menu-toggle span {
  position: absolute;
  width: 24px;
  height: 1px;
  background: currentColor;
  transition: transform 0.25s ease;
}

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

.mobile-menu {
  position: fixed;
  z-index: 190;
  inset: 0;
  display: none;
  flex-direction: column;
  justify-content: space-between;
  padding: 114px 24px 34px;
  background: var(--forest-dark);
  color: var(--white);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.mobile-menu.is-open {
  opacity: 1;
  pointer-events: auto;
}

.mobile-menu nav {
  display: grid;
}

.mobile-menu nav a {
  padding: 6px 0;
  font-family: var(--display);
  font-size: clamp(40px, 10vw, 58px);
  line-height: 1;
}

.mobile-menu__foot {
  display: grid;
  gap: 10px;
  color: rgba(255, 255, 255, 0.54);
  font-size: 11px;
}

.mobile-menu__foot a {
  color: var(--mint);
  text-decoration: underline;
  text-underline-offset: 5px;
}

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

.hero__image,
.hero__veil {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero__image {
  object-fit: cover;
  object-position: center 46%;
  animation: hero-breathe 14s ease-out forwards;
  transform: scale(1.04);
}

.hero__veil {
  background: linear-gradient(90deg, rgba(7, 26, 21, 0.9) 0%, rgba(7, 26, 21, 0.6) 46%, rgba(7, 26, 21, 0.08) 78%);
}

@keyframes hero-breathe {
  to { transform: scale(1); }
}

.hero__content {
  position: relative;
  z-index: 2;
  display: flex;
  width: min(760px, calc(100vw - 96px));
  min-height: 100svh;
  flex-direction: column;
  justify-content: center;
  margin-left: max(48px, calc((100vw - 1320px) / 2));
  padding: 140px 0 160px;
}

.hero h1 {
  margin: 24px 0 0;
  font-family: var(--display);
  font-size: clamp(84px, 10.5vw, 164px);
  font-weight: 400;
  line-height: 0.78;
}

.hero__tagline {
  margin: 34px 0 0;
  color: var(--mint);
  font-family: var(--display);
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1;
}

.hero__intro {
  max-width: 540px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 16px;
  line-height: 1.75;
}

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

.hero__facts {
  position: absolute;
  z-index: 2;
  right: 38px;
  bottom: 34px;
  display: grid;
  width: min(610px, 46vw);
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.32);
}

.hero__facts div {
  min-height: 78px;
  padding: 14px 16px 0;
  border-left: 1px solid rgba(255, 255, 255, 0.2);
}

.hero__facts div:last-child {
  border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.hero__facts span {
  display: block;
  color: var(--mint);
  font-size: 9px;
}

.hero__facts strong {
  display: block;
  margin-top: 5px;
  font-size: 10px;
  font-weight: 500;
}

.artist-note {
  position: absolute;
  z-index: 4;
  right: 18px;
  bottom: 8px;
  margin: 0;
  color: rgba(255, 255, 255, 0.56);
  font-size: 8px;
}

.story__copy {
  display: grid;
  max-width: 920px;
  grid-template-columns: repeat(2, 1fr);
  gap: 56px;
  margin-top: 56px;
  color: var(--muted);
  font-size: 16px;
}

.story__copy p {
  margin: 0;
}

.story__visual {
  display: grid;
  max-width: 1160px;
  grid-template-columns: minmax(0, 0.74fr) minmax(250px, 0.26fr);
  align-items: stretch;
  margin: 112px auto 0;
}

.story__visual figure {
  position: relative;
  min-height: 650px;
  margin: 0;
  overflow: hidden;
}

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

.story__visual figcaption,
.location-map figcaption {
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 10px 14px;
  background: rgba(12, 37, 31, 0.88);
  color: rgba(255, 255, 255, 0.68);
  font-size: 9px;
}

.story__statement {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 48px 38px;
  background: var(--forest);
  color: var(--white);
}

.story__statement span {
  color: var(--mint);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.story__statement strong {
  margin-top: 18px;
  font-family: var(--display);
  font-size: 120px;
  font-weight: 400;
  line-height: 0.8;
}

.story__statement p {
  max-width: 230px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 13px;
}

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

.fact {
  display: grid;
  min-height: 170px;
  align-content: center;
  padding: 30px clamp(22px, 3vw, 50px);
  border-right: 1px solid var(--line);
}

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

.fact span {
  color: var(--muted);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.fact strong {
  margin-top: 8px;
  font-family: var(--display);
  font-size: clamp(28px, 2.6vw, 40px);
  font-weight: 400;
  line-height: 1;
}

.lifestyle {
  background: #eaf0eb;
}

.lifestyle__heading .section-lead,
.facilities__heading .section-lead,
.layouts__heading .section-lead {
  margin-top: 42px;
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 34px;
  margin-top: 92px;
}

.benefit-card {
  position: relative;
  min-height: 590px;
  overflow: hidden;
  background: var(--forest-dark);
  color: var(--white);
}

.benefit-card--wide {
  min-height: 680px;
}

.benefit-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.benefit-card:hover img {
  transform: scale(1.025);
}

.benefit-card::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(7, 26, 21, 0.88), transparent 62%);
  content: "";
}

.benefit-card > div {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 0;
  left: 0;
  display: grid;
  grid-template-columns: 44px 0.8fr 1.2fr;
  gap: 20px;
  align-items: end;
  padding: 34px;
}

.benefit-card span {
  align-self: start;
  color: var(--mint);
  font-size: 9px;
}

.benefit-card h3 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(32px, 3.3vw, 48px);
  font-weight: 400;
  line-height: 1;
}

.benefit-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.65);
  font-size: 12px;
  line-height: 1.7;
}

.home-features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 94px;
  border-top: 1px solid #afbeb3;
  border-bottom: 1px solid #afbeb3;
}

.home-features article {
  min-height: 250px;
  padding: 32px 26px;
  border-right: 1px solid #afbeb3;
}

.home-features article:last-child {
  border-right: 0;
}

.home-features span {
  color: var(--rust);
  font-size: 9px;
}

.home-features h3 {
  margin: 54px 0 0;
  font-family: var(--display);
  font-size: 30px;
  font-weight: 400;
  line-height: 1;
}

.home-features p {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 11px;
}

.facility-viewer {
  display: grid;
  min-height: 720px;
  grid-template-columns: minmax(0, 1.35fr) minmax(340px, 0.65fr);
  margin-top: 90px;
  background: #f4f6f2;
  color: var(--ink);
}

.facility-viewer__media {
  position: relative;
  overflow: hidden;
  background: #0d2b23;
}

.facility-viewer__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.25s ease, transform 0.5s ease;
}

.facility-viewer__media img.is-changing {
  opacity: 0;
  transform: scale(1.015);
}

.facility-viewer__count {
  position: absolute;
  top: 24px;
  left: 24px;
  padding: 9px 12px;
  background: rgba(12, 37, 31, 0.9);
  color: rgba(255, 255, 255, 0.5);
  font-size: 9px;
}

.facility-viewer__count b {
  color: var(--mint);
  font-weight: 500;
}

.facility-viewer__panel {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 52px 44px 30px;
}

.facility-viewer__panel h3 {
  margin: 22px 0 0;
  font-family: var(--display);
  font-size: clamp(52px, 5vw, 74px);
  font-weight: 400;
  line-height: 0.94;
}

.facility-viewer__panel > div:first-child > p:last-child {
  margin: 26px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.facility-tabs {
  display: grid;
  margin-top: 42px;
}

.facility-tabs button {
  display: grid;
  grid-template-columns: 40px 1fr;
  align-items: center;
  padding: 16px 0;
  border: 0;
  border-top: 1px solid var(--line);
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font-size: 11px;
  text-align: left;
  transition: color 0.2s ease, padding-left 0.2s ease;
}

.facility-tabs button:last-child {
  border-bottom: 1px solid var(--line);
}

.facility-tabs button span {
  color: var(--rust);
  font-size: 9px;
}

.facility-tabs button:hover,
.facility-tabs button.is-active {
  padding-left: 8px;
  color: var(--forest);
}

.facility-levels {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin-top: 100px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  border-left: 1px solid rgba(255, 255, 255, 0.16);
}

.facility-levels article {
  display: grid;
  min-height: 420px;
  grid-template-columns: 72px 1fr;
  gap: 28px;
  align-content: start;
  padding: 46px 42px;
  border-right: 1px solid rgba(255, 255, 255, 0.16);
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.facility-levels article > span {
  color: var(--mint);
  font-family: var(--display);
  font-size: 60px;
  line-height: 0.9;
}

.facility-levels h3 {
  margin: 14px 0 0;
  font-family: var(--display);
  font-size: 42px;
  font-weight: 400;
  line-height: 1;
}

.facility-levels ul {
  grid-column: 2;
  margin: 36px 0 0;
  padding: 0;
  list-style: none;
}

.facility-levels li {
  padding: 9px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.55);
  font-size: 11px;
}

.location-map {
  position: relative;
  margin: 88px 0 0;
  overflow: hidden;
  background: var(--white);
}

.location-map img {
  width: 100%;
  height: auto;
}

.location-list {
  margin-top: 70px;
  border-top: 1px solid var(--line);
}

.location-list article {
  border-bottom: 1px solid var(--line);
}

.location-list button {
  display: flex;
  width: 100%;
  min-height: 106px;
  align-items: center;
  justify-content: space-between;
  padding: 20px 4px;
  border: 0;
  background: transparent;
  cursor: pointer;
  font-family: var(--display);
  font-size: clamp(34px, 4.2vw, 58px);
  text-align: left;
}

.location-list button i {
  position: relative;
  width: 30px;
  height: 30px;
}

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

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

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

.location-list__content {
  display: grid;
  max-height: 0;
  grid-template-columns: repeat(2, 1fr);
  gap: 0 48px;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}

.location-list article.is-open .location-list__content {
  max-height: 360px;
  padding: 0 0 34px;
}

.location-list__content p {
  margin: 0;
  padding: 14px 0;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 13px;
}

.location-list__content strong {
  display: inline-block;
  min-width: 112px;
  color: var(--rust);
  font-weight: 500;
}

.layouts {
  background: #eaf0eb;
}

.plan-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 26px;
  margin-top: 88px;
}

.plan-card {
  display: grid;
  min-height: 660px;
  grid-template-rows: minmax(0, 1fr) auto;
  border: 1px solid var(--line);
  background: var(--white);
}

.plan-card__image {
  display: grid;
  min-height: 460px;
  place-items: center;
  padding: 24px;
  overflow: hidden;
  background: #f9faf8;
}

.plan-card__image img {
  width: 100%;
  height: 100%;
  max-height: 460px;
  object-fit: contain;
  transition: transform 0.45s ease;
}

.plan-card:hover .plan-card__image img {
  transform: scale(1.02);
}

.plan-card__copy {
  display: grid;
  grid-template-columns: 0.6fr 0.4fr;
  gap: 10px 30px;
  padding: 28px 30px 32px;
  border-top: 1px solid var(--line);
}

.plan-card__copy p {
  grid-column: 1 / -1;
  margin: 0;
  color: var(--rust);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.plan-card__copy h3 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(34px, 3.4vw, 48px);
  font-weight: 400;
  line-height: 1;
}

.plan-card__copy span {
  align-self: end;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.6;
}

.plan-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin-top: 34px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

.plan-cta p {
  margin: 0;
  color: var(--muted);
  font-size: 11px;
}

.experience {
  overflow: hidden;
}

.section-lead--light {
  color: rgba(255, 255, 255, 0.62);
}

.project-film {
  margin-top: 84px;
  border: 1px solid rgba(183, 217, 191, 0.22);
}

.media-frame {
  position: relative;
  overflow: hidden;
  width: 100%;
  background: #071a15;
  aspect-ratio: 16 / 9;
}

.media-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.project-film__caption {
  display: grid;
  min-height: 132px;
  grid-template-columns: 90px 1fr;
  align-items: center;
  padding: 24px 34px;
  border-top: 1px solid rgba(183, 217, 191, 0.22);
}

.project-film__caption > span {
  color: var(--mint);
  font-family: var(--display);
  font-size: 44px;
}

.project-film__caption p {
  margin: 0 0 3px;
  color: var(--mint);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.project-film__caption h3 {
  margin: 0;
  color: var(--white);
  font-family: var(--display);
  font-size: 34px;
  font-weight: 400;
  line-height: 1.1;
}

.virtual-tour {
  margin-top: 112px;
}

.virtual-tour__heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 34px;
}

.virtual-tour__heading h3 {
  margin: 12px 0 0;
  color: var(--white);
  font-family: var(--display);
  font-size: 56px;
  font-weight: 400;
  line-height: 1;
}

.tour-tabs {
  display: flex;
  border: 1px solid rgba(183, 217, 191, 0.3);
}

.tour-tabs button {
  min-width: 138px;
  min-height: 48px;
  padding: 12px 20px;
  border: 0;
  border-right: 1px solid rgba(183, 217, 191, 0.3);
  background: transparent;
  color: rgba(255, 255, 255, 0.65);
  cursor: pointer;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: background 0.2s ease, color 0.2s ease;
}

.tour-tabs button:last-child {
  border-right: 0;
}

.tour-tabs button.is-active {
  background: var(--mint);
  color: var(--forest-dark);
}

.media-frame--tour {
  border: 1px solid rgba(183, 217, 191, 0.22);
}

.virtual-tour__external {
  display: flex;
  width: max-content;
  align-items: center;
  gap: 16px;
  margin-top: 20px;
  margin-left: auto;
  color: var(--mint);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.virtual-tour__external span {
  font-size: 18px;
}

.gallery {
  overflow: hidden;
}

.gallery__heading {
  display: grid;
  grid-template-columns: 1fr 0.65fr;
  gap: 80px;
  align-items: end;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  margin-top: 82px;
}

.gallery-card {
  position: relative;
  overflow: hidden;
  margin: 0;
  background: var(--forest-dark);
}

.gallery-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.gallery-card::after {
  position: absolute;
  inset: 45% 0 0;
  background: linear-gradient(transparent, rgba(7, 26, 21, 0.76));
  content: "";
  pointer-events: none;
}

.gallery-card:hover img {
  transform: scale(1.025);
}

.gallery-card figcaption {
  position: absolute;
  z-index: 1;
  right: 24px;
  bottom: 20px;
  left: 24px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  color: var(--white);
}

.gallery-card figcaption span {
  color: var(--mint);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
}

.gallery-card figcaption strong {
  font-family: var(--display);
  font-size: 30px;
  font-weight: 400;
  line-height: 1;
}

.contact {
  position: relative;
  display: grid;
  min-height: 820px;
  place-items: center;
  overflow: hidden;
  background: var(--forest-dark);
  color: var(--white);
  text-align: center;
}

.contact > img,
.contact__veil {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.contact > img {
  object-fit: cover;
}

.contact__veil {
  background: rgba(7, 26, 21, 0.68);
}

.contact__content {
  position: relative;
  z-index: 2;
  width: min(780px, calc(100vw - 40px));
  padding: 90px 20px;
}

.contact__content h2 {
  margin: 24px 0 0;
  font-family: var(--display);
  font-size: clamp(64px, 8vw, 112px);
  font-weight: 400;
  line-height: 0.9;
}

.contact__content > p:not(.eyebrow) {
  max-width: 620px;
  margin: 32px auto;
  color: rgba(255, 255, 255, 0.68);
  font-size: 15px;
}

.site-footer {
  padding: 76px 48px 26px;
  background: var(--forest-dark);
  color: var(--white);
}

.site-footer__top {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 44px;
  align-items: start;
  padding-bottom: 70px;
}

.brand--footer {
  color: var(--white);
}

.site-footer__top > p {
  margin: 0;
  color: rgba(255, 255, 255, 0.5);
  font-family: var(--display);
  font-size: 24px;
  line-height: 1.25;
}

.footer-whatsapp {
  justify-self: end;
  padding-bottom: 6px;
  border-bottom: 1px solid var(--mint);
  color: var(--mint);
  font-size: 11px;
}

.site-footer__legal {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 60px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.legal-links {
  display: flex;
  gap: 24px;
}

.legal-links button {
  padding: 0;
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.7);
  cursor: pointer;
  font-size: 9px;
}

.legal-links button:hover {
  color: var(--mint);
}

.site-footer__legal > p {
  max-width: 760px;
  margin: 0 0 0 auto;
  color: rgba(255, 255, 255, 0.32);
  font-size: 8px;
  line-height: 1.75;
  text-align: right;
}

.floating-whatsapp {
  position: fixed;
  z-index: 180;
  right: 24px;
  bottom: 24px;
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border: 2px solid white;
  border-radius: 50%;
  background: #20c968;
  color: white;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
  transition: transform 0.2s ease;
}

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

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

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

.legal-dialog::backdrop {
  background: rgba(7, 26, 21, 0.76);
  backdrop-filter: blur(4px);
}

.legal-dialog__close {
  position: sticky;
  z-index: 3;
  top: 16px;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  margin: 16px 16px -58px auto;
  border: 0;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font-size: 34px;
}

.legal-dialog__content {
  padding: 70px 72px 78px;
}

.legal-dialog h2 {
  margin: 16px 0 34px;
  font-family: var(--display);
  font-size: clamp(52px, 7vw, 76px);
  font-weight: 400;
  line-height: 1;
}

.legal-dialog h3 {
  margin: 34px 0 10px;
  font-family: var(--display);
  font-size: 30px;
  font-weight: 400;
}

.legal-dialog p {
  color: var(--muted);
  font-size: 13px;
}

.legal-dialog strong {
  color: var(--ink);
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

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

@media (max-width: 1100px) {
  :root { --shell: min(100% - 56px, 1040px); }
  .section { padding: 108px 0; }
  .site-header { padding: 0 28px; }
  .desktop-nav { gap: 20px; }
  .hero__content { margin-left: 42px; }
  .hero__facts { display: none; }
  .facility-viewer { grid-template-columns: 1.15fr 0.85fr; }
  .benefit-card { min-height: 540px; }
}

@media (max-width: 820px) {
  :root { --shell: calc(100vw - 40px); }
  .section { padding: 90px 0; }
  .section-heading,
  .gallery__heading {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .display-title { font-size: clamp(54px, 13.5vw, 88px); }
  .site-header {
    height: 68px;
    grid-template-columns: 1fr auto;
    padding: 0 20px;
  }
  .desktop-nav,
  .header-cta { display: none; }
  .menu-toggle {
    display: inline-flex;
    justify-self: end;
  }
  .mobile-menu { display: flex; }
  .hero { min-height: 790px; }
  .hero__image { object-position: 61% center; }
  .hero__veil { background: rgba(7, 26, 21, 0.58); }
  .hero__content {
    width: calc(100% - 40px);
    min-height: 790px;
    margin-left: 20px;
    padding: 116px 0 76px;
  }
  .hero h1 { font-size: clamp(80px, 23vw, 120px); }
  .hero__intro { max-width: 460px; font-size: 14px; }
  .hero__actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 26px;
  }
  .story__copy {
    grid-template-columns: 1fr;
    gap: 22px;
    margin-top: 36px;
    font-size: 14px;
  }
  .story__visual {
    grid-template-columns: 1fr;
    margin-top: 66px;
  }
  .story__visual figure { min-height: 500px; }
  .story__statement {
    min-height: 260px;
    padding: 34px 30px;
  }
  .story__statement strong { font-size: 90px; }
  .facts { grid-template-columns: repeat(2, 1fr); }
  .fact { min-height: 140px; border-bottom: 1px solid var(--line); }
  .fact:nth-child(2) { border-right: 0; }
  .fact:nth-child(3),
  .fact:nth-child(4) { border-bottom: 0; }
  .benefit-grid { grid-template-columns: 1fr; margin-top: 64px; }
  .benefit-card,
  .benefit-card--wide { min-height: 560px; }
  .home-features { grid-template-columns: repeat(2, 1fr); margin-top: 70px; }
  .home-features article:nth-child(2) { border-right: 0; }
  .home-features article:nth-child(-n+2) { border-bottom: 1px solid #afbeb3; }
  .facility-viewer {
    min-height: auto;
    grid-template-columns: 1fr;
    margin-top: 62px;
  }
  .facility-viewer__media { height: 560px; }
  .facility-viewer__panel { padding: 42px 28px 28px; }
  .facility-levels { grid-template-columns: 1fr; margin-top: 72px; }
  .facility-levels article { min-height: 350px; }
  .location-map { margin-top: 64px; }
  .location-list__content { grid-template-columns: 1fr; }
  .plan-grid { grid-template-columns: 1fr; margin-top: 64px; }
  .plan-card { grid-column: auto; min-height: auto; }
  .plan-card__image { min-height: 430px; }
  .plan-cta {
    align-items: flex-start;
    flex-direction: column;
  }
  .virtual-tour__heading {
    align-items: flex-start;
    flex-direction: column;
  }
  .gallery-grid {
    grid-template-columns: 1fr;
    margin-top: 60px;
  }
  .contact { min-height: 720px; }
  .site-footer__top,
  .site-footer__legal {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .footer-whatsapp { justify-self: start; }
  .site-footer__legal > p {
    margin: 0;
    text-align: left;
  }
}

@media (max-width: 540px) {
  :root { --shell: calc(100vw - 32px); }
  body { font-size: 15px; }
  .section { padding: 74px 0; }
  .display-title {
    font-size: clamp(49px, 14vw, 68px);
    line-height: 0.96;
  }
  .section-lead { margin-top: 18px; font-size: 14px; }
  .hero { min-height: 750px; }
  .hero__content {
    width: calc(100% - 32px);
    min-height: 750px;
    margin-left: 16px;
    padding: 106px 0 60px;
  }
  .hero h1 { font-size: clamp(76px, 24vw, 104px); }
  .hero__tagline { margin-top: 28px; font-size: 29px; }
  .hero__intro { line-height: 1.65; }
  .button { width: 100%; }
  .hero__actions { width: 100%; }
  .story__visual figure { min-height: 440px; }
  .fact { min-height: 126px; padding: 24px 16px; }
  .fact strong { font-size: 26px; }
  .benefit-card,
  .benefit-card--wide { min-height: 500px; }
  .benefit-card > div {
    grid-template-columns: 34px 1fr;
    gap: 14px;
    padding: 24px 20px;
  }
  .benefit-card p {
    grid-column: 2;
    margin-top: 4px;
  }
  .benefit-card h3 { font-size: 38px; }
  .home-features article { min-height: 210px; padding: 24px 18px; }
  .home-features h3 { margin-top: 38px; font-size: 26px; }
  .facility-viewer__media { height: 390px; }
  .facility-viewer__panel { padding: 34px 20px 20px; }
  .facility-viewer__panel h3 { font-size: 48px; }
  .facility-levels article {
    min-height: auto;
    grid-template-columns: 55px 1fr;
    gap: 18px;
    padding: 34px 22px;
  }
  .facility-levels article > span { font-size: 44px; }
  .facility-levels h3 { font-size: 34px; }
  .facility-levels ul { margin-top: 26px; }
  .location-map img {
    width: 150%;
    max-width: none;
    margin-left: -25%;
  }
  .location-list button { min-height: 88px; font-size: 34px; }
  .location-list__content strong {
    display: block;
    min-width: 0;
    margin-bottom: 2px;
  }
  .plan-card__image { min-height: 330px; padding: 14px; }
  .plan-card__image img { max-height: 350px; }
  .plan-card__copy {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 24px 22px 28px;
  }
  .plan-card__copy span { margin-top: 4px; }
  .project-film { margin-top: 58px; }
  .project-film__caption {
    min-height: 112px;
    grid-template-columns: 58px 1fr;
    padding: 20px;
  }
  .project-film__caption > span { font-size: 36px; }
  .project-film__caption h3 { font-size: 26px; }
  .virtual-tour { margin-top: 78px; }
  .virtual-tour__heading h3 { font-size: 46px; }
  .tour-tabs { width: 100%; }
  .tour-tabs button {
    min-width: 0;
    flex: 1;
    padding-inline: 12px;
  }
  .media-frame--tour { aspect-ratio: 4 / 5; }
  .virtual-tour__external { margin-left: 0; }
  .gallery-grid { gap: 12px; }
  .gallery-card figcaption {
    right: 18px;
    bottom: 16px;
    left: 18px;
  }
  .gallery-card figcaption strong { font-size: 26px; }
  .contact { min-height: 680px; }
  .contact__content h2 { font-size: 60px; }
  .site-footer { padding: 58px 20px 24px; }
  .legal-links { flex-wrap: wrap; gap: 14px 20px; }
  .floating-whatsapp {
    right: 16px;
    bottom: 16px;
    width: 54px;
    height: 54px;
  }
  .legal-dialog {
    width: calc(100vw - 24px);
    max-height: calc(100vh - 24px);
  }
  .legal-dialog__content { padding: 54px 24px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}
