/* Self-hosted fonts — served from same CDN, preloaded in <head> */
@font-face {
  font-family: 'Fraunces';
  font-style: normal;
  font-weight: 300 600;
  font-display: swap;
  src: url('../assets/fonts/fraunces-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Instrument Sans';
  font-style: normal;
  font-weight: 400 600;
  font-display: swap;
  src: url('../assets/fonts/instrument-sans-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* Metric-adjusted fallbacks to minimise CLS on font swap */
@font-face {
  font-family: 'Fraunces Fallback';
  src: local('Georgia');
  size-adjust: 94%;
  ascent-override: 88%;
  descent-override: 23%;
  line-gap-override: 0%;
}
@font-face {
  font-family: 'Instrument Sans Fallback';
  src: local('Arial');
  size-adjust: 99%;
  ascent-override: 90%;
  descent-override: 23%;
  line-gap-override: 0%;
}

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

:root {
  --ink: #0d1f17;
  --ink-2: #1a2e24;
  --cream: #f6f0e4;
  --cream-2: #ece2cd;
  --paper: #fbf7ee;
  --bronze: #b6743a;
  --bronze-2: #8a4f1f;
  --moss: #3a5a43;
  --rule: rgba(13, 31, 23, 0.14);
  --rule-dark: rgba(246, 240, 228, 0.14);
  --shadow: 0 30px 80px -40px rgba(13, 31, 23, 0.35);
  --maxw: 1360px;
  --nav-offset: clamp(5.5rem, 9vw, 6.75rem);
  --heading-space: clamp(0.9rem, 1.8vw, 1.35rem);
  --ease: cubic-bezier(.2, .7, .2, 1);
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  overflow-x: clip;
}

body {
  margin: 0;
  font-family: "Instrument Sans", "Instrument Sans Fallback", ui-sans-serif, system-ui, sans-serif;
  color: var(--ink);
  background: var(--paper);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
}

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

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

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

h1, h2, h3, h4 {
  font-family: "Fraunces", "Fraunces Fallback", Georgia, serif;
  font-weight: 400;
  letter-spacing: -0.015em;
  line-height: 1.05;
}

h1, h2, h3 {
  margin: 0;
}

h4 {
  margin: 0;
}

h1 {
  font-size: clamp(2.6rem, 7vw, 6.2rem);
  font-variation-settings: "opsz" 144;
}

h2 {
  font-size: clamp(2rem, 4.6vw, 3.9rem);
  font-variation-settings: "opsz" 120;
}

h3 {
  font-size: clamp(1.35rem, 2.2vw, 2rem);
  font-variation-settings: "opsz" 48;
}

p {
  margin: 0;
}

section[id],
header[id] {
  scroll-margin-top: calc(var(--nav-offset) + 1rem);
}

.container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 clamp(1.2rem, 4vw, 3rem);
}

.eyebrow {
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--bronze-2);
  font-weight: 500;
}

.hero-copy,
.location-copy,
.cta-copy {
  font-size: 1.05rem;
  color: #3c4a42;
}

.hero-copy {
  max-width: 62ch;
}

p strong,
li strong {
  font-weight: 600;
  color: var(--ink);
}

p em,
li em {
  font-style: italic;
  color: var(--bronze-2);
}

.dev p strong,
.highlights p strong,
.related-projects p strong {
  color: inherit;
}

.dev p em,
.highlights p em {
  color: var(--bronze);
}

.inline-link {
  color: var(--bronze-2);
  text-decoration-line: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
  text-decoration-color: currentColor;
  transition: color .3s var(--ease), text-decoration-color .3s var(--ease);
}

.inline-link:hover,
.inline-link:focus-visible {
  color: var(--ink);
}

.dev .inline-link {
  color: var(--bronze);
}
.rera .inline-link {
  color: var(--bronze-2);
}

.dev .inline-link:hover,
.dev .inline-link:focus-visible {
  color: var(--cream);
}

.hero-grid > .reveal:first-child,
.overview-grid-detailed > .reveal:first-child,
.plan-copy,
.loc-grid > .reveal,
.dev-grid > .reveal,
.contact-copy-block,
.cta .container {
  display: grid;
  align-content: start;
  gap: var(--heading-space);
}

.delay-1 { transition-delay: .08s; }
.delay-2 { transition-delay: .16s; }
.delay-3 { transition-delay: .24s; }
.delay-4 { transition-delay: .32s; }
.delay-5 { transition-delay: .40s; }

.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  border-bottom: 1px solid var(--rule);
  backdrop-filter: blur(14px);
  background: rgba(251, 247, 238, 0.78);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: var(--nav-offset);
  padding: 1rem clamp(1.2rem, 4vw, 3rem);
  max-width: var(--maxw);
  margin: 0 auto;
}

.brand {
  width: clamp(140px, 18vw, 190px);
  flex: 0 0 auto;
}

.brand img {
  width: 100%;
}

.nav ul {
  display: none;
  flex-direction: column;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  padding: 1rem 1.2rem 1.4rem;
  margin: 0;
  list-style: none;
  background: rgba(251, 247, 238, 0.96);
  border-bottom: 1px solid var(--rule);
  gap: 0.9rem;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
}

.nav ul li {
  min-width: 0;
}

.nav ul a {
  display: inline-flex;
  align-items: center;
  min-height: 2.4rem;
  padding: 0.45rem 0.2rem;
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: background .3s var(--ease), color .3s var(--ease), border-color .3s var(--ease);
}

.nav ul a:hover,
.nav ul a:focus-visible {
  color: var(--bronze-2);
}

.nav ul.is-open {
  display: flex;
}

.nav-toggle {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid var(--rule);
  border-radius: 999px;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
}

.nav-toggle span {
  width: 16px;
  height: 2px;
  margin: 0 auto;
  background: currentColor;
  transition: transform .3s var(--ease), opacity .3s var(--ease);
}

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

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

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

.nav a.btn,
.btn-primary,
.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: transform .4s var(--ease), background .4s var(--ease), color .4s var(--ease), border-color .4s var(--ease);
}

.nav a.btn {
  padding: 0.7rem 1.25rem;
  background: var(--ink);
  color: var(--cream);
}

.nav a.btn:hover,
.btn-primary:hover {
  background: var(--bronze-2);
  transform: translateY(-2px);
}

.hero {
  position: relative;
  min-height: 92svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: calc(var(--nav-offset) + clamp(2rem, 5vw, 4rem)) 0 2.5rem;
  overflow: hidden;
  background: radial-gradient(120% 80% at 80% 10%, #f0e6cf 0%, var(--paper) 55%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(1px 1px at 20% 30%, rgba(13, 31, 23, .08) 1px, transparent 1px),
    radial-gradient(1px 1px at 70% 60%, rgba(13, 31, 23, .06) 1px, transparent 1px);
  background-size: 24px 24px, 36px 36px;
  pointer-events: none;
}

.hero-grid,
.overview-grid,
.loc-grid,
.dev-grid,
.contact-grid,
.plans-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  position: relative;
  z-index: 1;
}

.hero h1 {
  margin-top: 1rem;
}

.hero-tagline {
  max-width: 26ch;
  font-family: "Fraunces", "Fraunces Fallback", Georgia, serif;
  font-size: clamp(1.05rem, 1.45vw, 1.4rem);
  font-style: italic;
  font-weight: 300;
  line-height: 1.2;
  color: var(--bronze-2);
}

.hero-stamp {
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #5f6c64;
}

.hero-stamp time {
  font-weight: 600;
  color: var(--ink);
}

.cta h2 em {
  font-style: italic;
  color: var(--bronze-2);
  font-weight: 300;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem 2.1rem;
  margin-top: 2rem;
  padding-top: 1.4rem;
  border-top: 1px solid var(--rule);
  font-size: 0.88rem;
}

.hero-meta span {
  display: block;
  margin-top: 0.1rem;
  font-family: "Fraunces", "Fraunces Fallback", Georgia, serif;
  font-size: 1.45rem;
  color: var(--ink);
}

.hero-visual {
  position: relative;
}

.hero-img,
.map-ph,
.plan-card {
  position: relative;
  overflow: hidden;
  border-radius: 6px;
  box-shadow: var(--shadow);
  background: #d9cfb8;
}

.hero-img {
  aspect-ratio: 3 / 4;
}

.hero-img img,
.map-ph img,
.plan-card img,
.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.map-ph img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-position: center center;
  transform: none;
}

.hero-tag {
  position: absolute;
  left: 1rem;
  top: 1rem;
  padding: 0.55rem 0.9rem;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink);
  background: rgba(251, 247, 238, 0.92);
  border: 1px solid var(--rule);
}

.marquee {
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  background: var(--ink);
  color: var(--cream);
  overflow: hidden;
  padding: 1.1rem 0;
  font-family: "Fraunces", "Fraunces Fallback", Georgia, serif;
  font-size: 1.6rem;
  font-style: italic;
  font-weight: 300;
}

.marquee-track {
  display: flex;
  gap: 2.2rem;
  white-space: nowrap;
  animation: slide 38s linear infinite;
  width: fit-content;
  min-width: 100%;
}

.marquee span {
  display: inline-flex;
  align-items: center;
  gap: 2.2rem;
}

.marquee span::after {
  content: "*";
  color: var(--bronze);
  font-size: 1rem;
  margin-left: 2.2rem;
}

@keyframes slide {
  to { transform: translateX(-50%); }
}

section {
  padding: clamp(4rem, 8vw, 7rem) 0;
  position: relative;
}

.section-head {
  display: grid;
  gap: var(--heading-space);
  max-width: 900px;
  margin-bottom: 3rem;
}

.section-head p {
  color: #3c4a42;
  font-size: 1.05rem;
}

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

.overview-grid-detailed {
  align-items: start;
}

.overview .lead {
  font-family: "Fraunces", "Fraunces Fallback", Georgia, serif;
  font-size: clamp(1.35rem, 2vw, 1.7rem);
  line-height: 1.35;
  font-weight: 300;
  color: var(--ink-2);
}

.overview p,
.plan-copy p {
  color: #3c4a42;
}

.overview-facts {
  display: grid;
  border-top: 1px solid var(--rule);
}

.fact-item {
  display: grid;
  gap: 0.45rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--rule);
}

.fact-key {
  font-size: 0.76rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--bronze-2);
}

.fact-value {
  color: var(--ink);
  font-size: 0.97rem;
}

.stats {
  background: var(--cream);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  padding: 2.2rem 0;
}

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

.stat {
  text-align: left;
  border-left: 1px solid var(--rule);
  padding-left: 1rem;
  min-width: 0;
}

.stat .num {
  font-family: "Fraunces", "Fraunces Fallback", Georgia, serif;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1;
  color: var(--ink);
}

.stat .num sup {
  font-size: .45em;
  color: var(--bronze-2);
}

.stat .lab {
  font-size: 0.76rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-top: 0.7rem;
  color: #4b5a51;
}

.highlights,
.dev {
  background: var(--ink);
  color: var(--cream);
}

.highlights::before {
  content: "";
  position: absolute;
  top: -30%;
  right: -10%;
  width: 60%;
  aspect-ratio: 1;
  background: radial-gradient(circle, rgba(182, 116, 58, .22), transparent 60%);
  filter: blur(10px);
}

.highlights .eyebrow,
.dev .eyebrow {
  color: var(--bronze);
}

.highlights h2,
.dev h2,
.contact h2 {
  color: inherit;
}

.highlights .section-head p,
.dev-copy,
.dev-panel-copy {
  color: rgba(246, 240, 228, 0.78);
}

.usp-list {
  display: grid;
  grid-template-columns: 1fr;
  counter-reset: list;
}

.usp {
  counter-increment: list;
  display: flex;
  gap: 1.5rem;
  align-items: baseline;
  padding: 1.8rem 0;
  border-top: 1px solid var(--rule-dark);
}

.usp::before {
  content: counter(list, decimal-leading-zero);
  min-width: 2ch;
  font-family: "Fraunces", "Fraunces Fallback", Georgia, serif;
  font-size: 0.9rem;
  color: var(--bronze);
}

.usp h3 {
  font-family: "Instrument Sans", ui-sans-serif, sans-serif;
  font-size: 1.15rem;
  font-weight: 500;
  line-height: 1.4;
  color: var(--cream);
}

.config-grid {
  display: grid;
  grid-template-columns: 1fr;
  border-top: 1px solid var(--rule);
}

.config {
  padding: 2rem 0;
  border-bottom: 1px solid var(--rule);
  display: grid;
  align-content: start;
  gap: 0.85rem;
}

.config-image {
  aspect-ratio: 1 / 1;
  border-radius: 4px;
  border: 1px solid rgba(13, 31, 23, 0.08);
  padding: clamp(1rem, 2.5vw, 1.35rem);
  background: linear-gradient(180deg, rgba(246, 240, 228, 0.92), rgba(255, 255, 255, 0.98));
  object-fit: contain;
  object-position: center;
}

.config .tag {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--bronze-2);
}

.config h3 {
  margin: 0;
}

.area {
  font-family: "Fraunces", "Fraunces Fallback", Georgia, serif;
  font-size: 1.2rem;
  font-style: italic;
  color: #3c4a42;
}

.config-copy {
  margin: 0;
  font-size: 0.92rem;
  color: #4b5a51;
}

.config-notes {
  display: grid;
  gap: 1rem;
  margin-top: 2rem;
  padding: 1.6rem clamp(1rem, 3vw, 1.6rem);
  border: 1px solid rgba(13, 31, 23, 0.1);
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(246, 240, 228, 0.72), rgba(251, 247, 238, 0.96));
}

.config-notes p {
  color: #3c4a42;
}

.price {
  margin: 0;
  padding-top: 1.2rem;
  border-top: 1px dashed var(--rule);
  font-family: "Fraunces", "Fraunces Fallback", Georgia, serif;
  font-size: 1.4rem;
}

.price span {
  font-size: 0.75rem;
  color: #6b7870;
  font-style: italic;
}

.note {
  font-size: 0.78rem;
  color: #6b7870;
  margin: 0;
  font-style: italic;
}

.plans {
  background: linear-gradient(180deg, var(--paper) 0%, var(--cream) 100%);
}

.plans-grid {
  align-items: start;
}

.plan-card {
  aspect-ratio: 1 / 1;
  margin: 0;
}

.plan-card figcaption {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  padding: 0.65rem 0.9rem;
  border-radius: 999px;
  background: rgba(251, 247, 238, 0.92);
  color: var(--ink);
  font-size: 0.82rem;
  letter-spacing: 0.04em;
}

.plan-copy .btn-primary {
  margin-top: 1rem;
}

.plan-features {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.75rem;
}

.plan-feature {
  display: grid;
  gap: 0.35rem;
  padding: 1rem 1.05rem;
  border: 1px solid rgba(13, 31, 23, 0.1);
  border-radius: 16px;
  background: rgba(251, 247, 238, 0.8);
}

.plan-feature-label {
  font-size: 0.74rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--bronze-2);
}

.plan-feature-value {
  font-size: 0.98rem;
  line-height: 1.5;
  color: var(--ink);
}

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

.map-ph {
  aspect-ratio: 1 / 1;
  margin: 0;
}

.loc-list {
  list-style: none;
  padding: 0;
  margin: 2rem 0 0;
}

.loc-list li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--rule);
  font-size: 0.95rem;
}

.loc-list li span:last-child {
  color: var(--bronze-2);
  font-family: "Fraunces", "Fraunces Fallback", Georgia, serif;
  font-style: italic;
}

.amenities-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.8rem 2rem;
  margin-top: 2rem;
}

.amenity {
  display: flex;
  gap: 0.8rem;
  align-items: center;
  padding: 1.1rem 0;
  border-top: 1px solid var(--rule);
  font-size: 0.92rem;
}

.amenity::before {
  content: "";
  width: 6px;
  height: 6px;
  background: var(--bronze);
  border-radius: 50%;
  flex: none;
}

.amenity-content {
  display: grid;
  gap: 1rem;
  margin-top: 2rem;
}

.amenity-panel {
  padding: 1.4rem 1.3rem;
  border: 1px solid rgba(13, 31, 23, 0.08);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.68);
  box-shadow: 0 16px 40px -36px rgba(13, 31, 23, 0.3);
}

.amenity-panel h3 {
  margin-bottom: 0.8rem;
}

.amenity-panel p {
  margin: 0;
  color: #3c4a42;
}

.gallery {
  background: var(--cream-2);
}

.gal-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: 120px;
  gap: 14px;
}

.gallery-card {
  margin: 0;
  overflow: hidden;
  border-radius: 3px;
  background: #c9bfa6;
}

.gallery-card-large {
  grid-column: span 3;
  grid-row: span 3;
}

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

.gallery-card-banner {
  grid-column: span 6;
  grid-row: span 2;
}

.gallery-copy {
  max-width: 72ch;
  margin-top: 1.5rem;
  color: #3c4a42;
}

.faqs {
  background: #fffdfa;
}

.faq-list {
  display: grid;
  gap: 1rem;
}

.faq-item {
  border: 1px solid rgba(13, 31, 23, 0.1);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.88);
  overflow: hidden;
}

.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.15rem 1.25rem;
  border: 0;
  background: transparent;
  color: var(--ink);
  text-align: left;
  cursor: pointer;
}

.faq-title {
  font-weight: 600;
  line-height: 1.45;
}

.faq-icon {
  flex: none;
  font-size: 1.3rem;
  color: var(--bronze-2);
}

.faq-a {
  padding: 0 1.25rem 1.25rem;
}

.faq-ai {
  color: #3c4a42;
  line-height: 1.75;
}

.dev-grid {
  align-items: center;
}

.dev-panel {
  display: grid;
  gap: 1.5rem;
  align-content: center;
  min-height: 420px;
  padding: clamp(1.5rem, 4vw, 3rem);
  border: 1px solid rgba(246, 240, 228, 0.16);
  border-radius: 10px;
  background:
    radial-gradient(circle at top right, rgba(182, 116, 58, 0.24), transparent 35%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02));
}

.dev-wordmark {
  width: min(280px, 100%);
}

.cta {
  background: linear-gradient(180deg, var(--cream) 0%, var(--paper) 100%);
  text-align: center;
}

.cta h2 {
  max-width: 16ch;
  margin: 0 auto;
}

.cta .row {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 0.5rem;
}

.btn-primary,
.btn-ghost,
.submit-btn {
  padding: 1rem 2rem;
}

.btn-primary {
  border: 0;
  background: var(--ink);
  color: var(--cream);
  cursor: pointer;
}

.btn-ghost {
  border: 1px solid var(--ink);
}

.btn-ghost:hover {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--cream);
}

.contact {
  background: var(--paper);
  border-top: 1px solid var(--rule);
}

.contact-grid {
  align-items: start;
}

.contact-copy-block p {
  color: #3c4a42;
}

.contact-points {
  padding-left: 1.1rem;
  margin: 2rem 0 0;
  color: #3c4a42;
}

.contact-points li + li {
  margin-top: 0.7rem;
}

.contact-card {
  padding: clamp(1.4rem, 3vw, 2rem);
  background: #fff;
  border: 1px solid rgba(13, 31, 23, 0.08);
  border-radius: 10px;
  box-shadow: 0 20px 60px -45px rgba(13, 31, 23, 0.35);
}

.contact-form {
  display: grid;
  gap: 1rem;
}

.form-field {
  display: grid;
  gap: 0.45rem;
}

.form-field label,
.interest-group legend {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 0.95rem 1rem;
  border: 1px solid rgba(13, 31, 23, 0.14);
  border-radius: 12px;
  background: #fcfaf5;
  color: var(--ink);
}

.form-field textarea {
  resize: vertical;
}

.interest-group {
  margin: 0;
  padding: 0;
  border: 0;
}

.interest-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.7rem;
  margin-top: 0.7rem;
}

.interest-grid label {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.8rem 0.9rem;
  border: 1px solid rgba(13, 31, 23, 0.1);
  border-radius: 12px;
  background: #fcfaf5;
  font-size: 0.92rem;
}

.field-error {
  font-size: 0.82rem;
  color: #b42318;
}

.form-status {
  padding: 0.95rem 1rem;
  border-radius: 12px;
  font-size: 0.92rem;
}

.form-status.success {
  background: rgba(34, 197, 94, 0.12);
  color: #166534;
}

.form-status.error {
  background: rgba(239, 68, 68, 0.12);
  color: #991b1b;
}

.submit-btn {
  width: 100%;
}

.submit-btn:disabled {
  opacity: 0.55;
  cursor: not-allowed;
  transform: none;
}

.rera {
  background: var(--paper);
  padding: 3rem 0;
  border-top: 1px solid var(--rule);
  font-size: 0.82rem;
  color: #4b5a51;
}

.rera .container {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: space-between;
  align-items: center;
}

.rera strong,
.rera code {
  color: var(--ink);
}

.rera code {
  font-family: "Fraunces", "Fraunces Fallback", Georgia, serif;
  font-size: 1rem;
}

.related-projects {
  background: linear-gradient(180deg, var(--cream) 0%, var(--paper) 100%);
  border-top: 1px solid var(--rule);
}

.related-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.related-card {
  display: grid;
  gap: 0.65rem;
  padding: 1.35rem;
  border: 1px solid rgba(13, 31, 23, 0.1);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 18px 44px -36px rgba(13, 31, 23, 0.28);
  transition: transform .35s var(--ease), border-color .35s var(--ease), background .35s var(--ease);
}

.related-card:hover,
.related-card:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(138, 79, 31, 0.25);
  background: rgba(255, 255, 255, 0.94);
}

.related-card strong {
  font-family: "Fraunces", "Fraunces Fallback", Georgia, serif;
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--ink);
}

.related-card span:last-child {
  color: #3c4a42;
}

.related-label {
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--bronze-2);
}

footer {
  background: var(--ink);
  color: rgba(246, 240, 228, 0.68);
  padding: 3rem 0;
  font-size: 0.82rem;
}

.footer-grid {
  display: grid;
  gap: 1.6rem;
}

.footer-brand {
  display: inline-block;
}

.footer-copy {
  margin-top: 0.9rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.4rem;
}

.footer-links a:hover {
  color: var(--bronze);
}

.footer-note {
  max-width: 72ch;
}

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

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

@media (min-width: 700px) {
  .amenities-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .related-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 900px) {
  .nav-inner {
    gap: 0.75rem;
  }

  .nav-toggle {
    display: none;
  }

  .nav ul {
    display: flex;
    position: static;
    flex-direction: row;
    padding: 0;
    border: 0;
    background: transparent;
    align-items: center;
    gap: 0.3rem;
  }

  .nav ul li {
    position: relative;
  }

  .nav ul li + li::before {
    content: "";
    position: absolute;
    left: -0.16rem;
    top: 50%;
    width: 1px;
    height: 0.9rem;
    background: rgba(13, 31, 23, 0.14);
    transform: translateY(-50%);
  }

  .nav ul a {
    padding: 0.5rem 0.68rem;
    background: rgba(255, 255, 255, 0.18);
    border: 1px solid transparent;
    font-size: 0.76rem;
    letter-spacing: 0.05em;
  }

  .nav ul a:hover,
  .nav ul a:focus-visible {
    color: var(--ink);
    background: rgba(255, 255, 255, 0.52);
    border-color: rgba(13, 31, 23, 0.1);
  }

  .hero-grid {
    grid-template-columns: 1.15fr 0.85fr;
    align-items: center;
  }

  .hero-tagline {
    white-space: nowrap;
  }

  .overview-grid,
  .plans-grid,
  .dev-grid,
  .contact-grid {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }

  .plan-card {
    position: sticky;
    top: calc(var(--nav-offset) + 1.5rem);
    align-self: start;
  }

  .config-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .config {
    padding: 2.5rem;
    border-right: 1px solid var(--rule);
  }

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

  .footer-grid {
    grid-template-columns: 1.2fr .9fr 1.2fr;
    align-items: start;
  }
}

@media (min-width: 1000px) {
  .loc-grid {
    grid-template-columns: 1.1fr 1fr;
    gap: 5rem;
    align-items: start;
  }

  .map-ph {
    position: sticky;
    top: calc(var(--nav-offset) + 1.5rem);
    align-self: start;
  }

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

  .amenity-content {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 899px) {
  .nav a.btn {
    display: none;
  }
}

@media (max-width: 760px) {
  .stats-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
  }

  .stat:last-child {
    grid-column: span 2;
  }
}

@media (max-width: 700px) {
  .marquee-track,
  .marquee span {
    gap: 1.4rem;
  }

  .marquee span::after {
    margin-left: 1.4rem;
  }

  .gal-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 140px;
  }

  .gallery-card,
  .gallery-card-large,
  .gallery-card-wide,
  .gallery-card-banner {
    grid-column: span 2;
    grid-row: span 1;
  }

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

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

  .plan-features {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
  }

  .marquee-track {
    animation: none;
  }

  html {
    scroll-behavior: auto;
  }
}
