:root {
  --ink: #11110f;
  --paper: #f2f0eb;
  --muted: #77736b;
  --line: rgba(17, 17, 15, .18);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--paper); color: var(--ink); font-family: Arial, Helvetica, sans-serif; }
a { color: inherit; text-decoration: none; }
img { display: block; width: 100%; height: 100%; object-fit: cover; }

.site-header {
  position: absolute; z-index: 10; inset: 0 0 auto;
  display: flex; justify-content: space-between; align-items: center;
  padding: 24px 3vw; color: white; mix-blend-mode: difference;
}
.brand { font-size: .9rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
nav { display: flex; gap: 26px; }
nav a { font-size: .75rem; letter-spacing: .14em; text-transform: uppercase; }

.hero { position: relative; min-height: 100svh; background: #1a1a18; color: white; overflow: hidden; }
.hero::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(0,0,0,.5), rgba(0,0,0,.04) 65%), linear-gradient(0deg, rgba(0,0,0,.28), transparent 40%); }
.hero > img { position: absolute; inset: 0; }
.hero-copy { position: absolute; z-index: 1; left: 6vw; bottom: 15vh; }
.hero-copy p, .eyebrow { margin: 0 0 20px; font-size: .7rem; letter-spacing: .18em; text-transform: uppercase; }
.hero h1 { margin: 0; max-width: 10ch; font-family: Georgia, 'Times New Roman', serif; font-size: clamp(3.3rem, 8vw, 8.6rem); line-height: .88; font-weight: 400; letter-spacing: -.055em; }
.scroll-cue { position: absolute; z-index: 1; right: 3vw; bottom: 34px; font-size: .7rem; letter-spacing: .14em; text-transform: uppercase; }
.scroll-cue span { margin-left: 12px; }

.intro { display: grid; grid-template-columns: minmax(0, 1fr) minmax(280px, .72fr); gap: 7vw; padding: 130px 6vw 110px; align-items: center; }
.intro-copy { align-self: center; }
.intro figure { margin: 0; aspect-ratio: 2 / 3; overflow: hidden; background: #d8d5ce; }
.intro h2 { margin: 0; max-width: 12ch; font-family: Georgia, 'Times New Roman', serif; font-size: clamp(2.8rem, 6vw, 6rem); line-height: 1; font-weight: 400; letter-spacing: -.045em; }
.eyebrow { color: var(--muted); padding-top: .65em; }

.gallery { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 5vw 2vw; padding: 0 3vw 12vw; align-items: start; }
.gallery figure { margin: 0; overflow: hidden; background: #d8d5ce; aspect-ratio: 3 / 2; }
.gallery figure.portrait { aspect-ratio: 2 / 3; width: 72%; margin-inline: auto; }
.gallery figure.wide { grid-column: 1 / -1; aspect-ratio: 3 / 2; }

.about { border-top: 1px solid var(--line); padding: 110px 6vw 140px; display: grid; grid-template-columns: 1fr 3fr; gap: 30px; }
.about h2 { margin: 0 0 32px; font-family: Georgia, 'Times New Roman', serif; font-size: clamp(3rem, 7vw, 7rem); font-weight: 400; letter-spacing: -.05em; }
.about div p { max-width: 700px; font-family: Georgia, 'Times New Roman', serif; font-size: clamp(1.35rem, 2.5vw, 2.3rem); line-height: 1.35; }

footer { border-top: 1px solid var(--line); padding: 35px 3vw; display: grid; grid-template-columns: 1fr auto auto; align-items: center; gap: 40px; }
footer p { margin: 0; color: var(--muted); font-size: .72rem; letter-spacing: .1em; text-transform: uppercase; }
.social-links { display: flex; gap: 24px; }
.social-links a { color: var(--muted); font-size: .72rem; letter-spacing: .1em; text-transform: uppercase; transition: color .2s ease; }
.social-links a:hover, .social-links a:focus-visible { color: var(--ink); }

@media (max-width: 720px) {
  .site-header { padding: 20px; }
  nav { gap: 16px; }
  .hero-copy { left: 24px; bottom: 18vh; }
  .scroll-cue { right: 20px; bottom: 24px; }
  .intro, .about { grid-template-columns: 1fr; padding: 90px 24px; }
  .intro h2 { max-width: 14ch; }
  .intro figure { width: 82%; margin: 18px auto 0; }
  .gallery { grid-template-columns: 1fr; gap: 28px; padding: 0 16px 100px; }
  .gallery figure, .gallery figure.wide { grid-column: auto; }
  .gallery figure.portrait { width: 82%; }
  footer { grid-template-columns: 1fr auto; padding: 28px 20px; }
  .social-links { grid-column: 1 / -1; grid-row: 1; gap: 18px; }
  footer .brand { grid-row: 2; }
  footer p { grid-row: 2; }
}

@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
