:root {
  --ink: #10100f;
  --paper: #f4f0e7;
  --acid: #d5ff3f;
  --quiet: #88857e;
  --line: #d8d3c7;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--paper); color: var(--ink); font-family: "DM Mono", monospace; }
a { color: inherit; }

.site-header, footer { display: flex; align-items: center; justify-content: space-between; padding: 24px clamp(22px, 5vw, 76px); font-size: 11px; letter-spacing: .05em; text-transform: uppercase; }
.site-header { border-bottom: 1px solid var(--line); }
.site-header p { color: var(--quiet); margin: 0; }
.brand, footer > span:first-child { text-decoration: none; font-size: 15px; font-weight: 500; letter-spacing: -.08em; }
.brand span, footer span span { color: var(--acid); font-size: .7em; vertical-align: .12em; }

.hero { min-height: 660px; display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(390px, .95fr); padding: clamp(60px, 10vw, 150px) clamp(22px, 10vw, 150px); gap: 7vw; align-items: center; overflow: hidden; }
.eyebrow { margin: 0 0 22px; color: #66635d; font-size: 11px; text-transform: uppercase; letter-spacing: .11em; }
h1, h2 { font-family: "Playfair Display", Georgia, serif; margin: 0; letter-spacing: -.065em; line-height: .9; font-weight: 800; }
h1 { font-size: clamp(70px, 10vw, 154px); }
h1 em, h2 em { font-weight: 600; }
.lede { max-width: 450px; margin: 34px 0; font-size: 15px; line-height: 1.7; color: #44423d; }
.button { display: inline-flex; align-items: center; gap: 32px; background: var(--ink); color: var(--paper); padding: 17px 20px; text-decoration: none; font-size: 12px; text-transform: uppercase; letter-spacing: .04em; transition: transform .2s ease, background .2s ease; }
.button:hover { transform: translateY(-3px); background: #353530; }
.button span { font-size: 18px; line-height: 0; }

.hero-object { position: relative; min-height: 380px; display: grid; place-items: center; transform: rotate(-5deg); }
.paper-shadow { position: absolute; width: min(380px, 78%); aspect-ratio: 1.42; background: #c7c2b6; transform: translate(23px, 27px) rotate(4deg); }
.black-paper { z-index: 1; width: min(410px, 84%); aspect-ratio: 1.42; background: #050505; color: #252525; display: grid; place-items: end start; padding: 22px; box-shadow: 18px 25px 34px #0002; font-size: 14px; letter-spacing: .08em; line-height: 1.05; }
.hero-object p { position: absolute; right: 0; bottom: -4px; width: 150px; margin: 0; color: var(--quiet); font-size: 10px; line-height: 1.5; transform: rotate(5deg); }

.proof { border-top: 1px solid var(--ink); border-bottom: 1px solid var(--ink); padding: 76px clamp(22px, 10vw, 150px); display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
h2 { font-size: clamp(47px, 6.2vw, 95px); }
.steps { list-style: none; padding: 0; margin: 0; align-self: end; }
.steps li { border-top: 1px solid var(--ink); padding: 19px 0 11px; display: flex; gap: 40px; font-size: clamp(16px, 2vw, 25px); }
.steps span { color: var(--quiet); font-size: 11px; padding-top: 8px; }

.gallery { padding: 12px; display: grid; grid-template-columns: 1.1fr .9fr; grid-auto-rows: minmax(340px, auto); gap: 12px; background: var(--ink); }
.card { position: relative; margin: 0; min-height: 420px; overflow: hidden; background: #333; }
.card img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; transition: transform .5s ease; }
.card:hover img { transform: scale(1.035); }
.card-tall { grid-row: span 2; min-height: 852px; }
.card-square { min-height: 420px; }
figcaption { position: absolute; inset: auto 0 0; padding: 48px 22px 19px; color: white; font-size: 12px; line-height: 1.5; background: linear-gradient(transparent, #000b); }
figcaption span { display: block; font-size: 10px; letter-spacing: .08em; text-transform: uppercase; color: var(--acid); margin-bottom: 5px; }

.cta { background: var(--acid); padding: clamp(80px, 12vw, 180px) 22px; text-align: center; }
.cta .eyebrow { color: #45560f; }
.cta h2 { max-width: 900px; margin: auto; }
.cta > p:not(.eyebrow) { margin: 28px 0; font-size: 12px; }
.button-light { background: var(--ink); }
footer { background: var(--ink); color: var(--paper); }
footer > span:last-child { color: #9c998f; font-size: 10px; }

@media (max-width: 720px) {
  .site-header p { display: none; }
  .hero { min-height: auto; grid-template-columns: 1fr; padding-top: 74px; gap: 54px; }
  .hero-object { min-height: 260px; }
  .proof { grid-template-columns: 1fr; padding-top: 60px; padding-bottom: 60px; }
  .gallery { grid-template-columns: 1fr; }
  .card, .card-tall, .card-square { grid-row: auto; min-height: 420px; }
  .card-tall { min-height: 580px; }
  footer { gap: 20px; flex-direction: column; align-items: flex-start; }
}
