:root {
  --green: #00452f;
  --green-2: #083b2c;
  --green-3: #06271f;
  --gold: #d5a150;
  --gold-2: #f0c878;
  --ivory: #f8f1e8;
  --ivory-2: #fffaf2;
  --ink: #10231d;
  --muted: #746b5e;
  --line: rgba(213, 161, 80, 0.28);
  --shadow: 0 30px 90px rgba(4, 36, 27, 0.28);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--ivory);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

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

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

.site-header {
  position: fixed;
  z-index: 20;
  inset: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 12px clamp(20px, 5vw, 72px);
  color: var(--ivory-2);
  background: rgba(6, 39, 31, 0.82);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(213, 161, 80, 0.14);
}

.brand {
  display: block;
  width: clamp(132px, 14vw, 190px);
  height: 58px;
  overflow: hidden;
}

.brand img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: left center;
}

nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2.2vw, 32px);
  color: rgba(255, 250, 242, 0.86);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

nav a {
  position: relative;
  padding: 10px 0;
}

nav a::after {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 2px;
  height: 1px;
  content: "";
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

nav a:hover::after {
  transform: scaleX(1);
}

.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 1fr);
  align-items: center;
  gap: clamp(24px, 6vw, 90px);
  overflow: hidden;
  padding: 132px clamp(20px, 6vw, 86px) 74px;
  color: var(--ivory-2);
  background:
    radial-gradient(circle at 78% 16%, rgba(240, 200, 120, 0.2), transparent 27%),
    linear-gradient(135deg, var(--green-3), var(--green) 54%, #003522);
}

.hero::before,
.hero::after {
  position: absolute;
  content: "";
  border: 1px solid rgba(213, 161, 80, 0.22);
  pointer-events: none;
}

.hero::before {
  width: min(76vw, 900px);
  aspect-ratio: 1;
  right: -20vw;
  top: 10vh;
  border-radius: 50%;
}

.hero::after {
  inset: 28px;
}

.hero-mark {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  min-height: 500px;
}

.hero-mark img {
  width: min(520px, 82vw);
  filter: drop-shadow(0 28px 70px rgba(0, 0, 0, 0.28));
}

.hero-content {
  position: relative;
  z-index: 1;
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--gold-2);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  line-height: 1.04;
}

h1 {
  max-width: 760px;
  font-size: clamp(48px, 7vw, 94px);
}

h2 {
  font-size: clamp(34px, 4.6vw, 62px);
}

h3 {
  font-size: 28px;
}

.hero-content p:not(.eyebrow) {
  max-width: 650px;
  margin: 24px 0 0;
  color: rgba(255, 250, 242, 0.78);
  font-size: 19px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 36px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 13px 23px;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  font: inherit;
  font-weight: 800;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.primary {
  color: #14221b;
  background: linear-gradient(135deg, var(--gold-2), var(--gold));
}

.secondary {
  color: var(--ivory-2);
  border-color: rgba(240, 200, 120, 0.48);
  background: rgba(255, 250, 242, 0.08);
}

.intro,
.section,
.luxury-showcase,
.rera-section,
.resale-band,
.contact-section {
  padding: clamp(72px, 9vw, 124px) clamp(20px, 6vw, 86px);
  scroll-margin-top: 96px;
}

.intro {
  display: grid;
  grid-template-columns: minmax(260px, 0.65fr) minmax(0, 1fr);
  gap: clamp(36px, 7vw, 100px);
  align-items: center;
  background: var(--ivory-2);
  border-bottom: 1px solid rgba(0, 69, 47, 0.12);
}

.intro img {
  width: min(520px, 100%);
}

.intro p:not(.section-kicker),
.section-heading p,
.project-card p,
.rera-intro p,
.resale-band p,
.steps p,
.contact-copy p {
  color: var(--muted);
  font-size: 17px;
}

.luxury-showcase {
  color: var(--ivory-2);
  background:
    radial-gradient(circle at 15% 8%, rgba(213, 161, 80, 0.18), transparent 32%),
    linear-gradient(135deg, var(--green-3), var(--green));
}

.luxury-showcase .section-heading p:not(.section-kicker) {
  color: rgba(255, 250, 242, 0.72);
}

.showcase-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  gap: 16px;
}

.image-card {
  position: relative;
  min-height: 360px;
  overflow: hidden;
  border: 1px solid rgba(240, 200, 120, 0.28);
  border-radius: 8px;
  background: #0b3328;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.22);
}

.image-card.large {
  grid-row: span 2;
  min-height: 736px;
}

.image-card img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  filter: saturate(0.86) contrast(1.04);
  transform: scale(1.02);
}

.image-card::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, rgba(5, 32, 25, 0.08), rgba(5, 32, 25, 0.78));
}

.image-card > div {
  position: absolute;
  z-index: 1;
  left: 24px;
  right: 24px;
  bottom: 24px;
}

.image-card span {
  color: var(--gold-2);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.image-card h3 {
  margin-top: 8px;
  color: var(--ivory-2);
  font-size: clamp(28px, 3vw, 42px);
}

.image-abstract {
  background:
    linear-gradient(180deg, rgba(6, 39, 31, 0.16), rgba(6, 39, 31, 0.92)),
    linear-gradient(110deg, transparent 0 22%, rgba(240, 200, 120, 0.18) 22% 24%, transparent 24% 38%, rgba(240, 200, 120, 0.16) 38% 40%, transparent 40%),
    repeating-linear-gradient(90deg, rgba(255, 250, 242, 0.1) 0 18px, transparent 18px 62px),
    linear-gradient(135deg, #0f4737, #041f18);
}

.image-abstract.reserve {
  background:
    radial-gradient(circle at 50% 72%, rgba(240, 200, 120, 0.18), transparent 28%),
    linear-gradient(180deg, rgba(6, 39, 31, 0.08), rgba(6, 39, 31, 0.92)),
    repeating-linear-gradient(90deg, rgba(255, 250, 242, 0.12) 0 16px, transparent 16px 54px),
    linear-gradient(135deg, #174f3d, #03251c);
}

.image-abstract.lodha {
  background:
    radial-gradient(circle at 80% 12%, rgba(213, 161, 80, 0.22), transparent 34%),
    linear-gradient(180deg, rgba(6, 39, 31, 0.08), rgba(6, 39, 31, 0.92)),
    repeating-linear-gradient(100deg, rgba(255, 250, 242, 0.13) 0 14px, transparent 14px 58px),
    linear-gradient(135deg, #123d34, #041f18);
}

.section-heading {
  max-width: 980px;
  margin-bottom: 38px;
}

.section-heading p:not(.section-kicker) {
  max-width: 720px;
}

.projects {
  background:
    linear-gradient(90deg, rgba(0, 69, 47, 0.07), transparent),
    var(--ivory);
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.project-card {
  position: relative;
  min-height: 390px;
  overflow: hidden;
  padding: 28px;
  border: 1px solid rgba(0, 69, 47, 0.14);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 250, 242, 0.96), rgba(248, 241, 232, 0.88)),
    radial-gradient(circle at 100% 0%, rgba(213, 161, 80, 0.18), transparent 38%);
  box-shadow: 0 18px 50px rgba(4, 36, 27, 0.08);
}

.project-card::after {
  position: absolute;
  right: -70px;
  bottom: -70px;
  width: 180px;
  height: 180px;
  border: 1px solid rgba(213, 161, 80, 0.28);
  border-radius: 50%;
  content: "";
}

.project-card.feature {
  grid-column: span 2;
  color: var(--ivory-2);
  background:
    linear-gradient(135deg, rgba(6, 39, 31, 0.98), rgba(0, 69, 47, 0.94)),
    radial-gradient(circle at 90% 12%, rgba(213, 161, 80, 0.24), transparent 34%);
  box-shadow: var(--shadow);
}

.project-number {
  display: inline-block;
  margin-bottom: 40px;
  color: var(--gold);
  font-weight: 900;
  letter-spacing: 0.14em;
}

.status {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.project-card.feature p:not(.status) {
  color: rgba(255, 250, 242, 0.76);
}

.project-card ul {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0;
  margin: 24px 0 0;
  list-style: none;
}

.project-card li {
  padding: 9px 12px;
  border: 1px solid rgba(240, 200, 120, 0.24);
  border-radius: 999px;
  color: var(--gold-2);
  font-size: 13px;
  font-weight: 800;
}

.rera-section {
  color: var(--ivory-2);
  background:
    linear-gradient(180deg, rgba(6, 39, 31, 0.94), rgba(6, 39, 31, 1)),
    var(--green-3);
}

.rera-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.75fr);
  gap: clamp(28px, 6vw, 80px);
  align-items: end;
  margin-bottom: 36px;
}

.rera-intro p:not(.section-kicker) {
  color: rgba(255, 250, 242, 0.72);
}

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

.rera-grid article,
.steps article,
.lead-form {
  border: 1px solid var(--line);
  border-radius: 8px;
}

.rera-grid article {
  min-height: 260px;
  padding: 24px;
  background: rgba(255, 250, 242, 0.07);
}

.rera-grid span,
.steps span {
  display: inline-block;
  margin-bottom: 38px;
  color: var(--gold-2);
  font-weight: 900;
}

.rera-grid h3 {
  font-size: 24px;
}

.rera-grid p {
  color: rgba(255, 250, 242, 0.68);
  font-size: 15px;
}

.source-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.source-strip a {
  padding: 10px 14px;
  border: 1px solid rgba(240, 200, 120, 0.32);
  border-radius: 999px;
  color: var(--gold-2);
  font-size: 13px;
  font-weight: 800;
}

.resale-band {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(300px, 1fr);
  gap: clamp(32px, 7vw, 96px);
  align-items: center;
  background: var(--ivory-2);
}

.resale-band .section-kicker,
.projects .section-kicker,
.process .section-kicker {
  color: var(--gold);
}

.resale-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.resale-list span {
  min-height: 122px;
  padding: 26px;
  border: 1px solid rgba(0, 69, 47, 0.16);
  border-radius: 8px;
  color: var(--green);
  background: rgba(0, 69, 47, 0.06);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 25px;
}

.process {
  background: var(--ivory);
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.steps article {
  padding: 28px;
  background: var(--ivory-2);
  border-color: rgba(0, 69, 47, 0.14);
}

.steps span {
  color: var(--gold);
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 1fr);
  gap: clamp(34px, 7vw, 96px);
  color: var(--ivory-2);
  background:
    radial-gradient(circle at 8% 8%, rgba(213, 161, 80, 0.2), transparent 30%),
    linear-gradient(135deg, var(--green), var(--green-3));
}

.contact-copy img {
  width: min(420px, 82vw);
  margin-bottom: 42px;
}

.contact-copy p:not(.section-kicker) {
  color: rgba(255, 250, 242, 0.74);
}

.lead-form {
  display: grid;
  gap: 16px;
  padding: clamp(22px, 4vw, 34px);
  background: rgba(255, 250, 242, 0.08);
  box-shadow: var(--shadow);
}

label {
  display: grid;
  gap: 8px;
  color: rgba(255, 250, 242, 0.78);
  font-size: 14px;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(240, 200, 120, 0.26);
  border-radius: 8px;
  padding: 13px 14px;
  color: var(--ivory-2);
  background: rgba(6, 39, 31, 0.7);
  font: inherit;
}

textarea {
  resize: vertical;
}

select option {
  color: var(--ink);
}

.submit {
  width: 100%;
  margin-top: 4px;
}

.form-status {
  min-height: 22px;
  margin: 0;
  color: var(--gold-2);
  font-size: 14px;
}

footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 26px clamp(20px, 6vw, 86px);
  color: rgba(255, 250, 242, 0.64);
  background: #031d17;
  font-size: 14px;
}

footer p {
  margin: 0;
}

@media (max-width: 1100px) {
  .project-grid,
  .rera-grid,
  .showcase-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .image-card.large {
    grid-row: auto;
    grid-column: span 2;
    min-height: 520px;
  }
}

@media (max-width: 900px) {
  .site-header {
    position: absolute;
  }

  nav {
    display: none;
  }

  .hero,
  .intro,
  .rera-intro,
  .resale-band,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-mark {
    min-height: 260px;
    order: 2;
  }

  .hero-content {
    order: 1;
  }

  .project-card.feature {
    grid-column: auto;
  }

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

@media (max-width: 640px) {
  h1 {
    font-size: 43px;
  }

  h2 {
    font-size: 35px;
  }

  .hero {
    padding-top: 120px;
  }

  .hero::after {
    inset: 14px;
  }

  .button {
    width: 100%;
  }

  .project-grid,
  .rera-grid,
  .resale-list,
  .showcase-grid {
    grid-template-columns: 1fr;
  }

  .image-card,
  .image-card.large {
    grid-column: auto;
    min-height: 390px;
  }

  footer {
    display: block;
  }

  footer p + p {
    margin-top: 8px;
  }
}
