:root {
  --green: #2f5d50;
  --green-dark: #1f4037;
  --gold: #c59d5f;
  --cream: #f8f6f2;
  --white: #ffffff;
  --text: #1f2933;
  --muted: #667085;
  --border: #e5e0d8;
  --shadow: 0 18px 40px rgba(31, 64, 55, 0.12);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background: var(--cream);
  line-height: 1.6;
}

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

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.site-header {
  background: rgba(248, 246, 242, 0.96);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 10;
}

.header-inner {
  height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--green-dark);
  letter-spacing: 0.02em;
}

.main-nav {
  display: flex;
  gap: 1.25rem;
  font-size: 0.95rem;
  color: var(--text);
}

.main-nav a {
  opacity: 0.82;
}

.main-nav a:hover {
  opacity: 1;
  color: var(--green);
}

.hero {
  padding: 86px 0 64px;
  background:
    linear-gradient(135deg, rgba(47, 93, 80, 0.95), rgba(31, 64, 55, 0.92)),
    url("../images/hero-home.jpg");
  background-size: cover;
  background-position: center;
  color: var(--white);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(300px, 0.65fr);
  gap: 44px;
  align-items: center;
}

.eyebrow,
.section-label {
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.hero h1 {
  font-size: clamp(2.3rem, 5vw, 4.5rem);
  line-height: 1.05;
  max-width: 760px;
  margin-bottom: 22px;
}

.hero-text {
  font-size: 1.15rem;
  max-width: 660px;
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 32px;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

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

.btn-primary {
  background: var(--gold);
  color: var(--green-dark);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.18);
}

.btn-secondary {
  border: 1px solid rgba(255, 255, 255, 0.55);
  color: var(--white);
}

.hero-card {
  background: rgba(255, 255, 255, 0.96);
  color: var(--text);
  border-radius: 22px;
  padding: 30px;
  box-shadow: var(--shadow);
}

.hero-card h2 {
  color: var(--green-dark);
  font-size: 1.35rem;
  margin-bottom: 16px;
}

.hero-card ul {
  list-style: none;
}

.hero-card li {
  padding: 10px 0 10px 28px;
  border-bottom: 1px solid var(--border);
  position: relative;
}

.hero-card li:last-child {
  border-bottom: none;
}

.hero-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 700;
}

.highlights {
  background: var(--white);
  border-bottom: 1px solid var(--border);
}

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

.highlight-item {
  padding: 26px 22px;
  border-right: 1px solid var(--border);
}

.highlight-item:last-child {
  border-right: none;
}

.highlight-item span {
  display: block;
  color: var(--muted);
  font-size: 0.85rem;
  margin-bottom: 4px;
}

.highlight-item strong {
  color: var(--green-dark);
  font-size: 1.05rem;
}

.section {
  padding: 76px 0;
}

.two-column {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 56px;
  align-items: start;
}

.section h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  line-height: 1.18;
  color: var(--green-dark);
}

.section p {
  color: var(--muted);
  font-size: 1.05rem;
  margin-bottom: 18px;
}

.text-link {
  color: var(--green);
  font-weight: 700;
  border-bottom: 2px solid var(--gold);
}

.tenant-preview {
  padding-top: 0;
}

.tenant-box {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 26px;
  padding: 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  box-shadow: var(--shadow);
}

.tenant-box p {
  max-width: 720px;
}

.site-footer {
  background: var(--green-dark);
  color: var(--white);
  padding: 34px 0;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.site-footer p {
  color: rgba(255, 255, 255, 0.75);
}

@media (max-width: 860px) {
  .header-inner {
    height: auto;
    padding: 18px 0;
    align-items: flex-start;
    gap: 16px;
    flex-direction: column;
  }

  .main-nav {
    flex-wrap: wrap;
    gap: 0.75rem 1rem;
  }

  .hero {
    padding: 64px 0 46px;
  }

  .hero-grid,
  .two-column {
    grid-template-columns: 1fr;
  }

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

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

  .tenant-box {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }
}

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

  .hero-text {
    font-size: 1rem;
  }

  .hero-card,
  .tenant-box {
    padding: 26px;
    border-radius: 18px;
  }

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

  .highlight-item {
    border-right: none;
  }

  .btn {
    width: 100%;
  }
}

.section-title {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  line-height: 1.18;
  color: var(--green-dark);
  margin-bottom: 28px;
}

.unit-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.unit-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 34px;
  box-shadow: var(--shadow);
}

.unit-card-header {
  margin-bottom: 18px;
}

.unit-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(197, 157, 95, 0.18);
  color: var(--green-dark);
  border: 1px solid rgba(197, 157, 95, 0.45);
  border-radius: 999px;
  padding: 6px 14px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.unit-card h3 {
  color: var(--green-dark);
  font-size: 1.45rem;
  margin-bottom: 10px;
}

.unit-card p {
  color: var(--muted);
  margin-bottom: 18px;
}

.unit-features {
  list-style: none;
  margin-bottom: 22px;
}

.unit-features li {
  position: relative;
  padding: 8px 0 8px 26px;
  border-bottom: 1px solid var(--border);
  color: var(--text);
}

.unit-features li:last-child {
  border-bottom: none;
}

.unit-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 700;
}

@media (max-width: 760px) {
  .unit-grid {
    grid-template-columns: 1fr;
  }

  .unit-card {
    padding: 26px;
    border-radius: 18px;
  }
}

.amenity-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.amenity-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 30px;
  box-shadow: var(--shadow);
}

.amenity-icon {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: rgba(197, 157, 95, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.45rem;
  margin-bottom: 18px;
}

.amenity-card h3 {
  color: var(--green-dark);
  font-size: 1.25rem;
  margin-bottom: 10px;
}

.amenity-card p {
  color: var(--muted);
  margin-bottom: 0;
}

@media (max-width: 900px) {
  .amenity-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 580px) {
  .amenity-grid {
    grid-template-columns: 1fr;
  }

  .amenity-card {
    padding: 26px;
    border-radius: 18px;
  }
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.gallery-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.gallery-image {
  width: 100%;
  aspect-ratio: 4 / 3;
  background-size: cover;
  background-position: center;
}

.placeholder-image {
  background:
    linear-gradient(135deg, rgba(47, 93, 80, 0.9), rgba(31, 64, 55, 0.86)),
    linear-gradient(45deg, #d9d1c3, #f8f6f2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 700;
  letter-spacing: 0.04em;
}

.gallery-caption {
  padding: 24px;
}

.gallery-caption h3 {
  color: var(--green-dark);
  font-size: 1.2rem;
  margin-bottom: 8px;
}

.gallery-caption p {
  color: var(--muted);
  margin-bottom: 0;
}

/* Later, when you add real photos, use these classes:
.gallery-exterior {
  background-image: url("../images/gallery/exterior.jpg");
}

.gallery-1bhk {
  background-image: url("../images/gallery/1bhk.jpg");
}

.gallery-2bhk {
  background-image: url("../images/gallery/2bhk.jpg");
}
*/

@media (max-width: 900px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 580px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-caption {
    padding: 22px;
  }
}
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.contact-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 30px;
  box-shadow: var(--shadow);
}

.contact-icon {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: rgba(197, 157, 95, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.45rem;
  margin-bottom: 18px;
}

.contact-card h3 {
  color: var(--green-dark);
  font-size: 1.25rem;
  margin-bottom: 10px;
}

.contact-card p {
  color: var(--muted);
  margin-bottom: 0;
}

.small-note {
  display: inline-block;
  margin-top: 8px;
  font-size: 0.92rem;
  color: var(--muted);
}

.contact-box {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 26px;
  padding: 42px;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 42px;
  box-shadow: var(--shadow);
}

.contact-form {
  display: grid;
  gap: 18px;
}

.form-row {
  display: grid;
  gap: 8px;
}

.form-row label {
  font-weight: 700;
  color: var(--green-dark);
  font-size: 0.95rem;
}

.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 13px 14px;
  font: inherit;
  color: var(--text);
  background: var(--cream);
}

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  outline: 2px solid rgba(197, 157, 95, 0.45);
  border-color: var(--gold);
}

.form-row textarea {
  resize: vertical;
}

@media (max-width: 900px) {
  .contact-grid,
  .contact-box {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 580px) {
  .contact-card,
  .contact-box {
    padding: 26px;
    border-radius: 18px;
  }
}