:root {
  --bg: #3c3d19;
  --bg-soft: #474923;
  --surface: rgba(60, 61, 25, 0.78);
  --surface-strong: #3c3d19;
  --surface-light: #e0dac1;
  --text: #e0dac1;
  --muted: rgba(224, 218, 193, 0.78);
  --ink: #41431c;
  --aqua: #dd9514;
  --teal: #978650;
  --sand: #978650;
  --sand-soft: #e0dac1;
  --lagoon: #41431c;
  --gold: #978650;
  --line: rgba(224, 218, 193, 0.14);
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.28);
  --radius-xl: 34px;
  --radius-lg: 26px;
  --radius-md: 18px;
  --container: min(1180px, calc(100vw - 3rem));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Plus Jakarta Sans", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top, rgba(221, 149, 20, 0.12), transparent 26%),
    radial-gradient(circle at 0% 30%, rgba(151, 134, 80, 0.12), transparent 26%),
    linear-gradient(180deg, #353613 0%, #3c3d19 20%, #41431c 50%, #32330f 100%);
}

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

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

button {
  font: inherit;
}

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

.page-shell::before,
.page-shell::after {
  content: "";
  position: fixed;
  z-index: -1;
  width: 28rem;
  height: 28rem;
  border-radius: 50%;
  filter: blur(28px);
  pointer-events: none;
}

.page-shell::before {
  top: -12rem;
  right: -10rem;
  background: rgba(221, 149, 20, 0.14);
}

.page-shell::after {
  bottom: 8rem;
  left: -12rem;
  background: rgba(151, 134, 80, 0.16);
}

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

.site-header {
  position: fixed;
  top: 1rem;
  left: 50%;
  transform: translateX(-50%);
  width: var(--container);
  padding: 0.9rem 1.2rem 0.9rem 1.4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border-radius: 999px;
  border: 1px solid rgba(224, 218, 193, 0.12);
  background: rgba(60, 61, 25, 0.76);
  backdrop-filter: blur(16px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.18);
  z-index: 30;
}

.brand {
  display: inline-flex;
  align-items: center;
  line-height: 1;
}

.brand img {
  display: block;
  width: auto;
  height: 3.2rem;
  max-width: min(14rem, 32vw);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.3rem;
  color: var(--surface-light);
  font-size: 0.92rem;
}

.site-nav a {
  position: relative;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.35rem;
  width: 100%;
  height: 1px;
  background: rgba(221, 149, 20, 0.88);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 220ms ease;
}

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

.nav-toggle {
  display: none;
  width: 3rem;
  height: 3rem;
  border: 0;
  background: transparent;
  color: #fff;
  border-radius: 50%;
}

.nav-toggle span {
  display: block;
  width: 1.4rem;
  height: 2px;
  margin: 0.28rem auto;
  background: currentColor;
  transition: transform 220ms ease, opacity 220ms ease;
}

.button,
.button-ghost,
.button-small,
.text-link {
  transition: transform 220ms ease, background 220ms ease, border-color 220ms ease, color 220ms ease;
}

.button,
.button-ghost,
.button-small {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  min-height: 3.35rem;
  padding: 0 1.45rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
}

.button {
  color: var(--surface-light);
  background: linear-gradient(135deg, var(--gold) 0%, #7f7041 100%);
  box-shadow: 0 16px 42px rgba(151, 134, 80, 0.28);
}

.button-ghost,
.button-small {
  color: var(--surface-light);
  border-color: rgba(224, 218, 193, 0.28);
  background: rgba(255, 255, 255, 0.06);
}

.button-small {
  min-height: 2.7rem;
  padding: 0 1.1rem;
}

.button:hover,
.button:focus-visible,
.button-ghost:hover,
.button-ghost:focus-visible,
.button-small:hover,
.button-small:focus-visible,
.gallery-item:hover,
.gallery-item:focus-visible {
  transform: translateY(-2px);
}

.hero {
  position: relative;
  min-height: 100svh;
  padding: 8rem 0 3rem;
  display: grid;
  align-items: end;
}

.hero-backdrop,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-backdrop {
  overflow: hidden;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-position: center;
  background-size: cover;
  opacity: 0;
  transform: scale(1.06);
  transition: opacity 900ms ease, transform 7s ease;
}

.hero-slide.is-active {
  opacity: 1;
  transform: scale(1);
}

.hero-overlay {
  background:
    linear-gradient(180deg, rgba(60, 61, 25, 0.08) 0%, rgba(60, 61, 25, 0.58) 60%, rgba(50, 51, 15, 0.92) 100%),
    linear-gradient(115deg, rgba(65, 67, 28, 0.42) 8%, rgba(60, 61, 25, 0.2) 55%, rgba(221, 149, 20, 0.12) 100%);
}

.hero-orbit {
  position: absolute;
  border: 1px solid rgba(221, 149, 20, 0.18);
  border-radius: 50%;
  z-index: 1;
}

.hero-orbit-a {
  width: 18rem;
  height: 18rem;
  right: 10%;
  top: 18%;
}

.hero-orbit-b {
  width: 32rem;
  height: 32rem;
  right: -4rem;
  top: 8%;
}

.hero-content,
.hero-card {
  position: relative;
  z-index: 2;
}

.hero-content {
  width: var(--container);
  margin: 0 auto;
  padding-bottom: 9rem;
}

.eyebrow {
  margin: 0 0 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  font-size: 0.76rem;
  font-weight: 800;
  color: var(--gold);
}

.hero h1,
.section h2,
.section h3 {
  margin: 0;
  font-family: "Marcellus", serif;
  line-height: 1.04;
  font-weight: 400;
}

.hero h1 {
  max-width: 855px;
  font-size: clamp(2.5rem, 4.2vw, 4.35rem);
  color: var(--surface-light);
  text-wrap: balance;
}

.hero-copy {
  max-width: 855px;
  margin: 1.9rem 0 0;
  font-size: 1.08rem;
  line-height: 1.86;
  color: rgba(224, 218, 193, 0.88);
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.hero-card {
  width: min(100% - 3rem, 72rem);
  margin: -4.5rem auto 0;
  padding: 1.2rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  border: 1px solid rgba(224, 218, 193, 0.12);
  border-radius: var(--radius-xl);
  background: rgba(60, 61, 25, 0.82);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
}

.hero-card > div {
  padding: 1rem 1.1rem;
  border-radius: calc(var(--radius-xl) - 12px);
  background: linear-gradient(180deg, rgba(65, 67, 28, 0.92), rgba(60, 61, 25, 0.92));
}

.hero-card span {
  display: block;
  margin-bottom: 0.5rem;
  font-family: "Marcellus", serif;
  font-size: 2rem;
  color: var(--aqua);
}

.hero-card p,
.section p,
.feature-list,
.footer-links {
  line-height: 1.8;
}

.hero-card p,
.section p {
  margin: 0;
  color: var(--muted);
}

.section h2 + p,
.section h2 + .feature-list,
.cta-copy h2 + p,
.masterplan-copy h2 + p,
.location-copy h2 + p,
.nubo-copy h2 + p,
.spotlight-copy h2 + p,
.copy-panel h2 + p,
.concept-card p + p {
  margin-top: 1.15rem;
}

.section {
  padding: 6.5rem 0;
}

.concept-section,
.nubo-section,
.cta-section {
  background: linear-gradient(180deg, rgba(224, 218, 193, 0.98), rgba(224, 218, 193, 0.92));
}

.section-heading {
  max-width: 48rem;
  margin-bottom: 2rem;
}

.section-heading.centered {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.section h2 {
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  color: var(--surface-light);
}

.concept-grid,
.split-section,
.masterplan-grid,
.nubo-grid,
.location-stack,
.footer-shell {
  width: var(--container);
  margin: 0 auto;
}

.concept-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr 0.78fr;
  gap: 1.5rem;
  align-items: stretch;
}

.concept-section h2,
.concept-section p,
.nubo-section h2,
.nubo-section p,
.cta-section h2,
.cta-section p {
  color: var(--ink);
}

.concept-section .eyebrow,
.nubo-section .eyebrow,
.cta-section .eyebrow {
  color: var(--gold);
}

.concept-card,
.concept-side,
.copy-panel,
.masterplan-copy,
.location-copy,
.cta-card,
.site-footer,
.spotlight-shell,
.nubo-copy {
  border: 1px solid var(--line);
}

.concept-card,
.concept-side,
.copy-panel,
.masterplan-copy,
.location-copy,
.nubo-copy {
  padding: 2rem;
  border-radius: var(--radius-lg);
  background: rgba(60, 61, 25, 0.72);
  box-shadow: var(--shadow);
}

.concept-section .concept-card,
.concept-section .concept-side {
  background: rgba(65, 67, 28, 0.06);
  border-color: rgba(65, 67, 28, 0.12);
}

.concept-side {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.concept-pill {
  padding: 1rem 1.1rem;
  border-radius: 999px;
  color: var(--surface-light);
  text-align: center;
  background: linear-gradient(135deg, rgba(151, 134, 80, 0.28), rgba(221, 149, 20, 0.18));
}

.concept-section .concept-pill {
  color: var(--ink);
  background: linear-gradient(135deg, rgba(151, 134, 80, 0.22), rgba(221, 149, 20, 0.16));
}

.split-section,
.spotlight-shell,
.masterplan-grid,
.nubo-grid,
.location-stack {
  display: grid;
  gap: 1.5rem;
  align-items: center;
}

.split-section,
.spotlight-shell,
.nubo-grid,
.location-stack {
  grid-template-columns: 1fr 1fr;
}

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

.media-panel img,
.spotlight-media img,
.masterplan-visual img,
.map-image-card img {
  width: 100%;
  min-height: 100%;
  object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
}

.copy-panel {
  background: linear-gradient(180deg, rgba(65, 67, 28, 0.94), rgba(60, 61, 25, 0.94));
}

.feature-list {
  margin: 1.4rem 0 0;
  padding-left: 1.2rem;
  color: var(--surface-light);
}

.amenities-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.2rem;
}

.amenity-card {
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--surface-light);
  border: 1px solid rgba(65, 67, 28, 0.12);
  box-shadow: var(--shadow);
}

.amenity-card img {
  width: 100%;
  height: 16rem;
  object-fit: cover;
}

.amenity-card div {
  padding: 1.35rem;
}

.amenity-card h3 {
  margin-bottom: 0.7rem;
  font-size: 1.45rem;
  color: var(--ink);
}

.amenity-card p {
  color: rgba(65, 67, 28, 0.82);
}

.spotlight-shell {
  width: var(--container);
  margin: 0 auto;
  padding: 1.5rem;
  border-radius: 2rem;
  background: linear-gradient(135deg, rgba(60, 61, 25, 0.94), rgba(65, 67, 28, 0.94));
  box-shadow: var(--shadow);
}

.spotlight-copy {
  padding: 1rem 0.8rem 1rem 0.5rem;
}

.masterplan-grid {
  grid-template-columns: 1fr;
  align-items: center;
}

.masterplan-section .masterplan-copy,
.location-section .location-copy {
  background: var(--surface-light);
  border-color: rgba(65, 67, 28, 0.12);
}

.masterplan-section h2,
.masterplan-section p,
.location-section h2,
.location-section p {
  color: var(--ink);
}

.masterplan-section .eyebrow,
.location-section .eyebrow {
  color: var(--gold);
}

.masterplan-tags,
.location-tags,
.nubo-points {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.5rem;
}

.masterplan-tags span,
.location-tags span,
.nubo-points span {
  padding: 0.65rem 0.95rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(224, 218, 193, 0.14);
  color: var(--surface-light);
}

.masterplan-section .masterplan-tags span,
.location-section .location-tags span {
  background: rgba(65, 67, 28, 0.06);
  border-color: rgba(65, 67, 28, 0.14);
  color: var(--ink);
}

.nubo-actions {
  margin-top: 1.75rem;
}

.nubo-section .nubo-copy {
  background: rgba(65, 67, 28, 0.08);
  border-color: rgba(65, 67, 28, 0.12);
}

.nubo-section .nubo-points span {
  background: rgba(65, 67, 28, 0.08);
  border-color: rgba(65, 67, 28, 0.14);
  color: var(--ink);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.masterplan-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 1.25rem;
}

.masterplan-visual img {
  width: 100%;
  max-width: 100%;
}

.gallery-item {
  padding: 0;
  border: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: transparent;
  cursor: pointer;
  box-shadow: var(--shadow);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  min-height: 15rem;
  object-fit: cover;
}

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

.gallery-item.tall img {
  min-height: 31rem;
}

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

.nubo-stack {
  position: relative;
  min-height: 38rem;
}

.nubo-main,
.nubo-accent {
  position: absolute;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
}

.nubo-main {
  inset: 0 6rem 5rem 0;
  width: auto;
  height: calc(100% - 5rem);
  object-fit: cover;
}

.nubo-accent {
  right: 0;
  bottom: 0;
  width: 48%;
  height: 48%;
  object-fit: cover;
  border: 8px solid rgba(60, 61, 25, 0.94);
}

.map-image-card {
  position: relative;
  padding-top: 1.25rem;
}

.cta-card {
  width: var(--container);
  margin: 0 auto;
  padding: 2.2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  border-radius: var(--radius-xl);
  background:
    linear-gradient(135deg, rgba(224, 218, 193, 0.1), rgba(221, 149, 20, 0.12)),
    rgba(60, 61, 25, 0.88);
  box-shadow: var(--shadow);
}

.cta-section .cta-card {
  background:
    linear-gradient(135deg, rgba(151, 134, 80, 0.16), rgba(221, 149, 20, 0.12)),
    rgba(255, 255, 255, 0.22);
  border-color: rgba(65, 67, 28, 0.12);
}

.cta-copy {
  max-width: 42rem;
}

.cta-section h2 {
  font-size: clamp(1.65rem, 3vw, 2.65rem);
}

.site-footer {
  margin-top: 2rem;
  padding: 3rem 0 3.5rem;
  border-top: 1px solid rgba(224, 218, 193, 0.1);
  background: rgba(50, 51, 15, 0.92);
}

.footer-shell {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 2rem;
}

.footer-logo {
  width: 10rem;
  margin-bottom: 1.1rem;
}

.footer-socials {
  display: flex;
  gap: 0.8rem;
  margin-top: 1.35rem;
}

.footer-socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.8rem;
  height: 2.8rem;
  border-radius: 50%;
  border: 1px solid rgba(224, 218, 193, 0.18);
  color: var(--surface-light);
}

.footer-socials svg,
.wa-icon svg {
  width: 1.2rem;
  height: 1.2rem;
  fill: currentColor;
}

.footer-links {
  display: grid;
  align-content: start;
  justify-items: start;
  gap: 0.8rem;
  padding-top: 0.4rem;
}

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

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

.lightbox {
  position: fixed;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 2rem;
  background: rgba(2, 10, 12, 0.84);
  opacity: 0;
  pointer-events: none;
  transition: opacity 220ms ease;
  z-index: 60;
}

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

.lightbox figure {
  width: min(78rem, 100%);
  margin: 0;
}

.lightbox img {
  width: 100%;
  max-height: 78svh;
  object-fit: contain;
  border-radius: var(--radius-lg);
}

.lightbox figcaption {
  margin-top: 1rem;
  text-align: center;
  color: var(--surface-light);
}

.lightbox-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 3rem;
  height: 3rem;
  border: 0;
  border-radius: 50%;
  color: #fff;
  font-size: 1.8rem;
  background: rgba(255, 255, 255, 0.12);
  cursor: pointer;
}

@media (max-width: 1080px) {
  .concept-grid,
  .amenities-grid,
  .gallery-grid,
  .masterplan-grid,
  .split-section,
  .spotlight-shell,
  .nubo-grid,
  .location-stack,
  .footer-shell,
  .cta-card {
    grid-template-columns: 1fr;
  }

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

  .gallery-item.tall,
  .gallery-item.wide {
    grid-column: auto;
    grid-row: auto;
  }

  .gallery-item.tall img {
    min-height: 15rem;
  }

  .nubo-stack {
    min-height: 32rem;
  }
}

@media (max-width: 820px) {
  .site-header {
    padding: 0.8rem 1rem;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 0.8rem);
    right: 0;
    left: 0;
    padding: 1rem;
    display: grid;
    gap: 0.85rem;
    border-radius: 1.5rem;
    background: rgba(60, 61, 25, 0.96);
    border: 1px solid rgba(224, 218, 193, 0.12);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-0.4rem);
    transition: opacity 220ms ease, transform 220ms ease;
  }

  .site-header.is-open .site-nav {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-header.is-open .nav-toggle span:first-child {
    transform: translateY(6px) rotate(45deg);
  }

  .site-header.is-open .nav-toggle span:last-child {
    transform: translateY(-6px) rotate(-45deg);
  }

  .hero {
    padding-top: 7rem;
  }

  .hero-content {
    padding-bottom: 7rem;
  }

  .hero h1 {
    max-width: none;
  }

  .hero-orbit {
    display: none;
  }

  .cta-card {
    align-items: flex-start;
  }
}

@media (max-width: 640px) {
  :root {
    --container: min(100vw - 2rem, 100rem);
  }

  .section {
    padding: 5rem 0;
  }

  .hero-card {
    width: min(100% - 1.5rem, 72rem);
  }

  .concept-card,
  .concept-side,
  .copy-panel,
  .masterplan-copy,
  .location-copy,
  .nubo-copy,
  .cta-card,
  .spotlight-shell {
    padding: 1.35rem;
  }

  .amenity-card img {
    height: 13rem;
  }

  .nubo-stack {
    min-height: 24rem;
  }

  .nubo-main {
    inset: 0 2.5rem 3.5rem 0;
    height: calc(100% - 3.5rem);
  }

  .nubo-accent {
    width: 52%;
    height: 44%;
  }

  .cta-card {
    flex-direction: column;
    align-items: flex-start;
  }

  .cta-actions {
    width: 100%;
  }

  .cta-actions .button {
    width: 100%;
  }
}
