* { box-sizing: border-box; }

:root {
  --ink: #20211f;
  --muted: #696a65;
  --cream: #f5f3ee;
  --white: #fff;
  --line: rgba(32,33,31,.14);
}

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: "DM Sans", sans-serif;
  line-height: 1.6;
}

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

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 5vw;
  color: white;
  background: linear-gradient(rgba(0,0,0,.45), transparent);
}

.brand {
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: .16em;
}

.brand span { font-weight: 400; }

nav {
  display: flex;
  align-items: center;
  gap: 30px;
  font-size: .9rem;
}

.nav-cta {
  padding: 10px 17px;
  border: 1px solid rgba(255,255,255,.7);
  border-radius: 999px;
}

.hero {
  position: relative;
  min-height: 92vh;
  overflow: hidden;
  color: white;
}

.hero > img {
  width: 100%;
  height: 92vh;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,.58), rgba(0,0,0,.08) 70%),
              linear-gradient(0deg, rgba(0,0,0,.42), transparent 55%);
}

.hero-content {
  position: absolute;
  left: 8vw;
  top: 50%;
  transform: translateY(-42%);
  max-width: 680px;
}

.eyebrow {
  margin: 0 0 14px;
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: .72rem;
  font-weight: 600;
}

h1, h2 {
  margin: 0;
  font-family: "Playfair Display", serif;
  font-weight: 500;
  line-height: 1.05;
}

h1 { font-size: clamp(3.5rem, 7vw, 6.8rem); }
h2 { font-size: clamp(2.7rem, 5vw, 5rem); }
h1 em, h2 em { font-style: italic; font-weight: 500; }

.hero-copy {
  max-width: 520px;
  margin: 28px 0;
  font-size: 1.12rem;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 26px;
}

.button {
  display: inline-block;
  padding: 14px 24px;
  border-radius: 999px;
  font-weight: 600;
  transition: transform .2s ease, opacity .2s ease;
}

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

.button-light { color: var(--ink); background: white; }
.button-dark { color: white; background: var(--ink); }

.text-link { font-weight: 600; }
.text-link span { margin-left: 7px; }

.turnaround {
  position: absolute;
  right: 5vw;
  bottom: 7vh;
  display: flex;
  flex-direction: column;
  text-align: right;
  text-transform: uppercase;
  letter-spacing: .12em;
}

.turnaround strong {
  font-size: 1.8rem;
  letter-spacing: .08em;
}

.turnaround span { font-size: .65rem; }

.intro {
  max-width: 850px;
  padding: 150px 8vw;
}

.intro h2 { margin-bottom: 30px; }
.intro > p:last-child { max-width: 620px; color: var(--muted); font-size: 1.15rem; }

.gallery { padding: 40px 4vw 130px; }

.gallery-intro {
  padding: 0 4vw 65px;
  max-width: 850px;
}

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

.masonry figure {
  grid-column: span 4;
  margin: 0;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: #ddd;
}

.masonry figure.tall {
  aspect-ratio: 3 / 4;
}

.masonry figure:nth-child(1),
.masonry figure:nth-child(5),
.masonry figure:nth-child(9) { grid-column: span 4; }

.masonry img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .6s ease;
}

.masonry figure:hover img { transform: scale(1.025); }

.services {
  padding: 130px 8vw;
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 10vw;
  background: white;
}

.service-list article {
  padding: 0 0 34px;
  margin-bottom: 34px;
  border-bottom: 1px solid var(--line);
}

.service-list span {
  color: var(--muted);
  font-size: .75rem;
  letter-spacing: .12em;
}

.service-list h3 { margin: 8px 0; font-size: 1.35rem; }
.service-list p { margin: 0; color: var(--muted); max-width: 580px; }

.about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: #e7e3db;
}

.about-image { min-height: 650px; }
.about-image img { width: 100%; height: 100%; object-fit: cover; }

.about-copy {
  align-self: center;
  padding: 10vw;
}

.about-copy h2 { margin-bottom: 28px; }
.about-copy p { color: var(--muted); max-width: 550px; }

.contact {
  text-align: center;
  padding: 150px 8vw;
}

.contact h2 { margin-bottom: 28px; }
.contact > p { max-width: 600px; margin: 0 auto 30px; color: var(--muted); }
.contact small { display: block; margin-top: 24px; color: var(--muted); }

footer {
  padding: 30px 5vw;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
  border-top: 1px solid var(--line);
  font-size: .78rem;
  color: var(--muted);
}

@media (max-width: 800px) {
  .site-header { padding: 18px 5vw; }
  nav a:not(.nav-cta) { display: none; }
  .hero, .hero > img { min-height: 78vh; height: 78vh; }
  .hero-content { left: 7vw; right: 7vw; }
  h1 { font-size: clamp(3rem, 14vw, 5rem); }
  .turnaround { right: 7vw; bottom: 4vh; }
  .intro { padding: 100px 7vw; }
  .gallery { padding: 20px 5vw 90px; }
  .gallery-intro { padding: 0 2vw 45px; }
  .masonry { grid-template-columns: 1fr 1fr; }
  .masonry figure,
  .masonry figure.tall,
  .masonry figure:nth-child(1),
  .masonry figure:nth-child(5),
  .masonry figure:nth-child(9) {
    grid-column: span 1;
    aspect-ratio: 4 / 3;
  }
  .services { grid-template-columns: 1fr; padding: 90px 7vw; gap: 55px; }
  .about { grid-template-columns: 1fr; }
  .about-image { min-height: 450px; }
  .about-copy { padding: 80px 7vw; }
  .contact { padding: 100px 7vw; }
  footer { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; align-items: flex-start; gap: 18px; }
  .masonry { grid-template-columns: 1fr; }
  .masonry figure,
  .masonry figure.tall,
  .masonry figure:nth-child(1),
  .masonry figure:nth-child(5),
  .masonry figure:nth-child(9) {
    grid-column: span 1;
  }
}
