:root {
  color-scheme: dark;
  --bg: #0b0b0b;
  --text: #f2f2ee;
  --muted: #a9a8a1;
  --line: #2a2a2a;
  --line-soft: #1a1a1a;
  --gold: #c0a062;
  --gold-dim: #8f7648;
  --header-height: 72px;
  --shell: 1120px;
  --pad: clamp(20px, 4vw, 48px);
  --sans: Arial, "Helvetica Neue", Helvetica, sans-serif;
  --mono: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--bg);
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at 20% 0%, rgba(192, 160, 98, 0.04), transparent 30rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.018), transparent 28rem),
    var(--bg);
  color: var(--text);
  font-family: var(--sans);
  line-height: 1.5;
  text-transform: none;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.18;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px);
  background-size: 7px 7px, 11px 11px;
  mix-blend-mode: screen;
}

a {
  color: inherit;
  text-decoration-color: rgba(192, 160, 98, 0.45);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.22em;
  transition: color 160ms ease, text-decoration-color 160ms ease;
}

a:hover {
  color: var(--gold);
  text-decoration-color: var(--gold);
}

a:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 4px;
}

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

.shell {
  width: min(100% - (var(--pad) * 2), var(--shell));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 20;
  transform: translateY(-140%);
  padding: 10px 14px;
  background: var(--gold);
  color: #111;
  font-family: var(--mono);
  font-size: 0.78rem;
  text-transform: uppercase;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  min-height: var(--header-height);
  border-bottom: 1px solid rgba(42, 42, 42, 0.86);
  background: rgba(11, 11, 11, 0.88);
  backdrop-filter: blur(14px);
}

.nav {
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  font-family: var(--mono);
  font-size: 0.74rem;
  letter-spacing: 0;
  text-transform: uppercase;
}

.nav a {
  text-decoration: none;
}

.nav-brand {
  color: var(--text);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2.5vw, 28px);
  color: var(--muted);
}

.hero {
  min-height: calc(62vh - var(--header-height));
  display: flex;
  align-items: center;
  padding-block: clamp(44px, 7vh, 88px) clamp(20px, 4vh, 48px);
}

.hero-inner {
  width: 100%;
}

.eyebrow,
.section-marker,
.work-number,
.work-main p,
.work-links,
.site-footer {
  font-family: var(--mono);
  font-size: 0.78rem;
  letter-spacing: 0;
  text-transform: uppercase;
}

.eyebrow {
  margin-bottom: clamp(18px, 3vh, 34px);
  color: var(--gold);
}

.hero h1 {
  max-width: 11ch;
  color: var(--text);
  font-size: clamp(4.7rem, 14vw, 10.5rem);
  font-weight: 900;
  line-height: 0.82;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero-subtitle {
  max-width: 760px;
  margin-top: clamp(28px, 5vh, 54px);
  color: var(--text);
  font-size: clamp(1.28rem, 2.7vw, 2.25rem);
  font-weight: 800;
  line-height: 1.08;
  text-transform: uppercase;
}

.hero-line {
  margin-top: 18px;
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.55rem);
  font-weight: 700;
  text-transform: uppercase;
}

.section {
  scroll-margin-top: calc(var(--header-height) + 28px);
  padding-block: clamp(68px, 11vw, 128px);
}

#work {
  padding-top: clamp(20px, 4vw, 48px);
}

.section-marker {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: clamp(26px, 4vw, 44px);
  color: var(--gold);
}

.section-marker::before {
  content: "";
  display: block;
  width: min(100%, 180px);
  height: 1px;
  background: var(--line);
}

.section-heading,
.text-block {
  max-width: 720px;
}

.section h2 {
  font-size: clamp(2.3rem, 7vw, 5.4rem);
  font-weight: 900;
  line-height: 0.9;
  letter-spacing: 0;
  text-transform: uppercase;
}

.text-block p {
  margin-top: 24px;
  max-width: 680px;
  color: var(--muted);
  font-size: clamp(1.08rem, 2vw, 1.45rem);
  line-height: 1.45;
}

.work-list {
  list-style: none;
  margin: clamp(36px, 6vw, 72px) 0 0;
  padding: 0;
  border-top: 1px solid var(--line);
}

.work-item {
  display: grid;
  grid-template-columns: 64px 72px minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(16px, 3vw, 34px);
  padding-block: clamp(22px, 4vw, 36px);
  border-bottom: 1px solid var(--line);
}

.work-number {
  color: var(--gold-dim);
}

.work-art {
  display: block;
  width: 72px;
  aspect-ratio: 1;
  overflow: hidden;
  border: 1px solid rgba(192, 160, 98, 0.18);
  background: #111;
  text-decoration: none;
}

.work-art img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1) contrast(1.08) brightness(0.86);
  transition: filter 160ms ease, transform 160ms ease;
}

.work-art:hover img {
  filter: grayscale(0.2) contrast(1.04) brightness(0.94);
  transform: scale(1.03);
}

.work-art:focus-visible {
  outline-offset: 5px;
}

.work-main h3 {
  color: var(--text);
  font-size: clamp(1.3rem, 3vw, 2.3rem);
  font-weight: 800;
  line-height: 1.04;
  text-transform: uppercase;
}

.work-main h3 a {
  text-decoration: none;
}

.work-main p {
  margin-top: 10px;
  color: var(--muted);
}

.work-links {
  display: flex;
  justify-content: flex-end;
  gap: 14px;
  color: var(--text);
  white-space: nowrap;
}

.work-links a {
  text-decoration: none;
}

.contact-section {
  min-height: calc(100vh - var(--header-height));
  padding-bottom: clamp(86px, 12vw, 150px);
}

.contact-section .text-block {
  max-width: 100%;
}

.email-link {
  display: inline-block;
  margin-top: clamp(30px, 5vw, 54px);
  color: var(--text);
  font-size: clamp(2rem, 5.5vw, 4.5rem);
  font-weight: 900;
  line-height: 0.95;
  overflow-wrap: anywhere;
  text-transform: none;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 18px 28px;
  align-items: center;
  padding-block: 28px;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.site-footer a {
  color: var(--text);
  text-decoration: none;
}

@media (max-width: 720px) {
  :root {
    --header-height: 64px;
  }

  .nav {
    font-size: 0.7rem;
  }

  .nav-links {
    gap: 12px;
  }

  .hero {
    min-height: calc(66vh - var(--header-height));
    padding-block: 38px 22px;
  }

  .hero h1 {
    font-size: clamp(4.1rem, 22vw, 6.9rem);
  }

  .work-item {
    grid-template-columns: 56px minmax(0, 1fr);
    gap: 12px 16px;
    align-items: start;
  }

  .work-number {
    grid-column: 1;
    grid-row: 1;
  }

  .work-art {
    grid-column: 1;
    grid-row: 2 / span 2;
    width: 56px;
  }

  .work-main,
  .work-links {
    grid-column: 2;
  }

  .work-links {
    justify-content: flex-start;
  }

  .site-footer {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 430px) {
  .nav {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    gap: 8px;
    padding-block: 10px;
  }

  .nav-links {
    width: 100%;
    justify-content: space-between;
  }

  .hero h1 {
    font-size: clamp(3.45rem, 20vw, 4.8rem);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
