:root {
  --paper: #f1f0ea;
  --warm: #ded8cb;
  --ink: #333631;
  --muted: #74746c;
  --charcoal: #171916;
  --red: #b84945;
  --line: rgba(51, 54, 49, 0.16);
  --white: #fffaf0;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
}

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

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

.site-header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 20px clamp(22px, 5vw, 72px);
  color: var(--white);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  font-size: 13px;
}

.brand img {
  width: 34px;
  height: 34px;
  border-radius: 9px;
}

nav {
  display: flex;
  align-items: center;
  gap: clamp(12px, 2vw, 28px);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

nav a {
  opacity: 0.82;
  transition: opacity 180ms ease, transform 180ms ease;
}

nav a:hover {
  opacity: 1;
  transform: translateY(-2px);
}

.nav-cta {
  border-bottom: 1px solid currentColor;
  padding-bottom: 5px;
}

.hero {
  position: relative;
  min-height: 92vh;
  overflow: hidden;
  display: grid;
  align-items: center;
  padding: 128px clamp(24px, 8vw, 112px) 80px;
  color: var(--white);
}

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

.hero-image {
  object-fit: cover;
  filter: saturate(0.78) contrast(0.96);
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(19, 18, 16, 0.68), rgba(19, 18, 16, 0.22) 48%, rgba(19, 18, 16, 0.54)),
    linear-gradient(0deg, rgba(19, 18, 16, 0.26), rgba(19, 18, 16, 0.08));
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 920px;
}

.eyebrow,
.kicker {
  margin: 0 0 18px;
  color: var(--red);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: var(--white);
  opacity: 0.82;
}

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

h1 {
  margin-bottom: 22px;
  max-width: 1040px;
  font-size: clamp(52px, 10vw, 142px);
  line-height: 0.86;
  font-weight: 900;
}

.hero-copy p:not(.eyebrow) {
  max-width: 620px;
  font-size: clamp(17px, 2vw, 22px);
  line-height: 1.55;
  color: rgba(255, 250, 240, 0.86);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid currentColor;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.button:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.18);
}

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

.button.primary:hover {
  background: var(--ink);
  border-color: var(--ink);
}

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

.section-grid {
  display: grid;
  grid-template-columns: minmax(0, 760px);
  justify-content: center;
  gap: 24px;
  padding: 96px clamp(24px, 8vw, 112px) 82px;
  text-align: center;
}

.intro h2,
.approach h2,
.standards h2,
.contact h2 {
  font-size: clamp(30px, 4vw, 58px);
  line-height: 1.02;
  font-weight: 900;
}

.intro p:last-child,
.approach-head p,
.standards-copy li,
.contact p {
  color: var(--muted);
  line-height: 1.8;
  font-size: 15px;
}

.intro p:last-child {
  max-width: 680px;
  margin: 0 auto;
}

.service-strip {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  padding: 0 clamp(24px, 8vw, 112px) 104px;
}

.service-card {
  position: relative;
  min-height: 360px;
  overflow: hidden;
  background: var(--warm);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 28px 70px rgba(44, 42, 36, 0.22);
}

.service-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.72);
  transition: transform 600ms ease;
}

.service-card:hover img {
  transform: scale(1.045);
}

.service-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(241, 240, 234, 0.98), rgba(241, 240, 234, 0.92) 43%, rgba(241, 240, 234, 0.22) 72%),
    linear-gradient(0deg, rgba(51, 54, 49, 0.08), rgba(51, 54, 49, 0));
}

.service-card.dark::after {
  background: linear-gradient(90deg, rgba(17, 18, 16, 0.82), rgba(17, 18, 16, 0.3));
}

.service-card div {
  position: relative;
  z-index: 2;
  max-width: 360px;
  padding: 42px;
}

.service-card span,
.approach-grid span {
  color: var(--red);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.service-card h3,
.approach-grid h3 {
  margin: 16px 0 12px;
  font-size: 28px;
}

.service-card p,
.approach-grid p {
  color: var(--muted);
  line-height: 1.7;
}

.service-card.dark,
.service-card.dark p {
  color: var(--white);
}

.feature-banner {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  color: var(--white);
}

.feature-banner img {
  width: 100%;
  height: 620px;
  object-fit: cover;
  filter: grayscale(0.2) contrast(1.08) brightness(0.66);
}

.feature-overlay {
  position: absolute;
  inset: auto auto 70px clamp(24px, 8vw, 112px);
  max-width: 680px;
}

.feature-overlay h2 {
  margin-bottom: 16px;
  font-size: clamp(34px, 6vw, 76px);
  line-height: 0.96;
}

.feature-overlay span {
  display: block;
  max-width: 560px;
  color: rgba(255, 250, 240, 0.76);
  line-height: 1.7;
}

.approach {
  padding: 110px clamp(24px, 8vw, 112px);
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  justify-items: center;
  text-align: center;
  gap: 48px;
}

.approach-head {
  max-width: 940px;
}

.approach-grid {
  width: min(100%, 1040px);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.approach-grid article {
  min-height: 260px;
  padding: 34px;
  background: var(--paper);
  text-align: left;
  transition: background 180ms ease, transform 180ms ease;
}

.approach-grid article:hover {
  background: #e8e2d6;
  transform: translateY(-4px);
}

.standards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(30px, 7vw, 94px);
  align-items: center;
  padding: 0 clamp(24px, 8vw, 112px) 118px;
}

.standards-image {
  overflow: hidden;
  background: var(--warm);
}

.standards-image img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  filter: saturate(0.76);
  transition: transform 700ms ease;
}

.standards-image:hover img {
  transform: scale(1.035);
}

.standards-copy ul {
  list-style: none;
  padding: 0;
  margin: 28px 0 0;
}

.standards-copy li {
  border-top: 1px solid var(--line);
  padding: 18px 0;
}

.standards-copy li:first-child {
  border-top: 0;
}

.contact {
  margin: 0 clamp(24px, 8vw, 112px) 92px;
  padding: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  background: var(--charcoal);
  color: var(--white);
}

.contact p {
  max-width: 660px;
  color: rgba(255, 250, 240, 0.72);
}

footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 28px clamp(24px, 8vw, 112px);
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 12px;
}

@media (max-width: 900px) {
  .site-header {
    align-items: flex-start;
  }

  nav {
    display: none;
  }

  .hero {
    min-height: 760px;
  }

  .section-grid,
  .approach,
  .standards,
  .service-strip {
    grid-template-columns: 1fr;
  }

  .approach-grid {
    grid-column: auto;
    grid-template-columns: 1fr;
  }

  .contact,
  footer {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 560px) {
  .hero {
    padding: 112px 22px 96px;
  }

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

  .section-grid,
  .approach {
    padding: 72px 22px;
  }

  .service-strip,
  .standards {
    padding-left: 22px;
    padding-right: 22px;
  }

  .service-card {
    min-height: 430px;
  }

  .service-card div,
  .contact {
    padding: 28px;
  }

  .contact {
    margin-left: 22px;
    margin-right: 22px;
  }
}
