:root {
  --green-950: #071b14;
  --green-900: #0d2e23;
  --green-800: #123d2e;
  --green-700: #1a5a42;
  --green-100: #e9f4ee;
  --gold: #caa66a;
  --gold-soft: #f4ead9;
  --cream: #fbf8f1;
  --ink: #15231d;
  --muted: #66726b;
  --line: rgba(18, 61, 46, 0.14);
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(7, 27, 20, 0.16);
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}
img, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
.form-honeypot { display: none !important; }
::selection { background: var(--gold-soft); color: var(--green-950); }

.skip-link {
  position: absolute;
  left: -999px;
  top: 10px;
  z-index: 1000;
  background: var(--green-950);
  color: var(--white);
  padding: 10px 14px;
  border-radius: 8px;
}
.skip-link:focus { left: 10px; }

.container {
  width: min(100% - 40px, var(--container));
  margin-inline: auto;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  transition: background .25s ease, box-shadow .25s ease, backdrop-filter .25s ease;
  color: var(--white);
}
.site-header.scrolled {
  background: rgba(7, 27, 20, .88);
  backdrop-filter: blur(16px);
  box-shadow: 0 10px 30px rgba(0,0,0,.18);
}
.header-inner {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
}
.brand-mark {
  width: 46px;
  height: 46px;
  display: inline-grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.35);
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(202,166,106,.98), rgba(255,255,255,.16));
  color: var(--white);
  font-weight: 800;
  letter-spacing: .04em;
  font-size: 13px;
}
.brand-text { display: grid; line-height: 1.1; }
.brand-text strong { font-size: 15px; letter-spacing: .02em; }
.brand-text small { font-size: 11px; opacity: .76; margin-top: 4px; }
.main-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 14px;
  font-weight: 650;
}
.main-nav a { opacity: .92; }
.main-nav a:hover { color: var(--gold-soft); opacity: 1; }
.nav-cta {
  border: 1px solid rgba(255,255,255,.35);
  border-radius: 999px;
  padding: 10px 16px;
  background: rgba(255,255,255,.08);
}
.nav-toggle {
  display: none;
  background: transparent;
  border: 0;
  width: 44px;
  height: 44px;
  padding: 10px;
}
.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--white);
  margin: 5px 0;
  border-radius: 4px;
}

.hero {
  position: relative;
  min-height: 780px;
  display: grid;
  align-items: center;
  padding: 120px 0 70px;
  color: var(--white);
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 75% 25%, rgba(202,166,106,.22), transparent 36%),
    linear-gradient(90deg, rgba(7,27,20,.93) 0%, rgba(7,27,20,.74) 44%, rgba(7,27,20,.28) 100%),
    linear-gradient(0deg, rgba(7,27,20,.45), rgba(7,27,20,.1));
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) 420px;
  gap: 56px;
  align-items: center;
}
.eyebrow, .section-kicker {
  margin: 0 0 14px;
  color: var(--gold-soft);
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: 12px;
  font-weight: 800;
}
.section-kicker { color: var(--green-700); }
.dark .section-kicker, .cta-section .section-kicker { color: var(--gold-soft); }
h1, h2, h3 { line-height: 1.12; margin: 0; letter-spacing: -.035em; }
h1 { font-size: clamp(44px, 7vw, 78px); max-width: 900px; }
h2 { font-size: clamp(32px, 4.7vw, 54px); }
h3 { font-size: 23px; }
p { margin: 0; }
.hero-subtitle {
  max-width: 700px;
  margin: 22px 0 0;
  font-size: clamp(18px, 2vw, 23px);
  color: rgba(255,255,255,.88);
}
.hero-badges {
  margin: 28px 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.hero-badges span {
  border: 1px solid rgba(255,255,255,.25);
  background: rgba(255,255,255,.12);
  border-radius: 999px;
  padding: 8px 12px;
  font-size: 13px;
  font-weight: 750;
  backdrop-filter: blur(10px);
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 14px 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 800;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--gold); color: var(--green-950); box-shadow: 0 16px 32px rgba(202,166,106,.28); }
.btn-primary:hover { background: #d8b77c; }
.btn-secondary { color: var(--white); border-color: rgba(255,255,255,.34); background: rgba(255,255,255,.08); }
.btn-light { background: var(--white); color: var(--green-950); }
.btn-full { width: 100%; }
.micro-note { margin-top: 18px; color: rgba(255,255,255,.72); font-size: 13px; }

.lead-card {
  background: rgba(255,255,255,.95);
  color: var(--ink);
  border-radius: var(--radius-lg);
  padding: 30px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(255,255,255,.62);
}
.lead-card h2 { font-size: 28px; }
.lead-card p { color: var(--muted); margin-top: 10px; }
.lead-form { display: grid; gap: 12px; margin-top: 20px; }
.lead-form label {
  font-size: 13px;
  font-weight: 800;
  color: var(--green-900);
}
.lead-form input, .lead-form select, .lead-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: 14px;
  min-height: 48px;
  padding: 12px 14px;
  color: var(--ink);
  outline: none;
}
.lead-form input:focus, .lead-form select:focus, .lead-form textarea:focus { border-color: var(--gold); box-shadow: 0 0 0 4px rgba(202,166,106,.16); }
.consent { font-size: 12px; color: var(--muted); line-height: 1.45; }

.trust-strip {
  background: var(--green-950);
  color: var(--white);
  padding: 22px 0;
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.trust-grid div {
  padding: 8px 18px;
  border-left: 1px solid rgba(255,255,255,.18);
}
.trust-grid strong { display: block; color: var(--gold-soft); font-size: 13px; text-transform: uppercase; letter-spacing: .12em; margin-bottom: 4px; }
.trust-grid span { color: rgba(255,255,255,.86); font-size: 14px; }

.section { padding: 100px 0; }
.section.muted { background: #f4efe3; }
.section.dark { background: var(--green-950); color: var(--white); }
.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, .85fr);
  gap: 60px;
  align-items: center;
}
.split.reverse { grid-template-columns: minmax(360px, .85fr) minmax(0, 1fr); }
.split.reverse > :first-child { order: 2; }
.split p:not(.section-kicker) { color: var(--muted); font-size: 17px; margin-top: 20px; }
.dark .split p:not(.section-kicker) { color: rgba(255,255,255,.76); }
.section-heading { max-width: 760px; margin-bottom: 42px; }
.section-heading.centered { text-align: center; margin-inline: auto; }
.section-heading p:not(.section-kicker) { color: var(--muted); margin-top: 15px; font-size: 17px; }
.image-card {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  background: var(--white);
}
.image-card img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4 / 3; }
.image-card figcaption { padding: 14px 18px; font-size: 13px; color: var(--muted); background: var(--white); }
.dark-card { border: 1px solid rgba(255,255,255,.12); box-shadow: 0 24px 70px rgba(0,0,0,.28); }

.check-list { display: grid; gap: 12px; margin-top: 28px; }
.check-list.two-col { grid-template-columns: repeat(2, 1fr); }
.check-list span {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: 13px 14px;
  border-radius: var(--radius-sm);
  background: rgba(18,61,46,.06);
  color: var(--green-900);
  font-weight: 700;
}
.check-list span::before { content: "✓"; color: var(--green-700); font-weight: 900; }

.price-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.price-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 30px;
  box-shadow: 0 20px 60px rgba(7,27,20,.07);
  position: relative;
  overflow: hidden;
}
.price-card::after {
  content: "";
  position: absolute;
  inset: auto -50px -70px auto;
  width: 150px;
  height: 150px;
  background: rgba(202,166,106,.16);
  border-radius: 50%;
}
.price-card.featured { border-color: rgba(202,166,106,.52); transform: translateY(-8px); }
.tag {
  display: inline-flex;
  padding: 7px 12px;
  border-radius: 999px;
  background: var(--green-100);
  color: var(--green-800);
  font-weight: 800;
  font-size: 13px;
  margin-bottom: 18px;
}
.price-card h3 { font-size: 32px; }
.price { font-size: 24px; font-weight: 900; color: var(--green-800); margin-top: 15px; }
.text-link {
  display: inline-flex;
  margin-top: 24px;
  color: var(--green-700);
  font-weight: 850;
  border-bottom: 2px solid var(--gold);
}
.notice-box {
  margin-top: 26px;
  border: 1px solid rgba(202,166,106,.35);
  background: rgba(255,255,255,.72);
  border-radius: var(--radius-md);
  padding: 18px 20px;
  color: var(--green-900);
}
.legal-note { text-align: center; }

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.feature-grid article {
  background: var(--white);
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: 0 18px 50px rgba(7,27,20,.06);
}
.feature-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: var(--gold-soft);
  font-size: 22px;
  margin-bottom: 20px;
}
.feature-grid p { color: var(--muted); margin-top: 12px; }

.amenity-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 28px 0 34px;
}
.amenity-list span {
  padding: 11px 14px;
  border-radius: 999px;
  color: rgba(255,255,255,.92);
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.12);
  font-weight: 700;
  font-size: 14px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  grid-auto-rows: 230px;
  gap: 16px;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  background: var(--green-100);
  box-shadow: 0 14px 40px rgba(7,27,20,.08);
}
.gallery-item.large { grid-row: span 2; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; }
.gallery-item:hover img { transform: scale(1.035); }
.video-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  margin-top: 36px;
}
.video-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  padding: 18px;
  box-shadow: 0 16px 42px rgba(7,27,20,.07);
}
.video-card h3 { margin-bottom: 14px; font-size: 22px; }
.video-card video {
  width: 100%;
  max-height: 560px;
  background: var(--green-950);
  border-radius: 18px;
}

.map-card {
  min-height: 390px;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(135deg, rgba(18,61,46,.12), rgba(202,166,106,.18)),
    url('../images/golf-panorama-two.webp') center/cover;
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow);
}
.map-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(7,27,20,.3);
}
.map-placeholder {
  position: absolute;
  inset: auto 24px 24px 24px;
  z-index: 2;
  background: rgba(255,255,255,.94);
  border-radius: 20px;
  padding: 22px;
  color: var(--green-950);
}
.map-placeholder span { font-size: 28px; }
.map-placeholder strong { display: block; font-size: 25px; margin-top: 10px; }
.map-placeholder p { color: var(--muted); margin-top: 4px; }

.rera-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.rera-grid article {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: 0 16px 45px rgba(7,27,20,.06);
}
dt { font-weight: 800; color: var(--green-800); margin-top: 16px; }
dd { margin: 3px 0 0; color: var(--muted); }

.faq-list {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  gap: 12px;
}
details {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 0 20px;
}
summary {
  cursor: pointer;
  font-size: 18px;
  font-weight: 850;
  padding: 20px 0;
}
details p { color: var(--muted); padding: 0 0 20px; }

.cta-section {
  background:
    linear-gradient(90deg, rgba(7,27,20,.93), rgba(7,27,20,.84)),
    url('../images/residences-golf-view.webp') center/cover;
  color: var(--white);
}
.cta-grid {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(380px, 1fr);
  gap: 56px;
  align-items: center;
}
.cta-grid p:not(.section-kicker) { color: rgba(255,255,255,.76); margin-top: 18px; font-size: 18px; }
.cta-form {
  background: var(--white);
  color: var(--ink);
  border-radius: var(--radius-lg);
  padding: 30px;
  box-shadow: var(--shadow);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

.site-footer {
  background: var(--green-950);
  color: rgba(255,255,255,.82);
  padding: 56px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.25fr .65fr .65fr 1fr;
  gap: 34px;
}
.footer-brand { color: var(--white); margin-bottom: 16px; }
.site-footer h3 { color: var(--white); font-size: 16px; margin-bottom: 14px; }
.site-footer a { display: block; margin: 9px 0; color: rgba(255,255,255,.78); }
.site-footer a:hover { color: var(--gold-soft); }
.footer-bottom {
  margin-top: 38px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.12);
  font-size: 12px;
  color: rgba(255,255,255,.65);
}
.footer-bottom p + p { margin-top: 14px; }
.footer-credit {
  width: 100%;
  margin-top: 26px;
  padding: 14px 20px;
  background: rgba(0,0,0,.18);
  text-align: center;
  font-size: 12px;
  color: rgba(255,255,255,.72);
}
.site-footer .footer-credit a { display: inline; margin: 0; color: var(--gold-soft); }

.mobile-cta { display: none; }

.legal-page {
  padding: 140px 0 80px;
  background: var(--cream);
}
.legal-page article {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  padding: 42px;
}
.legal-page h1 { color: var(--green-950); font-size: clamp(34px, 5vw, 56px); }
.legal-page h2 { font-size: 28px; margin-top: 32px; }
.legal-page p, .legal-page li { color: var(--muted); margin-top: 12px; }
.legal-page ul { padding-left: 20px; }

@media (max-width: 980px) {
  .nav-toggle { display: block; }
  .main-nav {
    position: fixed;
    top: 78px;
    left: 20px;
    right: 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: rgba(7,27,20,.98);
    border-radius: 20px;
    padding: 16px;
    box-shadow: var(--shadow);
  }
  .main-nav.open { display: flex; }
  .main-nav a { padding: 12px; }
  .hero-grid, .split, .split.reverse, .cta-grid { grid-template-columns: 1fr; }
  .split.reverse > :first-child { order: initial; }
  .hero { padding-top: 110px; }
  .trust-grid, .price-grid, .feature-grid, .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-item.large { grid-row: span 1; }
}

@media (max-width: 680px) {
  .container { width: min(100% - 28px, var(--container)); }
  .hero { min-height: auto; padding: 110px 0 44px; }
  .hero-overlay { background: linear-gradient(0deg, rgba(7,27,20,.94), rgba(7,27,20,.58)); }
  .hero-grid { gap: 34px; }
  .lead-card, .cta-form { padding: 22px; border-radius: 22px; }
  .trust-grid, .price-grid, .feature-grid, .footer-grid, .video-grid, .rera-grid, .form-row, .check-list.two-col, .gallery-grid { grid-template-columns: 1fr; }
  .section { padding: 70px 0; }
  .gallery-grid { grid-auto-rows: 220px; }
  .price-card.featured { transform: none; }
  .mobile-cta {
    position: fixed;
    left: 12px;
    right: 12px;
    bottom: 12px;
    z-index: 60;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
  .mobile-cta a {
    display: grid;
    place-items: center;
    min-height: 48px;
    border-radius: 999px;
    font-weight: 900;
    background: var(--gold);
    color: var(--green-950);
    box-shadow: 0 12px 30px rgba(7,27,20,.24);
  }
  .mobile-cta a:last-child { background: var(--white); }
  .site-footer { padding-bottom: 88px; }
  .legal-page article { padding: 26px; }
}
