:root {
  color-scheme: dark;
  --ink: #f4efe8;
  --muted: rgba(244, 239, 232, 0.68);
  --line: rgba(244, 239, 232, 0.16);
  --panel: #141414;
  --paper: #0b0b0a;
  --accent: #d9ad72;
  --accent-2: #76a7b6;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--paper);
  color: var(--ink);
  font-family: Optima, Avenir Next, Avenir, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
}

a {
  color: inherit;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px clamp(18px, 4vw, 54px);
  background: linear-gradient(to bottom, rgba(6, 6, 6, 0.72), rgba(6, 6, 6, 0));
}

.brand {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(10, 10, 10, 0.28);
  font-weight: 700;
  text-decoration: none;
}

.nav-links {
  display: flex;
  gap: clamp(16px, 3vw, 34px);
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
}

.nav-links a,
.hero-link,
.contact a {
  text-decoration: none;
}

.nav-links a {
  color: rgba(244, 239, 232, 0.8);
}

.hero {
  position: relative;
  min-height: 92svh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

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

.hero-image {
  position: absolute;
  inset: 0;
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.78), rgba(5, 5, 5, 0.1) 58%),
    linear-gradient(0deg, rgba(5, 5, 5, 0.88), rgba(5, 5, 5, 0.08) 58%);
}

.hero-content {
  position: relative;
  width: min(820px, calc(100% - 36px));
  padding: 0 clamp(18px, 4vw, 54px) clamp(58px, 12vh, 120px);
}

.eyebrow,
.section-kicker {
  margin: 0 0 18px;
  color: var(--accent);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

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

h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
  letter-spacing: 0;
}

h1 {
  max-width: 760px;
  margin-bottom: 24px;
  font-size: clamp(3.35rem, 9vw, 8.2rem);
  line-height: 0.9;
}

.hero-copy {
  max-width: 520px;
  margin-bottom: 32px;
  color: var(--muted);
  font-size: clamp(1rem, 1.45vw, 1.2rem);
  line-height: 1.7;
}

.hero-link,
.contact a {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  border-bottom: 1px solid currentColor;
  color: var(--ink);
  font-weight: 700;
}

.intro,
.journal,
.contact {
  padding: clamp(70px, 9vw, 128px) clamp(18px, 6vw, 80px);
}

.intro {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(260px, 0.7fr);
  gap: clamp(34px, 8vw, 110px);
  background: #10100f;
  border-bottom: 1px solid var(--line);
}

.intro h2,
.journal h2,
.contact h2 {
  max-width: 820px;
  margin-bottom: 0;
  font-size: clamp(2.2rem, 5vw, 4.8rem);
  line-height: 1;
}

.intro p:last-child {
  align-self: end;
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.85;
}

.work {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  grid-auto-rows: minmax(360px, 52vw);
  gap: 1px;
  background: var(--line);
}

.feature {
  position: relative;
  min-height: 360px;
  overflow: hidden;
  background: var(--panel);
}

.feature-large {
  grid-row: span 2;
}

.crop-right img {
  object-position: 78% center;
}

.feature::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.68), rgba(0, 0, 0, 0.02) 58%);
}

.feature-meta {
  position: absolute;
  left: clamp(18px, 3vw, 34px);
  right: clamp(18px, 3vw, 34px);
  bottom: clamp(18px, 3vw, 34px);
  z-index: 2;
}

.feature-meta span,
.note-grid span,
footer {
  color: rgba(244, 239, 232, 0.56);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
}

.feature-meta strong {
  display: block;
  margin-top: 8px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.45rem, 2.4vw, 2.4rem);
  line-height: 1.05;
}

.journal {
  background: #0d1112;
}

.journal-heading {
  margin-bottom: clamp(34px, 6vw, 76px);
}

.note-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.note-grid article {
  min-height: 250px;
  padding: clamp(22px, 4vw, 42px);
  border-right: 1px solid var(--line);
}

.note-grid article:last-child {
  border-right: 0;
}

.note-grid h3 {
  margin: 34px 0 14px;
  color: var(--accent-2);
  font-size: 1.1rem;
  text-transform: uppercase;
}

.note-grid p {
  max-width: 310px;
  color: var(--muted);
  line-height: 1.7;
}

.contact {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 34px;
  background: #17130f;
}

.contact a {
  flex: 0 0 auto;
  color: var(--accent);
  overflow-wrap: anywhere;
}

footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 28px clamp(18px, 6vw, 80px);
  background: #080808;
}

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

  .nav-links {
    gap: 14px;
    font-size: 0.72rem;
  }

  .hero {
    min-height: 88svh;
  }

  .hero-content {
    padding-bottom: 54px;
  }

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

  .work,
  .note-grid {
    grid-template-columns: 1fr;
  }

  .work {
    grid-auto-rows: minmax(330px, 78vw);
  }

  .feature-large {
    grid-row: span 1;
  }

  .note-grid article {
    min-height: 210px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .note-grid article:last-child {
    border-bottom: 0;
  }

  .contact {
    align-items: start;
  }

  footer {
    flex-direction: column;
  }
}
