/* Rise With 9 — The Trilight Residences
   Dark luxury theme: midnight + champagne gold
   Fonts: Italiana (headings) + Outfit (body) via Google Fonts */

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

:root {
  --primary: #1a1a2e;
  --primary-light: #252545;
  --primary-dark: #0f0f1e;
  --accent: #d4a843;
  --accent-dark: #b8922e;
  --accent-glow: rgba(212, 168, 67, 0.15);
  --white: #ffffff;
  --off-white: #f5f3ef;
  --text: #e8e4dd;
  --text-muted: #a8a4a0;
  --text-dark: #2a2a3e;
  --border: rgba(212, 168, 67, 0.18);
  --border-light: rgba(255, 255, 255, 0.08);
  --shadow: 0 30px 80px -30px rgba(0, 0, 0, 0.45);
  --shadow-sm: 0 4px 20px rgba(0, 0, 0, 0.2);
  --maxw: 1320px;
  --nav-h: 72px;
  --ease: cubic-bezier(.2, .7, .2, 1);
  --heading-gap: clamp(0.8rem, 1.6vw, 1.25rem);
}

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

body {
  margin: 0;
  font-family: "Outfit", ui-sans-serif, system-ui, -apple-system, sans-serif;
  color: var(--text);
  background: var(--primary);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
}

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

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

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

h1, h2, h3, h4 {
  font-family: "Italiana", Georgia, serif;
  font-weight: 400;
  letter-spacing: 0.02em;
  line-height: 1.1;
  margin: 0;
}

h1 { font-size: clamp(2.6rem, 7vw, 5.8rem); }
h2 { font-size: clamp(2rem, 4.5vw, 3.6rem); }
h3 { font-size: clamp(1.3rem, 2.4vw, 2rem); }
h4 { font-size: clamp(1.1rem, 1.6vw, 1.35rem); }

p { margin: 0; }

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

/* ---------- Utilities ---------- */

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

.eyebrow {
  font-family: "Outfit", sans-serif;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
}

.section-head {
  text-align: center;
  max-width: 780px;
  margin: 0 auto clamp(2.5rem, 5vw, 4rem);
  display: grid;
  gap: var(--heading-gap);
}

.section-head p:not(.eyebrow) {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 60ch;
  margin: 0 auto;
}

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

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

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

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

.page-updated {
  margin: 0.6rem 0 1rem;
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.4;
}

.page-updated time {
  font-weight: 600;
  color: var(--accent);
}

/* ---------- Staging banner ---------- */

.staging-banner {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 0.5rem 1rem;
  background: #dc2626;
  color: #fff;
  text-align: center;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.05em;
}

.has-staging-banner .site-nav {
  top: 34px;
}

/* ---------- Navigation ---------- */

.site-nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  border-bottom: 1px solid var(--border-light);
  backdrop-filter: blur(18px);
  background: rgba(26, 26, 46, 0.85);
}

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

.nav-logo {
  flex: 0 0 auto;
}

.nav-logo img {
  width: clamp(120px, 16vw, 160px);
  height: auto;
}

.nav-menu {
  display: none;
  flex-direction: column;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  padding: 1rem 1.2rem 1.5rem;
  margin: 0;
  list-style: none;
  background: rgba(26, 26, 46, 0.97);
  border-bottom: 1px solid var(--border);
  gap: 0.2rem;
}

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

.nav-menu a {
  display: block;
  padding: 0.6rem 0.8rem;
  font-size: 0.88rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-radius: 8px;
  transition: background .3s var(--ease), color .3s var(--ease);
}

.nav-menu a:hover,
.nav-menu a:focus-visible,
.nav-menu a.is-active {
  color: var(--accent);
  background: rgba(212, 168, 67, 0.08);
}

.btn-nav-cta {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  padding: 0.6rem 1.4rem !important;
  background: var(--accent);
  color: var(--primary) !important;
  font-weight: 600 !important;
  border-radius: 999px;
  letter-spacing: 0.06em;
  transition: background .3s var(--ease), transform .3s var(--ease);
}

.btn-nav-cta:hover,
.btn-nav-cta:focus-visible {
  background: var(--accent-dark) !important;
  color: var(--primary) !important;
  transform: translateY(-1px);
}

.nav-toggle {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: transparent;
  cursor: pointer;
  color: var(--text);
}

.nav-toggle-icon,
.nav-toggle-icon::before,
.nav-toggle-icon::after {
  display: block;
  width: 18px;
  height: 2px;
  background: currentColor;
  transition: transform .3s var(--ease), opacity .3s var(--ease);
}

.nav-toggle-icon {
  position: relative;
}

.nav-toggle-icon::before,
.nav-toggle-icon::after {
  content: "";
  position: absolute;
  left: 0;
}

.nav-toggle-icon::before { transform: translateY(-6px); }
.nav-toggle-icon::after { transform: translateY(6px); }

.nav-toggle[aria-expanded="true"] .nav-toggle-icon {
  background: transparent;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-icon::before {
  transform: rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-icon::after {
  transform: rotate(-45deg);
}

/* ---------- Hero (Homepage) ---------- */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: calc(var(--nav-h) + 3rem) 0 4rem;
  background:
    radial-gradient(ellipse at 30% 20%, rgba(212, 168, 67, 0.08) 0%, transparent 50%),
    linear-gradient(180deg, var(--primary-dark) 0%, var(--primary) 60%);
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 200px;
  background: linear-gradient(to top, var(--primary), transparent);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-content {
  display: grid;
  gap: var(--heading-gap);
}

.hero-tagline {
  font-family: "Italiana", Georgia, serif;
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  color: var(--accent);
  letter-spacing: 0.06em;
}

.hero-copy {
  max-width: 64ch;
  font-size: 1.05rem;
  color: var(--text-muted);
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem 2.5rem;
  margin-top: 0.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}

.hero-meta > div {
  display: flex;
  flex-direction: column;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.hero-meta > div span {
  font-size: 1.35rem;
  font-family: "Italiana", Georgia, serif;
  color: var(--white);
  letter-spacing: 0;
  text-transform: none;
  margin-top: 0.25rem;
}

.hero-visual {
  position: relative;
}

.hero-img {
  margin: 0;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}

.hero-img img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.hero-tag {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  padding: 0.5rem 1rem;
  background: rgba(26, 26, 46, 0.88);
  backdrop-filter: blur(8px);
  color: var(--accent);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 999px;
  border: 1px solid var(--border);
}

/* ---------- Hero Inner (Subpages) ---------- */

.inner-page {
  padding-top: var(--nav-h);
}

.hero-inner {
  padding: clamp(3rem, 8vw, 6rem) 0 clamp(2rem, 5vw, 3.5rem);
  background:
    radial-gradient(ellipse at 20% 50%, rgba(212, 168, 67, 0.06) 0%, transparent 50%),
    var(--primary-dark);
  border-bottom: 1px solid var(--border);
  text-align: center;
}

.hero-inner .container {
  display: grid;
  gap: var(--heading-gap);
  max-width: 860px;
}

.hero-inner h1 {
  font-size: clamp(2.2rem, 5.5vw, 4.2rem);
}

.hero-inner p {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 60ch;
  margin: 0 auto;
}

/* ---------- Sections ---------- */

.section {
  padding: clamp(3.5rem, 8vw, 6rem) 0;
}

.section-alt {
  background:
    radial-gradient(ellipse at 80% 40%, rgba(212, 168, 67, 0.04), transparent 60%),
    var(--primary-dark);
}

.section-light {
  background: var(--off-white);
  color: var(--text-dark);
}

.section-light .eyebrow {
  color: var(--accent-dark);
}

.section-light .section-head p:not(.eyebrow) {
  color: #5a5a6e;
}

.section-light strong {
  color: var(--primary);
}

.section-light em {
  color: var(--accent-dark);
}

/* ---------- Marquee ---------- */

.marquee {
  padding: 1.2rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
  background: var(--primary-dark);
}

.marquee-track {
  display: flex;
  gap: 3rem;
  white-space: nowrap;
  animation: marquee 30s linear infinite;
  width: max-content;
}

.marquee-track span {
  font-family: "Italiana", Georgia, serif;
  font-size: clamp(1rem, 2vw, 1.3rem);
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 3rem;
}

.marquee-track span::after {
  content: "\2022";
  color: var(--accent);
  font-size: 0.6em;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ---------- Stats ---------- */

.stats {
  padding: clamp(2.5rem, 5vw, 4rem) 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 2rem;
  text-align: center;
}

.stat .num {
  font-family: "Italiana", Georgia, serif;
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  color: var(--white);
  line-height: 1;
}

.stat .num sup {
  font-size: 0.45em;
  color: var(--accent);
}

.stat .lab {
  font-size: 0.82rem;
  color: var(--text-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 0.5rem;
}

/* ---------- Overview Grid ---------- */

.overview-grid {
  display: grid;
  gap: 3rem;
}

.overview-text {
  display: grid;
  gap: var(--heading-gap);
  font-size: 1.05rem;
  color: var(--text-muted);
}

.overview-text .lead {
  font-size: 1.1rem;
  color: var(--text);
}

.overview-facts {
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.02);
}

.fact-item {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem 1.25rem;
  border-bottom: 1px solid var(--border);
}

.fact-item:last-child { border-bottom: none; }

.fact-key {
  font-size: 0.88rem;
  color: var(--text-muted);
  flex-shrink: 0;
}

.fact-value {
  font-size: 0.88rem;
  color: var(--white);
  text-align: right;
  font-weight: 500;
}

/* ---------- USP / Highlights ---------- */

.usp-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.usp-card {
  padding: 2rem;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.02);
  transition: border-color .4s var(--ease), background .4s var(--ease);
}

.usp-card:hover {
  border-color: var(--accent);
  background: var(--accent-glow);
}

.usp-card h3 {
  font-size: 1.15rem;
  margin-bottom: 0.75rem;
  color: var(--white);
}

.usp-card p {
  font-size: 0.95rem;
  color: var(--text-muted);
}

/* ---------- Pricing Table ---------- */

.pricing-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border: 1px solid var(--border);
  border-radius: 16px;
}

.pricing-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.92rem;
  min-width: 640px;
}

.pricing-table th,
.pricing-table td {
  padding: 1rem 1.25rem;
  text-align: left;
  border-bottom: 1px solid var(--border);
}

.pricing-table thead th {
  background: rgba(212, 168, 67, 0.1);
  color: var(--accent);
  font-family: "Outfit", sans-serif;
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.pricing-table tbody tr:last-child td { border-bottom: none; }

.pricing-table tbody tr:hover {
  background: rgba(212, 168, 67, 0.05);
}

.pricing-table td {
  color: var(--text);
}

.pricing-table .price-col {
  color: var(--accent);
  font-weight: 600;
  font-size: 1rem;
}

/* ---------- Pricing cards (responsive alt) ---------- */

.pricing-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.pricing-card {
  padding: 2rem;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.02);
}

.pricing-card h3 {
  color: var(--accent);
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.pricing-card .price {
  font-family: "Italiana", Georgia, serif;
  font-size: 1.8rem;
  color: var(--white);
  margin: 0.75rem 0;
}

.pricing-card .details {
  font-size: 0.9rem;
  color: var(--text-muted);
  display: grid;
  gap: 0.4rem;
}

/* ---------- Extra charges ---------- */

.charges-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1rem;
}

.charge-item {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.25rem;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.02);
}

.charge-item .charge-label { color: var(--text-muted); font-size: 0.9rem; }
.charge-item .charge-value { color: var(--white); font-weight: 500; font-size: 0.9rem; }

/* ---------- Floor Plans ---------- */

.plans-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.plan-card {
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.02);
  transition: border-color .4s var(--ease);
}

.plan-card:hover {
  border-color: var(--accent);
}

.plan-card img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: contain;
  background: var(--off-white);
  padding: 1rem;
}

.plan-card-body {
  padding: 1.25rem 1.5rem;
}

.plan-card-body h3 {
  font-size: 1.2rem;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.plan-card-body p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* ---------- Master Plan ---------- */

.master-plan-wrap {
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
}

.master-plan-wrap img {
  width: 100%;
}

/* ---------- Gallery ---------- */

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.5rem;
}

.gallery-item {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border);
  transition: border-color .4s var(--ease), transform .4s var(--ease);
}

.gallery-item:hover {
  border-color: var(--accent);
  transform: translateY(-3px);
}

.gallery-item img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
}

/* ---------- Amenities ---------- */

.amenity-categories {
  display: grid;
  gap: 3rem;
}

.amenity-category h3 {
  font-size: clamp(1.3rem, 2.4vw, 1.8rem);
  color: var(--accent);
  margin-bottom: 1.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--border);
}

.amenity-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1rem;
}

.amenity-item {
  padding: 1.25rem 1.5rem;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.02);
  font-size: 0.95rem;
  color: var(--text);
  transition: border-color .4s var(--ease), background .4s var(--ease);
}

.amenity-item:hover {
  border-color: var(--accent);
  background: var(--accent-glow);
}

.amenity-item strong {
  display: block;
  color: var(--white);
  margin-bottom: 0.3rem;
}

/* ---------- Location ---------- */

.location-grid {
  display: grid;
  gap: 3rem;
}

.location-text {
  display: grid;
  gap: var(--heading-gap);
  font-size: 1.05rem;
  color: var(--text-muted);
}

.location-map {
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
}

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

.landmarks-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.landmark-group {
  padding: 1.5rem 2rem;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.02);
}

.landmark-group h4 {
  color: var(--accent);
  margin-bottom: 1rem;
  font-family: "Outfit", sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.landmark-group ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.6rem;
}

.landmark-group li {
  font-size: 0.92rem;
  color: var(--text);
  padding-left: 1.2rem;
  position: relative;
}

.landmark-group li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
}

/* ---------- Reviews ---------- */

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.review-card {
  padding: 2rem;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.02);
}

.review-card .stars {
  color: var(--accent);
  font-size: 1.1rem;
  margin-bottom: 1rem;
  letter-spacing: 0.1em;
}

.review-card blockquote {
  margin: 0 0 1rem;
  font-size: 0.95rem;
  color: var(--text);
  line-height: 1.7;
  font-style: italic;
}

.review-card cite {
  font-style: normal;
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* ---------- FAQ ---------- */

.faq-list {
  max-width: 820px;
  margin: 0 auto;
  display: grid;
  gap: 0;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-item:first-child {
  border-top: 1px solid var(--border);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: 100%;
  padding: 1.25rem 0;
  margin: 0;
  border: none;
  background: none;
  color: var(--white);
  font-family: "Outfit", sans-serif;
  font-size: 1.05rem;
  font-weight: 500;
  text-align: left;
  cursor: pointer;
  transition: color .3s var(--ease);
}

.faq-question:hover {
  color: var(--accent);
}

.faq-question::after {
  content: "+";
  flex-shrink: 0;
  font-size: 1.4rem;
  color: var(--accent);
  transition: transform .3s var(--ease);
}

.faq-item.is-active .faq-question::after {
  content: "\2212";
}

.faq-answer {
  padding: 0 0 1.25rem;
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.75;
}

.faq-answer p + p {
  margin-top: 0.75rem;
}

/* ---------- Contact Form ---------- */

.contact-section {
  padding: clamp(3.5rem, 8vw, 6rem) 0;
}

.contact-grid {
  display: grid;
  gap: 3rem;
}

.contact-info {
  display: grid;
  gap: var(--heading-gap);
}

.contact-info h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
}

.contact-info p {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 50ch;
}

.contact-detail {
  display: grid;
  gap: 0.75rem;
  font-size: 0.95rem;
}

.contact-detail strong {
  color: var(--accent);
  display: block;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-family: "Outfit", sans-serif;
}

#contact-form {
  display: grid;
  gap: 1.25rem;
}

#contact-form label {
  display: block;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.4rem;
}

#contact-form input,
#contact-form select,
#contact-form textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--white);
  font-size: 0.95rem;
  transition: border-color .3s var(--ease), background .3s var(--ease);
}

#contact-form input:focus,
#contact-form select:focus,
#contact-form textarea:focus {
  outline: none;
  border-color: var(--accent);
  background: rgba(212, 168, 67, 0.06);
}

#contact-form select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23d4a843' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

#contact-form select option {
  background: var(--primary);
  color: var(--text);
}

#contact-form textarea {
  min-height: 120px;
  resize: vertical;
}

#contact-form button[type="submit"] {
  padding: 1rem 2.5rem;
  border: none;
  border-radius: 999px;
  background: var(--accent);
  color: var(--primary);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background .3s var(--ease), transform .3s var(--ease);
  justify-self: start;
}

#contact-form button[type="submit"]:hover {
  background: var(--accent-dark);
  transform: translateY(-1px);
}

#contact-form button[type="submit"]:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

/* ---------- CTA Band ---------- */

.cta-band {
  padding: clamp(3rem, 6vw, 5rem) 0;
  background: linear-gradient(135deg, var(--primary-dark), var(--primary-light));
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  text-align: center;
}

.cta-band .container {
  display: grid;
  gap: 1.5rem;
  justify-items: center;
}

.cta-band h2 {
  font-size: clamp(1.8rem, 4vw, 3rem);
}

.cta-band p {
  color: var(--text-muted);
  max-width: 52ch;
  font-size: 1.05rem;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 2.2rem;
  border-radius: 999px;
  background: var(--accent);
  color: var(--primary);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background .3s var(--ease), transform .3s var(--ease);
}

.btn-primary:hover {
  background: var(--accent-dark);
  transform: translateY(-1px);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 2.2rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  color: var(--text);
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  transition: border-color .3s var(--ease), color .3s var(--ease);
}

.btn-ghost:hover {
  border-color: var(--accent);
  color: var(--accent);
}

/* ---------- Footer ---------- */

.site-footer {
  padding: clamp(2.5rem, 5vw, 4rem) 0 2rem;
  border-top: 1px solid var(--border);
  background: var(--primary-dark);
}

.footer-grid {
  display: grid;
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-brand img {
  width: clamp(120px, 16vw, 160px);
  margin-bottom: 1rem;
}

.footer-brand p {
  font-size: 0.9rem;
  color: var(--text-muted);
  max-width: 36ch;
}

.footer-links h4 {
  font-family: "Outfit", sans-serif;
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}

.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.5rem;
}

.footer-links a {
  font-size: 0.88rem;
  color: var(--text-muted);
  transition: color .3s var(--ease);
}

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

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  font-size: 0.82rem;
  color: var(--text-muted);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
}

.footer-bottom a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* ---------- RERA ---------- */

.rera-banner {
  padding: 1.5rem 0;
  border-top: 1px solid var(--border);
  text-align: center;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.rera-banner strong {
  color: var(--accent);
}

/* ---------- Content blocks ---------- */

.content-block {
  display: grid;
  gap: var(--heading-gap);
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 820px;
  margin: 0 auto;
}

.content-block h2 {
  font-size: clamp(1.6rem, 3.5vw, 2.6rem);
  color: var(--white);
}

.content-block h3 {
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  color: var(--white);
  margin-top: 0.5rem;
}

.content-block ul,
.content-block ol {
  padding-left: 1.5rem;
  display: grid;
  gap: 0.5rem;
}

/* ---------- Payment ---------- */

.payment-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.payment-card {
  padding: 1.5rem 2rem;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.02);
  text-align: center;
}

.payment-card .milestone {
  font-size: 0.78rem;
  color: var(--accent);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
}

.payment-card .pct {
  font-family: "Italiana", Georgia, serif;
  font-size: 2.4rem;
  color: var(--white);
  margin: 0.5rem 0;
}

.payment-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
}

/* ---------- 404 ---------- */

.error-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 24px;
  background:
    radial-gradient(circle at top left, rgba(212, 168, 67, 0.12), transparent 30%),
    linear-gradient(180deg, var(--primary-dark) 0%, var(--primary) 100%);
}

.error-card {
  width: min(720px, 100%);
  padding: clamp(28px, 4vw, 48px);
  border-radius: 24px;
  border: 1px solid var(--border);
  background: rgba(26, 26, 46, 0.9);
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow);
}

.error-card .brand-img {
  width: min(200px, 100%);
  margin-bottom: 2rem;
}

.error-card .kicker {
  margin: 0 0 0.75rem;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.error-card h1 {
  margin: 0 0 1rem;
  font-size: clamp(2rem, 6vw, 3.8rem);
}

.error-card p {
  color: var(--text-muted);
  margin-bottom: 1.25rem;
}

.error-card .path-box {
  margin: 1.5rem 0;
  padding: 0.9rem 1rem;
  border-radius: 12px;
  border: 1px dashed var(--border);
  background: rgba(212, 168, 67, 0.05);
  color: var(--accent);
  word-break: break-word;
  font-size: 0.9rem;
}

.error-card .actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

/* ---------- Responsive ---------- */

@media (min-width: 768px) {
  .hero-grid {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }

  .overview-grid {
    grid-template-columns: 1.15fr 0.85fr;
  }

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

  .footer-grid {
    grid-template-columns: 1.2fr 1fr 1fr;
  }

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

@media (min-width: 900px) {
  .nav-menu {
    display: flex !important;
    flex-direction: row;
    position: static;
    padding: 0;
    margin: 0;
    background: none;
    border: none;
    gap: 0.3rem;
    align-items: center;
  }

  .nav-menu a {
    padding: 0.45rem 0.7rem;
    font-size: 0.78rem;
  }

  .nav-toggle {
    display: none;
  }

  .nav-container {
    gap: 1.5rem;
  }
}

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

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

@media (max-width: 767px) {
  .hero {
    padding-top: calc(var(--nav-h) + 2rem);
  }

  .hero-meta > div {
    flex: 1 1 40%;
  }

  .pricing-table-wrap {
    margin: 0 -1.2rem;
    border-radius: 0;
    border-left: none;
    border-right: none;
  }

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

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

@media (max-width: 480px) {
  .hero h1 {
    font-size: 2.2rem;
  }

  .hero-meta {
    gap: 1rem;
  }

  .hero-meta > div {
    flex: 1 1 100%;
  }
}

/* ---------- Print ---------- */

@media print {
  .site-nav,
  .nav-toggle,
  .staging-banner,
  .cta-band,
  .marquee { display: none !important; }

  body { background: #fff; color: #222; }

  .section, .section-alt {
    background: none;
    padding: 1.5rem 0;
  }

  a { color: #222; text-decoration: underline; }
}
