*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--emerald-dark);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  font: inherit;
}

h1,
h2,
h3,
p,
figure,
dl,
dd {
  margin-top: 0;
}

h1,
h2 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.2;
}

h2 {
  margin-bottom: 24px;
  font-size: clamp(2.15rem, 5vw, 3.65rem);
  letter-spacing: -0.025em;
}

h2 em,
h1 em {
  color: var(--gold-bright);
  font-style: italic;
}

h3 {
  margin-bottom: 12px;
  font-size: 1.25rem;
  line-height: 1.45;
}

.container {
  width: min(calc(100% - 40px), var(--max-width));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 999;
  padding: 10px 16px;
  border-radius: 8px;
  background: var(--paper);
  color: var(--ink);
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  color: var(--gold-bright);
  font-size: 0.76rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  line-height: 1.4;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 34px;
  height: 1px;
  background: currentColor;
  content: "";
}

.btn {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 12px 23px;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  font-size: 0.92rem;
  font-weight: 600;
  line-height: 1.25;
  text-align: center;
  transition: transform 220ms var(--ease), box-shadow 220ms var(--ease), background 220ms var(--ease);
}

.btn:hover {
  transform: translateY(-2px);
}

.btn:focus-visible,
.main-nav a:focus-visible,
.scroll-cue:focus-visible,
.menu-toggle:focus-visible {
  outline: 3px solid var(--gold-bright);
  outline-offset: 4px;
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold-bright), var(--gold));
  box-shadow: var(--shadow-gold);
  color: #10231b;
}

.btn-gold:hover {
  background: linear-gradient(135deg, #eed79e, var(--gold-bright));
  box-shadow: 0 20px 50px -22px rgba(227, 198, 131, 0.9);
}

.btn-outline {
  border-color: rgba(255, 255, 255, 0.7);
  background: rgba(5, 26, 20, 0.2);
  color: #fff;
  backdrop-filter: blur(8px);
}

.btn-outline:hover {
  border-color: var(--gold-bright);
  background: rgba(5, 26, 20, 0.6);
}

.btn-large {
  min-height: 54px;
  padding-inline: 28px;
  font-size: 1rem;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: var(--header-height);
  border-bottom: 1px solid transparent;
  transition: background 250ms ease, border-color 250ms ease, box-shadow 250ms ease;
}

.site-header.is-scrolled {
  border-color: rgba(201, 168, 106, 0.16);
  background: rgba(5, 26, 20, 0.92);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(16px);
}

.header-inner {
  display: flex;
  height: 100%;
  align-items: center;
  gap: 28px;
}

.brand {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 10px;
  color: #fff;
  line-height: 1.05;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.brand-mark {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid var(--gold);
  border-radius: 50%;
  color: var(--gold-bright);
  font-family: var(--font-display);
  font-size: 1.1rem;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 400;
}

.brand small {
  margin-top: 5px;
  color: var(--gold-bright);
  font-size: 0.6rem;
  letter-spacing: 0.24em;
}

.main-nav {
  display: flex;
  flex: 1 1 auto;
  align-items: center;
  justify-content: center;
  gap: clamp(12px, 1.5vw, 25px);
}

.main-nav a {
  position: relative;
  padding-block: 8px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.main-nav a::after {
  position: absolute;
  right: 0;
  bottom: 2px;
  left: 0;
  height: 1px;
  background: var(--gold);
  content: "";
  transform: scaleX(0);
  transition: transform 180ms ease;
}

.main-nav a:hover::after,
.main-nav a.is-active::after {
  transform: scaleX(1);
}

.header-cta {
  flex: 0 0 auto;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  margin: 5px auto;
  background: #fff;
  transition: transform 200ms ease, opacity 200ms ease;
}

.hero {
  position: relative;
  display: grid;
  min-height: max(720px, 100svh);
  align-items: center;
  overflow: hidden;
  background:
    url("https://w.ladicdn.com/s1920x1080/5c95ebec2eedcd624d7c5874/the-emeral-river-park-3-20260730041151-eluzx.jpg")
    center / cover no-repeat;
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 26, 20, 0.88) 0%, rgba(5, 26, 20, 0.52) 43%, rgba(5, 26, 20, 0.04) 75%),
    linear-gradient(180deg, rgba(5, 26, 20, 0.55) 0%, transparent 30%, rgba(5, 26, 20, 0.2) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  padding-top: var(--header-height);
}

.hero-content > * {
  max-width: 650px;
}

.hero h1 {
  margin-bottom: 24px;
  color: #fff;
  font-size: clamp(3.15rem, 7vw, 5.3rem);
  letter-spacing: -0.035em;
}

.hero h1 em {
  display: block;
}

.hero-lead {
  max-width: 590px;
  margin-bottom: 32px;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1rem, 1.5vw, 1.13rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.scroll-cue {
  position: absolute;
  bottom: 28px;
  left: 50%;
  z-index: 2;
  display: grid;
  justify-items: center;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transform: translateX(-50%);
}

.scroll-cue i {
  position: relative;
  display: block;
  width: 1px;
  height: 34px;
  margin-top: 8px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.25);
}

.scroll-cue i::after {
  position: absolute;
  inset: 0 0 auto;
  height: 14px;
  background: var(--gold-bright);
  content: "";
  animation: scroll-cue 1.6s infinite ease-in-out;
}

@keyframes scroll-cue {
  from { transform: translateY(-18px); }
  to { transform: translateY(40px); }
}

.quick-facts {
  position: relative;
  z-index: 3;
  border-block: 1px solid var(--line);
  background: var(--emerald-darker);
}

.fact-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}

.fact-grid div {
  padding: 27px 20px;
  border-right: 1px solid var(--line);
  text-align: center;
}

.fact-grid div:last-child {
  border: 0;
}

.fact-grid strong,
.fact-grid span {
  display: block;
}

.fact-grid strong {
  color: var(--gold-bright);
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 400;
}

.fact-grid span {
  margin-top: 3px;
  color: var(--text-dim);
  font-size: 0.72rem;
  text-transform: uppercase;
}

.section {
  position: relative;
  padding: clamp(80px, 10vw, 140px) 0;
}

.section-dark {
  background:
    radial-gradient(circle at 85% 10%, rgba(29, 90, 75, 0.3), transparent 30%),
    linear-gradient(135deg, var(--emerald) 0%, var(--emerald-dark) 58%, var(--emerald-darker) 100%);
}

.section-paper {
  background:
    radial-gradient(circle at 15% 20%, rgba(201, 168, 106, 0.14), transparent 30%),
    var(--paper);
  color: var(--ink);
}

.section-heading {
  max-width: 900px;
  margin-bottom: 28px;
}

.section-heading .eyebrow {
  margin-bottom: 18px;
}

.section-heading-dark h2 {
  color: var(--ink);
}

.section-heading-dark .eyebrow {
  color: var(--gold-deep);
}

.section-intro {
  max-width: 980px;
  margin-bottom: 52px;
  color: var(--text-dim);
  font-size: 1.03rem;
}

.section-intro strong {
  color: var(--gold-bright);
}

.dark-copy {
  color: #4c5e55;
}

.dark-copy strong {
  color: var(--emerald);
}

.overview-layout,
.location-layout,
.pricing-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(360px, 0.8fr);
  align-items: start;
  gap: 36px;
}

.media-card {
  position: relative;
  overflow: hidden;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.media-card img {
  width: 100%;
  min-height: 480px;
  object-fit: cover;
  transition: transform 800ms var(--ease);
}

.media-card:hover img {
  transform: scale(1.025);
}

.media-card figcaption {
  position: absolute;
  right: 18px;
  bottom: 16px;
  left: 18px;
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  background: rgba(5, 26, 20, 0.78);
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.75rem;
  backdrop-filter: blur(10px);
}

.project-specs {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.035);
}

.project-specs dl {
  margin-bottom: 0;
}

.project-specs dl div {
  display: grid;
  grid-template-columns: 145px 1fr;
  gap: 18px;
  padding: 13px 20px;
  border-bottom: 1px solid rgba(201, 168, 106, 0.13);
}

.project-specs dl div:last-child {
  border: 0;
}

.project-specs dt {
  color: var(--text-dim);
  font-size: 0.78rem;
}

.project-specs dd {
  margin-bottom: 0;
  color: #fff;
  font-size: 0.86rem;
  font-weight: 500;
}

.cta-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin-top: 52px;
  padding: 30px 34px;
  border: 1px solid rgba(201, 168, 106, 0.38);
  border-radius: var(--radius);
  background: linear-gradient(110deg, rgba(201, 168, 106, 0.1), rgba(255, 255, 255, 0.03));
}

.cta-band .eyebrow {
  margin-bottom: 8px;
}

.cta-band h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2.6vw, 1.8rem);
  font-weight: 400;
}

.image-story {
  position: relative;
  display: grid;
  min-height: clamp(560px, 75vw, 820px);
  align-items: end;
  overflow: hidden;
}

.image-story > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image-story-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(5, 26, 20, 0.92), transparent 72%),
    linear-gradient(90deg, rgba(5, 26, 20, 0.42), transparent 60%);
}

.image-story-content {
  position: relative;
  z-index: 1;
  padding-bottom: clamp(60px, 8vw, 110px);
}

.image-story-content h2 {
  max-width: 800px;
  margin-bottom: 0;
  color: #fff;
}

.location-layout {
  align-items: stretch;
}

.media-card.light {
  border-color: rgba(20, 36, 30, 0.12);
  background: #fff;
}

.media-card.light img {
  height: 100%;
  min-height: 0;
  background: #fff;
  object-fit: contain;
}

.distance-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid rgba(20, 36, 30, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.55);
  overflow: hidden;
}

.distance-list div {
  padding: 20px;
  border-right: 1px solid rgba(20, 36, 30, 0.1);
  border-bottom: 1px solid rgba(20, 36, 30, 0.1);
}

.distance-list div:nth-child(even) {
  border-right: 0;
}

.distance-list div:nth-last-child(-n + 2) {
  border-bottom: 0;
}

.distance-list strong,
.distance-list span {
  display: block;
}

.distance-list strong {
  margin-bottom: 6px;
  color: var(--gold-deep);
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 400;
}

.distance-list span {
  color: #526158;
  font-size: 0.77rem;
  line-height: 1.5;
}

.amenity-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 52px;
}

.amenity-card {
  position: relative;
  min-height: 330px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.amenity-card-wide {
  grid-column: 1 / -1;
  min-height: 500px;
}

.amenity-card::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(5, 26, 20, 0.92), transparent 72%);
  content: "";
}

.amenity-card img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms var(--ease);
}

.amenity-card:hover img {
  transform: scale(1.04);
}

.amenity-card > div {
  position: absolute;
  right: 26px;
  bottom: 24px;
  left: 26px;
  z-index: 2;
}

.amenity-card span {
  color: var(--gold-bright);
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.amenity-card h3 {
  margin: 5px 0;
  color: #fff;
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.5vw, 2rem);
  font-weight: 400;
}

.amenity-card p {
  margin-bottom: 0;
  color: var(--text-dim);
  font-size: 0.84rem;
}

.amenity-columns {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.amenity-columns article {
  padding: 26px;
  border: 1px solid rgba(201, 168, 106, 0.2);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.035);
}

.amenity-columns h3 {
  color: var(--gold-bright);
  font-family: var(--font-display);
  font-weight: 400;
}

.amenity-columns ul {
  margin: 0;
  padding-left: 18px;
  color: var(--text-dim);
  font-size: 0.83rem;
}

.amenity-columns li + li {
  margin-top: 8px;
}

.details-panel {
  margin-top: 22px;
  border: 1px solid rgba(201, 168, 106, 0.22);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.03);
}

.details-panel summary {
  position: relative;
  padding: 18px 52px 18px 22px;
  color: var(--gold-bright);
  cursor: pointer;
  font-weight: 500;
  list-style: none;
}

.details-panel summary::-webkit-details-marker {
  display: none;
}

.details-panel summary::after {
  position: absolute;
  top: 50%;
  right: 22px;
  content: "+";
  font-size: 1.5rem;
  transform: translateY(-50%);
}

.details-panel[open] summary::after {
  content: "−";
}

.details-content {
  padding: 0 22px 20px;
  color: var(--text-dim);
}

.details-content p {
  margin-bottom: 0;
}

.full-amenity-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding-top: 8px;
}

.full-amenity-list h3 {
  color: var(--gold-bright);
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 400;
}

.full-amenity-list ol {
  margin: 0;
  padding-left: 22px;
  color: var(--text-dim);
  font-size: 0.76rem;
}

.full-amenity-list li + li {
  margin-top: 6px;
}

.center-action {
  margin-top: 40px;
  text-align: center;
}

.tower-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
  margin-bottom: 46px;
}

.tower-card {
  display: flex;
  min-height: 315px;
  flex-direction: column;
  padding: 24px;
  border: 1px solid rgba(20, 36, 30, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.58);
  transition: transform 250ms var(--ease), box-shadow 250ms var(--ease);
}

.tower-card:hover {
  box-shadow: 0 24px 50px -34px rgba(20, 36, 30, 0.55);
  transform: translateY(-5px);
}

.tower-card > span {
  color: var(--gold-deep);
  font-family: var(--font-display);
  font-size: 0.8rem;
}

.tower-card h3 {
  margin: 15px 0 10px;
  color: var(--emerald);
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 400;
}

.tower-card > p {
  flex: 1;
  color: #56635c;
  font-size: 0.78rem;
  line-height: 1.65;
}

.tower-card dl {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-bottom: 0;
  padding-top: 14px;
  border-top: 1px solid rgba(20, 36, 30, 0.1);
}

.tower-card dt {
  color: #728078;
  font-size: 0.65rem;
}

.tower-card dd {
  margin: 2px 0 0;
  color: var(--ink);
  font-weight: 600;
}

.plan-figure {
  margin-bottom: 0;
  padding: 16px;
  border: 1px solid rgba(20, 36, 30, 0.12);
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: var(--shadow);
}

.plan-figure img {
  width: 100%;
  border-radius: calc(var(--radius-lg) - 10px);
}

.plan-figure figcaption {
  padding: 14px 6px 0;
  color: #68756d;
  font-size: 0.78rem;
  text-align: center;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  overflow: hidden;
  margin-bottom: 42px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.product-grid article {
  padding: 26px 18px;
  border-right: 1px solid var(--line);
  text-align: center;
}

.product-grid article:last-child {
  border: 0;
}

.product-grid small,
.product-grid strong,
.product-grid span {
  display: block;
}

.product-grid small {
  margin-bottom: 7px;
  color: var(--text-dim);
}

.product-grid strong {
  color: var(--gold-bright);
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 400;
}

.product-grid span {
  margin-top: 8px;
  color: var(--text-dim);
  font-size: 0.7rem;
}

.product-visual {
  overflow: hidden;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.95);
}

.product-visual img {
  width: 100%;
  border-radius: calc(var(--radius) - 8px);
}

.pricing {
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 20%, rgba(29, 90, 75, 0.36), transparent 38%),
    var(--emerald-darker);
}

.pricing .section-heading {
  margin-inline: auto;
  text-align: center;
}

.pricing .eyebrow {
  justify-content: center;
}

.pricing .eyebrow::after {
  width: 34px;
  height: 1px;
  background: currentColor;
  content: "";
}

.price-hero {
  margin-bottom: 28px;
  text-align: center;
}

.price-hero > span,
.price-hero strong,
.price-hero p {
  display: block;
}

.price-hero > span {
  color: var(--text-dim);
}

.price-hero strong {
  margin-block: 6px;
  color: var(--gold-bright);
  font-family: var(--font-display);
  font-size: clamp(4rem, 10vw, 7.5rem);
  font-weight: 400;
  line-height: 1;
}

.price-hero strong small {
  font-family: var(--font-body);
  font-size: 0.2em;
  font-weight: 500;
  letter-spacing: 0;
}

.price-hero p {
  color: var(--text-dim);
  font-size: 0.8rem;
}

.benefit-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 58px;
}

.benefit-pills span {
  padding: 9px 17px;
  border: 1px solid rgba(201, 168, 106, 0.38);
  border-radius: 999px;
  color: var(--cream-soft);
  font-size: 0.75rem;
}

.price-list {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.price-list > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 19px 22px;
  border-bottom: 1px solid rgba(201, 168, 106, 0.14);
  background: rgba(255, 255, 255, 0.025);
}

.price-list > div:last-child {
  border: 0;
}

.price-list span {
  color: #fff;
  font-weight: 500;
}

.price-list span small {
  display: block;
  color: var(--text-dim);
  font-weight: 400;
}

.price-list strong {
  color: var(--gold-bright);
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 400;
  text-align: right;
}

.consult-card {
  padding: 34px;
  border: 1px solid rgba(201, 168, 106, 0.4);
  border-radius: var(--radius);
  background: linear-gradient(140deg, rgba(201, 168, 106, 0.13), rgba(255, 255, 255, 0.035));
  box-shadow: var(--shadow);
}

.consult-card h3 {
  color: #fff;
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 400;
}

.consult-card > p:not(.eyebrow) {
  margin-bottom: 28px;
  color: var(--text-dim);
  font-size: 0.88rem;
}

.price-note,
.legal-note {
  margin: 30px auto 0;
  color: var(--text-dim);
  font-size: 0.75rem;
  text-align: center;
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.value-grid article {
  padding: 30px;
  border: 1px solid rgba(20, 36, 30, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.56);
}

.value-grid span {
  color: var(--gold-deep);
  font-family: var(--font-display);
}

.value-grid h3 {
  margin-top: 36px;
  color: var(--emerald);
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 400;
}

.value-grid p {
  margin-bottom: 0;
  color: #5c6962;
  font-size: 0.84rem;
}

.partner-section {
  background: linear-gradient(135deg, var(--emerald), var(--emerald-deep));
}

.partner-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.partner-grid div {
  padding: 27px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.partner-grid div:nth-child(3n) {
  border-right: 0;
}

.partner-grid div:nth-last-child(-n + 3) {
  border-bottom: 0;
}

.partner-grid small,
.partner-grid strong {
  display: block;
}

.partner-grid small {
  margin-bottom: 8px;
  color: var(--text-dim);
}

.partner-grid strong {
  color: var(--gold-bright);
  font-family: var(--font-display);
  font-weight: 400;
}

.legal-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.legal-card {
  display: grid;
  grid-template-columns: 170px 1fr;
  align-items: center;
  gap: 24px;
  overflow: hidden;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.035);
}

.legal-card img {
  width: 170px;
  aspect-ratio: 0.707;
  border: 1px solid rgba(201, 168, 106, 0.22);
  border-radius: var(--radius-sm);
  background: #fff;
  object-fit: contain;
}

.legal-card small {
  color: var(--gold);
  font-size: 0.7rem;
}

.legal-card h3 {
  margin-top: 8px;
  color: #fff;
  font-family: var(--font-display);
  font-weight: 400;
}

.legal-card p {
  margin-bottom: 0;
  color: var(--text-dim);
  font-size: 0.78rem;
}

.final-cta {
  position: relative;
  display: grid;
  min-height: 600px;
  place-items: center;
  overflow: hidden;
}

.final-cta > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.final-overlay {
  position: absolute;
  inset: 0;
  background: rgba(5, 26, 20, 0.76);
}

.final-content {
  position: relative;
  z-index: 1;
  max-width: 830px;
  padding-block: 90px;
  text-align: center;
}

.final-content .eyebrow {
  justify-content: center;
}

.final-content .eyebrow::after {
  width: 34px;
  height: 1px;
  background: currentColor;
  content: "";
}

.final-content p:not(.eyebrow) {
  max-width: 670px;
  margin: 0 auto 30px;
  color: var(--text-dim);
}

.site-footer {
  padding: 35px 0 90px;
  border-top: 1px solid var(--line);
  background: var(--emerald-darker);
}

.footer-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 40px;
}

.footer-inner p {
  margin: 0;
  color: var(--text-dim);
  font-size: 0.74rem;
  text-align: center;
}

.footer-inner > a {
  color: var(--gold-bright);
  font-size: 0.78rem;
}

.mobile-chat-bar {
  display: none;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms var(--ease), transform 700ms var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 1120px) {
  .header-inner {
    gap: 18px;
  }

  .main-nav {
    gap: 12px;
  }

  .main-nav a {
    font-size: 0.66rem;
  }

  .header-cta {
    padding-inline: 17px;
  }

  .tower-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .tower-card {
    min-height: 280px;
  }
}

@media (max-width: 900px) {
  :root {
    --header-height: 72px;
  }

  body {
    padding-bottom: 66px;
  }

  .header-cta {
    display: none;
  }

  .menu-toggle {
    display: block;
    margin-left: auto;
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .main-nav {
    position: fixed;
    top: var(--header-height);
    right: 0;
    bottom: 0;
    left: 0;
    display: grid;
    align-content: center;
    justify-items: center;
    gap: 14px;
    padding: 30px;
    background: rgba(5, 26, 20, 0.98);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition: opacity 220ms ease, transform 220ms ease;
  }

  .main-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .main-nav a {
    padding: 7px 20px;
    font-size: 1rem;
  }

  .overview-layout,
  .location-layout,
  .pricing-layout {
    grid-template-columns: 1fr;
  }

  .amenity-columns {
    grid-template-columns: 1fr;
  }

  .full-amenity-list {
    grid-template-columns: 1fr;
  }

  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .product-grid article {
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }

  .product-grid article:nth-child(even) {
    border-right: 0;
  }

  .product-grid article:last-child {
    grid-column: 1 / -1;
    border-bottom: 0;
  }

  .partner-grid {
    grid-template-columns: 1fr 1fr;
  }

  .partner-grid div:nth-child(3n) {
    border-right: 1px solid var(--line);
  }

  .partner-grid div:nth-child(even) {
    border-right: 0;
  }

  .partner-grid div:nth-last-child(-n + 3) {
    border-bottom: 1px solid var(--line);
  }

  .partner-grid div:nth-last-child(-n + 2) {
    border-bottom: 0;
  }

  .legal-grid {
    grid-template-columns: 1fr;
  }

  .mobile-chat-bar {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 120;
    display: block;
    padding: 8px 12px;
    border-top: 1px solid rgba(227, 198, 131, 0.35);
    background: rgba(5, 26, 20, 0.96);
    backdrop-filter: blur(14px);
  }

  .mobile-chat-bar a {
    display: flex;
    min-height: 48px;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--gold-bright), var(--gold));
    color: var(--ink);
    font-size: 0.86rem;
    font-weight: 700;
  }
}

@media (max-width: 680px) {
  body {
    font-size: 15px;
  }

  .container {
    width: min(calc(100% - 28px), var(--max-width));
  }

  .hero {
    min-height: max(680px, 100svh);
    background-position: 64% center;
  }

  .hero-shade {
    background: linear-gradient(90deg, rgba(5, 26, 20, 0.9), rgba(5, 26, 20, 0.38)),
      linear-gradient(0deg, rgba(5, 26, 20, 0.38), transparent);
  }

  .hero-content {
    padding-top: 50px;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .scroll-cue {
    display: none;
  }

  .fact-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .fact-grid div {
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }

  .fact-grid div:nth-child(even) {
    border-right: 0;
  }

  .fact-grid div:last-child {
    grid-column: 1 / -1;
    border-bottom: 0;
  }

  .project-specs dl div {
    grid-template-columns: 1fr;
    gap: 3px;
  }

  .cta-band {
    align-items: stretch;
    flex-direction: column;
    padding: 25px;
  }

  .amenity-gallery {
    grid-template-columns: 1fr;
  }

  .amenity-card-wide {
    grid-column: auto;
  }

  .amenity-card,
  .amenity-card-wide {
    min-height: 370px;
  }

  .distance-list {
    grid-template-columns: 1fr;
  }

  .distance-list div,
  .distance-list div:nth-child(even),
  .distance-list div:nth-last-child(-n + 2) {
    border-right: 0;
    border-bottom: 1px solid rgba(20, 36, 30, 0.1);
  }

  .distance-list div:last-child {
    border-bottom: 0;
  }

  .tower-grid {
    grid-template-columns: 1fr;
  }

  .tower-card {
    min-height: auto;
  }

  .product-grid {
    grid-template-columns: 1fr;
  }

  .product-grid article,
  .product-grid article:nth-child(even),
  .product-grid article:last-child {
    grid-column: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .product-grid article:last-child {
    border-bottom: 0;
  }

  .price-list > div {
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
  }

  .price-list strong {
    text-align: left;
  }

  .value-grid,
  .partner-grid {
    grid-template-columns: 1fr;
  }

  .partner-grid div,
  .partner-grid div:nth-child(3n),
  .partner-grid div:nth-child(even),
  .partner-grid div:nth-last-child(-n + 3),
  .partner-grid div:nth-last-child(-n + 2) {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .partner-grid div:last-child {
    border-bottom: 0;
  }

  .legal-card {
    grid-template-columns: 95px 1fr;
    gap: 17px;
  }

  .legal-card img {
    width: 95px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 20px;
  }

  .footer-inner p {
    max-width: 480px;
  }
}

.cf-gate {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.cf-gate.is-open {
  display: flex;
}

.cf-gate__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(5, 26, 20, 0.72);
  backdrop-filter: blur(6px);
}

.cf-gate__panel {
  position: relative;
  z-index: 1;
  width: min(100%, 420px);
  padding: 28px 24px 22px;
  border: 1px solid rgba(201, 168, 106, 0.35);
  border-radius: var(--radius);
  background: linear-gradient(160deg, #0e4236, #07241d);
  box-shadow: var(--shadow);
  text-align: center;
}

.cf-gate__title {
  margin: 0 0 10px;
  color: #fff;
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 400;
}

.cf-gate__desc {
  margin: 0 0 18px;
  color: var(--text-dim);
  font-size: 0.88rem;
}

.cf-gate__widget {
  display: grid;
  min-height: 70px;
  place-items: center;
  margin-bottom: 14px;
}

.cf-gate__error {
  display: none;
  margin: 0 0 12px;
  color: #ffb4a8;
  font-size: 0.8rem;
}

.cf-gate__error.is-visible {
  display: block;
}

.cf-gate__close {
  min-height: 40px;
  padding: 8px 16px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  background: transparent;
  color: #fff;
  cursor: pointer;
}

.cf-gate__close:hover {
  border-color: var(--gold-bright);
  color: var(--gold-bright);
}

@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;
  }
}
