:root {
  --ink: #141414;
  --muted: #62655f;
  --paper: #f7f5ef;
  --stone: #e7e2d8;
  --charcoal: #202422;
  --green: #5f7c63;
  --clay: #a85f3d;
  --gold: #d8a44f;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(20, 20, 20, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 4px;
}

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

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 56px);
  color: var(--white);
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.62), rgba(0, 0, 0, 0));
  transition:
    background 240ms ease,
    box-shadow 240ms ease,
    color 240ms ease;
}

.site-header.scrolled {
  color: var(--ink);
  background: rgba(247, 245, 239, 0.94);
  box-shadow: 0 10px 30px rgba(20, 20, 20, 0.08);
  backdrop-filter: blur(16px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 2px solid currentColor;
  font-weight: 800;
}

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

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

.brand small {
  color: currentColor;
  font-size: 0.78rem;
  opacity: 0.78;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
  font-size: 0.94rem;
  font-weight: 700;
}

.nav-links a {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid currentColor;
  color: inherit;
  background: transparent;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 720px;
  min-height: 92svh;
  overflow: hidden;
  color: var(--white);
}

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

.hero img {
  object-fit: cover;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0.28) 52%, rgba(0, 0, 0, 0.08)),
    linear-gradient(0deg, rgba(20, 20, 20, 0.58), rgba(20, 20, 20, 0.05) 44%);
}

.hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: 720px;
  min-height: 92svh;
  max-width: 760px;
  flex-direction: column;
  justify-content: center;
  padding: 120px clamp(20px, 5vw, 72px) 86px;
}

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

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

h1 {
  max-width: 690px;
  margin-bottom: 20px;
  font-size: clamp(3rem, 8vw, 6.6rem);
  line-height: 0.95;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 4vw, 3.7rem);
  line-height: 1.02;
  letter-spacing: 0;
}

h3 {
  font-size: 1.2rem;
  line-height: 1.2;
}

.hero-copy {
  max-width: 570px;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1.05rem, 2vw, 1.25rem);
}

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

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 2px solid transparent;
  padding: 12px 20px;
  font-weight: 800;
  text-align: center;
  cursor: pointer;
  transition:
    transform 180ms ease,
    background 180ms ease,
    border-color 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

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

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

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: var(--charcoal);
  color: var(--white);
}

.trust-strip div {
  min-height: 116px;
  padding: 28px clamp(20px, 4vw, 56px);
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}

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

.trust-strip span {
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.68);
}

.section {
  padding: 84px clamp(20px, 5vw, 72px);
}

.intro {
  display: grid;
  grid-template-columns: minmax(260px, 0.9fr) minmax(260px, 1.1fr);
  gap: 42px;
  align-items: start;
}

.intro > p {
  max-width: 740px;
  color: var(--muted);
  font-size: 1.18rem;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 32px;
}

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

.service-card {
  min-height: 260px;
  padding: 26px;
  background: var(--white);
  border: 1px solid var(--stone);
  box-shadow: 0 12px 34px rgba(20, 20, 20, 0.06);
}

.service-card .icon {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-bottom: 34px;
  background: var(--green);
  color: var(--white);
  font-weight: 800;
}

.service-card p,
.steps span {
  color: var(--muted);
}

.work-band {
  padding: 84px clamp(20px, 5vw, 72px);
  background: var(--green);
  color: var(--white);
}

.work-band .eyebrow {
  color: #f1cd7d;
}

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

.work-card {
  position: relative;
  overflow: hidden;
  min-height: 250px;
  aspect-ratio: 4 / 5;
  background: var(--charcoal);
  box-shadow: var(--shadow);
  transform: translateY(24px);
  opacity: 0;
  transition:
    opacity 600ms ease,
    transform 600ms ease,
    box-shadow 300ms ease;
}

.work-card.is-visible {
  transform: translateY(0);
  opacity: 1;
}

.work-card:nth-child(2) {
  transition-delay: 120ms;
}

.work-card:nth-child(3) {
  transition-delay: 240ms;
}

.work-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform 600ms ease;
}

.work-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(32, 36, 34, 0.03), rgba(32, 36, 34, 0.88)),
    linear-gradient(90deg, rgba(32, 36, 34, 0.36), rgba(32, 36, 34, 0));
}

.work-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 80px rgba(20, 20, 20, 0.28);
}

.work-card:hover img {
  transform: scale(1.1);
}

.work-card-content {
  position: absolute;
  z-index: 1;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 26px;
}

.work-grid span {
  margin-bottom: 10px;
  color: #f1cd7d;
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
}

.work-grid h3 {
  max-width: 330px;
  margin-bottom: 0;
  font-size: 1.55rem;
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: step;
}

.steps li {
  position: relative;
  min-height: 190px;
  padding: 66px 22px 22px;
  background: var(--stone);
}

.steps li::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  top: 22px;
  left: 22px;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  background: var(--charcoal);
  color: var(--white);
  font-weight: 800;
}

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

.steps strong {
  margin-bottom: 8px;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(320px, 1.1fr);
  gap: 42px;
  padding: 84px clamp(20px, 5vw, 72px);
  background: var(--charcoal);
  color: var(--white);
}

.contact-copy p:not(.eyebrow) {
  max-width: 560px;
  color: rgba(255, 255, 255, 0.72);
}

.contact-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  align-self: end;
}

.contact-card {
  display: flex;
  min-height: 210px;
  flex-direction: column;
  justify-content: space-between;
  padding: 28px;
  background: var(--paper);
  color: var(--ink);
  box-shadow: var(--shadow);
  transition:
    transform 220ms ease,
    box-shadow 220ms ease;
}

.contact-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 30px 80px rgba(20, 20, 20, 0.28);
}

.contact-card span {
  color: var(--clay);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.contact-card strong {
  display: block;
  margin: 28px 0;
  overflow-wrap: anywhere;
  font-size: clamp(1.2rem, 2.2vw, 2rem);
  line-height: 1.1;
}

.contact-card small {
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 700;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 26px clamp(20px, 5vw, 72px);
  background: #111311;
  color: rgba(255, 255, 255, 0.72);
}

@media (max-width: 1180px) {
  .service-grid,
  .steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .work-card:first-child {
    grid-column: span 2;
    aspect-ratio: 16 / 8;
  }
}

@media (max-width: 920px) {
  .menu-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: calc(100% + 8px);
    left: 18px;
    right: 18px;
    display: none;
    width: auto;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px;
    background: var(--paper);
    color: var(--ink);
    box-shadow: var(--shadow);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    padding: 14px;
  }

  .intro,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .contact-section {
    gap: 28px;
  }

  .contact-cards {
    align-self: stretch;
  }
}

@media (max-width: 760px) {
  .site-header {
    padding: 14px 16px;
  }

  .brand small {
    display: none;
  }

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

  .hero,
  .hero-content {
    min-height: 680px;
    min-height: 92svh;
  }

  .hero-content {
    padding: 108px 20px 70px;
    justify-content: flex-end;
  }

  h1 {
    font-size: clamp(2.55rem, 13vw, 4.2rem);
    line-height: 0.98;
  }

  h2 {
    font-size: clamp(2rem, 9vw, 3rem);
  }

  .trust-strip,
  .service-grid,
  .steps,
  .work-grid,
  .contact-cards {
    grid-template-columns: 1fr;
  }

  .work-card:first-child {
    grid-column: auto;
    aspect-ratio: 4 / 5;
  }

  .trust-strip div {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .section,
  .work-band,
  .contact-section {
    padding-top: 62px;
    padding-bottom: 62px;
  }

  .hero-actions {
    width: 100%;
  }

  .hero-actions .button {
    flex: 1 1 180px;
  }

  .service-card,
  .steps li,
  .contact-card {
    min-height: auto;
  }

  .site-footer {
    flex-direction: column;
  }
}

@media (max-width: 430px) {
  .brand strong {
    max-width: 190px;
    font-size: 0.92rem;
    line-height: 1.15;
  }

  .menu-toggle {
    width: 42px;
    height: 42px;
    flex: 0 0 auto;
  }

  .hero-copy,
  .intro > p {
    font-size: 1rem;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .button {
    width: 100%;
  }

  .section,
  .work-band,
  .contact-section {
    padding-left: 16px;
    padding-right: 16px;
  }

  .service-card,
  .work-card-content,
  .contact-card {
    padding: 22px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .work-card,
  .work-card.is-visible {
    transform: none;
    opacity: 1;
  }
}
