:root {
  --ink: #080a09;
  --black: #101312;
  --graphite: #1b211f;
  --steel: #303735;
  --line: #ded7cc;
  --concrete: #f3f0ea;
  --paper: #fffaf3;
  --warm: #e9e1d5;
  --text: #252b29;
  --muted: #69716d;
  --soft: #9aa29d;
  --clay: #aa563a;
  --clay-dark: #783627;
  --copper: #c8945d;
  --sage: #7f8a82;
  --white: #ffffff;
  --font-h: "Montserrat", sans-serif;
  --font-b: "Source Sans 3", sans-serif;
  --shadow: 0 24px 70px rgba(17, 20, 19, .16);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-b);
  color: var(--text);
  background: var(--concrete);
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

::selection {
  color: var(--white);
  background: var(--clay);
}

::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--warm);
}

::-webkit-scrollbar-thumb {
  background: var(--steel);
}

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

.site-nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  padding: 22px 0;
  color: var(--white);
  transition: padding .25s ease, background .25s ease, border-color .25s ease, box-shadow .25s ease;
}

.site-nav.scrolled,
.site-nav.solid {
  padding: 13px 0;
  background: rgba(7, 8, 8, .94);
  border-bottom: 1px solid rgba(255, 255, 255, .08);
  box-shadow: 0 12px 34px rgba(0, 0, 0, .22);
  backdrop-filter: blur(14px);
}

body.menu-open .site-nav {
  z-index: 800;
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  min-width: max-content;
}

.brand-mark {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: linear-gradient(135deg, var(--clay), var(--clay-dark));
  clip-path: polygon(50% 0, 100% 28%, 100% 72%, 50% 100%, 0 72%, 0 28%);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, .14) inset;
}

.brand-text {
  font-family: var(--font-h);
  font-size: 1.12rem;
  font-weight: 900;
  letter-spacing: .05em;
  line-height: 1;
  text-transform: uppercase;
}

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

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.7vw, 36px);
}

.nav-link {
  position: relative;
  padding: 8px 0;
  font-size: .76rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
  text-decoration: none;
  color: rgba(255, 255, 255, .82);
  transition: color .2s ease;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: auto;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--copper);
  transition: width .22s ease;
}

.nav-link:hover,
.nav-link.active {
  color: var(--white);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-cta,
.btn-primary,
.btn-outline,
.btn-light {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 13px 24px;
  border: 1px solid transparent;
  border-radius: 0;
  font-family: var(--font-h);
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
  text-decoration: none;
  transition: transform .2s ease, color .2s ease, background .2s ease, border-color .2s ease;
}

.nav-cta,
.btn-outline {
  color: var(--white);
  background: transparent;
  border-color: rgba(255, 255, 255, .62);
}

.nav-cta {
  border-color: rgba(209, 138, 92, .7);
  border-radius: 999px;
  padding-inline: 28px;
}

.nav-cta:hover,
.btn-outline:hover {
  color: var(--ink);
  background: var(--white);
  border-color: var(--white);
  transform: translateY(-2px);
}

.btn-primary {
  color: var(--white);
  background: var(--clay);
  border-color: var(--clay);
}

.btn-primary:hover {
  background: var(--clay-dark);
  border-color: var(--clay-dark);
  transform: translateY(-2px);
}

.btn-light {
  color: var(--ink);
  background: var(--paper);
  border-color: var(--paper);
}

.btn-light:hover {
  color: var(--white);
  background: var(--ink);
  border-color: var(--ink);
  transform: translateY(-2px);
}

.hamburger {
  display: none;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, .25);
  background: transparent;
  color: var(--white);
}

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: flex;
  justify-content: flex-end;
  padding: 14px;
  color: var(--white);
  background:
    radial-gradient(circle at 0 16%, rgba(200, 148, 93, .14), transparent 30%),
    rgba(7, 8, 8, .72);
  backdrop-filter: blur(12px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .28s ease, visibility .28s ease;
}

.mobile-menu.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.mobile-menu-panel {
  position: relative;
  isolation: isolate;
  width: min(430px, 100%);
  height: 100%;
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 24px;
  padding: 24px;
  overflow-x: hidden;
  overflow-y: auto;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 26px;
  background:
    linear-gradient(145deg, #111413, #070808),
    var(--ink);
  box-shadow: -24px 0 90px rgba(0, 0, 0, .42);
  transform: translateX(24px) scale(.985);
  transition: transform .32s cubic-bezier(.22, 1, .36, 1);
}

.mobile-menu.open .mobile-menu-panel {
  transform: translateX(0) scale(1);
}

.mobile-menu-panel::before {
  content: "";
  position: absolute;
  z-index: -1;
  right: -70px;
  bottom: -70px;
  width: 220px;
  height: 220px;
  border: 38px solid rgba(200, 148, 93, .12);
  border-radius: 50%;
}

.mobile-menu-head {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.mobile-brand img {
  width: 174px;
  height: auto;
}

.mobile-nav {
  position: relative;
  z-index: 1;
  display: grid;
  align-content: center;
  gap: 10px;
}

.mobile-nav a {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 60px;
  padding: 0 2px;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
  font-family: var(--font-h);
  font-size: clamp(1.45rem, 7vw, 2.35rem);
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
  text-decoration: none;
  transition: color .2s ease, transform .2s ease;
}

.mobile-nav a:hover {
  color: var(--copper);
  transform: translateX(4px);
}

.mobile-nav a.active {
  color: var(--copper);
}

.mobile-nav a.active span {
  color: var(--white);
}

.mobile-nav span {
  min-width: 28px;
  color: var(--copper);
  font-size: .74rem;
  font-weight: 800;
  letter-spacing: .12em;
}

.mobile-menu-actions {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 14px;
}

.mobile-primary {
  min-height: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 0 18px;
  color: var(--ink);
  background: var(--copper);
  font-family: var(--font-h);
  font-size: .84rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-decoration: none;
  text-transform: uppercase;
}

.mobile-quick-links {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
}

.mobile-quick-links a {
  min-height: 46px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 14px;
  color: rgba(255, 255, 255, .78);
  background: rgba(255, 255, 255, .035);
  font-size: .95rem;
  font-weight: 700;
  text-decoration: none;
}

.mobile-quick-links i {
  color: var(--copper);
}

.mobile-close {
  position: relative;
  z-index: 2;
  flex: 0 0 auto;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 50%;
  color: var(--white);
  background: rgba(255, 255, 255, .04);
}

@media (max-width: 420px) {
  .mobile-menu {
    padding: 10px;
  }

  .mobile-menu-panel {
    gap: 18px;
    padding: 20px;
    border-radius: 22px;
  }

  .mobile-brand img {
    width: 154px;
  }

  .mobile-nav a {
    min-height: 54px;
    font-size: clamp(1.22rem, 7vw, 1.85rem);
  }

  .mobile-primary {
    min-height: 52px;
  }
}

@media (max-height: 680px) {
  .mobile-menu-panel {
    gap: 16px;
    padding-block: 18px;
  }

  .mobile-nav {
    align-content: start;
  }

  .mobile-nav a {
    min-height: 50px;
  }
}

.hero {
  position: relative;
  min-height: 880px;
  padding: 0;
  color: var(--white);
  background:
    radial-gradient(circle at -1% 34%, rgba(120, 54, 39, .42) 0 11%, transparent 11.2%),
    radial-gradient(circle at 91% 81%, rgba(170, 86, 58, .22) 0 10%, transparent 10.2%),
    radial-gradient(circle at 86% 27%, rgba(200, 148, 93, .22) 0 1.5%, transparent 1.6%),
    linear-gradient(90deg, #000 0%, #030303 100%);
  overflow: visible;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(200, 148, 93, .045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(200, 148, 93, .045) 1px, transparent 1px);
  background-size: 78px 78px;
  opacity: .55;
  mask-image: linear-gradient(90deg, transparent 0, #000 14%, #000 72%, transparent 100%);
}

.hero::after {
  content: "";
  position: absolute;
  right: 9%;
  top: 17%;
  width: 390px;
  height: 550px;
  background:
    linear-gradient(115deg, transparent 0 25%, rgba(120, 12, 18, .28) 25% 27%, transparent 27% 100%),
    linear-gradient(70deg, transparent 0 45%, rgba(120, 12, 18, .28) 45% 48%, transparent 48% 100%);
  border: 2px solid rgba(120, 12, 18, .28);
  border-top: 0;
  opacity: .72;
}

.hero-inner {
  position: relative;
  z-index: 2;
  min-height: 790px;
  display: block;
}

.hero-content {
  position: absolute;
  z-index: 5;
  left: 0;
  top: 247px;
  width: min(610px, 44vw);
  max-width: 640px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 40px;
  margin-bottom: 34px;
  padding: 8px 20px;
  border: 1px solid rgba(255, 255, 255, .78);
  border-radius: 999px;
  color: var(--white);
  font-family: var(--font-h);
  font-size: .74rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  background: var(--copper);
  clip-path: polygon(50% 0, 100% 50%, 50% 100%, 0 50%);
}

.hero h1,
.page-hero h1 {
  margin: 0;
  font-family: var(--font-h);
  font-size: clamp(3.25rem, 4.35vw, 5rem);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.03;
  text-transform: uppercase;
}

.hero p {
  width: min(100%, 560px);
  margin: 28px 0 36px;
  color: rgba(255, 255, 255, .62);
  font-size: 1rem;
  line-height: 1.85;
}

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

.hero-stage {
  position: absolute;
  inset: 0;
  z-index: 2;
}

.hero-photo-slab {
  position: absolute;
  top: 0;
  bottom: 48px;
  left: 43.8%;
  width: 34%;
  min-width: 420px;
  clip-path: polygon(25% 0, 100% 0, 75% 100%, 0 100%);
  background:
    linear-gradient(rgba(245, 245, 245, .24), rgba(245, 245, 245, .24)),
    url("../assets/images/hero/site-management.jpg") center / cover no-repeat;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, .06) inset;
}

.hero-photo-slab::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, .58), transparent 30%, rgba(0, 0, 0, .12)),
    repeating-linear-gradient(0deg, rgba(0, 0, 0, .08) 0 2px, transparent 2px 4px),
    linear-gradient(0deg, rgba(0, 0, 0, .2), transparent 45%);
  mix-blend-mode: multiply;
}

.hero-person {
  display: none;
}

.stamp {
  position: absolute;
  right: 21.5%;
  bottom: 120px;
  width: 172px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: radial-gradient(circle, rgba(36, 45, 42, .9), rgba(8, 10, 9, .96));
  border: 5px solid rgba(255, 255, 255, .72);
  box-shadow: 0 0 0 8px rgba(184, 72, 50, .32), 0 20px 40px rgba(0, 0, 0, .28);
  font-family: var(--font-h);
  font-weight: 700;
  letter-spacing: .08em;
  text-align: center;
  text-transform: uppercase;
  transform: rotate(-14deg);
}

.stamp span {
  width: 74%;
  font-size: .76rem;
  line-height: 1.55;
}

.stat-stack {
  position: absolute;
  top: 162px;
  right: 54px;
  display: grid;
  gap: 38px;
  z-index: 4;
}

.hero-stat {
  display: grid;
  gap: 14px;
  min-width: 240px;
  padding: 20px 24px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, .2);
}

.hero-stat strong {
  font-family: var(--font-h);
  font-size: 1.02rem;
  line-height: 1;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.hero-stat span {
  max-width: 170px;
  font-size: .98rem;
  line-height: 1.45;
}

.hero-stat.light {
  color: var(--ink);
  background: var(--paper);
}

.hero-stat.clay {
  color: var(--white);
  background: var(--clay);
  transform: translateX(-30px);
}

.hero-cards {
  position: absolute;
  z-index: 30;
  left: 50%;
  bottom: 0;
  width: min(1290px, calc(100% - 40px));
  transform: translate(-50%, 50%);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.hero-card,
.service-card,
.value-card,
.contact-card,
.mission-card,
.process-card {
  border: 1px solid var(--line);
  background: var(--paper);
  transition: transform .24s ease, border-color .24s ease, box-shadow .24s ease, background .24s ease;
}

.hero-card {
  min-height: 178px;
  display: grid;
  grid-template-columns: 62px 1fr;
  align-items: center;
  gap: 26px;
  padding: 36px 30px;
  border: 1px solid #d8d2c9;
  border-radius: 16px;
  background: #fffdfa;
  box-shadow: 0 18px 48px rgba(8, 10, 9, .08);
}

.hero-card:hover,
.service-card:hover,
.value-card:hover,
.contact-card:hover,
.process-card:hover {
  transform: translateY(-4px);
  border-color: rgba(184, 72, 50, .72);
  box-shadow: var(--shadow);
}

.icon-box {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  color: var(--clay);
  background: #f5e9df;
  font-size: 1.45rem;
}

.icon-box i {
  display: block;
  line-height: 1;
}

.hero-card .icon-box {
  width: 58px;
  height: 58px;
  background: transparent;
  color: #d13b35;
  font-size: 2.15rem;
}

.hero-card h3,
.service-card h3,
.value-card h3,
.mission-card h3,
.contact-card h3,
.process-card h3 {
  margin: 0 0 9px;
  color: var(--ink);
  font-family: var(--font-h);
  font-size: 1.15rem;
  line-height: 1.24;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero-card p,
.service-card p,
.value-card p,
.mission-card p,
.contact-card p,
.process-card p {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.58;
}

.section {
  padding: 108px 0;
}

.section-after-hero {
  position: relative;
  z-index: 1;
  padding-top: 170px;
}

.section-soft {
  background: var(--concrete);
}

.section-paper {
  background: var(--paper);
}

.section-dark {
  color: var(--white);
  background:
    linear-gradient(rgba(7, 8, 8, .94), rgba(7, 8, 8, .94)),
    url("../assets/images/backgrounds/site-crane.jpg") center / cover;
}

.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 48px;
}

.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
  color: var(--clay);
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.section-kicker::before {
  content: "";
  width: 32px;
  height: 2px;
  background: currentColor;
}

.section-title {
  margin: 0;
  color: var(--ink);
  font-family: var(--font-h);
  font-size: clamp(2.05rem, 3.8vw, 3.55rem);
  font-weight: 900;
  line-height: 1.08;
  text-transform: uppercase;
  overflow-wrap: anywhere;
}

.section-dark .section-title,
.section-dark .section-kicker,
.section-dark h2,
.section-dark h3 {
  color: var(--white);
}

.lead {
  margin: 0;
  max-width: 680px;
  color: var(--muted);
  font-size: 1.03rem;
  line-height: 1.85;
}

.section-dark .lead,
.section-dark p {
  color: rgba(255, 255, 255, .68);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: center;
  gap: 68px;
}

.image-frame {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(7, 8, 8, .28), rgba(184, 72, 50, .12)),
    url("../assets/images/about/modern-building.jpg") center / cover;
}

.image-frame::after {
  content: "";
  position: absolute;
  inset: 22px;
  border: 1px solid rgba(255, 255, 255, .55);
}

.quality-badge {
  position: absolute;
  left: 28px;
  bottom: 28px;
  z-index: 2;
  width: 160px;
  padding: 18px;
  color: var(--white);
  background: var(--clay);
}

.quality-badge strong {
  display: block;
  font-family: var(--font-h);
  font-size: 2.4rem;
  line-height: 1;
}

.quality-badge span {
  display: block;
  margin-top: 5px;
  font-size: .75rem;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.check-list,
.plain-list {
  display: grid;
  gap: 13px;
  margin: 28px 0 34px;
  padding: 0;
  list-style: none;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--text);
  font-weight: 700;
}

.check-list i {
  margin-top: 3px;
  color: var(--clay);
}

.services-grid,
.values-grid,
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.service-card,
.value-card,
.mission-card,
.contact-card,
.process-card {
  position: relative;
  min-height: 280px;
  padding: 34px;
  overflow: hidden;
}

.service-num,
.process-num {
  display: block;
  margin-bottom: 34px;
  color: rgba(7, 8, 8, .1);
  font-family: var(--font-h);
  font-size: 4.6rem;
  font-weight: 900;
  line-height: .8;
}

.service-card:hover .service-num,
.process-card:hover .process-num {
  color: rgba(184, 72, 50, .22);
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 24px;
  color: var(--clay);
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .13em;
  text-transform: uppercase;
  text-decoration: none;
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-auto-rows: minmax(360px, 28vw);
  gap: 18px;
}

.project-card {
  position: relative;
  overflow: hidden;
  min-height: 280px;
  color: var(--white);
  background: var(--steel);
}

.project-card.large {
  grid-row: auto;
}

.project-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .45s ease, filter .45s ease;
}

.project-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 24%, rgba(7, 8, 8, .86));
}

.project-card:hover img {
  transform: scale(1.06);
  filter: saturate(.92);
}

.project-info {
  position: absolute;
  z-index: 2;
  left: 24px;
  right: 24px;
  bottom: 24px;
}

.project-info span {
  color: var(--copper);
  font-size: .76rem;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.project-info h3 {
  margin: 8px 0 8px;
  font-family: var(--font-h);
  font-size: clamp(1.5rem, 2.4vw, 2.2rem);
  line-height: 1.12;
  text-transform: uppercase;
}

.project-info p {
  margin: 0;
  color: rgba(255, 255, 255, .72);
}

.why-grid {
  display: grid;
  grid-template-columns: .86fr 1.14fr;
  gap: 50px;
  align-items: center;
}

.why-list {
  display: grid;
  gap: 16px;
}

.why-item {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 18px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, .12);
  background: rgba(255, 255, 255, .035);
}

.why-item h3 {
  margin: 0 0 8px;
  font-family: var(--font-h);
  font-size: 1.12rem;
  line-height: 1.24;
  text-transform: uppercase;
}

.trust-band {
  display: grid;
  grid-template-columns: 1fr repeat(4, minmax(120px, .55fr));
  gap: 18px;
  align-items: stretch;
}

.trust-intro {
  padding-right: 20px;
}

.trust-box {
  padding: 28px 20px;
  border: 1px solid rgba(255, 255, 255, .14);
  background: rgba(255, 255, 255, .04);
}

.trust-box strong {
  display: block;
  color: var(--white);
  font-family: var(--font-h);
  font-size: 1.05rem;
  line-height: 1.28;
  text-transform: uppercase;
}

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

.process-bridge {
  position: relative;
  overflow: hidden;
}

.process-bridge::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(170, 86, 58, .35), transparent);
}

.process-bridge .section-head {
  align-items: flex-start;
}

.process-bridge .lead {
  max-width: 440px;
  padding-top: 8px;
}

.process-bridge .process-card {
  background: #fffdf8;
}

.process-bridge .process-card::after {
  content: "";
  position: absolute;
  inset: auto 28px 0 28px;
  height: 3px;
  background: var(--clay);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .24s ease;
}

.process-bridge .process-card:hover::after {
  transform: scaleX(1);
}

.cta {
  position: relative;
  padding: 88px 0;
  color: var(--white);
  background:
    linear-gradient(100deg, rgba(7, 8, 8, .96), rgba(34, 39, 38, .86)),
    url("../assets/images/backgrounds/site-crane.jpg") center / cover;
  overflow: hidden;
}

.cta::after {
  content: "";
  position: absolute;
  right: -80px;
  top: -100px;
  width: 360px;
  height: 360px;
  border: 52px solid rgba(184, 72, 50, .22);
  border-radius: 50%;
}

.cta-inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.cta h2 {
  max-width: 650px;
  margin: 0;
  font-family: var(--font-h);
  font-size: clamp(2.2rem, 4.2vw, 4rem);
  line-height: 1.08;
  text-transform: uppercase;
}

.cta p {
  max-width: 420px;
  margin: 16px 0 0;
  color: rgba(255, 255, 255, .68);
  line-height: 1.75;
}

.footer {
  color: rgba(255, 255, 255, .68);
  background: var(--ink);
  padding: 72px 0 26px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr .8fr .9fr 1fr;
  gap: 38px;
}

.footer h3,
.footer h4 {
  margin: 0 0 18px;
  color: var(--white);
  font-family: var(--font-h);
  text-transform: uppercase;
}

.footer p {
  line-height: 1.75;
}

.footer a {
  text-decoration: none;
  transition: color .2s ease;
}

.footer a:hover {
  color: var(--copper);
}

.footer-links,
.footer-contact {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-contact li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.footer-contact i {
  color: var(--copper);
  margin-top: 3px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, .1);
  font-size: .88rem;
}

.footer-credit {
  color: rgba(255, 255, 255, .56);
  font-size: .82rem;
  letter-spacing: .02em;
}

.not-found {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 32px;
  color: var(--white);
  background:
    radial-gradient(circle at 12% 16%, rgba(200, 148, 93, .18), transparent 28%),
    radial-gradient(circle at 82% 78%, rgba(170, 86, 58, .18), transparent 30%),
    var(--ink);
}

.not-found-card {
  width: min(100%, 720px);
  padding: clamp(32px, 6vw, 64px);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 28px;
  background: linear-gradient(145deg, rgba(255, 255, 255, .06), rgba(255, 255, 255, .025));
  box-shadow: 0 30px 90px rgba(0, 0, 0, .32);
}

.not-found-card .brand {
  margin-bottom: 48px;
}

.not-found-card h1 {
  max-width: 620px;
  margin: 14px 0 18px;
  color: var(--white);
  font-family: var(--font-h);
  font-size: clamp(2.3rem, 7vw, 5rem);
  line-height: .96;
}

.not-found-card p {
  max-width: 560px;
  color: rgba(255, 255, 255, .72);
}

.not-found-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.page-hero {
  position: relative;
  min-height: 430px;
  display: grid;
  align-items: end;
  padding: 150px 0 76px;
  color: var(--white);
  background:
    linear-gradient(110deg, rgba(7, 8, 8, .95), rgba(7, 8, 8, .78)),
    url("../assets/images/backgrounds/site-crane.jpg") center / cover;
  overflow: hidden;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(209, 138, 92, .055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(209, 138, 92, .055) 1px, transparent 1px);
  background-size: 64px 64px;
}

.page-hero .container {
  position: relative;
  z-index: 1;
}

.breadcrumbs {
  display: flex;
  gap: 10px;
  margin-bottom: 18px;
  color: rgba(255, 255, 255, .65);
  font-size: .82rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.page-hero p {
  max-width: 650px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, .72);
  font-size: 1.06rem;
  line-height: 1.75;
}

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

.feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  padding: 42px 0;
  border-top: 1px solid var(--line);
}

.feature-row:nth-child(even) .feature-media {
  order: 2;
}

.feature-media {
  min-height: 320px;
  background:
    linear-gradient(135deg, rgba(7, 8, 8, .18), rgba(184, 72, 50, .14)),
    url("../assets/images/services/construction-planning.jpg") center / cover;
}

.project-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 34px;
}

.project-filter {
  min-height: 44px;
  padding: 10px 18px;
  border: 1px solid var(--line);
  color: var(--text);
  background: var(--paper);
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.project-filter.active,
.project-filter:hover {
  color: var(--white);
  background: var(--clay);
  border-color: var(--clay);
}

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

.gallery-grid .project-card {
  height: 360px;
}

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

.featured-project {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 0;
  background: var(--paper);
  border: 1px solid var(--line);
}

.featured-project img {
  width: 100%;
  height: 100%;
  min-height: 430px;
  object-fit: cover;
}

.featured-content {
  padding: 48px;
}

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

.contact-intro {
  padding-right: 20px;
}

.contact-card {
  min-height: 190px;
}

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

.contact-form,
.map-box {
  border: 1px solid var(--line);
  background: var(--paper);
}

.contact-form {
  padding: 34px;
}

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

.field {
  display: grid;
  gap: 8px;
  margin-bottom: 16px;
}

.field.full {
  grid-column: 1 / -1;
}

.field label {
  color: var(--ink);
  font-size: .82rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.field input,
.field textarea {
  width: 100%;
  min-height: 52px;
  border: 1px solid var(--line);
  padding: 14px 15px;
  color: var(--ink);
  background: #fbfaf7;
  font: inherit;
  outline: none;
  transition: border-color .2s ease, background .2s ease;
}

.field textarea {
  min-height: 150px;
  resize: vertical;
}

.field input:focus,
.field textarea:focus {
  border-color: var(--clay);
  background: var(--white);
}

.form-message {
  min-height: 22px;
  margin: 12px 0 0;
  color: var(--clay-dark);
  font-weight: 800;
}

.map-box {
  position: relative;
  min-height: 470px;
  overflow: hidden;
}

.map-box iframe {
  width: 100%;
  height: 100%;
  min-height: 470px;
  border: 0;
  filter: grayscale(1) contrast(.95);
  transition: filter .25s ease;
}

.map-box:hover iframe {
  filter: grayscale(0) contrast(1);
}

.faq-wrap {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 52px;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-item {
  border: 1px solid var(--line);
  background: var(--paper);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 22px;
  border: 0;
  color: var(--ink);
  background: transparent;
  text-align: left;
  font-family: var(--font-h);
  font-size: 1rem;
  font-weight: 800;
  text-transform: uppercase;
}

.faq-answer {
  display: none;
  padding: 0 22px 22px;
  color: var(--muted);
  line-height: 1.7;
}

.faq-item.open {
  border-color: var(--clay);
}

.faq-item.open .faq-question {
  color: var(--clay);
}

.faq-item.open .faq-answer {
  display: block;
}

.wa-button {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 900;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: #1f9d58;
  text-decoration: none;
  box-shadow: 0 16px 36px rgba(0, 0, 0, .22);
  transition: transform .2s ease;
}

.wa-button:hover {
  transform: translateY(-3px) scale(1.03);
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .58s ease, transform .58s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1040px) {
  .nav-links,
  .nav-cta {
    display: none;
  }

  .hamburger {
    display: inline-flex;
  }

  .split,
  .why-grid,
  .trust-band,
  .featured-project,
  .form-map,
  .faq-wrap {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 860px;
  }

  .hero-content {
    top: 220px;
    width: min(520px, 49vw);
  }

  .hero-photo-slab {
    left: 46%;
    width: 48%;
    min-width: 0;
  }

  .stat-stack {
    top: 150px;
    right: 20px;
  }

  .hero-cards,
  .services-grid,
  .values-grid,
  .gallery-grid,
  .contact-grid,
  .process-grid,
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .section-after-hero {
    padding-top: 290px;
  }

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

  .project-card.large {
    grid-row: span 1;
  }

  .cta-inner,
  .section-head,
  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .feature-row,
  .feature-row:nth-child(even) .feature-media {
    grid-template-columns: 1fr;
    order: initial;
  }
}

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

  .site-nav {
    padding: 16px 0;
  }

  .brand-text {
    font-size: 1.12rem;
  }

  .brand-mark {
    width: 34px;
    height: 34px;
  }

  .hero {
    min-height: 0;
    padding: 0 0 72px;
  }

  .hero h1,
  .page-hero h1 {
    font-size: clamp(2.35rem, 11vw, 3.4rem);
    line-height: 1.08;
  }

  .section-title {
    font-size: clamp(1.8rem, 8.2vw, 2.25rem);
  }

  .hero-inner {
    min-height: 0;
  }

  .hero-content {
    position: relative;
    top: auto;
    left: auto;
    width: 100%;
    padding-top: 132px;
  }

  .hero-stage {
    position: relative;
    height: 480px;
    margin-top: 40px;
  }

  .hero-photo-slab {
    top: 0;
    left: 0;
    bottom: 0;
    width: 100%;
    min-width: 0;
    clip-path: polygon(18% 0, 100% 0, 82% 100%, 0 100%);
  }

  .hero-person {
    display: none;
  }

  .stamp {
    width: 122px;
    right: 8%;
    bottom: 70px;
  }

  .stat-stack {
    position: absolute;
    top: 46px;
    right: 0;
    gap: 16px;
  }

  .hero-stat,
  .hero-stat.clay {
    width: min(100%, 280px);
    transform: none;
  }

  .hero-cards {
    position: relative;
    left: auto;
    bottom: auto;
    width: 100%;
    margin-top: 34px;
    transform: none;
  }

  .section-after-hero {
    padding-top: 76px;
  }

  .hero-cards,
  .services-grid,
  .values-grid,
  .gallery-grid,
  .contact-grid,
  .process-grid,
  .projects-grid,
  .mission-grid,
  .footer-grid,
  .field-grid {
    grid-template-columns: 1fr;
  }

  .section,
  .section-after-hero {
    padding: 76px 0;
  }

  .image-frame,
  .feature-media {
    min-height: 360px;
  }

  .service-card,
  .value-card,
  .mission-card,
  .contact-card,
  .process-card,
  .contact-form,
  .featured-content {
    padding: 26px;
  }

  .page-hero {
    min-height: 380px;
    padding: 125px 0 58px;
  }

  .cta {
    padding: 70px 0;
  }
}

/* Corporate responsive refresh */
.hero {
  min-height: 0;
  padding: 148px 0 120px;
  overflow: visible;
  background:
    radial-gradient(circle at 0 28%, rgba(120, 54, 39, .34) 0 10%, transparent 10.2%),
    radial-gradient(circle at 94% 78%, rgba(170, 86, 58, .20) 0 10%, transparent 10.2%),
    linear-gradient(105deg, #050606 0%, #080a09 52%, #0f1211 100%);
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(360px, .86fr);
  align-items: center;
  gap: clamp(42px, 6vw, 92px);
  min-height: 620px;
}

.hero-content {
  position: relative;
  left: auto;
  top: auto;
  width: auto;
  max-width: 640px;
  padding-bottom: 74px;
}

.hero h1 {
  max-width: 680px;
  font-size: clamp(3rem, 4.4vw, 5.1rem);
  line-height: 1.04;
  text-wrap: balance;
}

.hero p {
  max-width: 560px;
  color: rgba(255,255,255,.72);
  font-size: 1.08rem;
}

.hero-stage {
  position: relative;
  inset: auto;
  height: 650px;
  min-height: 0;
}

.hero-photo-slab {
  inset: 0 10% 0 0;
  left: auto;
  width: auto;
  min-width: 0;
  clip-path: polygon(23% 0, 100% 0, 78% 100%, 0 100%);
  background:
    linear-gradient(180deg, rgba(255,255,255,.15), rgba(0,0,0,.18)),
    url("../assets/images/hero/site-management.jpg") center / cover no-repeat;
}

.hero-photo-slab::before {
  background:
    linear-gradient(90deg, rgba(0,0,0,.62), transparent 34%, rgba(0,0,0,.2)),
    repeating-linear-gradient(0deg, rgba(0,0,0,.08) 0 2px, transparent 2px 4px);
}

.stat-stack {
  top: 118px;
  right: 0;
  gap: 24px;
}

.stamp {
  right: 13%;
  bottom: 92px;
}

.hero-cards {
  bottom: -28px;
}

.section-after-hero {
  padding-top: 190px;
}

.image-frame {
  background:
    linear-gradient(135deg, rgba(7,8,8,.2), rgba(170,86,58,.16)),
    url("../assets/images/about/modern-building.jpg") center / cover;
}

#why {
  background:
    linear-gradient(rgba(7,8,8,.9), rgba(7,8,8,.92)),
    url("../assets/images/backgrounds/planning-desk.jpg") center / cover;
}

#stats {
  background:
    linear-gradient(rgba(7,8,8,.91), rgba(7,8,8,.93)),
    url("../assets/images/backgrounds/site-crane.jpg") center / cover;
}

.cta {
  background:
    linear-gradient(100deg, rgba(7,8,8,.94), rgba(34,39,38,.82)),
    url("../assets/images/backgrounds/residential-cta.jpg") center / cover;
}

.feature-row:nth-of-type(1) .feature-media {
  background:
    linear-gradient(135deg, rgba(7,8,8,.1), rgba(170,86,58,.12)),
    url("../assets/images/services/construction-planning.jpg") center / cover;
}

.feature-row:nth-of-type(2) .feature-media {
  background:
    linear-gradient(135deg, rgba(7,8,8,.1), rgba(170,86,58,.12)),
    url("../assets/images/services/site-coordination.jpg") center / cover;
}

body.about-page .page-hero {
  background:
    linear-gradient(110deg, rgba(7,8,8,.93), rgba(7,8,8,.72)),
    url("../assets/images/backgrounds/planning-desk.jpg") center / cover;
}

body.services-page .page-hero {
  background:
    linear-gradient(110deg, rgba(7,8,8,.93), rgba(7,8,8,.72)),
    url("../assets/images/services/construction-planning.jpg") center / cover;
}

body.projects-page .page-hero {
  background:
    linear-gradient(110deg, rgba(7,8,8,.93), rgba(7,8,8,.72)),
    url("../assets/images/backgrounds/projects-hero.jpg") center / cover;
}

body.contact-page .page-hero {
  background:
    linear-gradient(110deg, rgba(7,8,8,.93), rgba(7,8,8,.72)),
    url("../assets/images/projects/office.jpg") center / cover;
}

.contact-action-panel {
  padding: 38px;
  border: 1px solid var(--line);
  background: var(--paper);
}

.contact-action-list {
  display: grid;
  gap: 14px;
  margin-top: 26px;
}

.contact-action {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 16px;
  align-items: center;
  padding: 18px;
  border: 1px solid var(--line);
  color: inherit;
  text-decoration: none;
  background: #fffdf8;
  transition: border-color .2s ease, transform .2s ease, box-shadow .2s ease;
}

.contact-action:hover {
  border-color: rgba(170,86,58,.72);
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(8,10,9,.08);
}

.contact-action strong {
  display: block;
  font-family: var(--font-h);
  color: var(--ink);
  text-transform: uppercase;
}

.contact-action span {
  color: var(--muted);
}

@media (max-width: 1040px) {
  .hero {
    padding-top: 128px;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    min-height: 0;
    gap: 34px;
  }

  .hero-content {
    max-width: 760px;
    padding-bottom: 0;
  }

  .hero-stage {
    height: 520px;
  }

  .hero-photo-slab {
    inset: 0;
    clip-path: polygon(14% 0, 100% 0, 86% 100%, 0 100%);
  }

  .stat-stack {
    top: 28px;
    right: 22px;
  }

  .stamp {
    right: 22px;
    bottom: 42px;
  }

  .hero-cards {
    position: relative;
    left: auto;
    bottom: auto;
    width: 100%;
    margin-top: 34px;
    transform: none;
  }

  .section-after-hero {
    padding-top: 92px;
  }
}

@media (max-width: 720px) {
  .hero {
    padding: 104px 0 48px;
  }

  .hero-inner {
    gap: 22px;
  }

  .hero h1 {
    font-size: clamp(2.05rem, 9.5vw, 2.85rem);
    line-height: 1.08;
  }

  .hero p {
    font-size: 1rem;
    line-height: 1.65;
    margin: 18px 0 24px;
  }

  .hero-stage {
    height: 300px;
    margin-top: 8px;
  }

  .stat-stack {
    display: none;
  }

  .hero-cards {
    gap: 14px;
    margin-top: 18px;
  }

  .stamp {
    display: none;
  }

  .hero-card {
    min-height: 0;
    grid-template-columns: 46px 1fr;
    gap: 16px;
    padding: 18px;
  }

  .hero-card .icon-box {
    width: 44px;
    height: 44px;
    font-size: 1.45rem;
  }

  .hero-card h3 {
    font-size: 1rem;
  }

  .hero-card p {
    margin-top: 6px;
    font-size: .94rem;
    line-height: 1.48;
  }

  .section-after-hero {
    padding-top: 62px;
  }

  .form-map {
    gap: 16px;
  }
}

/* Reference-style animated index hero */
.hero-showcase {
  min-height: 100vh;
  padding: 118px 0 0;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 9% 10%, transparent 0 20%, rgba(255,255,255,.09) 20.25% 20.65%, transparent 20.9%),
    radial-gradient(ellipse at 16% 70%, transparent 0 23%, rgba(255,255,255,.075) 23.25% 23.65%, transparent 23.9%),
    radial-gradient(ellipse at 74% 9%, transparent 0 28%, rgba(255,255,255,.075) 28.25% 28.6%, transparent 28.85%),
    radial-gradient(ellipse at 84% 78%, transparent 0 22%, rgba(255,255,255,.06) 22.25% 22.6%, transparent 22.85%),
    #080909;
}

.hero-showcase::before {
  display: none;
}

.hero-showcase::after {
  display: none;
}

.hero-showcase-frame {
  position: relative;
  z-index: 2;
  width: min(1290px, calc(100% - 40px));
  min-height: calc(100vh - 118px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(330px, .45fr) minmax(0, .55fr);
}

.hero-copy-panel {
  position: relative;
  z-index: 3;
  display: grid;
  align-items: center;
  min-height: 650px;
  padding: 40px 40px 156px 0;
}

.hero-copy-stack {
  position: relative;
  min-height: 390px;
}

.hero-slide-copy {
  position: absolute;
  inset: 0;
  max-width: 560px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(28px);
  transition: opacity .34s ease, transform .34s ease;
}

.hero-slide-copy.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
  color: var(--copper);
  font-family: var(--font-h);
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.hero-kicker::before {
  content: "";
  width: 34px;
  height: 2px;
  background: currentColor;
}

.hero-showcase h1,
.hero-title {
  max-width: 620px;
  margin: 0;
  color: var(--white);
  font-family: var(--font-h);
  font-weight: 900;
  font-size: clamp(3rem, 5.3vw, 5.55rem);
  line-height: .98;
  letter-spacing: 0;
  text-transform: none;
}

.hero-showcase h1 span,
.hero-title span {
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(255,255,255,.82);
  text-stroke: 1.5px rgba(255,255,255,.82);
}

.hero-showcase p {
  width: min(100%, 520px);
  margin: 24px 0 42px;
  color: rgba(255,255,255,.78);
  font-size: 1.06rem;
  line-height: 1.72;
}

.hero-cta {
  position: relative;
  z-index: 8;
  display: inline-flex;
  align-items: center;
  gap: 18px;
  min-height: 66px;
  padding: 20px 30px;
  color: var(--ink);
  background: var(--copper);
  border: 1px solid var(--copper);
  font-family: var(--font-h);
  font-size: .8rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}

.hero-cta:hover {
  background: var(--paper);
  border-color: var(--paper);
  transform: translateY(-2px);
}

.hero-image-panel {
  position: absolute;
  z-index: 2;
  top: 34px;
  right: calc((1290px - 100vw) / 2);
  bottom: 0;
  width: min(58vw, 1030px);
  min-height: 650px;
  overflow: hidden;
  background: var(--steel);
}

@media (max-width: 1330px) {
  .hero-image-panel {
    right: -20px;
  }
}

.hero-image-slide {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  transform: scale(1.045);
  transition: opacity .38s ease, transform .82s ease;
}

.hero-image-slide.active {
  opacity: 1;
  transform: scale(1);
}

.hero-image-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-image-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(8,9,9,.18), transparent 42%);
}

.hero-bottom-panel {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 5;
  width: min(54vw, 860px);
  min-height: 120px;
  display: grid;
  grid-template-columns: 220px 1fr;
  align-items: stretch;
  gap: 0;
  padding-left: max(20px, calc((100vw - 1290px) / 2));
  color: var(--ink);
  background: var(--paper);
}

.hero-slider-controls {
  display: flex;
  align-items: center;
  gap: 28px;
}

.hero-slide-count {
  min-width: 86px;
  display: flex;
  align-items: baseline;
  gap: 8px;
  font-family: var(--font-h);
}

.hero-slide-count strong {
  font-size: 3.15rem;
  font-weight: 500;
  line-height: 1;
}

.hero-slide-count span {
  color: var(--soft);
  font-size: 1.1rem;
  font-weight: 800;
}

.hero-control-buttons {
  display: flex;
  gap: 8px;
}

.hero-control-buttons button {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 50%;
  color: var(--ink);
  background: #ecebe8;
  cursor: pointer;
  transition: transform .2s ease, background .2s ease;
}

.hero-control-buttons button:hover {
  background: var(--copper);
  transform: translateY(-2px);
}

.hero-assurance {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-left: 1px solid rgba(8,10,9,.08);
}

.hero-assurance article:nth-child(n+3) {
  display: none;
}

.hero-assurance article {
  min-width: 0;
  display: grid;
  align-content: center;
  gap: 9px;
  padding: 22px 18px;
  border-right: 1px solid rgba(8,10,9,.08);
}

.hero-assurance i {
  color: var(--clay);
  font-size: 1.35rem;
}

.hero-assurance strong {
  font-family: var(--font-h);
  font-size: .77rem;
  line-height: 1.25;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.hero-showcase + .section-after-hero {
  padding-top: 112px;
}

@media (max-width: 1120px) {
  .hero-showcase {
    padding-top: 102px;
  }

  .hero-showcase-frame {
    min-height: 0;
    grid-template-columns: 1fr;
  }

  .hero-copy-panel {
    min-height: 0;
    padding: 70px 0 38px;
  }

  .hero-copy-stack {
    min-height: 350px;
  }

  .hero-image-panel {
    position: relative;
    top: auto;
    right: auto;
    bottom: auto;
    width: 100%;
    min-height: 430px;
  }

  .hero-bottom-panel {
    position: relative;
    width: 100%;
    grid-template-columns: 220px 1fr;
    padding-left: max(20px, calc((100vw - 1290px) / 2));
  }
}

@media (max-width: 720px) {
  .hero-showcase {
    min-height: 0;
    padding: 92px 0 0;
  }

  .hero-showcase-frame {
    width: min(100% - 28px, 1290px);
  }

  .hero-copy-panel {
    padding: 40px 0 28px;
  }

  .hero-copy-stack {
    min-height: 365px;
  }

  .hero-kicker {
    margin-bottom: 20px;
    font-size: .68rem;
  }

  .hero-showcase h1,
  .hero-title {
    font-size: clamp(2.45rem, 12vw, 3.6rem);
    line-height: 1.02;
  }

  .hero-showcase p {
    margin: 20px 0 26px;
    font-size: 1rem;
    line-height: 1.62;
  }

  .hero-cta {
    min-height: 56px;
    padding: 16px 20px;
  }

  .hero-image-panel {
    min-height: 300px;
  }

  .hero-bottom-panel {
    min-height: 0;
    grid-template-columns: 1fr;
    padding: 20px 14px 0;
  }

  .hero-slider-controls {
    justify-content: space-between;
    padding-bottom: 18px;
  }

  .hero-slide-count strong {
    font-size: 2.3rem;
  }

  .hero-control-buttons button {
    width: 50px;
    height: 50px;
  }

  .hero-assurance {
    grid-template-columns: 1fr;
    border-top: 1px solid rgba(8,10,9,.08);
    border-left: 0;
  }

  .hero-assurance article {
    grid-template-columns: 26px 1fr;
    align-items: center;
    padding: 15px 0;
    border-right: 0;
    border-bottom: 1px solid rgba(8,10,9,.08);
  }

  .hero-showcase + .section-after-hero {
    padding-top: 76px;
  }
}

/* Brand and premium interaction pass */
.brand img {
  width: clamp(172px, 13vw, 238px);
  height: auto;
  max-height: 58px;
  object-fit: contain;
  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, .18));
}

.footer .brand img {
  width: 218px;
  max-height: none;
}

.site-nav.scrolled .brand img,
.site-nav.solid .brand img {
  width: clamp(160px, 11vw, 210px);
}

.service-card,
.value-card,
.contact-card,
.mission-card,
.process-card,
.featured-project,
.contact-action-panel,
.map-box,
.faq-item,
.trust-step {
  border-radius: 22px;
}

.service-card,
.value-card,
.contact-card,
.mission-card,
.process-card {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, .78), rgba(255, 250, 243, .96)),
    var(--paper);
  box-shadow: 0 12px 34px rgba(17, 20, 19, .055);
}

.service-card::before,
.value-card::before,
.contact-card::before,
.mission-card::before,
.process-card::before,
.trust-step::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background: linear-gradient(135deg, rgba(200, 148, 93, .16), transparent 42%);
  opacity: 0;
  transition: opacity .28s ease;
}

.service-card:hover::before,
.value-card:hover::before,
.contact-card:hover::before,
.mission-card:hover::before,
.process-card:hover::before,
.trust-step:hover::before {
  opacity: 1;
}

.mission-card .icon-box,
.value-card .icon-box,
.contact-card .icon-box,
.contact-action .icon-box,
.why-item .icon-box {
  width: 50px;
  height: 50px;
  margin-bottom: 24px;
  border-radius: 16px;
  color: var(--clay);
  background: rgba(170, 86, 58, .1);
  box-shadow: inset 0 0 0 1px rgba(170, 86, 58, .08);
  font-size: 1.2rem;
}

.why-item .icon-box,
.contact-action .icon-box {
  margin-bottom: 0;
}

.mission-card h3,
.value-card h3,
.contact-card h3 {
  margin-bottom: 14px;
}

.mission-card p,
.value-card p,
.contact-card p {
  max-width: 92%;
}

.contact-card,
.mission-card,
.value-card {
  min-height: 230px;
}

.contact-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.hero-bottom-panel {
  width: min(74vw, 1080px);
  border-top-right-radius: 28px;
  box-shadow: 0 -18px 52px rgba(7, 8, 8, .08);
}

.hero-assurance {
  gap: 10px;
  padding: 14px;
  border-left: 1px solid rgba(8, 10, 9, .06);
}

.hero-assurance article {
  position: relative;
  align-content: center;
  gap: 8px;
  padding: 18px 16px;
  border: 1px solid rgba(8, 10, 9, .07);
  border-radius: 18px;
  background: rgba(255, 255, 255, .62);
  transition: transform .24s ease, background .24s ease, border-color .24s ease;
}

.hero-assurance article strong,
.hero-assurance article small {
  min-width: 0;
}

.hero-assurance article:hover {
  transform: translateY(-3px);
  border-color: rgba(200, 148, 93, .38);
  background: #fff;
}

.assurance-icon {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  margin-bottom: 2px;
  border-radius: 14px;
  color: var(--clay);
  background: rgba(170, 86, 58, .1);
}

.hero-assurance i {
  font-size: 1rem;
}

.hero-assurance small {
  display: block;
  color: var(--muted);
  font-size: .82rem;
  font-weight: 700;
  line-height: 1.35;
}

#why {
  background:
    radial-gradient(circle at 14% 10%, rgba(200, 148, 93, .16), transparent 28%),
    linear-gradient(135deg, #080a09, #151b19 58%, #101312);
}

#why .why-grid {
  align-items: stretch;
}

.why-item {
  border-radius: 20px;
  transition: transform .24s ease, background .24s ease, border-color .24s ease;
}

.why-item:hover {
  transform: translateX(6px);
  border-color: rgba(200, 148, 93, .36);
  background: rgba(255, 255, 255, .065);
}

.trust-strip-section {
  padding: 92px 0;
  background:
    linear-gradient(180deg, var(--paper), #f7f2ea);
}

.trust-strip {
  display: grid;
  grid-template-columns: .78fr 1.22fr;
  gap: 44px;
  align-items: center;
}

.trust-strip-intro {
  max-width: 500px;
}

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

.trust-step {
  position: relative;
  min-height: 250px;
  padding: 28px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: rgba(255, 253, 250, .78);
  box-shadow: 0 18px 46px rgba(17, 20, 19, .07);
  transition: transform .24s ease, border-color .24s ease, box-shadow .24s ease;
}

.trust-step:hover {
  transform: translateY(-5px);
  border-color: rgba(200, 148, 93, .48);
  box-shadow: 0 26px 64px rgba(17, 20, 19, .12);
}

.trust-step span {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-bottom: 34px;
  border-radius: 50%;
  color: var(--clay);
  background: rgba(170, 86, 58, .1);
  font-family: var(--font-h);
  font-size: .86rem;
  font-weight: 900;
}

.trust-step h3 {
  margin: 0 0 12px;
  color: var(--ink);
  font-family: var(--font-h);
  font-size: 1.05rem;
  line-height: 1.25;
  text-transform: uppercase;
}

.trust-step p {
  margin: 0;
  color: var(--muted);
  line-height: 1.68;
}

.reveal {
  transform: translateY(30px) scale(.985);
  transition: opacity .72s cubic-bezier(.22, 1, .36, 1), transform .72s cubic-bezier(.22, 1, .36, 1);
}

.reveal.visible {
  transform: translateY(0) scale(1);
}

@media (prefers-reduced-motion: reduce) {
  .reveal,
  .service-card,
  .value-card,
  .contact-card,
  .mission-card,
  .process-card,
  .why-item,
  .trust-step,
  .hero-assurance article {
    transition: none;
  }
}

@media (max-width: 1040px) {
  .brand img {
    width: 190px;
  }

  .hero-bottom-panel {
    width: 100%;
  }

  .trust-strip {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .brand img,
  .site-nav.scrolled .brand img,
  .site-nav.solid .brand img {
    width: 158px;
  }

  .footer .brand img {
    width: 190px;
  }

  .hero-bottom-panel {
    border-top-right-radius: 22px;
  }

  .hero-assurance {
    gap: 10px;
    padding: 12px 0 0;
  }

  .hero-assurance article {
    grid-template-columns: 42px 1fr;
    gap: 6px 12px;
    padding: 14px;
  }

  .hero-assurance article small {
    grid-column: 2;
  }

  .assurance-icon {
    grid-row: span 2;
    margin: 0;
  }

  .trust-steps {
    grid-template-columns: 1fr;
  }

  .trust-step {
    min-height: 0;
  }

  .mission-card p,
  .value-card p,
  .contact-card p {
    max-width: none;
  }
}

/* Refinement pass: calmer weight, cleaner hero panel, brighter trust strip */
body:not(.home-page) .section-title,
.home-page main > section:not(.hero) .section-title,
.page-hero h1 {
  font-weight: 800;
}

.section-kicker,
.nav-link,
.nav-cta,
.btn-primary,
.btn-outline,
.btn-light,
.card-link,
.project-info span,
.quality-badge span {
  font-weight: 800;
}

.service-card h3,
.value-card h3,
.mission-card h3,
.contact-card h3,
.process-card h3,
.why-item h3,
.trust-step h3,
.project-info h3,
.footer h4 {
  font-weight: 700;
}

.check-list li,
.hero-assurance small {
  font-weight: 600;
}

.service-num,
.process-num {
  font-weight: 800;
}

.hero-showcase {
  padding-bottom: 0;
}

.hero-bottom-panel {
  position: relative;
  left: auto;
  bottom: auto;
  width: 100%;
  min-height: 132px;
  grid-template-columns: minmax(250px, .34fr) minmax(0, .66fr);
  padding-right: max(20px, calc((100vw - 1290px) / 2));
  border-top: 1px solid rgba(8, 10, 9, .08);
  border-top-right-radius: 0;
  box-shadow: none;
}

.hero-slider-controls {
  padding-right: 24px;
}

.hero-assurance {
  max-width: 760px;
  margin-left: auto;
  border-left: 1px solid rgba(8, 10, 9, .07);
}

.hero-assurance article {
  background: rgba(255, 255, 255, .72);
}

.hero-showcase + .section-after-hero {
  padding-top: 96px;
}

#stats.trust-strip-section {
  color: var(--ink);
  background:
    radial-gradient(circle at 88% 18%, rgba(200, 148, 93, .14), transparent 28%),
    linear-gradient(180deg, #fffaf3 0%, #f4efe7 100%) !important;
}

#stats .section-title,
#stats .section-kicker,
#stats h2,
#stats h3 {
  color: var(--ink);
}

#stats .lead,
#stats p {
  color: var(--muted);
}

.trust-strip {
  padding: 16px 0;
}

.trust-strip-intro {
  padding: 22px 0;
}

.trust-step {
  background: rgba(255, 255, 255, .72);
}

.trust-step span {
  font-weight: 800;
}

@media (max-width: 1120px) {
  .hero-bottom-panel {
    grid-template-columns: 1fr;
    padding: 22px max(20px, calc((100vw - 1290px) / 2));
  }

  .hero-slider-controls {
    justify-content: space-between;
    padding: 0 0 18px;
  }

  .hero-assurance {
    max-width: none;
    width: 100%;
    margin: 0;
    border-left: 0;
    border-top: 1px solid rgba(8, 10, 9, .07);
  }
}

@media (max-width: 720px) {
  .hero-bottom-panel {
    padding: 18px 14px;
  }

  .hero-showcase + .section-after-hero {
    padding-top: 70px;
  }
}

/* Hero panel placement correction */
@media (min-width: 1121px) {
  .hero-copy-panel {
    padding-bottom: 230px;
  }

  .hero-bottom-panel {
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: 6;
    width: min(46vw, 900px);
    min-height: 126px;
    grid-template-columns: 218px minmax(0, 1fr);
    padding-left: max(20px, calc((100vw - 1290px) / 2));
    padding-right: 12px;
    border-top: 1px solid rgba(8, 10, 9, .08);
    border-top-right-radius: 10px;
    box-shadow: 0 -14px 42px rgba(7, 8, 8, .07);
  }

  .hero-slider-controls {
    gap: 18px;
    padding-right: 14px;
  }

  .hero-slide-count {
    min-width: 74px;
  }

  .hero-slide-count strong {
    font-size: 2.85rem;
  }

  .hero-control-buttons button {
    width: 52px;
    height: 52px;
  }

  .hero-assurance {
    max-width: none;
    gap: 8px;
    padding: 12px;
  }

  .hero-assurance article {
    padding: 14px 12px;
    border-radius: 14px;
  }

  .assurance-icon {
    width: 34px;
    height: 34px;
    border-radius: 12px;
  }

  .hero-assurance strong {
    font-size: .68rem;
    letter-spacing: .055em;
  }

  .hero-assurance small {
    font-size: .74rem;
    line-height: 1.28;
  }

  .hero-showcase + .section-after-hero {
    padding-top: 112px;
  }
}

@media (min-width: 1121px) and (max-width: 1500px) {
  .hero-bottom-panel {
    width: min(41.4vw, 620px);
    grid-template-columns: 206px minmax(0, 1fr);
  }

  .hero-assurance article {
    min-height: 92px;
    justify-items: start;
  }

  .hero-assurance small {
    display: none;
  }
}
