:root {
  --ink: #0b0b0b;
  --paper: #ffffff;
  --white: #ffffff;
  --muted: #666666;
  --line: #d8d8d8;
  --max: 1520px;
  --gutter: clamp(1.25rem, 4vw, 4rem);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}
img { display: block; width: 100%; }
a { color: inherit; text-decoration-thickness: 1px; text-underline-offset: 0.2em; }
.skip-link { position: fixed; left: 1rem; top: -5rem; z-index: 100; background: var(--ink); color: var(--white); padding: 0.75rem 1rem; font-weight: 700; }
.skip-link:focus { top: 1rem; }

.site-header {
  min-height: 4.5rem;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  padding: 0 var(--gutter);
  background: var(--paper);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 20;
}
.wordmark { font-size: 0.78rem; font-weight: 700; letter-spacing: 0.18em; text-decoration: none; }
.site-nav { display: flex; align-items: center; gap: clamp(1.25rem, 2.5vw, 2.75rem); }
.site-nav a { font-size: 0.82rem; font-weight: 600; text-decoration: none; text-transform: uppercase; letter-spacing: 0.08em; }
.site-nav a:hover, .site-nav a:focus-visible { text-decoration: underline; }
.menu-toggle { display: none; border: 0; background: transparent; color: inherit; font: inherit; font-weight: 700; }

.welcome {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(4rem, 8vw, 8rem) var(--gutter) clamp(3rem, 7vw, 6.5rem);
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-areas: "label label" "title copy";
  gap: 2rem 4rem;
  border-left: 1px solid var(--line);
  border-right: 1px solid var(--line);
}
.welcome-label { grid-area: label; padding-bottom: 1rem; border-bottom: 1px solid var(--ink); font-size: 0.76rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; }
.welcome h1 { grid-area: title; align-self: end; margin: 0; font-size: clamp(6rem, 16vw, 15rem); font-weight: 700; letter-spacing: -0.085em; line-height: 0.74; }
.welcome-copy { grid-area: copy; align-self: end; max-width: 37rem; padding-bottom: 0.5rem; }
.welcome-copy p { margin: 0 0 2rem; font-size: clamp(1.35rem, 2.25vw, 2.15rem); line-height: 1.18; letter-spacing: -0.035em; }
.welcome-copy a { display: inline-flex; gap: 1rem; font-size: 1rem; font-weight: 700; }

.current {
  max-width: var(--max);
  margin: 0 auto;
  border-left: 1px solid var(--line);
  border-right: 1px solid var(--line);
}
.current-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  padding: clamp(4rem, 7vw, 7rem) var(--gutter) 2.5rem;
  border-top: 1px solid var(--ink);
}
.current-heading .eyebrow { order: 2; margin-bottom: 0.5rem; }
.current-heading h2 { margin: 0; font-size: clamp(3.8rem, 8vw, 7.8rem); line-height: 0.86; letter-spacing: -0.07em; }
.current-card {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  min-height: clamp(32rem, 42vw, 40rem);
  border-top: 1px solid var(--ink);
  color: inherit;
  text-decoration: none;
}
.current-card--reverse { grid-template-columns: 0.8fr 1.2fr; }
.current-card--reverse .current-media { order: 2; }
.current-media { overflow: hidden; background: #ececec; }
.current-media img { width: 100%; height: 100%; object-fit: cover; transition: opacity 180ms ease, transform 500ms ease; }
.current-card:hover .current-media img { opacity: 0.82; }
.current-card:hover .current-media img, .current-card:focus-visible .current-media img { transform: scale(1.015); }
.current-card:focus-visible { outline: 3px solid var(--ink); outline-offset: -3px; }
.current-media--contain img { object-fit: contain; background: var(--white); }
.current-copy { display: flex; flex-direction: column; justify-content: flex-end; min-width: 0; padding: clamp(2rem, 5vw, 4.5rem); background: #f2f2f2; }
.current-copy .meta { color: var(--muted); }
.current-copy h3 { max-width: 12ch; margin: 0 0 1.25rem; font-size: clamp(2.8rem, 5.5vw, 5.75rem); line-height: 0.88; letter-spacing: -0.07em; overflow-wrap: break-word; }
.current-copy > p:not(.meta) { max-width: 32rem; margin: 0 0 2rem; font-size: clamp(1rem, 1.5vw, 1.2rem); }
.current-copy span { font-size: 0.78rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; }

.eyebrow, .meta { margin: 0 0 1rem; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; }
.eyebrow::before { content: ""; display: inline-block; width: 1.5rem; height: 1px; margin: 0 0.65rem 0.2rem 0; background: currentColor; }
.section-heading h2, .about-copy h2 {
  margin: 0;
  font-weight: 700;
  letter-spacing: -0.07em;
  line-height: 0.86;
}

.section { max-width: var(--max); margin: 0 auto; padding: clamp(5rem, 8vw, 8rem) var(--gutter); }
.section-heading { display: flex; align-items: flex-end; justify-content: space-between; gap: 2rem; margin-bottom: 3rem; }
.section-heading .eyebrow { order: 2; margin-bottom: 0.6rem; }
.section-heading h2, .about-copy h2 { font-size: clamp(3.8rem, 8vw, 7.8rem); }

.project-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 4rem 1.25rem; }
.project-card { min-width: 0; }
.project-card[href] { color: inherit; text-decoration: none; }
.project-card img { aspect-ratio: 1; object-fit: cover; transition: opacity 180ms ease; }
.project-card:hover img { opacity: 0.82; }
.project-card div { padding: 1.35rem 0 0; }
.project-card .meta { margin-bottom: 0.45rem; color: var(--muted); }
.project-card h3 { margin: 0 0 0.55rem; font-size: clamp(1.8rem, 3vw, 3rem); font-weight: 700; letter-spacing: -0.055em; line-height: 0.95; }
.project-card p:last-child { margin: 0; max-width: 32rem; color: #4a4a4a; }
.press { max-width: none; background: var(--ink); color: var(--white); }
.press-intro, .press-grid { max-width: calc(var(--max) - (2 * var(--gutter))); margin-left: auto; margin-right: auto; }
.press-intro { display: grid; grid-template-columns: 1.4fr 0.6fr; gap: 3rem; align-items: end; margin-bottom: 3rem; }
.press-intro > p { max-width: 30rem; margin: 0 0 0.5rem auto; color: #b9b9b9; }
.section-heading--light { display: block; margin: 0; }
.section-heading--light .eyebrow { margin: 0 0 1.5rem; }
.section-heading--light .eyebrow::before { background: currentColor; }
.section-heading--light h2 { font-size: clamp(3.5rem, 7vw, 7rem); max-width: 9ch; }
.press-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: #404040; border: 1px solid #404040; }
.press-item { display: block; overflow: hidden; background: #181818; text-decoration: none; }
.press-item img { aspect-ratio: 4 / 5; height: 100%; object-fit: cover; filter: none; transition: transform 500ms ease; }
.press-item:hover img, .press-item:focus-visible img { transform: scale(1.025); }
.press-item > .press-caption { display: flex; justify-content: space-between; gap: 1rem; padding: 0.8rem 0.2rem 0.1rem; color: #b9b9b9; font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.08em; }
.press-item b { color: var(--white); }
.press-item--wide { grid-column: span 2; }
.press-item--wide img { aspect-ratio: 2 / 1; }

.about { display: grid; grid-template-columns: minmax(18rem, 0.8fr) minmax(24rem, 1.2fr); gap: clamp(3rem, 8vw, 8rem); align-items: center; }
.about-image img { aspect-ratio: 1; object-fit: cover; }
.about-copy h2 { max-width: 9ch; margin-bottom: 2rem; }
.about-copy > p:not(.eyebrow) { max-width: 44rem; font-size: clamp(1rem, 1.5vw, 1.22rem); color: #383838; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; border-top: 1px solid var(--ink); margin-top: 2.5rem; padding-top: 1.5rem; }
.contact-grid .meta { margin-bottom: 0.5rem; color: #555; }
.contact-grid a { font-size: clamp(1rem, 1.6vw, 1.2rem); font-weight: 700; }

.site-footer { display: grid; grid-template-columns: 1fr auto 1fr; gap: 2rem; align-items: center; padding: 2.25rem var(--gutter); background: var(--ink); color: var(--white); }
.wordmark--footer { justify-self: start; }
.social-links { display: flex; gap: 1.5rem; }
.social-links a { font-weight: 700; }
.site-footer p { justify-self: end; margin: 0; font-size: 0.82rem; }

@media (max-width: 960px) {
  .welcome { grid-template-columns: 0.8fr 1.2fr; }
  .current-card, .current-card--reverse { grid-template-columns: 1fr 1fr; min-height: 30rem; }
  .project-grid { grid-template-columns: repeat(2, 1fr); }
  .press-intro { grid-template-columns: 1fr; }
  .press-intro > p { margin-left: 0; }
  .press-grid { grid-template-columns: repeat(2, 1fr); }
  .about { grid-template-columns: 1fr 1fr; gap: 3rem; }
}

@media (max-width: 700px) {
  .site-header { min-height: 4.3rem; }
  .menu-toggle { display: flex; align-items: center; gap: 0.6rem; cursor: pointer; }
  .menu-mark { font-size: 1.6rem; font-weight: 400; line-height: 1; transition: transform 180ms ease; }
  .menu-toggle[aria-expanded="true"] .menu-mark { transform: rotate(45deg); }
  .site-nav { display: none; position: absolute; top: 100%; left: 0; right: 0; padding: 1.5rem var(--gutter) 2rem; background: var(--paper); border-bottom: 1px solid var(--ink); flex-direction: column; align-items: flex-start; gap: 1rem; }
  .site-nav.is-open { display: flex; }
  .site-nav a { font-size: 1.65rem; font-weight: 700; letter-spacing: -0.04em; text-transform: none; }
  .welcome { grid-template-columns: 1fr; grid-template-areas: "label" "title" "copy"; gap: 2rem; padding-top: 4rem; }
  .welcome h1 { font-size: clamp(6.5rem, 36vw, 12rem); }
  .welcome-copy p { font-size: 1.35rem; }
  .current-heading { display: block; padding-top: 4rem; }
  .current-heading .eyebrow { margin-bottom: 1.25rem; }
  .current-card, .current-card--reverse { grid-template-columns: 1fr; min-height: 0; }
  .current-card--reverse .current-media { order: 0; }
  .current-media { aspect-ratio: 4 / 3; }
  .current-copy { min-height: 20rem; padding: 2rem var(--gutter) 2.25rem; }
  .current-copy h3 { max-width: 100%; font-size: clamp(2.65rem, 13vw, 4.4rem); }
  .current-copy > p:not(.meta) { font-size: 1rem; }
  .current-copy span { line-height: 1.35; }
  .section-heading { display: block; }
  .section-heading .eyebrow { margin-bottom: 1.25rem; }
  .project-grid { grid-template-columns: 1fr; }
  .press-grid { grid-template-columns: 1fr; }
  .press-item--wide { grid-column: auto; }
  .press-item--wide img { aspect-ratio: 4 / 5; }
  .about { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .site-footer { grid-template-columns: 1fr; align-items: start; }
  .social-links { flex-wrap: wrap; }
  .site-footer p { justify-self: start; }
}

@media (max-width: 400px) {
  .site-header { padding-left: 1rem; padding-right: 1rem; }
  .wordmark { font-size: 0.7rem; letter-spacing: 0.14em; }
  .menu-toggle { gap: 0.4rem; font-size: 0.95rem; }
  .welcome h1 { font-size: clamp(6rem, 34vw, 8.5rem); }
  .current-heading h2, .section-heading h2, .about-copy h2 { font-size: clamp(3.25rem, 17vw, 4.4rem); }
  .current-copy { min-height: 19rem; }
}

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

/* Sketch: modern, stricter, less promotional editorial direction */
:root {
  --ink: #111318;
  --paper: #f7f7f5;
  --white: #f7f7f5;
  --muted: #69707a;
  --line: #cfd2d5;
  --accent: #1747e8;
  --max: 1440px;
  --gutter: clamp(1.1rem, 3.2vw, 3.4rem);
}

body { background: var(--paper); color: var(--ink); font-family: Arial, Helvetica, sans-serif; }
.site-header { min-height: 4rem; border-bottom: 1px solid var(--ink); background: rgba(247,247,245,.96); }
.wordmark { font-size: .7rem; letter-spacing: .13em; }
.site-nav { gap: 1.7rem; }
.site-nav a { font-size: .7rem; letter-spacing: .1em; }

.welcome {
  padding-top: clamp(3.2rem, 7vw, 7rem);
  padding-bottom: clamp(3rem, 6vw, 5.5rem);
  grid-template-columns: 1.25fr .75fr;
  border-color: var(--line);
}
.welcome-label { border-bottom-color: var(--line); color: var(--muted); font-size: .68rem; letter-spacing: .1em; }
.welcome h1 {
  font-size: clamp(4.6rem, 10.7vw, 10.5rem);
  line-height: .82;
  letter-spacing: -.095em;
}
.welcome-copy { padding-bottom: .15rem; }
.welcome-copy p { max-width: 28rem; margin-bottom: 1.6rem; font-size: clamp(1.12rem, 1.8vw, 1.65rem); line-height: 1.24; letter-spacing: -.025em; }
.welcome-copy a { color: var(--accent); font-size: .9rem; font-weight: 700; }

.current { border-color: var(--line); }
.current-heading { padding-top: clamp(3rem, 5vw, 5rem); padding-bottom: 1.4rem; border-top-color: var(--ink); }
.current-heading h2, .section-heading h2, .about-copy h2 { font-size: clamp(3rem, 6.6vw, 6.2rem); letter-spacing: -.085em; }
.current-card, .current-card--reverse { grid-template-columns: .7fr 1.3fr; min-height: clamp(22rem, 30vw, 29rem); border-top-color: var(--line); }
.current-card--reverse { grid-template-columns: 1.3fr .7fr; }
.current-card--reverse .current-media { order: 2; }
.current-media { background: #e8e9e7; }
.current-card:hover .current-media img { opacity: .9; }
.current-copy { justify-content: center; padding: clamp(1.6rem, 4vw, 3.6rem); background: transparent; }
.current-copy .meta { margin-bottom: 1.1rem; color: var(--muted); }
.current-copy h3 { max-width: none; margin-bottom: .8rem; font-size: clamp(2.25rem, 4.2vw, 4.5rem); line-height: .9; }
.current-copy > p:not(.meta) { max-width: 30rem; margin-bottom: 1.4rem; font-size: 1rem; color: #40454d; }
.current-copy span { color: var(--accent); font-size: .7rem; letter-spacing: .1em; }

.section { padding-top: clamp(4rem, 7vw, 7rem); padding-bottom: clamp(4rem, 7vw, 7rem); }
.section-heading { margin-bottom: 2rem; }
.eyebrow, .meta { font-size: .66rem; letter-spacing: .1em; }
.eyebrow::before { display: none; }
.project-grid { grid-template-columns: repeat(3, 1fr); gap: 2.7rem 1.2rem; }
.project-card img { aspect-ratio: 4 / 3; }
.project-card:hover img { opacity: .9; }
.project-card div { padding-top: 1rem; }
.project-card h3 { font-size: clamp(1.45rem, 2.4vw, 2.35rem); }
.project-card p:last-child { color: var(--muted); font-size: .92rem; line-height: 1.4; }

.press { background: #20242b; }
.press-intro > p { color: #b3bac3; font-size: .95rem; }
.section-heading--light h2 { max-width: 12ch; }
.press-grid { gap: 2px; background: #20242b; border: 0; }
.press-item img { filter: none; }
.press-item > .press-caption { padding: .7rem .15rem .1rem; background: transparent; font-size: .64rem; letter-spacing: .06em; }
.press-item b { color: #fff; font-weight: 400; }

.about { border-top: 1px solid var(--line); }
.about-image img { filter: none; }
.about-copy h2 { max-width: 10ch; }
.about-copy > p:not(.eyebrow) { font-size: 1rem; line-height: 1.55; color: #40454d; }
.contact-grid { border-top-color: var(--line); }
.contact-grid a { color: var(--accent); font-size: 1rem; }
.site-footer { background: var(--ink); }

@media (max-width: 700px) {
  .welcome { grid-template-columns: 1fr; }
  .welcome h1 { font-size: clamp(4.5rem, 21vw, 7rem); }
  .current-card, .current-card--reverse { grid-template-columns: 1fr; min-height: 0; }
  .current-card--reverse .current-media { order: 0; }
  .current-media { aspect-ratio: 4 / 3; }
  .current-copy { min-height: 17rem; padding: 1.8rem var(--gutter) 2rem; }
  .project-grid { grid-template-columns: repeat(2, 1fr); gap: 2rem .9rem; }
  .project-card h3 { font-size: 1.45rem; }
  .project-card p:last-child { font-size: .86rem; }
}

@media (max-width: 430px) {
  .project-grid { grid-template-columns: 1fr; }
}

/* The second pass is intentionally unmistakable: an index-like, compact layout. */
.site-header { position: relative; }
.welcome { grid-template-areas: "label label" "title copy"; padding-top: 2.4rem; padding-bottom: 3.2rem; }
.welcome h1 { font-size: clamp(3.8rem, 8vw, 7.8rem); line-height: .86; }
.welcome-copy p { font-size: clamp(1rem, 1.35vw, 1.3rem); max-width: 24rem; }
.current-heading { padding-top: 2rem; padding-bottom: 1.2rem; }
.current-heading h2 { font-size: clamp(2rem, 3.4vw, 3.6rem); letter-spacing: -.07em; }
.current-card, .current-card--reverse { grid-template-columns: 14rem 1fr; min-height: 14rem; }
.current-card--reverse { grid-template-columns: 1fr 14rem; }
.current-card--reverse .current-media { order: 2; }
.current-media img, .current-media--contain img { filter: none; object-fit: cover; }
.current-copy { justify-content: center; padding: 1.5rem 2rem; }
.current-copy h3 { font-size: clamp(1.8rem, 3.2vw, 3.3rem); }
.current-copy > p:not(.meta) { max-width: 42rem; margin-bottom: 1rem; font-size: .92rem; }
.current-copy span { border-bottom: 1px solid var(--accent); padding-bottom: .15rem; display: inline-block; width: max-content; }
.section-heading h2, .about-copy h2 { font-size: clamp(2rem, 3.4vw, 3.6rem); }
.project-grid { grid-template-columns: 1fr; gap: 0; border-top: 1px solid var(--line); }
.project-card { display: grid; grid-template-columns: 12rem 1fr; gap: 1.5rem; align-items: center; padding: 1rem 0; border-bottom: 1px solid var(--line); }
.project-card img { aspect-ratio: 16 / 9; }
.project-card div { padding: 0; }
.project-card h3 { font-size: clamp(1.4rem, 2.3vw, 2.2rem); margin-bottom: .25rem; }
.project-card p:last-child { max-width: 45rem; }
.press { padding-top: 3.4rem; padding-bottom: 3.4rem; }
.press-intro { grid-template-columns: 1fr 1fr; margin-bottom: 1.6rem; }
.press-intro .section-heading h2 { font-size: clamp(2rem, 3.4vw, 3.6rem); }
.press-grid { grid-template-columns: repeat(6, 1fr); }
.press-item, .press-item--wide { grid-column: span 1; }
.press-item--wide img, .press-item img { aspect-ratio: 1 / 1; }
.about { grid-template-columns: 14rem 1fr; gap: 2rem; align-items: start; }
.about-image img { aspect-ratio: 1 / 1; }
.about-copy h2 { max-width: none; margin-bottom: 1.2rem; }

@media (max-width: 700px) {
  .welcome { grid-template-areas: "label" "title" "copy"; padding-top: 2rem; padding-bottom: 2.6rem; }
  .welcome h1 { font-size: clamp(3.7rem, 18vw, 6rem); }
  .current-card, .current-card--reverse { grid-template-columns: 7rem 1fr; min-height: 9.5rem; }
  .current-card--reverse { grid-template-columns: 1fr 7rem; }
  .current-media { aspect-ratio: 1 / 1; }
  .current-copy { min-height: 0; padding: 1rem; }
  .current-copy .meta { margin-bottom: .45rem; font-size: .58rem; }
  .current-copy h3 { font-size: 1.65rem; margin-bottom: .35rem; }
  .current-copy > p:not(.meta) { display: none; }
  .current-copy span { font-size: .6rem; }
  .project-card { grid-template-columns: 7rem 1fr; gap: 1rem; }
  .project-card h3 { font-size: 1.3rem; }
  .project-card p:last-child { font-size: .8rem; }
  .press-intro { grid-template-columns: 1fr; gap: 1rem; }
  .press-grid { grid-template-columns: repeat(3, 1fr); }
  .press-item > .press-caption { display: block; line-height: 1.45; }
  .press-item > .press-caption b { display: block; margin-top: .35rem; }
  .about { grid-template-columns: 7rem 1fr; gap: 1rem; }
  .about-copy h2 { font-size: 2rem; }
  .about-copy > p:not(.eyebrow) { font-size: .9rem; }
}
