:root {
  --bg: #181818;
  --panel: #202020;
  --panel-soft: #282828;
  --line: #5b5b5b;
  --text: #f4f4f1;
  --muted: #c9c9c4;
  --gold: #f2bd35;
  --gold-dark: #b78922;
  --white: #ffffff;
  --ink: #151515;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--bg);
  color: var(--text);
  font-family: Arial, Helvetica, sans-serif;
  letter-spacing: 0;
}

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

button,
input,
select {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 64px);
  background: rgba(24, 24, 24, 0.92);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(18px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 220px;
}

.brand-logo {
  width: 70px;
  height: 54px;
  object-fit: contain;
  object-position: center;
}

.brand strong,
.brand small {
  display: block;
}

.brand small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 12px;
}

.nav-links {
  display: flex;
  gap: 28px;
  color: var(--muted);
}

.call-link,
.primary-button,
.ghost-button,
.outline-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 22px;
  border: 1px solid transparent;
  cursor: pointer;
}

.call-link,
.primary-button {
  color: var(--ink);
  background: var(--gold);
  font-weight: 700;
}

.ghost-button,
.outline-button {
  color: var(--text);
  background: transparent;
  border-color: #bfbfbf;
}

.hero {
  position: relative;
  min-height: 640px;
  display: grid;
  align-items: end;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-media {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.18), #181818 92%),
    linear-gradient(115deg, #6f8797 0%, #232323 48%, #c59d4b 100%);
}

.tower {
  position: absolute;
  bottom: 120px;
  width: clamp(90px, 12vw, 180px);
  background:
    repeating-linear-gradient(90deg, rgba(255,255,255,0.16) 0 8px, transparent 8px 20px),
    repeating-linear-gradient(0deg, rgba(255,255,255,0.22) 0 4px, transparent 4px 24px),
    linear-gradient(135deg, #8598a4, #343b40);
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.36);
}

.tower-one {
  right: 16%;
  height: 390px;
}

.tower-two {
  right: 27%;
  height: 320px;
}

.tower-three {
  right: 7%;
  height: 450px;
}

.hero-plaza {
  position: absolute;
  right: 0;
  bottom: 70px;
  width: 62%;
  height: 90px;
  background:
    repeating-linear-gradient(90deg, rgba(255,255,255,0.22) 0 16px, transparent 16px 50px),
    linear-gradient(180deg, #d7b052, #665020);
  transform: skewY(-3deg);
}

.hero-content {
  position: relative;
  max-width: 760px;
  padding: 120px clamp(18px, 6vw, 90px) 76px;
}

.hero-logo {
  width: min(360px, 76vw);
  height: auto;
  margin-bottom: 18px;
  object-fit: contain;
  filter: drop-shadow(0 18px 35px rgba(0, 0, 0, 0.42));
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 16px;
  font-size: clamp(48px, 7vw, 96px);
  line-height: 0.95;
}

h2 {
  margin-bottom: 12px;
  font-size: clamp(32px, 4vw, 58px);
  line-height: 1.02;
}

.hero-content p:not(.eyebrow),
.section-heading p,
.service-copy p,
.contact-band p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.6;
}

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

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.trust-strip span {
  padding: 22px;
  text-align: center;
  color: var(--muted);
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.section-shell,
.services,
.contact-band {
  padding: 80px clamp(18px, 4vw, 64px);
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 34px;
}

.section-heading p {
  max-width: 520px;
}

.toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 34px;
}

.segmented {
  display: inline-flex;
  border: 1px solid var(--line);
}

.filter-button {
  min-width: 150px;
  min-height: 54px;
  color: var(--text);
  background: transparent;
  border: 0;
  cursor: pointer;
}

.filter-button.active {
  color: var(--ink);
  background: var(--gold);
}

.select-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--muted);
}

select,
input {
  min-height: 44px;
  padding: 0 12px;
  color: var(--text);
  background: #111;
  border: 1px solid var(--line);
}

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

.project-card {
  min-width: 0;
  background: var(--panel);
  border: 1px solid var(--line);
}

.project-image {
  position: relative;
  height: 260px;
  overflow: visible;
  background: #333;
}

.project-image img,
.generated-building {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.generated-building {
  position: relative;
  display: flex;
  align-items: end;
  justify-content: center;
  gap: 10px;
  padding: 28px 28px 0;
  overflow: hidden;
}

.generated-building::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 72% 28%, rgba(255,255,255,0.28), transparent 25%),
    linear-gradient(160deg, rgba(255,255,255,0.18), transparent 42%),
    linear-gradient(120deg, #6e8391, #252a2d 52%, #c19a43);
}

.generated-building.night::before {
  background: linear-gradient(135deg, #1a2742, #3f3327 60%, #d8a339);
}

.generated-building.gold::before,
.generated-building.plaza::before {
  background: linear-gradient(135deg, #b08b44, #2b2c2d 48%, #d6bd73);
}

.generated-building.retail::before {
  background: linear-gradient(135deg, #687da2, #2c2d2f 44%, #a9653d);
}

.generated-building.metro::before {
  background: linear-gradient(135deg, #3d7f78, #1f2628 58%, #c8b05e);
}

.generated-building span {
  position: relative;
  width: 17%;
  min-width: 38px;
  height: var(--height, 160px);
  background:
    repeating-linear-gradient(0deg, rgba(255,255,255,0.32) 0 3px, transparent 3px 18px),
    linear-gradient(180deg, rgba(235,242,245,0.85), rgba(72,84,90,0.88));
  border: 1px solid rgba(255, 255, 255, 0.26);
}

.generated-building span:nth-child(2) { --height: 210px; }
.generated-building span:nth-child(3) { --height: 185px; }
.generated-building span:nth-child(4) { --height: 230px; }
.generated-building span:nth-child(5) { --height: 165px; }

.builder-logo {
  position: absolute;
  left: 50%;
  bottom: -44px;
  display: grid;
  place-items: center;
  width: 148px;
  height: 92px;
  transform: translateX(-50%);
  color: #2867ac;
  background: var(--white);
  border: 10px solid var(--white);
  outline: 2px solid rgba(255, 255, 255, 0.7);
  font-size: 26px;
  font-weight: 900;
  text-align: center;
}

.project-body {
  position: relative;
  padding: 84px 28px 26px;
  min-height: 270px;
}

.project-topline {
  display: flex;
  justify-content: space-between;
  gap: 18px;
}

.project-card h3 {
  max-width: 68%;
  margin-bottom: 20px;
  font-size: 26px;
  line-height: 1.2;
  text-transform: uppercase;
}

.price {
  color: var(--gold);
  white-space: nowrap;
}

.project-body strong {
  display: block;
  margin-bottom: 14px;
  font-size: 22px;
}

.project-body p {
  color: var(--muted);
  line-height: 1.45;
}

.location {
  margin-bottom: 16px;
}

.outline-button {
  margin-top: 12px;
}

.services {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 40px;
  background: #eeeeea;
  color: var(--ink);
}

.services .eyebrow {
  color: var(--gold-dark);
}

.service-copy p,
.services p {
  color: #4b4b48;
}

.service-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.service-list article {
  padding: 26px;
  background: #ffffff;
  border: 1px solid #d6d6d0;
}

.service-list h3 {
  margin-bottom: 12px;
}

.contact-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  background: #111;
}

.contact-band div {
  max-width: 760px;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 20;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(0, 0, 0, 0.68);
}

.modal[aria-hidden="false"] {
  display: flex;
}

.modal-panel {
  position: relative;
  width: min(100%, 460px);
  padding: 30px;
  color: var(--ink);
  background: var(--white);
}

.modal-panel p {
  color: #555;
}

.icon-button {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  border: 0;
  background: #eeeeee;
  cursor: pointer;
}

.enquiry-form {
  display: grid;
  gap: 14px;
}

.enquiry-form label {
  display: grid;
  gap: 7px;
  color: #444;
}

.enquiry-form input,
.enquiry-form select {
  color: var(--ink);
  background: #f7f7f4;
  border-color: #d0d0ca;
}

.whatsapp {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 12;
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  color: var(--ink);
  background: var(--gold);
  border-radius: 50%;
  font-weight: 800;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
}

.empty-state {
  grid-column: 1 / -1;
  padding: 36px;
  color: var(--muted);
  border: 1px solid var(--line);
}

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

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

@media (max-width: 760px) {
  .site-header {
    position: static;
    flex-wrap: wrap;
    gap: 14px;
  }

  .brand {
    min-width: 0;
    flex: 1 1 220px;
  }

  .brand strong {
    font-size: 16px;
  }

  .brand-logo {
    width: 58px;
    height: 46px;
  }

  .nav-links {
    order: 3;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    flex: 0 0 calc(100vw - 36px);
    width: calc(100vw - 36px);
    gap: 12px;
  }

  .nav-links a {
    text-align: left;
  }

  .call-link {
    display: none;
  }

  .hero {
    min-height: 610px;
  }

  .tower-one {
    right: 22%;
  }

  .tower-two,
  .tower-three {
    opacity: 0.65;
  }

  .hero-content {
    padding-top: 160px;
    max-width: 100%;
  }

  h1 {
    max-width: 9ch;
    font-size: 48px;
  }

  .hero-logo {
    width: min(250px, 70vw);
    margin-bottom: 18px;
  }

  .trust-strip,
  .project-grid,
  .service-list {
    grid-template-columns: 1fr;
  }

  .section-heading,
  .toolbar,
  .contact-band {
    align-items: stretch;
    flex-direction: column;
  }

  .segmented {
    display: grid;
    grid-template-columns: 1fr;
  }

  .filter-button {
    width: 100%;
  }

  .select-wrap {
    align-items: stretch;
    flex-direction: column;
  }

  .project-card h3 {
    max-width: none;
  }

  .project-topline {
    display: block;
  }

  .price {
    display: inline-block;
    margin-bottom: 18px;
  }
}
