:root {
  --green-950: #081811;
  --green-900: #10271d;
  --green-800: #18392b;
  --green-700: #24513d;
  --gold: #cba96d;
  --gold-dark: #a88448;
  --ink: #17201b;
  --muted: #68736d;
  --line: #dfe4df;
  --paper: #f7f5ef;
  --white: #fff;
  --serif: "Iowan Old Style", "Baskerville", "Times New Roman", serif;
  --sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --shadow: 0 22px 70px rgba(8, 24, 17, 0.14);
  --ease: cubic-bezier(.2, .7, .2, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

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

button {
  border: 0;
}

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

a {
  color: inherit;
}

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

.loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 50% 40%, rgba(203, 169, 109, .09), transparent 30%),
    var(--green-950);
  opacity: 1;
  visibility: visible;
  transition: opacity .45s ease, visibility .45s ease;
}

.loader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-card {
  width: min(360px, 78vw);
  text-align: center;
  color: rgba(255, 255, 255, .68);
}

.loader-card img {
  width: 100%;
  border: 1px solid rgba(203, 169, 109, .25);
  box-shadow: 0 28px 80px rgba(0, 0, 0, .24);
}

.loader-card p {
  margin: 16px 0 0;
  font-size: 10px;
  letter-spacing: .22em;
  text-transform: uppercase;
}

.loader-line {
  width: 100%;
  height: 1px;
  margin-top: 22px;
  overflow: hidden;
  background: rgba(255, 255, 255, .13);
}

.loader-line span {
  display: block;
  width: 42%;
  height: 100%;
  background: var(--gold);
  animation: loadline 1.1s var(--ease) infinite;
}

@keyframes loadline {
  from { transform: translateX(-120%); }
  to { transform: translateX(340%); }
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(20px, 4vw, 64px);
  background: rgba(255, 255, 255, .94);
  border-bottom: 1px solid rgba(16, 39, 29, .09);
  backdrop-filter: blur(18px);
  transition: box-shadow .3s ease;
}

.site-header.scrolled {
  box-shadow: 0 10px 36px rgba(8, 24, 17, .08);
}

.brand {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 0;
  background: transparent;
  color: var(--green-900);
  cursor: pointer;
}

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

.brand span {
  display: grid;
  text-align: left;
  line-height: 1;
}

.brand strong {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: .04em;
}

.brand small {
  margin-top: 4px;
  color: var(--gold-dark);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: .34em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 7px;
}

.site-nav button,
.site-nav a,
.site-footer button {
  background: transparent;
  cursor: pointer;
}

.site-nav button,
.site-nav a {
  display: inline-flex;
  align-items: center;
  padding: 11px 13px;
  color: #506057;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 999px;
  transition: color .25s ease, background .25s ease;
}

.site-nav button:hover,
.site-nav button.active,
.site-nav a:hover,
.site-nav a.active {
  color: var(--green-900);
  background: var(--paper);
}

.site-nav .nav-cta {
  margin-left: 8px;
  padding-inline: 20px;
  color: var(--white);
  background: var(--green-900);
}

.site-nav .nav-cta:hover,
.site-nav .nav-cta.active {
  color: var(--green-900);
  background: var(--gold);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 11px;
  background: transparent;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 1px;
  margin: 5px 0;
  background: var(--green-900);
  transition: transform .25s ease, opacity .25s ease;
}

.page {
  min-height: 70vh;
  padding-top: 76px;
  animation: pagein .65s var(--ease) both;
}

@keyframes pagein {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: none; }
}

.hero {
  position: relative;
  min-height: calc(100vh - 76px);
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--white);
  background: var(--green-950);
}

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

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

.hero-media img {
  animation: herozoom 13s ease-out both;
}

@keyframes herozoom {
  from { transform: scale(1.07); }
  to { transform: scale(1); }
}

.hero::after,
.project-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8, 24, 17, .93) 0%, rgba(8, 24, 17, .56) 45%, rgba(8, 24, 17, .1) 80%),
    linear-gradient(0deg, rgba(8, 24, 17, .78), transparent 55%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  padding: clamp(90px, 13vh, 145px) 0 9vh;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 18px;
  color: var(--gold);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .25em;
  text-transform: uppercase;
}

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

.hero h1,
.project-hero h1,
.section-heading h2,
.split-copy h2 {
  font-family: var(--serif);
  font-weight: 400;
}

.hero h1 {
  max-width: 800px;
  margin: 0;
  font-size: clamp(54px, 8vw, 104px);
  line-height: .94;
  letter-spacing: -.035em;
}

.hero h1 em {
  color: var(--gold);
  font-weight: 400;
}

.hero-copy {
  max-width: 610px;
  margin: 28px 0 38px;
  color: rgba(255, 255, 255, .73);
  font-size: clamp(15px, 1.6vw, 18px);
  line-height: 1.8;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 0 24px;
  color: var(--white);
  background: var(--green-900);
  border: 1px solid var(--green-900);
  border-radius: 2px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .12em;
  text-decoration: none;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform .25s ease, background .25s ease, color .25s ease, border-color .25s ease;
}

.button:hover {
  transform: translateY(-2px);
  color: var(--green-900);
  background: var(--gold);
  border-color: var(--gold);
}

.button.gold {
  color: var(--green-900);
  background: var(--gold);
  border-color: var(--gold);
}

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

.button.ghost {
  color: var(--white);
  background: transparent;
  border-color: rgba(255, 255, 255, .42);
}

.button.ghost:hover {
  color: var(--green-900);
  background: var(--white);
  border-color: var(--white);
}

.section {
  padding: clamp(72px, 9vw, 120px) clamp(24px, 5vw, 72px);
}

.section.soft {
  background: var(--paper);
}

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

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

.section-heading {
  max-width: 700px;
  margin-bottom: 46px;
}

.section-heading.center {
  margin-inline: auto;
  text-align: center;
}

.section-heading.center .eyebrow {
  justify-content: center;
}

.section-heading h2,
.split-copy h2 {
  margin: 0;
  color: var(--green-900);
  font-size: clamp(38px, 5vw, 62px);
  line-height: 1.04;
}

.dark .section-heading h2 {
  color: var(--white);
}

.section-heading p,
.split-copy p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.85;
}

.dark .section-heading p {
  color: rgba(255, 255, 255, .62);
}

.project-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.project-card {
  position: relative;
  min-height: 530px;
  overflow: hidden;
  padding: 0;
  color: var(--white);
  text-align: left;
  background: var(--green-950);
  cursor: pointer;
}

.project-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .68;
  transition: transform .75s var(--ease), opacity .4s ease;
}

.project-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(8, 24, 17, .95), rgba(8, 24, 17, .04) 72%);
}

.project-card:hover img {
  transform: scale(1.055);
  opacity: .5;
}

.project-card-content {
  position: absolute;
  inset: auto 0 0;
  z-index: 2;
  padding: 34px;
}

.project-card small,
.gallery-card small,
.update-card small {
  color: var(--gold);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .2em;
  text-transform: uppercase;
}

.project-card h3 {
  margin: 12px 0 9px;
  font-family: var(--serif);
  font-size: 42px;
  font-weight: 400;
  line-height: 1;
}

.project-card p {
  margin: 0 0 18px;
  color: rgba(255, 255, 255, .65);
  font-size: 13px;
  line-height: 1.65;
}

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

.card-link::after {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--gold);
}

.trust-grid,
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.trust-card,
.process-card {
  padding: 32px;
  background: var(--white);
}

.trust-card strong,
.process-card strong {
  display: block;
  color: var(--green-900);
  font-family: var(--serif);
  font-size: 25px;
  font-weight: 500;
}

.trust-card p,
.process-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
}

.process-card span {
  display: block;
  margin-bottom: 35px;
  color: var(--gold);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .2em;
}

.editorial-strip {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  min-height: 650px;
  color: var(--white);
  background: var(--green-900);
}

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

.editorial-copy {
  display: grid;
  align-content: center;
  padding: clamp(54px, 8vw, 110px);
}

.editorial-copy h2 {
  margin: 0 0 24px;
  font-family: var(--serif);
  font-size: clamp(44px, 5vw, 72px);
  font-weight: 400;
  line-height: 1;
}

.editorial-copy p {
  color: rgba(255, 255, 255, .64);
  line-height: 1.85;
}

.project-hero {
  position: relative;
  min-height: 690px;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--white);
  background: var(--green-950);
}

.project-hero-content {
  position: relative;
  z-index: 2;
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  padding: 150px 0 62px;
}

.project-hero h1 {
  margin: 0 0 22px;
  font-size: clamp(64px, 9vw, 116px);
  line-height: .85;
  letter-spacing: -.035em;
}

.project-hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.project-hero-meta span {
  padding: 10px 14px;
  color: rgba(255, 255, 255, .76);
  background: rgba(255, 255, 255, .09);
  border: 1px solid rgba(255, 255, 255, .12);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .08em;
  backdrop-filter: blur(10px);
}

.fact-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--green-900);
}

.fact {
  min-height: 118px;
  display: grid;
  align-content: center;
  padding: 24px clamp(20px, 3vw, 42px);
  border-right: 1px solid rgba(255, 255, 255, .1);
}

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

.fact small {
  color: var(--gold);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.fact strong {
  margin-top: 7px;
  color: var(--white);
  font-family: var(--serif);
  font-size: 23px;
  font-weight: 500;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 7vw, 90px);
  align-items: center;
}

.split.reverse .split-media {
  order: -1;
}

.split-copy p {
  margin: 20px 0 0;
}

.split-copy .button {
  margin-top: 28px;
}

.split-media {
  position: relative;
}

.split-media img {
  width: 100%;
  min-height: 480px;
  object-fit: cover;
}

.split-media::before {
  content: "";
  position: absolute;
  inset: 18px -18px -18px 18px;
  z-index: -1;
  border: 1px solid var(--gold);
}

.inventory-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.inventory-grid.four {
  grid-template-columns: repeat(4, 1fr);
}

.inventory-card {
  min-height: 310px;
  display: flex;
  flex-direction: column;
  padding: 34px;
  background: var(--white);
  border: 1px solid var(--line);
  transition: transform .3s var(--ease), box-shadow .3s ease, border-color .3s ease;
}

.inventory-card:hover {
  transform: translateY(-5px);
  border-color: var(--gold);
  box-shadow: var(--shadow);
}

.inventory-card small {
  color: var(--gold-dark);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.inventory-card h3 {
  margin: 18px 0 22px;
  color: var(--green-900);
  font-family: var(--serif);
  font-size: 31px;
  font-weight: 500;
}

.inventory-card dl {
  margin: 0;
}

.inventory-card dl div {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 12px;
  padding: 10px 0;
  border-top: 1px solid var(--line);
}

.inventory-card dt {
  color: var(--muted);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.inventory-card dd {
  margin: 0;
  color: var(--ink);
  font-size: 13px;
  font-weight: 650;
  line-height: 1.5;
}

.inventory-note {
  margin: auto 0 0;
  padding-top: 22px;
  color: var(--gold-dark);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.amenity-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}

.amenity {
  min-height: 110px;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 22px;
  background: var(--white);
  border: 1px solid var(--line);
}

.amenity span {
  flex: 0 0 38px;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  color: var(--green-900);
  background: var(--paper);
  border-radius: 50%;
  font-family: var(--serif);
  font-size: 17px;
}

.amenity strong {
  color: var(--green-900);
  font-size: 13px;
  line-height: 1.45;
}

.plan-panel {
  display: grid;
  grid-template-columns: .72fr 1.28fr;
  gap: 60px;
  align-items: center;
}

.plan-copy h2 {
  margin: 0 0 20px;
  color: var(--white);
  font-family: var(--serif);
  font-size: clamp(40px, 5vw, 66px);
  font-weight: 400;
  line-height: 1;
}

.plan-copy p {
  color: rgba(255, 255, 255, .6);
  line-height: 1.8;
}

.plan-image-button {
  position: relative;
  padding: 10px;
  background: var(--white);
  box-shadow: var(--shadow);
  cursor: zoom-in;
}

.plan-image-button img {
  width: 100%;
  max-height: 700px;
  object-fit: contain;
}

.plan-image-button span {
  position: absolute;
  right: 22px;
  bottom: 22px;
  padding: 10px 13px;
  color: var(--green-900);
  background: rgba(255, 255, 255, .94);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 230px;
  gap: 8px;
}

.gallery-card,
.update-card {
  position: relative;
  overflow: hidden;
  padding: 0;
  color: var(--white);
  text-align: left;
  background: var(--green-900);
  cursor: zoom-in;
}

.gallery-card.wide {
  grid-column: span 2;
}

.gallery-card.tall {
  grid-row: span 2;
}

.gallery-card img,
.update-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .65s var(--ease), opacity .4s ease;
}

.gallery-card::after,
.update-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(8, 24, 17, .82), transparent 60%);
}

.gallery-card:hover img,
.update-card:hover img {
  transform: scale(1.045);
}

.gallery-card div,
.update-card div {
  position: absolute;
  inset: auto 0 0;
  z-index: 2;
  padding: 22px;
}

.gallery-card h3,
.update-card h3 {
  margin: 7px 0 0;
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 500;
}

.update-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.update-card {
  min-height: 360px;
}

.location-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}

.location-item {
  display: grid;
  grid-template-columns: 88px 1fr;
  align-items: center;
  min-height: 92px;
  padding: 20px 24px;
  background: var(--white);
  border: 1px solid var(--line);
  transition: border-color .25s ease, transform .25s ease;
}

.location-item:hover {
  transform: translateX(4px);
  border-color: var(--gold);
}

.location-item strong {
  color: var(--gold-dark);
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 500;
}

.location-item span {
  color: var(--green-900);
  font-size: 13px;
  font-weight: 650;
  line-height: 1.5;
}

.cta-panel {
  position: relative;
  overflow: hidden;
  padding: clamp(70px, 10vw, 130px) 24px;
  color: var(--white);
  text-align: center;
  background: var(--green-950);
}

.cta-panel::before {
  content: "V";
  position: absolute;
  inset: 50% auto auto 50%;
  color: rgba(203, 169, 109, .08);
  font-family: var(--serif);
  font-size: min(52vw, 620px);
  line-height: .7;
  transform: translate(-50%, -50%);
}

.cta-panel > div {
  position: relative;
  z-index: 2;
}

.cta-panel h2 {
  max-width: 800px;
  margin: 0 auto 20px;
  font-family: var(--serif);
  font-size: clamp(44px, 6vw, 78px);
  font-weight: 400;
  line-height: 1;
}

.cta-panel p {
  max-width: 620px;
  margin: 0 auto 32px;
  color: rgba(255, 255, 255, .62);
  line-height: 1.8;
}

.about-hero {
  min-height: 560px;
  display: grid;
  place-items: center;
  padding: 100px 24px;
  color: var(--white);
  text-align: center;
  background:
    linear-gradient(rgba(8, 24, 17, .85), rgba(8, 24, 17, .92)),
    url("assets/images/amor-entry-render.jpg") center / cover;
}

.about-hero h1 {
  max-width: 850px;
  margin: 0 auto;
  font-family: var(--serif);
  font-size: clamp(52px, 8vw, 94px);
  font-weight: 400;
  line-height: .96;
}

.about-hero p {
  max-width: 620px;
  margin: 28px auto 0;
  color: rgba(255, 255, 255, .65);
  line-height: 1.8;
}

.site-footer {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 44px;
  padding: 64px clamp(24px, 5vw, 72px) 24px;
  color: rgba(255, 255, 255, .55);
  background: #07130d;
}

.footer-brand img {
  width: 210px;
  border: 1px solid rgba(203, 169, 109, .14);
}

.footer-brand p,
.site-footer p {
  font-size: 12px;
  line-height: 1.7;
}

.site-footer h3 {
  margin: 0 0 20px;
  color: var(--gold);
  font-size: 10px;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.site-footer a,
.site-footer button {
  display: block;
  margin: 0 0 12px;
  padding: 0;
  color: rgba(255, 255, 255, .62);
  font-size: 12px;
  text-align: left;
  text-decoration: none;
}

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

.footer-bottom {
  grid-column: 1 / -1;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, .09);
  font-size: 10px;
  line-height: 1.6;
}

.floating-whatsapp {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 850;
  width: 68px;
  height: 68px;
  display: grid;
  place-items: center;
  color: var(--green-900);
  background: var(--gold);
  border: 4px solid rgba(255, 255, 255, .82);
  border-radius: 50%;
  box-shadow: 0 12px 38px rgba(8, 24, 17, .24);
  cursor: pointer;
  text-decoration: none;
  transition: transform .25s ease;
}

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

.floating-whatsapp span {
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.lightbox {
  width: min(1180px, calc(100vw - 36px));
  max-height: calc(100vh - 36px);
  padding: 0;
  color: var(--white);
  background: var(--green-950);
  border: 0;
  box-shadow: 0 30px 100px rgba(0, 0, 0, .45);
}

.lightbox::backdrop {
  background: rgba(3, 11, 7, .88);
  backdrop-filter: blur(8px);
}

.lightbox-body {
  display: grid;
  grid-template-columns: 1fr;
}

.lightbox-body img {
  width: 100%;
  max-height: 75vh;
  object-fit: contain;
  background: #fff;
}

.lightbox-copy {
  padding: 24px 28px 30px;
}

.lightbox-copy h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: 30px;
  font-weight: 500;
}

.lightbox-copy p {
  margin: 8px 0 16px;
  color: rgba(255, 255, 255, .58);
  font-size: 13px;
}

.lightbox-copy a {
  color: var(--gold);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .12em;
  text-decoration: none;
  text-transform: uppercase;
}

.lightbox-close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  width: 42px;
  height: 42px;
  color: var(--green-950);
  background: rgba(255, 255, 255, .92);
  border-radius: 50%;
  font-size: 26px;
  cursor: pointer;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .65s var(--ease), transform .65s var(--ease);
}

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

@media (max-width: 1050px) {
  .trust-grid,
  .process-grid,
  .amenity-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

@media (max-width: 820px) {
  .site-header {
    height: 68px;
  }

  .page {
    padding-top: 68px;
  }

  .menu-toggle {
    display: block;
  }

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

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

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

  .site-nav {
    position: fixed;
    inset: 68px 0 0;
    z-index: 1200;
    height: calc(100svh - 68px);
    display: none;
    align-content: start;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 24px;
    overflow-y: auto;
    background: rgba(255, 255, 255, .98);
    box-shadow: 0 22px 70px rgba(8, 24, 17, .18);
  }

  .site-nav.open {
    display: flex;
  }

  .site-nav button,
  .site-nav a {
    padding: 18px 4px;
    text-align: left;
    justify-content: flex-start;
    border-bottom: 1px solid var(--line);
    border-radius: 0;
  }

  .site-nav .nav-cta {
    margin: 18px 0 0;
    padding: 16px 20px;
    text-align: center;
    justify-content: center;
    border: 0;
    border-radius: 2px;
  }

  .hero {
    min-height: calc(100svh - 68px);
  }

  .hero-content {
    width: min(100% - 36px, 1180px);
    padding-bottom: 8vh;
  }

  .hero::after,
  .project-hero::after {
    background:
      linear-gradient(90deg, rgba(8, 24, 17, .9), rgba(8, 24, 17, .3)),
      linear-gradient(0deg, rgba(8, 24, 17, .9), transparent 70%);
  }

  .project-card-grid,
  .inventory-grid,
  .update-grid {
    grid-template-columns: 1fr;
  }

  .project-card {
    min-height: 470px;
  }

  .editorial-strip,
  .split,
  .plan-panel {
    grid-template-columns: 1fr;
  }

  .editorial-strip img {
    min-height: 420px;
  }

  .split.reverse .split-media {
    order: 0;
  }

  .split-media img {
    min-height: 380px;
  }

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

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

  .fact:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(255, 255, 255, .1);
  }

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

  .gallery-card.wide {
    grid-column: span 2;
  }

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

}

@media (max-width: 560px) {
  .brand strong {
    font-size: 19px;
  }

  .hero h1 {
    font-size: clamp(49px, 16vw, 72px);
  }

  .hero-copy {
    font-size: 14px;
  }

  .button-row .button {
    width: 100%;
  }

  .section {
    padding-inline: 20px;
  }

  .trust-grid,
  .process-grid,
  .amenity-grid,
  .inventory-grid.four,
  .gallery-grid,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .project-hero {
    min-height: 610px;
  }

  .project-hero-content {
    width: calc(100% - 36px);
    padding-bottom: 38px;
  }

  .project-hero h1 {
    font-size: 67px;
  }

  .project-hero-meta {
    display: grid;
  }

  .fact {
    min-height: 106px;
    padding: 20px;
  }

  .fact strong {
    font-size: 19px;
  }

  .gallery-card.wide {
    grid-column: auto;
  }

  .gallery-card.tall {
    grid-row: auto;
  }

  .gallery-grid {
    grid-auto-rows: 290px;
  }

  .footer-bottom {
    flex-direction: column;
  }

  .floating-whatsapp {
    right: 14px;
    bottom: 14px;
    width: 60px;
    height: 60px;
  }
}

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