:root {
  --ink: #121212;
  --muted: #5d5b56;
  --paper: #fbfaf7;
  --soft: #f0ece4;
  --line: #ddd4c4;
  --green: #1d2b24;
  --gold: #c4a15d;
  --gold-dark: #8d6f36;
  --white: #ffffff;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.5;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 74px;
  padding: 12px 42px;
  background: rgba(251, 250, 247, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-weight: 700;
  text-decoration: none;
}

.brand img {
  width: 138px;
  height: 44px;
  object-fit: cover;
  background: #050505;
}

nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

nav a {
  padding: 10px 13px;
  color: #26241f;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
}

.nav-cta {
  color: var(--white);
  background: var(--green);
  border-radius: 6px;
}

.hero {
  position: relative;
  min-height: 720px;
  overflow: hidden;
  background: #111;
}

.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.78), rgba(0, 0, 0, 0.24) 56%, rgba(0, 0, 0, 0.5)),
    linear-gradient(0deg, rgba(0, 0, 0, 0.46), transparent 36%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(760px, calc(100% - 44px));
  padding: 126px 0 92px 58px;
  color: var(--white);
}

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

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

h1 {
  margin-bottom: 22px;
  font-size: clamp(42px, 5.7vw, 72px);
  line-height: 1;
}

h2 {
  margin-bottom: 14px;
  font-size: clamp(31px, 4vw, 48px);
  line-height: 1.05;
}

h3 {
  margin-bottom: 10px;
  font-size: 23px;
  line-height: 1.18;
}

.hero-content p:not(.eyebrow) {
  max-width: 560px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 20px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-weight: 800;
  text-decoration: none;
}

.button.primary {
  color: #111;
  background: var(--gold);
}

.button.secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.55);
}

.button.dark {
  color: var(--green);
  border-color: var(--line);
}

.summary-bar {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border-bottom: 1px solid var(--line);
}

.summary-bar div {
  min-height: 116px;
  padding: 28px 42px;
  background: var(--paper);
}

.summary-bar strong,
.summary-bar span {
  display: block;
}

.summary-bar strong {
  margin-bottom: 6px;
  font-size: 18px;
}

.summary-bar span {
  color: var(--muted);
}

.section,
.feature-band {
  padding: 84px 58px;
}

.section-heading {
  max-width: 820px;
  margin-bottom: 28px;
}

.section-heading p:not(.eyebrow),
.two-column p {
  color: var(--muted);
  font-size: 18px;
}

.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 26px;
}

.filter {
  min-height: 40px;
  padding: 8px 14px;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--ink);
  background: var(--white);
  font-weight: 800;
  cursor: pointer;
}

.filter.active {
  color: var(--white);
  background: var(--green);
  border-color: var(--green);
}

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

.project-card {
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.project-card.hidden {
  display: none;
}

.project-card img,
.placeholder-image {
  width: 100%;
  height: 360px;
}

.project-card img {
  display: block;
  object-fit: cover;
  object-position: center;
}

.placeholder-image {
  display: grid;
  place-items: center;
  color: var(--gold);
  background:
    linear-gradient(135deg, rgba(29, 43, 36, 0.92), rgba(17, 17, 17, 0.96)),
    radial-gradient(circle at top left, rgba(196, 161, 93, 0.25), transparent 38%);
  font-size: 28px;
  font-weight: 800;
}

.project-card-body {
  padding: 26px;
}

.project-meta {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 15px;
  color: var(--gold-dark);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.project-card p {
  color: var(--muted);
}

.project-facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin: 20px 0;
}

.project-facts div {
  min-height: 76px;
  padding: 12px;
  background: var(--soft);
  border-radius: 6px;
}

dt {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

dd {
  margin: 4px 0 0;
  font-weight: 800;
}

.text-link {
  color: var(--green);
  font-weight: 800;
}

.feature-band {
  display: grid;
  grid-template-columns: minmax(260px, 0.85fr) 1.6fr;
  gap: 52px;
  color: var(--white);
  background: var(--green);
}

.feature-band p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 18px;
}

.license {
  display: inline-flex;
  margin-top: 10px;
  padding: 9px 12px;
  color: #111;
  background: var(--gold);
  border-radius: 6px;
  font-weight: 800;
}

.credential-line {
  margin-bottom: 6px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 15px;
  font-weight: 800;
}

.profile-copy {
  display: grid;
  gap: 12px;
}

.feature-band .eyebrow {
  color: var(--gold);
}

.guide-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.guide-list article {
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.guide-list p {
  color: rgba(255, 255, 255, 0.76);
}

.two-column {
  display: grid;
  grid-template-columns: 1fr 430px;
  gap: 62px;
  align-items: start;
}

.service-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 24px;
}

.service-list span {
  padding: 14px;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 6px;
  font-weight: 800;
}

.project-hero {
  position: relative;
  display: grid;
  align-items: end;
  min-height: 620px;
  overflow: hidden;
  color: var(--white);
  background: #111;
}

.project-hero > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.project-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.74), rgba(0, 0, 0, 0.18) 58%, rgba(0, 0, 0, 0.54)),
    linear-gradient(0deg, rgba(0, 0, 0, 0.72), transparent 52%);
}

.project-hero > div {
  position: relative;
  z-index: 1;
  width: min(840px, calc(100% - 44px));
  padding: 96px 0 70px 58px;
}

.project-hero p:not(.eyebrow) {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 21px;
}

.project-detail {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 48px;
  align-items: start;
}

.project-detail p {
  color: var(--muted);
  font-size: 18px;
}

.recruitment-page {
  min-height: calc(100vh - 158px);
}

.recruitment-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 420px);
  gap: 28px;
  align-items: start;
}

.recruitment-grid article {
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
}

.recruitment-grid article:first-child {
  grid-column: 1 / -1;
}

.recruitment-grid p {
  color: var(--muted);
  font-size: 18px;
}

.highlight-list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 28px 0 0;
  list-style: none;
}

.highlight-list li {
  position: relative;
  padding-left: 24px;
  color: #2d2b27;
  font-size: 18px;
}

.highlight-list li::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 0;
  width: 9px;
  height: 9px;
  background: var(--gold);
  border-radius: 999px;
}

.facts-panel {
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.facts-panel dl {
  display: grid;
  gap: 14px;
  margin: 0;
}

.facts-panel div {
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}

.facts-panel div:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.gallery-strip {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  padding: 0 58px 84px;
}

.gallery-strip img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 8px;
}

.cta-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 42px 58px;
  color: var(--white);
  background: #111;
}

.cta-band h2 {
  margin: 0;
  font-size: clamp(28px, 4vw, 44px);
}

.contact-panel {
  padding: 30px;
  color: var(--white);
  background: #111;
  border-radius: 8px;
}

.contact-panel p {
  color: rgba(255, 255, 255, 0.78);
}

.contact-panel .button {
  width: 100%;
  margin-top: 10px;
}

.fineprint {
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.6);
  font-size: 13px;
}

footer {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  padding: 26px 58px;
  color: rgba(255, 255, 255, 0.76);
  background: #111;
}

footer a {
  color: var(--gold);
}

.footer-disclaimer {
  max-width: 560px;
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 13px;
}

@media (max-width: 900px) {
  .site-header {
    position: static;
    flex-direction: column;
    align-items: flex-start;
    padding: 14px 22px;
  }

  nav {
    width: 100%;
    overflow-x: auto;
  }

  .hero {
    min-height: 650px;
  }

  .hero-content {
    padding: 88px 22px 70px;
  }

  .summary-bar,
  .project-grid,
  .feature-band,
  .two-column,
  .guide-list,
  .project-detail,
  .recruitment-grid,
  .gallery-strip {
    grid-template-columns: 1fr;
  }

  .summary-bar div,
  .section,
  .feature-band,
  .gallery-strip,
  .cta-band,
  footer {
    padding-left: 22px;
    padding-right: 22px;
  }

  .project-hero > div {
    padding-left: 22px;
  }

  .project-card img,
  .placeholder-image {
    height: 340px;
  }

  .gallery-strip img {
    height: 300px;
  }

  .cta-band {
    flex-direction: column;
    align-items: flex-start;
  }

  .project-facts {
    grid-template-columns: 1fr;
  }

  footer {
    flex-direction: column;
  }
}

@media (max-width: 560px) {
  .brand img {
    width: 118px;
    height: 38px;
  }

  nav a {
    padding: 9px 10px;
    font-size: 14px;
  }

  .hero {
    min-height: 620px;
  }

  .hero-content p:not(.eyebrow) {
    font-size: 18px;
  }

  .project-card-body {
    padding: 20px;
  }

  .service-list {
    grid-template-columns: 1fr;
  }

  .project-meta {
    flex-direction: column;
    gap: 4px;
  }
}
