:root {
  --ink: #101820;
  --muted: #5d6670;
  --paper: #f7f4ef;
  --white: #ffffff;
  --line: #ded8cf;
  --steel: #30424f;
  --copper: #b2623a;
  --forest: #2f5d50;
  --charcoal: #1f2529;
  --shadow: 0 18px 48px rgba(16, 24, 32, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

a {
  color: inherit;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: grid;
  grid-template-columns: minmax(210px, 1fr) auto auto;
  gap: 24px;
  align-items: center;
  padding: 14px clamp(18px, 4vw, 58px);
  background: rgba(247, 244, 239, 0.94);
  border-bottom: 1px solid rgba(16, 24, 32, 0.12);
  backdrop-filter: blur(18px);
}

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

.brand-mark {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  background: var(--ink);
  color: var(--white);
  font-weight: 800;
  border-radius: 4px;
}

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

.brand small {
  color: var(--muted);
  font-size: 0.78rem;
}

.nav {
  display: flex;
  gap: 22px;
  font-size: 0.95rem;
}

.nav a,
.header-call,
.text-link {
  text-decoration: none;
}

.nav a:hover,
.text-link:hover {
  color: var(--copper);
}

.header-call {
  padding: 11px 16px;
  background: var(--forest);
  color: var(--white);
  border-radius: 4px;
  font-weight: 700;
  white-space: nowrap;
}

.hero {
  position: relative;
  min-height: 88vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  padding: 130px clamp(18px, 5vw, 72px) 72px;
  color: var(--white);
}

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

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

.hero-shade {
  background: linear-gradient(90deg, rgba(16, 24, 32, 0.82), rgba(16, 24, 32, 0.44) 46%, rgba(16, 24, 32, 0.16));
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 740px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--copper);
  font-weight: 800;
  text-transform: uppercase;
  font-size: 0.78rem;
}

.hero .eyebrow {
  color: #f2b38d;
}

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

h1 {
  margin-bottom: 18px;
  font-size: clamp(3rem, 9vw, 7.4rem);
  line-height: 0.95;
  letter-spacing: 0;
}

h2 {
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1.04;
  letter-spacing: 0;
}

h3 {
  font-size: 1.15rem;
}

.hero-copy {
  max-width: 620px;
  font-size: clamp(1.08rem, 2vw, 1.35rem);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 18px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 800;
}

.button.primary {
  background: var(--copper);
  color: var(--white);
}

.button.secondary {
  border: 1px solid rgba(255, 255, 255, 0.8);
  color: var(--white);
}

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

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
}

.trust-strip div {
  padding: 24px clamp(18px, 4vw, 54px);
  background: var(--white);
}

.trust-strip strong,
.trust-strip span {
  display: block;
}

.trust-strip span {
  color: var(--muted);
  margin-top: 4px;
}

.section {
  padding: clamp(70px, 9vw, 118px) clamp(18px, 5vw, 72px);
}

.section-heading {
  max-width: 900px;
  margin-bottom: 34px;
}

.section-heading.split {
  max-width: none;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 22px;
}

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

.service-grid article {
  min-height: 245px;
  padding: 30px;
  background: var(--white);
}

.service-grid span {
  color: var(--copper);
  font-weight: 800;
}

.service-grid p {
  color: var(--muted);
}

.feature-band {
  display: grid;
  grid-template-columns: minmax(280px, 0.75fr) minmax(320px, 1fr);
  align-items: stretch;
  background: var(--charcoal);
  color: var(--white);
}

.feature-copy {
  padding: clamp(42px, 7vw, 86px);
  align-self: center;
}

.feature-copy p:last-child {
  color: #d9dfdf;
  font-size: 1.08rem;
}

.feature-band img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
}

.work {
  background: #ebe6df;
}

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

.gallery figure {
  position: relative;
  margin: 0;
  min-height: 230px;
  overflow: hidden;
  background: var(--charcoal);
}

.gallery img {
  width: 100%;
  height: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 180ms ease;
}

.gallery figure:hover img {
  transform: scale(1.035);
}

.gallery figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 28px 14px 14px;
  color: var(--white);
  font-weight: 800;
  background: linear-gradient(transparent, rgba(16, 24, 32, 0.82));
}

.about {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) minmax(260px, 420px);
  gap: 36px;
  align-items: center;
  background: var(--white);
}

.about-copy p:last-child {
  color: var(--muted);
  font-size: 1.08rem;
}

.credential-panel {
  display: grid;
  gap: 12px;
}

.credential-panel strong {
  padding: 28px;
  color: var(--white);
  background: var(--steel);
  border-left: 8px solid var(--copper);
  font-size: 1.3rem;
}

.contact {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) auto;
  gap: 28px;
  align-items: center;
  padding: clamp(52px, 7vw, 86px) clamp(18px, 5vw, 72px);
  background: var(--forest);
  color: var(--white);
}

.contact p {
  max-width: 660px;
  color: #e7eeee;
}

footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 24px clamp(18px, 5vw, 72px);
  background: var(--ink);
  color: var(--white);
}

footer p {
  margin: 0;
}

@media (max-width: 900px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .nav {
    grid-column: 1 / -1;
    order: 3;
    overflow-x: auto;
    padding-top: 4px;
  }

  .hero {
    min-height: 84vh;
    padding-top: 160px;
  }

  .trust-strip,
  .service-grid,
  .feature-band,
  .about,
  .contact {
    grid-template-columns: 1fr;
  }

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

  .feature-band img {
    min-height: 360px;
  }
}

@media (max-width: 560px) {
  .site-header {
    position: static;
    grid-template-columns: 1fr;
    padding: 12px 16px;
  }

  .brand {
    min-width: 0;
  }

  .brand strong {
    font-size: 0.96rem;
  }

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

  .header-call {
    padding: 10px 12px;
    width: 100%;
    text-align: center;
    font-size: 0.95rem;
  }

  .hero {
    min-height: 78vh;
    padding: 68px 18px 46px;
  }

  .hero-shade {
    background: linear-gradient(90deg, rgba(16, 24, 32, 0.88), rgba(16, 24, 32, 0.42));
  }

  .section-heading.split {
    display: block;
  }

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

  .gallery figure {
    min-height: 260px;
  }

  .button,
  .contact-actions {
    width: 100%;
  }

  footer {
    display: block;
  }
}
