:root {
  --green-950: #003326;
  --green-900: #00402f;
  --green-800: #075640;
  --green-700: #087753;
  --gold: #e2a321;
  --gold-soft: #f4c85a;
  --gold-light: #f1bc50;
  --ink: #121c18;
  --muted: #69716d;
  --line: #e4e7e2;
  --ivory: #fbfbf7;
  --white: #fff;
  --shadow: 0 12px 34px rgba(0, 52, 38, .10);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 82px; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--ivory);
  font-family: "Poppins", Arial, sans-serif;
  font-size: 14px;
  line-height: 1.55;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
button, select, input { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; }
img { max-width: 100%; display: block; }
.page-shell { width: min(1180px, calc(100% - 48px)); margin-inline: auto; }

.projects-header {
  position: sticky;
  z-index: 100;
  top: 0;
  height: 82px;
  color: var(--ink);
  background: rgba(255, 255, 255, .98);
  border-bottom: 1px solid #eef0ec;
  box-shadow: 0 2px 10px rgba(0, 34, 24, .03);
  backdrop-filter: blur(14px);
}
.header-inner {
  width: min(1280px, calc(100% - 40px));
  height: 100%;
  display: flex;
  align-items: center;
  gap: 26px;
  margin: auto;
}
.brand {
  min-width: 210px;
  display: flex;
  align-items: center;
  color: var(--green-900);
}
.brand-mark {
  width: 44px;
  height: 52px;
  display: inline-grid;
  place-items: center;
  margin-right: 8px;
}
.brand-mark svg { width: 100%; height: 100%; }
.brand-copy { display: flex; flex-direction: column; line-height: .98; text-transform: uppercase; }
.brand-copy strong { color: var(--green-900); font-size: 14px; letter-spacing: -.2px; }
.brand-copy small { margin-top: 6px; color: #64706b; font-size: 7px; letter-spacing: 2.4px; }
.main-nav {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(13px, 1.4vw, 24px);
  margin-left: auto;
}
.main-nav a {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 4px;
  color: #202824;
  font-size: 12px;
  font-weight: 600;
  white-space: nowrap;
}
.main-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 18px;
  left: 0;
  height: 2px;
  border-radius: 2px;
  background: var(--green-700);
  transform: scaleX(0);
  transition: transform .2s ease;
}
.main-nav a:hover::after, .main-nav a.active::after { transform: scaleX(1); }
.main-nav a.active { color: var(--green-900); }
.main-nav a span { font-size: 12px; }
.header-actions { display: flex; align-items: center; gap: 10px; }
.phone-button, .primary-button {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 14px;
  border-radius: 7px;
  font-size: 11px;
  font-weight: 700;
  white-space: nowrap;
}
.phone-button { border: 1px solid #d7ded8; color: var(--green-900); background: #fff; }
.phone-button svg { width: 15px; height: 15px; }
.primary-button { color: white; background: var(--green-950); }
.primary-button:hover { background: var(--green-700); }
.menu-button {
  width: 42px;
  height: 42px;
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  border: 0;
  border-radius: 6px;
  background: var(--green-950);
}
.menu-button span { width: 20px; height: 2px; border-radius: 2px; background: white; transition: .2s ease; }

.projects-hero {
  position: relative;
  min-height: 310px;
  color: white;
  background: url("../images/projects-hero.jpg") center 56% / cover no-repeat;
}
.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 45, 35, .96) 0%, rgba(0, 45, 35, .78) 30%, rgba(0, 45, 35, .18) 67%, rgba(0, 45, 35, .06)),
    linear-gradient(0deg, rgba(0, 30, 23, .12), transparent 50%);
}
.hero-copy { position: relative; z-index: 1; padding-top: 57px; }
.hero-copy h1 {
  margin: 0 0 8px;
  font-family: "Manrope", Arial, sans-serif;
  font-size: clamp(42px, 4.4vw, 58px);
  line-height: 1;
  letter-spacing: -.8px;
}
.breadcrumb { display: flex; align-items: center; gap: 12px; margin: 14px 0 15px; font-size: 14px; font-weight: 500; }
.breadcrumb span { color: rgba(255,255,255,.7); font-size: 22px; }
.breadcrumb strong { color: var(--gold-soft); }
.hero-copy > p { margin: 0; font-size: 13px; line-height: 1.65; }

.project-search {
  position: relative;
  z-index: 4;
  margin-top: -58px;
  padding: 16px 24px 22px;
  border: 1px solid rgba(0, 53, 38, .06);
  border-radius: 12px;
  background: rgba(255,255,255,.98);
  box-shadow: var(--shadow);
}
.project-tabs { display: flex; gap: 9px; padding-bottom: 9px; border-bottom: 1px solid #e8ebe7; }
.project-tabs button {
  min-width: 116px;
  height: 37px;
  padding: 0 18px;
  border: 0;
  border-radius: 6px;
  color: #353c38;
  background: #f5f5f1;
  font-size: 12px;
  font-weight: 600;
}
.project-tabs button.active {
  color: white;
  background: linear-gradient(90deg, var(--green-950), #078b55);
  box-shadow: 0 5px 14px rgba(0, 67, 46, .14);
}
.project-search form {
  display: grid;
  grid-template-columns: 1.1fr 1.1fr 1fr 1.05fr 1.45fr auto;
  align-items: end;
  margin-top: 15px;
}
.project-search label, .budget-field { min-width: 0; padding: 0 18px; border-right: 1px solid #e1e4e0; }
.project-search label:first-child { padding-left: 0; }
.project-search label > span, .budget-field > span {
  display: block;
  margin-bottom: 6px;
  color: #454d49;
  font-size: 11px;
  font-weight: 500;
}
.project-search select, .project-search input {
  width: 100%;
  height: 30px;
  padding: 0 20px 0 0;
  border: 0;
  outline: 0;
  color: #202824;
  background: transparent;
  font-size: 11px;
}
.project-search select { cursor: pointer; }
.budget-field { padding-right: 14px; }
.budget-field > div { display: flex; align-items: center; gap: 4px; }
.budget-field input { min-width: 0; padding: 0 4px; border-bottom: 1px solid #edf0ec; text-align: center; }
.budget-field b { color: #a1a8a4; font-weight: 400; }
.search-projects-button {
  min-width: 164px;
  height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  margin-left: 18px;
  border: 0;
  border-radius: 7px;
  color: white;
  background: var(--green-950);
  font-size: 12px;
  font-weight: 700;
  box-shadow: 0 6px 14px rgba(0, 57, 40, .14);
}
.search-projects-button:hover { background: var(--green-700); }
.search-projects-button svg { width: 18px; height: 18px; color: var(--gold-soft); }

.projects-list { padding-top: 37px; }
.list-toolbar { display: flex; align-items: center; justify-content: space-between; margin-bottom: 12px; }
.list-toolbar p { margin: 0; color: #3f4743; font-size: 12px; }
.list-toolbar label { display: flex; align-items: center; gap: 14px; font-size: 11px; }
.list-toolbar select {
  width: 180px;
  height: 40px;
  padding: 0 38px 0 14px;
  border: 1px solid #e2e5e1;
  border-radius: 7px;
  outline: 0;
  color: #333b37;
  background: #fff;
  font-size: 11px;
}
.projects-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 20px; }
.project-card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid #e1e5e0;
  border-radius: 12px;
  background: white;
  box-shadow: 0 5px 13px rgba(9, 50, 36, .06);
  transition: transform .22s ease, box-shadow .22s ease;
}
.project-card:hover { transform: translateY(-4px); box-shadow: 0 15px 28px rgba(9, 50, 36, .12); }
.project-card[hidden] { display: none; }
.project-image { position: relative; height: 184px; background-position: center; background-size: cover; }
.image-kingdom { background-image: url("../images/projects-hero.jpg"); background-position: 69% 55%; }
.image-wonders { background-image: url("../images/photo-1545324418-cc1a3fa10c00.jpg"); }
.image-parkview { background-image: url("../images/photo-1600607687939-ce8a6c25118c.jpg"); }
.image-metro { background-image: url("../images/photo-1486406146926-c627a92ad1ab.jpg"); }
.image-nova { background-image: url("../images/photo-1500382017468-9049fed747ef.jpg"); }
.image-lahore { background-image: url("../images/photo-1449157291145-7efd050a4d0e.jpg"); }
.image-blueworld { background-image: url("../images/photo-1518005020951-eccb494ad742.jpg"); }
.image-bahria { background-image: url("../images/photo-1511818966892-d7d671e672a2.jpg"); }
.status {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 5px 10px;
  border-radius: 6px;
  color: white;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  box-shadow: 0 3px 8px rgba(0,0,0,.12);
}
.status.upcoming { background: #078354; }
.status.ongoing { color: #3c2a00; background: #f3aa20; }
.project-content { position: relative; padding: 38px 13px 13px; }
.project-monogram {
  position: absolute;
  top: -36px;
  left: 13px;
  width: 72px;
  height: 58px;
  display: grid;
  place-items: center;
  border: 1px solid #e2e5e1;
  border-radius: 9px;
  color: #7d6115;
  background: white;
  box-shadow: 0 5px 12px rgba(0, 43, 31, .10);
  font-family: "Manrope", Arial, sans-serif;
  font-size: 18px;
  font-weight: 700;
}
.project-monogram.gold { color: #c39023; }
.project-monogram.green { color: #268260; }
.project-monogram.blue { color: #35659a; }
.project-monogram.pink { color: #bb4e8f; }
.project-content h2 { margin: 0 0 2px; color: #151c19; font-size: 17px; line-height: 1.3; }
.location, .property-type { display: flex; align-items: center; gap: 4px; }
.location { margin: 5px 0 7px; color: #656e69; font-size: 10px; }
.location svg { width: 12px; height: 12px; color: #1a2a23; }
.summary { min-height: 47px; margin: 0 0 8px; color: #68716c; font-size: 10px; line-height: 1.55; }
.property-type { margin: 0 0 7px; color: #717975; font-size: 10px; }
.property-type svg { width: 12px; height: 12px; color: #db9c24; }
.starting-price { display: flex; align-items: center; gap: 11px; margin: 0 0 11px; color: #68706c; font-size: 10px; }
.starting-price strong { color: #c47b13; font-size: 11px; }
.card-actions { display: grid; grid-template-columns: 1fr 1.1fr; gap: 9px; }
.card-actions a, .card-actions button {
  height: 35px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--green-900);
  border-radius: 6px;
  color: var(--green-900);
  background: white;
  font-size: 9px;
  font-weight: 700;
}
.card-actions button { color: white; background: var(--green-900); }
.card-actions button:hover { background: var(--green-700); }
.empty-state { padding: 54px 20px; border: 1px dashed #cfd6d1; border-radius: 12px; text-align: center; background: white; }
.empty-state svg { width: 42px; height: 42px; color: var(--green-700); }
.empty-state h2 { margin: 12px 0 4px; font-family: "Manrope", Arial, sans-serif; }
.empty-state p { margin: 0; color: var(--muted); }
.pagination { display: flex; justify-content: center; gap: 10px; padding: 24px 0 15px; }
.pagination button {
  width: 31px;
  height: 31px;
  border: 1px solid #dde2dd;
  border-radius: 6px;
  color: #404844;
  background: white;
  font-size: 11px;
}
.pagination button.active { border-color: var(--green-700); color: white; background: var(--green-700); box-shadow: 0 4px 10px rgba(5, 113, 76, .17); }

.partners { padding-top: 6px; padding-bottom: 26px; }
.partners h2, .faq-column > h2 {
  margin: 0;
  color: #14382d;
  font-family: "Manrope", Arial, sans-serif;
  font-size: 22px;
}
.partners > p { margin: 2px 0 12px; color: #717975; font-size: 10px; }
.partner-row-wrap { position: relative; }
.partner-row {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 10px;
  overflow: auto;
  scrollbar-width: none;
  scroll-behavior: smooth;
}
.partner-row::-webkit-scrollbar { display: none; }
.partner-row article {
  min-width: 126px;
  height: 82px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  border: 1px solid #e3e6e1;
  border-radius: 8px;
  background: white;
  box-shadow: 0 3px 7px rgba(0, 38, 27, .025);
}
.partner-row b { font-family: "Manrope", Arial, sans-serif; font-size: 19px; letter-spacing: -.6px; }
.partner-row span { margin-top: -2px; color: #757c78; font-size: 7px; letter-spacing: .7px; }
.gold-text { color: #c2912a; }
.blue-text { color: #304f82; }
.red-text { color: #bc3631; }
.partner-arrow {
  position: absolute;
  z-index: 2;
  top: 26px;
  width: 34px;
  height: 34px;
  border: 1px solid #e0e4df;
  border-radius: 50%;
  color: #34413b;
  background: white;
  box-shadow: 0 4px 10px rgba(0, 39, 28, .08);
  font-size: 20px;
}
.partner-prev { left: -46px; }
.partner-next { right: -46px; }

.consultation {
  position: relative;
  min-height: 180px;
  display: grid;
  grid-template-columns: 1.55fr repeat(3, .7fr);
  align-items: center;
  gap: 26px;
  overflow: hidden;
  padding: 26px 36px;
  border-radius: 13px;
  color: white;
  background:
    linear-gradient(90deg, rgba(0, 60, 43, .99) 0%, rgba(0, 60, 43, .97) 61%, rgba(0, 60, 43, .5) 82%, rgba(0, 60, 43, .15)),
    url("../images/photo-1600585154340-be6161a56a0c.jpg") right center / 44% 100% no-repeat,
    var(--green-900);
  box-shadow: var(--shadow);
}
.consultation-copy h2 { margin: 0 0 7px; font-family: "Manrope", Arial, sans-serif; font-size: 25px; }
.consultation-copy p { margin: 0 0 16px; font-size: 10px; line-height: 1.7; }
.consultation-copy a, .right-project-card a {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  gap: 18px;
  padding: 0 18px;
  border-radius: 6px;
  color: #113227;
  background: var(--gold-soft);
  font-size: 11px;
  font-weight: 700;
}
.benefit { min-height: 90px; display: flex; gap: 10px; padding-left: 14px; border-left: 1px solid rgba(255,255,255,.18); }
.benefit svg { width: 28px; height: 28px; flex: 0 0 auto; color: var(--gold-soft); }
.benefit p { display: flex; flex-direction: column; margin: 4px 0 0; }
.benefit strong { font-size: 10px; }
.benefit span { max-width: 104px; margin-top: 4px; color: rgba(255,255,255,.82); font-size: 8px; line-height: 1.5; }

.faq-contact { display: grid; grid-template-columns: 1.2fr 1fr; gap: 34px; padding-top: 20px; padding-bottom: 14px; }
.faq-column > h2 { margin-bottom: 7px; font-size: 17px; }
.faq-list article { border-bottom: 1px solid #dfe3de; }
.faq-list button {
  width: 100%;
  min-height: 31px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 5px 8px;
  border: 0;
  color: #3d4541;
  background: transparent;
  text-align: left;
  font-size: 9px;
}
.faq-list button b { font-size: 14px; font-weight: 500; }
.faq-list p {
  max-height: 0;
  margin: 0;
  padding: 0 8px;
  overflow: hidden;
  color: #68716c;
  font-size: 9px;
  transition: max-height .25s ease, padding .25s ease;
}
.faq-list article.open p { max-height: 100px; padding: 2px 8px 10px; }
.right-project-card {
  min-height: 146px;
  overflow: hidden;
  border-radius: 9px;
  color: white;
  background:
    linear-gradient(90deg, rgba(0, 61, 44, .98), rgba(0, 61, 44, .75) 52%, rgba(0, 61, 44, .02) 84%),
    url("../images/photo-1600566753190-17f0baa2a6c3.jpg") center / cover no-repeat;
}
.right-project-card > div { width: 55%; padding: 20px 0 17px 24px; }
.right-project-card h2 { margin: 0 0 6px; font-family: "Manrope", Arial, sans-serif; font-size: 19px; line-height: 1.2; }
.right-project-card p { margin: 0 0 11px; font-size: 9px; line-height: 1.5; }
.right-project-card a { min-height: 30px; padding: 0 14px; font-size: 9px; }

.projects-footer {
  position: relative;
  border-top: 1px solid #dce2dd;
  color: #345048;
  background:
    linear-gradient(90deg, rgba(255,255,255,.98) 0%, rgba(255,255,255,.94) 80%, rgba(247,249,246,.68)),
    radial-gradient(circle at 91% 100%, rgba(21, 111, 78, .13), transparent 23%);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.45fr .72fr 1.1fr .8fr 1.45fr;
  gap: 25px;
  padding-top: 20px;
  padding-bottom: 8px;
}
.footer-grid .brand { min-width: 0; }
.footer-grid .brand-mark { width: 39px; height: 46px; }
.footer-grid .brand-copy strong { font-size: 11px; }
.footer-grid .brand-copy small { font-size: 6px; }
.footer-brand > p { max-width: 210px; margin: 7px 0 10px; color: #597068; font-size: 8px; line-height: 1.55; }
.footer-grid > div:not(:first-child) {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-left: 20px;
  border-left: 1px solid #e4e7e3;
}
.footer-grid h3 { margin: 3px 0 6px; color: #214238; font-size: 10px; }
.footer-grid a, .footer-grid p { margin: 1px 0; color: #597068; font-size: 8px; line-height: 1.55; }
.footer-grid a:hover { color: var(--green-700); }
.footer-contact p, .footer-contact a { display: flex; align-items: flex-start; gap: 5px; }
.footer-contact svg { width: 10px; height: 10px; margin-top: 1px; flex: 0 0 auto; color: var(--green-800); }
.social-links { display: flex; gap: 7px; }
.social-links a { width: 17px; height: 17px; display: grid; place-items: center; border-radius: 50%; color: white; background: var(--green-900); font-size: 7px; }
.footer-bottom { min-height: 28px; display: flex; align-items: center; border-top: 1px solid #e4e7e3; color: #698078; font-size: 7px; }
.toast {
  position: fixed;
  z-index: 200;
  right: 22px;
  bottom: 22px;
  max-width: min(380px, calc(100% - 44px));
  padding: 12px 16px;
  border-radius: 7px;
  color: white;
  background: var(--green-950);
  box-shadow: var(--shadow);
  font-size: 12px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(14px);
  transition: .25s ease;
}
.toast.show { opacity: 1; transform: translateY(0); }

@media (max-width: 1210px) {
  .main-nav { gap: 13px; }
  .main-nav a { font-size: 11px; }
  .phone-button { display: none; }
  .partner-prev { left: -16px; }
  .partner-next { right: -16px; }
}

@media (max-width: 1020px) {
  .projects-header { height: 72px; }
  .header-inner { position: relative; }
  .brand { min-width: 0; }
  .brand-mark { width: 38px; height: 45px; }
  .brand-copy strong { font-size: 12px; }
  .header-actions { margin-left: auto; }
  .menu-button { display: flex; }
  .main-nav {
    position: fixed;
    top: 72px;
    right: 0;
    bottom: 0;
    width: min(330px, 88vw);
    height: auto;
    display: flex;
    align-items: stretch;
    justify-content: flex-start;
    flex-direction: column;
    gap: 0;
    padding: 18px 24px;
    color: white;
    background: var(--green-950);
    box-shadow: -20px 0 40px rgba(0,0,0,.18);
    transform: translateX(103%);
    transition: transform .25s ease;
  }
  .main-nav.open { transform: translateX(0); }
  .main-nav a { height: auto; padding: 13px 0; color: white; border-bottom: 1px solid rgba(255,255,255,.1); font-size: 13px; }
  .main-nav a::after { display: none; }
  .main-nav a.active { color: var(--gold-soft); }
  .project-search form { grid-template-columns: repeat(3, 1fr); gap: 15px 0; }
  .project-search label:nth-child(3) { border-right: 0; }
  .budget-field { border-right: 0; }
  .search-projects-button { margin-right: 18px; }
  .projects-grid { grid-template-columns: repeat(3, 1fr); }
  .consultation { grid-template-columns: 1.3fr repeat(3, .65fr); padding-inline: 24px; gap: 15px; }
  .footer-grid { grid-template-columns: 1.3fr repeat(2, 1fr); }
  .footer-grid > div:nth-child(4), .footer-grid > div:nth-child(5) { margin-top: 8px; }
}

@media (max-width: 760px) {
  .page-shell { width: calc(100% - 30px); }
  .header-inner { width: calc(100% - 24px); }
  .header-cta { display: none; }
  .projects-hero { min-height: 300px; }
  .hero-copy { padding-top: 48px; }
  .hero-copy > p br { display: none; }
  .project-search { margin-top: -54px; padding: 14px; }
  .project-tabs { display: grid; grid-template-columns: repeat(3, 1fr); }
  .project-tabs button { min-width: 0; padding: 0 8px; }
  .project-search form { grid-template-columns: 1fr 1fr; }
  .project-search label { padding: 0 12px; }
  .project-search label:nth-child(2n) { border-right: 0; }
  .project-search label:nth-child(3) { border-right: 1px solid #e1e4e0; }
  .budget-field { padding: 0 12px; border-right: 0; }
  .search-projects-button { width: calc(100% - 12px); margin: 0 0 0 12px; }
  .projects-grid { grid-template-columns: repeat(2, 1fr); }
  .project-image { height: 170px; }
  .partners h2 { font-size: 20px; }
  .partner-row { display: flex; }
  .partner-row article { flex: 0 0 130px; }
  .partner-prev { left: -10px; }
  .partner-next { right: -10px; }
  .consultation { grid-template-columns: 1fr; padding: 28px; background-position: right bottom; background-size: auto, 100% 50%, auto; }
  .consultation-copy { max-width: 66%; }
  .benefit { min-height: 0; padding: 12px 0 0; border-top: 1px solid rgba(255,255,255,.18); border-left: 0; }
  .benefit span { max-width: none; }
  .faq-contact { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid > div:not(:first-child) { padding-left: 0; border-left: 0; }
  .footer-brand { grid-column: span 2; }
  .footer-grid > div:nth-child(5) { grid-column: span 2; }
}

@media (max-width: 520px) {
  .brand-copy small { display: none; }
  .projects-hero { min-height: 325px; }
  .hero-copy h1 { font-size: 42px; }
  .hero-copy > p { font-size: 12px; }
  .project-search form { display: flex; flex-direction: column; gap: 0; }
  .project-search label, .budget-field { width: 100%; padding: 11px 2px; border-right: 0 !important; border-bottom: 1px solid #e4e7e3; }
  .project-search select, .project-search input { height: 34px; }
  .search-projects-button { width: 100%; margin: 14px 0 0; }
  .list-toolbar { align-items: flex-start; flex-direction: column; gap: 9px; }
  .list-toolbar label { width: 100%; justify-content: space-between; }
  .projects-grid { grid-template-columns: 1fr; }
  .project-image { height: 210px; }
  .summary { min-height: 0; }
  .pagination { gap: 7px; }
  .consultation-copy { max-width: 100%; }
  .consultation { background-size: auto, cover, auto; }
  .right-project-card > div { width: 66%; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand, .footer-grid > div:nth-child(5) { grid-column: auto; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; animation-duration: .01ms !important; }
}

/* Shared site chrome: intentionally mirrors index.html */
.container { width: min(1240px, calc(100% - 48px)); margin-inline: auto; }
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: 84px;
  color: #fff;
  background: rgba(0, 48, 35, .97);
  border-bottom: 1px solid rgba(255,255,255,.08);
  backdrop-filter: blur(12px);
}
.site-header .nav-shell {
  width: min(1320px, calc(100% - 40px));
  height: 100%;
  margin: auto;
  display: flex;
  align-items: center;
  gap: 34px;
}
.site-header .brand, footer .brand { min-width: 220px; color: white; }
.site-header .brand-mark, footer .brand-mark {
  width: 48px;
  height: 54px;
  margin-right: 9px;
  color: white;
}
.site-header .brand-copy strong, footer .brand-copy strong { color: #f2c651; font-size: 15px; }
.site-header .brand-copy small, footer .brand-copy small {
  display: block;
  margin-top: 7px;
  color: rgba(255,255,255,.78);
  font-size: 9px;
  letter-spacing: 2.5px;
}
.site-header .main-nav {
  position: static;
  width: auto;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  gap: clamp(16px, 2vw, 31px);
  margin-left: auto;
  padding: 0;
  background: transparent;
  box-shadow: none;
  transform: none;
}
.site-header .main-nav a {
  position: relative;
  height: 100%;
  padding: 0;
  border: 0;
  color: rgba(255,255,255,.9);
  font-family: "Manrope", Arial, sans-serif;
  font-size: 14px;
  font-weight: 600;
}
.site-header .main-nav a::after {
  display: block;
  right: 0;
  bottom: 20px;
  left: 0;
  background: var(--gold);
}
.site-header .main-nav a.active { color: white; }
.site-header .main-nav a span { color: var(--gold-light); font-size: 14px; }
.site-header .header-actions { display: flex; align-items: center; gap: 14px; }
.site-header .phone-link {
  display: flex;
  align-items: center;
  gap: 8px;
  color: white;
  font-family: "Manrope", Arial, sans-serif;
}
.site-header .round-icon {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(241,188,80,.65);
  border-radius: 50%;
  color: var(--gold-light);
}
.site-header .round-icon svg { width: 17px; height: 17px; }
.site-header .phone-link > span:last-child { display: flex; flex-direction: column; }
.site-header .phone-link small { color: var(--gold-light); font-size: 8px; line-height: 1; }
.site-header .phone-link strong { margin-top: 3px; font-size: 11px; line-height: 1; }
.gold-button {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  border-radius: 6px;
  color: #11251e;
  background: var(--gold-light);
  font-family: "Manrope", Arial, sans-serif;
  font-size: 12px;
  font-weight: 800;
}
.site-header .menu-button { display: none; }

/* Compact projects-page rhythm */
.projects-hero { min-height: 280px; }
.hero-copy { padding-top: 47px; }
.hero-copy h1 { font-size: clamp(40px, 4vw, 50px); }
.project-search { margin-top: -50px; padding: 14px 22px 18px; }
.project-tabs button { height: 35px; }
.projects-list { padding-top: 28px; }
.projects-grid { gap: 16px; }
.project-image { height: 164px; }
.project-content { padding: 34px 12px 12px; }
.project-content h2 { font-size: 16px; }
.summary { min-height: 42px; }
.pagination { padding: 19px 0 12px; }
.partners { padding-top: 4px; padding-bottom: 20px; }
.partners h2 { font-size: 20px; }
.partner-row article { height: 72px; }
.partner-arrow { top: 20px; }
.consultation { min-height: 160px; padding-top: 22px; padding-bottom: 22px; }
.consultation-copy h2 { font-size: 23px; }
.faq-contact { padding-top: 16px; padding-bottom: 12px; }

footer {
  color: white;
  background: #2d3230;
  font-family: "Manrope", Arial, sans-serif;
}
footer .footer-cta {
  border-bottom: 1px solid rgba(255,255,255,.12);
  background: #3a3f3d;
}
footer .footer-cta-inner {
  min-height: 94px;
  display: grid;
  grid-template-columns: 1.4fr .8fr .8fr auto;
  align-items: center;
  gap: 24px;
}
footer .ready-copy, footer .cta-contact { display: flex; align-items: center; gap: 15px; }
footer .ready-copy > svg, footer .cta-contact > svg { width: 34px; height: 34px; color: var(--gold-light); flex: 0 0 auto; }
footer .ready-copy p, footer .cta-contact p { display: flex; flex-direction: column; margin: 0; }
footer .ready-copy strong { font-size: 17px; }
footer .ready-copy small { font-size: 11px; }
footer .cta-contact { padding-left: 24px; border-left: 1px solid rgba(255,255,255,.12); }
footer .cta-contact small { color: var(--gold-light); font-size: 11px; }
footer .cta-contact strong { margin-top: 2px; font-size: 12px; }
footer .footer-main { padding: 32px 0 0; background: #2d3230; }
footer .footer-grid {
  display: grid;
  grid-template-columns: 1.45fr .75fr 1.1fr .85fr 1.35fr;
  gap: 34px;
  padding-top: 0;
  padding-bottom: 0;
}
footer .footer-grid > div:not(:first-child) {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-top: 0;
  padding-left: 24px;
  border-left: 1px solid rgba(255,255,255,.11);
}
footer .footer-grid .brand { min-width: 0; }
footer .footer-brand > p { max-width: 250px; margin: 10px 0; color: rgba(255,255,255,.65); font-size: 10px; }
footer .socials { display: flex; gap: 8px; }
footer .socials a {
  width: 23px;
  height: 23px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.3);
  border-radius: 50%;
  color: white;
  font-size: 9px;
}
footer .footer-grid h3 { margin: 5px 0 10px; color: white; font-size: 13px; }
footer .footer-grid a, footer .footer-grid p { margin: 2px 0; color: rgba(255,255,255,.7); font-size: 10px; line-height: 1.55; }
footer .footer-grid a:hover { color: var(--gold-light); }
footer .footer-contact p, footer .footer-contact a { display: flex; align-items: flex-start; gap: 7px; }
footer .footer-contact svg { width: 13px; height: 13px; margin-top: 1px; flex: 0 0 auto; color: var(--gold-light); }
footer .footer-bottom {
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 21px;
  border-top: 1px solid rgba(255,255,255,.1);
  color: rgba(255,255,255,.55);
  font-size: 10px;
}
footer .footer-bottom div { display: flex; gap: 20px; }

@media (max-width: 1160px) {
  .site-header .nav-shell { gap: 15px; }
  .site-header .brand { min-width: 190px; }
  .site-header .main-nav { gap: 14px; }
  .site-header .main-nav a { font-size: 12px; }
  .site-header .phone-link { display: none; }
  footer .footer-grid { grid-template-columns: 1.3fr repeat(2, 1fr); }
  footer .footer-grid > div:nth-child(4), footer .footer-grid > div:nth-child(5) { margin-top: 12px; }
}

@media (max-width: 900px) {
  .container { width: min(100% - 32px, 720px); }
  .site-header { height: 70px; }
  .site-header .nav-shell { position: relative; width: calc(100% - 28px); }
  .site-header .brand { min-width: 0; }
  .site-header .brand-mark { width: 38px; height: 44px; }
  .site-header .brand-copy strong { font-size: 12px; }
  .site-header .brand-copy small { font-size: 7px; letter-spacing: 1.8px; }
  .site-header .header-actions { position: absolute; right: 0; margin-left: auto; }
  .site-header .header-actions > .gold-button { display: none; }
  .site-header .menu-button { display: flex; }
  .site-header .main-nav {
    position: fixed;
    top: 70px;
    right: 0;
    bottom: 0;
    width: min(330px, 88vw);
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    padding: 16px 24px;
    background: var(--green-950);
    box-shadow: -16px 0 32px rgba(0,0,0,.18);
    transform: translateX(102%);
    transition: transform .25s ease;
  }
  .site-header .main-nav.open { transform: translateX(0); }
  .site-header .main-nav a { height: auto; padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,.1); color: white; font-size: 13px; }
  .site-header .main-nav a::after { display: none; }
  footer .footer-cta-inner { grid-template-columns: 1fr 1fr; padding: 18px 0; }
  footer .cta-contact { padding-left: 0; border-left: 0; }
  footer .footer-grid { grid-template-columns: 1fr 1fr; }
  footer .footer-grid > div:not(:first-child) { padding-left: 0; border-left: 0; }
}

@media (max-width: 620px) {
  .container { width: calc(100% - 24px); }
  .projects-hero { min-height: 292px; }
  .project-search { margin-top: -46px; }
  .project-image { height: 190px; }
  footer .footer-cta-inner { grid-template-columns: 1fr; }
  footer .footer-grid { grid-template-columns: 1fr 1fr; }
  footer .footer-brand { grid-column: span 2; }
  footer .footer-grid > div:nth-child(5) { grid-column: span 2; }
  footer .footer-bottom { flex-direction: column; justify-content: center; gap: 4px; padding: 10px 0; text-align: center; }
}

@media (max-width: 410px) {
  .site-header .brand-copy small { display: none; }
  footer .footer-grid { grid-template-columns: 1fr; }
  footer .footer-brand, footer .footer-grid > div:nth-child(5) { grid-column: auto; }
}

/* Readability pass for the projects listing */
body { font-size: 15px; }
.site-header .brand-copy small, footer .brand-copy small { font-size: 10px; }
.site-header .phone-link small { font-size: 10px; }
.site-header .phone-link strong { font-size: 13px; }
.site-header .gold-button, footer .gold-button { font-size: 13px; }
.project-tabs button { font-size: 14px; }
.project-search label > span, .budget-field > span { font-size: 13px; }
.project-search select, .project-search input { font-size: 13px; }
.search-projects-button { font-size: 14px; }
.list-toolbar p, .list-toolbar label, .list-toolbar select { font-size: 13px; }
.status { font-size: 11px; }
.location, .summary, .property-type, .starting-price { font-size: 12px; }
.starting-price strong { font-size: 13px; }
.card-actions a, .card-actions button { font-size: 11px; }
.partners > p { font-size: 12px; }
.partner-row span { font-size: 9px; }
.consultation-copy p { font-size: 12px; }
.consultation-copy a, .right-project-card a { font-size: 12px; }
.benefit strong { font-size: 12px; }
.benefit span { max-width: 125px; font-size: 10px; }
.faq-list button, .faq-list p { font-size: 11px; }
.right-project-card p { font-size: 11px; }
footer .ready-copy small, footer .cta-contact small { font-size: 12px; }
footer .cta-contact strong { font-size: 13px; }
footer .footer-brand > p, footer .footer-grid a, footer .footer-grid p, footer .footer-bottom { font-size: 12px; }
footer .socials a { font-size: 10px; }
