:root {
  --orange: #fb813f;
  --purple: #b23ba6;
  --olive: #bcc77d;
  --taupe: #8f826a;
  --green: #bcc77d;
  --green-dark: #6f7744;
  --mint: #f8f6ed;
  --ink: #262626;
  --muted: #717d7d;
  --line: #e6dfd3;
  --white: #ffffff;
  --charcoal: #0b0b0b;
  --gold: #fb813f;
  --shadow: 0 18px 45px rgba(18, 18, 18, .1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: "Noto Sans Devanagari", system-ui, sans-serif;
  line-height: 1.65;
}

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

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

.container {
  width: min(1140px, calc(100% - 40px));
  margin: 0 auto;
}

.topbar {
  background: var(--charcoal);
  color: var(--white);
  font-size: 13px;
}

.topbar__inner {
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, .95);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.nav {
  min-height: 106px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 4px 10px;
  /* background: var(--charcoal); */
  border-radius: 8px;
  font-family: "Red Hat Display", sans-serif;
  font-size: 22px;
  font-weight: 900;
  line-height: 1;
}

.brand__logo {
  width: 172px;
  height: 94px;
  object-fit: contain;
  object-position: left center;
}

.brand span span {
  color: var(--orange);
}

.brand__mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--orange);
  border-radius: 8px;
  font-size: 15px;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 28px;
  font-weight: 700;
  color: #343434;
}

.nav__links a {
  transition: color .2s ease, background .2s ease;
}

.nav__links a:hover,
.nav__links a.active {
  color: var(--purple);
}

.nav__cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 12px 20px;
  color: var(--white);
  background: var(--orange);
  border: 0;
  border-radius: 8px;
  font-weight: 800;
  cursor: pointer;
  box-shadow: none;
}

.nav__links .nav__cta {
  color: var(--white);
}

.button--dark {
  background: var(--charcoal);
}

.button--light {
  color: var(--ink);
  background: var(--white);
}

.nav__toggle {
  display: none;
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: 8px;
  padding: 9px 12px;
  font-weight: 800;
}

.hero {
  position: relative;
  overflow: hidden;
  background-image: linear-gradient(90deg, rgba(0, 0, 0, .78), rgba(0, 0, 0, .45)), url("assets/hero-township.jpg");
  background-position: center;
  background-size: cover;
}

.hero__grid {
  min-height: 620px;
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  gap: 28px;
}

.hero__content {
  max-width: 780px;
  padding: 82px 0;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--orange);
  font-family: "Red Hat Display", sans-serif;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--ink);
  font-family: "Red Hat Display", "Noto Sans Devanagari", sans-serif;
  line-height: 1.12;
  letter-spacing: 0;
}

h1 {
  max-width: 560px;
  font-size: clamp(38px, 5.5vw, 64px);
  font-weight: 900;
}

h2 {
  font-size: clamp(27px, 3.3vw, 40px);
  font-weight: 900;
}

h3 {
  font-size: 23px;
  font-weight: 900;
}

p {
  margin: 0;
  color: var(--muted);
}

.hero__lead {
  max-width: 610px;
  margin-top: 18px;
  color: rgba(255, 255, 255, .86);
  font-size: 18px;
}

.hero h1,
.hero .eyebrow {
  color: var(--white);
}

.hero .eyebrow {
  color: var(--orange);
}

.search-card {
  width: min(760px, calc(100vw - 40px));
  margin-top: 34px;
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr auto;
  gap: 0;
  align-items: center;
  background: var(--white);
  border: 1px solid var(--orange);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.search-card div {
  min-height: 76px;
  padding: 16px 22px;
  border-right: 1px solid var(--line);
}

.search-card strong,
.search-card span {
  display: block;
}

.search-card strong {
  font-family: "Red Hat Display", sans-serif;
  font-weight: 900;
}

.search-card span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 13px;
}

.search-card a {
  margin: 0 16px;
  padding: 13px 20px;
  color: var(--white);
  background: var(--purple);
  border-radius: 8px;
  font-weight: 900;
  white-space: nowrap;
}

.stats {
  display: flex;
  gap: clamp(22px, 6vw, 70px);
  margin-top: 42px;
}

.stats strong,
.stats span {
  display: block;
}

.stats strong {
  font-family: "Red Hat Display", sans-serif;
  color: var(--white);
  font-size: 30px;
  font-weight: 900;
}

.stats span {
  color: rgba(255, 255, 255, .78);
  font-size: 14px;
}

.hero__visual {
  min-height: 650px;
  display: flex;
  align-items: flex-end;
}

.hero__visual img {
  width: 100%;
  height: 620px;
  object-fit: cover;
}

.section {
  padding: 90px 0;
}

.muted {
  background: var(--mint);
}

.section-title {
  max-width: 760px;
  margin: 0 auto 42px;
  text-align: center;
}

.section-title p:not(.eyebrow) {
  margin-top: 14px;
  font-size: 18px;
}

.section-title--row {
  max-width: none;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  text-align: left;
}

.view-link {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 8px 14px;
  color: var(--white);
  background: var(--orange);
  border-radius: 8px;
  font-weight: 900;
}

.project-strip {
  background: var(--charcoal);
}

.project-strip h2,
.project-strip .eyebrow {
  color: var(--white);
}

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

.listing-card {
  min-height: 330px;
  display: flex;
  align-items: end;
  padding: 26px;
  border-radius: 8px;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(18, 18, 18, .04), rgba(18, 18, 18, .86)), var(--green);
}

.listing-card--one{
  background-color: var(--taupe);
  background-image: linear-gradient(180deg, rgba(18, 18, 18, .08), rgba(0, 0, 0, .88)), url("assets/location.jpg");
  background-size: cover;
  background-position: center;
}

.listing-card--two{
  background-color: var(--taupe);
  background-image: linear-gradient(180deg, rgba(18, 18, 18, .08), rgba(0, 0, 0, .88)), url("assets/roads.jpg");
  background-size: cover;
  background-position: center;
}

.listing-card--three {
  background-color: var(--taupe);
  background-image: linear-gradient(180deg, rgba(18, 18, 18, .08), rgba(0, 0, 0, .88)), url("assets/family.jpg");
  background-size: cover;
  background-position: center;
}

.listing-card--two {
  background-position: 42% center;
}

.listing-card--three {
  background-position: right center;
}

.listing-card h3,
.listing-card p {
  color: var(--white);
}

.listing-card p {
  margin-top: 8px;
  opacity: .88;
}

.split-panel {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 46px;
  align-items: center;
  padding: 54px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.split-panel p {
  font-size: 18px;
}

.split-panel .button {
  margin-top: 24px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.service-grid--large {
  grid-template-columns: repeat(3, 1fr);
}

.service-card,
.rich-card,
.project-summary,
.contact-form {
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 30px rgba(18, 18, 18, .06);
}

.service-card span {
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  margin-bottom: 22px;
  color: var(--white);
  background: var(--orange);
  border-radius: 8px;
  font-family: "Red Hat Display", sans-serif;
  font-weight: 900;
}

.service-card p{
  margin-top: 12px;
}

.service-card h2{
  font-size: 20px;
}

.center-action {
  margin-top: 36px;
  text-align: center;
}

.values {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.values article {
  padding: 40px;
  background: var(--mint);
  border-radius: 8px;
}

.values p:last-child {
  margin-top: 18px;
  font-size: 18px;
}

.cta {
  padding: 80px;
  background: linear-gradient(135deg, var(--purple), var(--orange));
}

.cta__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-direction: column;
  text-align: center;
}

.cta h2,
.cta p {
  color: var(--white);
}

.cta p {
  max-width: 520px;
  margin-top: 12px;
  opacity: .92;
  margin-left: auto;
  margin-right: auto;
}

.footer {
  padding-top: 64px;
  color: var(--white);
  background: var(--charcoal);
}

.footer .brand__logo {
  width: 230px;
  height: 126px;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr .7fr 1fr;
  gap: 42px;
}

.footer p,
.footer a {
  display: block;
  color: rgba(255, 255, 255, .76);
}

.footer h3 {
  margin-bottom: 12px;
  color: var(--white);
  font-size: 18px;
}

.brand--footer {
  margin-bottom: 14px;
  color: var(--white);
}

.copyright {
  margin-top: 48px;
  padding: 18px;
  border-top: 1px solid rgba(255, 255, 255, .14);
  text-align: center;
}

.page-hero {
  position: relative;
  padding: 100px 0;
  background-image: linear-gradient(90deg, rgba(0, 0, 0, .78), rgba(0, 0, 0, .5)), url("assets/hero-township.jpg");
  background-position: center;
  background-size: cover;
}

.page-hero--project {
  background-image: linear-gradient(90deg, rgba(0, 0, 0, .78), rgba(0, 0, 0, .5)), url("assets/hero-township.jpg");
}

.page-hero p:not(.eyebrow) {
  max-width: 760px;
  margin-top: 18px;
  color: rgba(255, 255, 255, .86);
  font-size: 20px;
}

.page-hero h1 {
  color: var(--white);
}

.content-grid,
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
}

.rich-card h2,
.project-summary h2 {
  margin-bottom: 18px;
}

.rich-card p + p {
  margin-top: 16px;
}

.rich-card--green {
  background: var(--mint);
}

.check-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 28px;
  margin: 12px 0;
  color: #404040;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 10px;
  height: 10px;
  background: var(--orange);
  border-radius: 3px;
}

.director {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 44px;
}

.director strong {
  display: block;
  margin-top: 18px;
  font-size: 19px;
}

.project-layout {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 26px;
  align-items: start;
}

.project-summary {
  position: sticky;
  top: 116px;
  background: var(--charcoal);
}

.project-summary h2,
.project-summary dt,
.project-summary dd {
  color: var(--white);
}

.project-summary dl {
  margin: 0;
}

.project-summary div {
  padding: 16px 0;
  border-top: 1px solid rgba(255, 255, 255, .14);
}

.project-summary dt {
  font-weight: 800;
}

.project-summary dd {
  margin: 4px 0 0;
  opacity: .78;
}

.project-details {
  display: grid;
  gap: 24px;
}

.two-column {
  columns: 2;
  column-gap: 36px;
}

.contact-lines {
  display: grid;
  gap: 10px;
  margin-top: 20px;
}

.contact-lines a,
.contact-lines span {
  color: var(--purple);
  font-weight: 900;
}

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

.contact-form label {
  display: grid;
  gap: 7px;
  color: var(--ink);
  font-weight: 800;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 13px 14px;
  color: var(--ink);
  font: inherit;
}

.form-note {
  min-height: 24px;
  color: var(--purple);
  font-weight: 800;
}

@media (max-width: 980px) {
  .nav__toggle {
    display: inline-flex;
  }

  .nav__links {
    position: absolute;
    left: 20px;
    right: 20px;
    top: 106px;
    display: none;
    padding: 18px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow);
  }

  .nav__links.is-open {
    display: grid;
  }

  .hero__grid,
  .split-panel,
  .values,
  .content-grid,
  .director,
  .project-layout,
  .contact-grid,
  .cta__inner,
  .footer__grid {
    grid-template-columns: 1fr;
  }

  .hero__grid {
    min-height: auto;
  }

  .hero__visual {
    min-height: auto;
  }

  .hero__visual img {
    height: auto;
  }

  .search-card,
  .listing-grid,
  .service-grid,
  .service-grid--large {
    grid-template-columns: 1fr 1fr;
  }

  .project-summary {
    position: static;
  }
}

@media (max-width: 680px) {
  .container {
    width: min(100% - 28px, 1140px);
  }

  .topbar__inner {
    flex-direction: column;
    justify-content: center;
    padding: 8px 0;
  }

  .brand {
    font-size: 18px;
    padding: 3px 8px;
  }

  .brand__logo {
    width: 132px;
    height: 72px;
  }

  .hero__content {
    padding: 48px 0 24px;
  }

  h1 {
    font-size: clamp(34px, 11vw, 48px);
  }

  h2 {
    font-size: clamp(26px, 8vw, 34px);
  }

  .search-card,
  .listing-grid,
  .service-grid,
  .service-grid--large {
    grid-template-columns: 1fr;
  }

  .search-card div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .search-card a {
    margin: 16px;
  }

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

  .stats strong {
    font-size: 24px;
  }

  .section {
    padding: 64px 0;
  }

  .section-title--row,
  .cta__inner {
    align-items: start;
  }

  .section-title--row {
    display: grid;
  }

  .split-panel,
  .values article,
  .rich-card,
  .project-summary,
  .contact-form {
    padding: 24px;
  }

  .two-column {
    columns: 1;
  }
}

.cta__inner {
  flex-direction: column;
  text-align: center;
}

.cta__inner .button {
  align-self: center;
}
