* {
  box-sizing: border-box;
}

:root {
  --bg: #f7f5ef;
  --text: #050505;
  --muted: rgba(5, 5, 5, 0.55);
  --line: rgba(5, 5, 5, 0.62);
  --hero-copy-width: 280px;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "IBM Plex Mono", "Courier New", monospace;
  text-transform: uppercase;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img {
  display: block;
  width: 100%;
  height: auto;
}

a,
button {
  color: inherit;
  font: inherit;
}

a {
  text-decoration: none;
}

button {
  border: 0;
  background: transparent;
  padding: 0;
  cursor: pointer;
}

/* HEADER */

.site-header {
  height: 72px;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
}

.mark {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0.18em;
  line-height: 1;
}

.nav {
  display: flex;
  align-items: center;
  gap: 54px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
}

.menu-button {
  margin-left: 12px;
  font-size: 30px;
  font-weight: 600;
  line-height: 1;
}

/* HERO - full-width desktop layout */

.hero {
  display: grid;
  grid-template-columns: var(--hero-copy-width) minmax(0, 1fr) 150px;
  column-gap: 64px;
  row-gap: 0;
  align-items: center;
  padding: 16px 32px 58px;
}

.hero-copy {
  width: var(--hero-copy-width);
  min-width: var(--hero-copy-width);
}

.hero-copy h1 {
  margin: 0;
  width: 100%;
  max-width: 100%;
  font-family: "Antonio", Impact, "Arial Narrow", sans-serif;
  font-size: 112px;
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: -0.035em;
  white-space: normal;
  transform: scaleY(1.15);
  transform-origin: left top;
  margin-bottom: 76px;
}

.dash {
  width: 28px;
  height: 1px;
  background: var(--text);
  margin: 24px 0 24px;
}

.eyebrow {
  margin: 0 0 12px;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.55;
  letter-spacing: 0.08em;
}

.intro {
  max-width: var(--hero-copy-width);
  margin: 0;
  color: var(--muted);
  font-size: 10.5px;
  font-weight: 600;
  line-height: 1.75;
  letter-spacing: 0.04em;
}

.hero-art {
  margin: 0;
  min-width: 0;
}

.hero-art img {
  width: 100%;
  aspect-ratio: 48 / 36;
  height: auto;
  object-fit: cover;
}

.hero-meta {
  align-self: center;
  font-size: 11px;
  font-weight: 600;
  line-height: 1.85;
  letter-spacing: 0.06em;
}

.hero-meta p {
  margin: 0 0 30px;
}

.hero-meta .dash {
  width: 24px;
  margin: 0 0 30px;
}

.hero-meta a {
  display: inline-flex;
  gap: 10px;
  align-items: center;
}

/* SELECTED WORKS */

.selected {
  padding: 0 32px 80px;
}

.selected::before {
  content: "";
  display: block;
  height: 1px;
  background: var(--line);
  margin-bottom: 26px;
}

.selected-inner {
  display: grid;
  grid-template-columns: 230px minmax(0, 1fr);
  gap: 38px;
  align-items: start;
}

.section-title {
  width: 230px;
  min-width: 230px;
  max-width: 230px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 34px;
  overflow: hidden;
}

.section-title h2 {
  margin: 0;
  font-family: "Antonio", Impact, "Arial Narrow", sans-serif;
  font-size: 86px;
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: -0.035em;
  white-space: normal;
  transform: scaleX(0.78);
  transform-origin: left top;
  width: 128%;
}

.section-title p {
  margin: 0;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  justify-self: start;
  font-size: 10px;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0.12em;
}

.work-row {
  min-width: 0;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 22px;
  align-items: start;
}

.work-row article {
  min-width: 0;
}

.work-row article img {
  width: 100%;
  aspect-ratio: 0.78 / 1;
  object-fit: cover;
  margin-bottom: 14px;
  cursor: zoom-in;
}

.work-row article p {
  margin: 0;
  font-size: 9.5px;
  font-weight: 600;
  line-height: 1.75;
  letter-spacing: 0.04em;
}

/* Medium desktop */

@media (max-width: 1380px) {
  :root {
    --hero-copy-width: 250px;
  }

  .hero {
    grid-template-columns: var(--hero-copy-width) minmax(0, 760px) 125px;
    column-gap: 48px;
  }

  .hero-copy h1 {
    font-size: 100px;
    margin-bottom: 68px;
  }

  .hero-meta {
    font-size: 10px;
  }

  .eyebrow {
    font-size: 10.5px;
  }

  .intro {
    font-size: 10px;
  }
}

@media (max-width: 1180px) {
  :root {
    --hero-copy-width: 225px;
  }

  .hero {
    grid-template-columns: var(--hero-copy-width) minmax(0, 680px) 112px;
    column-gap: 38px;
  }

  .hero-copy h1 {
    font-size: 90px;
    margin-bottom: 62px;
  }

  .hero-meta {
    font-size: 9.5px;
  }

  .selected-inner {
    grid-template-columns: 200px minmax(0, 1fr);
    gap: 28px;
  }

  .section-title {
    width: 200px;
    min-width: 200px;
    max-width: 200px;
  }

  .section-title h2 {
    font-size: 76px;
  }

  .work-row {
    gap: 16px;
  }
}

/* Tablet: stack before it breaks */

@media (max-width: 1000px) {
  .hero {
    grid-template-columns: 1fr;
    padding: 36px 22px 48px;
    row-gap: 36px;
  }

  .hero-copy {
    width: 100%;
    min-width: 0;
  }

  .hero-copy h1 {
    font-size: clamp(78px, 21vw, 130px);
    margin-bottom: 76px;
  }

  .intro {
    max-width: 420px;
    font-size: 10.5px;
  }

  .eyebrow {
    font-size: 11px;
  }

  .hero-art img {
    width: 100%;
    aspect-ratio: 760 / 430;
    height: auto;
  }

  .hero-meta {
    display: none;
  }

  .selected {
    padding: 0 22px 60px;
  }

  .selected-inner {
    grid-template-columns: 1fr;
  }

  .section-title {
    width: 100%;
    min-width: 0;
    max-width: none;
    overflow: visible;
  }

  .section-title h2 {
    font-size: clamp(68px, 17vw, 100px);
    transform: none;
    width: auto;
  }

  .section-title p {
    writing-mode: initial;
    transform: none;
  }

  .work-row {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Mobile */

@media (max-width: 700px) {
  .site-header {
    height: 66px;
    padding: 0 22px;
  }

  .nav {
    gap: 24px;
  }

  .nav a {
    display: none;
  }

  .hero-copy h1 {
    font-size: clamp(72px, 22vw, 120px);
  }

  .work-row {
    grid-template-columns: repeat(2, 1fr);
  }
}


.image-lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 48px;
  background: rgba(247, 245, 239, 0.96);
  cursor: zoom-out;
}

.image-lightbox.active {
  display: flex;
}

.image-lightbox img {
  width: auto;
  height: auto;
  max-width: 92vw;
  max-height: 90vh;
  object-fit: contain;
}


/* ABOUT STRIP */

.about-strip {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid rgba(5, 5, 5, 0.14);
  display: grid;
  grid-template-columns: 160px 320px minmax(0, 1fr) 150px;
  align-items: stretch;
  margin: 0 32px;
  min-height: 420px;
}

.about-strip-image-left,
.about-strip-image-center {
  margin: 0;
  min-height: 420px;
}

.about-strip-image-left img,
.about-strip-image-center img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-strip-copy {
  padding: 58px 38px 46px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.about-strip-copy .dash {
  margin: 0 0 28px;
}

.about-strip-copy h3 {
  margin: 0 0 28px;
  font-size: 20px;
  line-height: 1.35;
  letter-spacing: 0.03em;
  font-weight: 500;
}

.about-strip-copy p {
  margin: 0 0 34px;
  color: var(--muted);
  font-size: 10px;
  line-height: 2;
  letter-spacing: 0.04em;
  max-width: 240px;
}

.about-strip-copy a {
  display: inline-flex;
  align-items: center;
  gap: 42px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
}

.about-strip-copy a span {
  font-size: 24px;
  line-height: 1;
}

.about-strip-vertical {
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.about-strip-vertical span {
  font-family: "Antonio", Impact, "Arial Narrow", sans-serif;
  font-size: 170px;
  font-weight: 700;
  line-height: 0.8;
  letter-spacing: -0.04em;
  transform: rotate(90deg) scaleY(1.08);
  transform-origin: center;
}

/* ABOUT STRIP TABLET */

@media (max-width: 1000px) {
  .about-strip {
    grid-template-columns: 1fr;
    margin: 0 22px;
    min-height: 0;
  }

  .about-strip-image-left,
  .about-strip-vertical {
    display: none;
  }

  .about-strip-copy {
    padding: 42px 0;
  }

  .about-strip-image-center {
    min-height: 320px;
  }
}
