* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: #f7f7f7;
  color: #171717;
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.45;
}

a { color: inherit; text-decoration: none; }
img { display: block; width: 100%; }

.site-header {
  height: 76px;
  padding: 0 5vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #171717;
}

.logo { font-weight: 700; letter-spacing: .08em; font-size: 13px; }

nav { display: flex; gap: 28px; font-size: 13px; }
nav a:hover { text-decoration: underline; }

.hero {
  min-height: calc(100vh - 76px);
  padding: 5vw;
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 6vw;
  align-items: center;
}

.hero-image {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: #ddd;
}

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

.hero-text { max-width: 580px; }

.eyebrow {
  margin: 0 0 18px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
}

h1, h2, h3 { margin-top: 0; line-height: .98; }
h1 { font-size: clamp(58px, 8vw, 120px); letter-spacing: -.055em; margin-bottom: 30px; }
h2 { font-size: clamp(42px, 6vw, 82px); letter-spacing: -.045em; }
h3 { font-size: 24px; }

.intro { max-width: 470px; font-size: 18px; margin-bottom: 32px; }

.button {
  display: inline-block;
  border-bottom: 1px solid currentColor;
  padding-bottom: 5px;
  font-size: 13px;
  font-weight: 700;
}

.section { padding: 9vw 5vw; }
.section-heading { margin-bottom: 5vw; }

.gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 5vw 2.5vw;
}

figure { margin: 0; }
figure img {
  aspect-ratio: 4 / 5;
  object-fit: cover;
  background: #ddd;
}
figcaption { font-size: 12px; padding-top: 10px; }

.about {
  border-top: 1px solid #171717;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10vw;
}

.about-copy { max-width: 560px; font-size: 20px; }

.services { border-top: 1px solid #171717; }
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4vw;
}

.service-grid p { max-width: 320px; }

.contact {
  padding: 12vw 5vw;
  background: #171717;
  color: #f7f7f7;
}
.contact h2 { max-width: 800px; }
.contact a { text-decoration: underline; text-underline-offset: 5px; }

footer {
  padding: 20px 5vw;
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  border-top: 1px solid #555;
}

@media (max-width: 760px) {
  .site-header { height: 64px; }
  nav { gap: 15px; }
  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
    padding-top: 30px;
  }
  .hero-text { padding: 20px 0 50px; }
  .gallery { grid-template-columns: 1fr; gap: 45px; }
  .about { grid-template-columns: 1fr; gap: 20px; }
  .service-grid { grid-template-columns: 1fr; gap: 35px; }
  .section { padding: 70px 5vw; }
  footer { flex-direction: column; gap: 6px; }
}
