:root {
  --black: #090909;
  --white: #f7f7f4;
  --line-dark: rgba(247, 247, 244, 0.24);
  --line-light: rgba(9, 9, 9, 0.22);
  --max: 1440px;
  --pad: clamp(1.25rem, 4vw, 4.5rem);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--white);
  color: var(--black);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.45;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; }
p, h1, h2, h3 { margin-top: 0; }
.skip-link { position: fixed; top: -4rem; left: 1rem; z-index: 100; background: var(--white); padding: .75rem 1rem; }
.skip-link:focus { top: 1rem; }

.site-header {
  position: absolute;
  z-index: 10;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.35rem var(--pad);
  color: var(--white);
  border-bottom: 1px solid var(--line-dark);
}
.wordmark { text-decoration: none; font-size: .92rem; font-weight: 700; letter-spacing: -.01em; }
nav { display: flex; align-items: center; gap: clamp(1.25rem, 3vw, 3rem); }
nav a { text-decoration: none; font-size: .75rem; text-transform: uppercase; letter-spacing: .08em; }
nav a:hover { opacity: .6; }
.availability-link { border: 1px solid currentColor; border-radius: 100px; padding: .65rem 1rem; }
.menu-button { display: none; color: inherit; background: none; border: 0; font: inherit; }

.black-section { background: var(--black); color: var(--white); }
.white-section { background: var(--white); color: var(--black); }
section { padding: clamp(5rem, 10vw, 10rem) var(--pad); }
.section-label, .hero-index, .work-meta, .work-number, .service > p:first-child {
  font-size: .68rem;
  line-height: 1.4;
  text-transform: uppercase;
  letter-spacing: .12em;
}
.section-label { margin-bottom: clamp(2.5rem, 6vw, 5.5rem); }
h2 { font-size: clamp(3rem, 7.6vw, 8.25rem); font-weight: 400; line-height: .9; letter-spacing: -.065em; }
.large-copy { font-size: clamp(1.55rem, 2.8vw, 3rem); line-height: 1.12; letter-spacing: -.035em; }

.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: 100svh;
  display: grid;
  grid-template-rows: auto 1fr auto;
  padding-top: 8rem;
}
.hero > *:not(.hero-portrait):not(.hero-shade) { position: relative; z-index: 2; }
.hero-portrait {
  position: absolute;
  z-index: 0;
  inset: 0 0 0 auto;
  width: 57%;
  height: 100%;
  object-fit: cover;
  object-position: 52% center;
  filter: grayscale(1) contrast(1.12);
  opacity: .78;
}
.hero-shade {
  position: absolute;
  z-index: 1;
  inset: 0;
  background: linear-gradient(90deg, var(--black) 0%, var(--black) 31%, rgba(9,9,9,.82) 48%, rgba(9,9,9,.08) 100%);
}
.hero-index { justify-self: end; }
h1 {
  align-self: center;
  margin: 4rem 0;
  font-size: clamp(5.25rem, 14vw, 15rem);
  font-weight: 400;
  line-height: .76;
  letter-spacing: -.085em;
}
h1 span { display: block; text-align: right; color: transparent; -webkit-text-stroke: 1.5px var(--white); }
.hero-bottom { display: flex; align-items: end; justify-content: space-between; gap: 3rem; border-top: 1px solid var(--line-dark); padding-top: 1.5rem; }
.hero-statement { max-width: 650px; font-size: clamp(1.2rem, 2vw, 2rem); line-height: 1.15; margin-bottom: 0; }
.hero-services { max-width: 760px; margin: 1.25rem 0 0; font-size: .68rem; line-height: 1.7; letter-spacing: .11em; }
.circle-link { width: 7.5rem; height: 7.5rem; flex: 0 0 auto; border: 1px solid var(--white); border-radius: 50%; display: flex; align-items: center; justify-content: space-around; padding: 1rem; text-decoration: none; font-size: .75rem; text-transform: uppercase; transition: background .25s, color .25s; }
.circle-link:hover { background: var(--white); color: var(--black); }

.manifesto h2 { max-width: 1200px; }
.manifesto-grid { margin-top: clamp(4rem, 10vw, 9rem); display: grid; grid-template-columns: 1.2fr .8fr; gap: 12vw; align-items: start; }
.body-copy { max-width: 540px; font-size: 1.05rem; }
.body-copy p + p { margin-top: 1.5rem; }

.image-manifesto {
  position: relative;
  min-height: 82svh;
  margin: 0;
  overflow: hidden;
  background: var(--black);
  color: var(--white);
}
.image-manifesto img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1) contrast(1.18);
  opacity: .68;
}
.image-manifesto::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,.12), rgba(0,0,0,.66)); }
.image-manifesto figcaption {
  position: absolute;
  z-index: 2;
  inset: auto var(--pad) var(--pad);
  display: flex;
  flex-direction: column;
  font-size: clamp(4rem, 12vw, 12rem);
  font-weight: 700;
  line-height: .72;
  letter-spacing: -.075em;
}
.image-manifesto figcaption span:nth-child(2) { margin-left: 18%; color: transparent; -webkit-text-stroke: 1.5px var(--white); }
.image-manifesto figcaption span:nth-child(3) { align-self: flex-end; }

.section-heading { margin-bottom: clamp(4rem, 8vw, 8rem); }
.section-heading .section-label { margin-bottom: 1.5rem; }
.work-list { border-top: 1px solid var(--line-dark); }
.work-item { display: grid; grid-template-columns: 5% 27% 1fr 17%; gap: 2rem; align-items: start; padding: 2.3rem 0 4.5rem; border-bottom: 1px solid var(--line-dark); }
.work-item h3 { font-size: clamp(1.55rem, 2.4vw, 2.8rem); font-weight: 400; letter-spacing: -.04em; line-height: 1; margin-bottom: .65rem; }
.work-item h3 + p { opacity: .55; font-size: .85rem; }
.work-description { max-width: 580px; font-size: 1.02rem; }
.work-meta { opacity: .55; }
.speaking-feature { display: grid; grid-template-columns: 1.35fr .65fr; gap: 2rem; margin: clamp(5rem, 10vw, 10rem) 0 0; align-items: end; }
.speaking-feature img { display: block; width: 100%; max-height: 78svh; object-fit: cover; object-position: center; filter: grayscale(1) contrast(1.14); }
.speaking-feature figcaption { font-size: clamp(2rem, 4vw, 4.5rem); line-height: .9; letter-spacing: -.055em; }
.speaking-feature figcaption span { display: block; }
.speaking-feature figcaption span:last-child { color: transparent; -webkit-text-stroke: 1px var(--white); }

.split-heading { display: grid; grid-template-columns: .75fr 2fr; }
.split-heading .section-intro { max-width: 650px; margin: 3rem 0 0 auto; font-size: 1.25rem; }
.service-list { display: grid; grid-template-columns: repeat(2, 1fr); border-top: 1px solid var(--line-light); border-left: 1px solid var(--line-light); }
.service { min-height: 28rem; display: flex; flex-direction: column; padding: 2rem; border-right: 1px solid var(--line-light); border-bottom: 1px solid var(--line-light); }
.service > p:first-child { font-size: clamp(2.5rem, 5vw, 5rem); line-height: .8; letter-spacing: -.07em; }
.service h3 { margin-top: auto; max-width: 500px; font-size: clamp(2rem, 3.7vw, 4.4rem); font-weight: 400; line-height: .9; letter-spacing: -.055em; }
.service h3 + p { max-width: 520px; margin-bottom: 0; }

.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8vw; }
.about h2 { font-size: clamp(3.5rem, 7.4vw, 8rem); }
.about-copy { padding-top: 1rem; }
.about-copy > p:not(.large-copy) { max-width: 600px; margin-top: 2rem; }
.keywords { margin-top: clamp(5rem, 10vw, 10rem); padding-top: 1.25rem; border-top: 1px solid var(--line-dark); display: flex; flex-wrap: wrap; justify-content: space-between; gap: 1.5rem 2rem; font-size: .68rem; letter-spacing: .12em; }

.contact { min-height: 85svh; display: flex; flex-direction: column; justify-content: space-between; }
.contact h2 { margin-bottom: clamp(5rem, 10vw, 10rem); }
.contact-bottom { display: flex; justify-content: space-between; align-items: end; gap: 3rem; border-top: 1px solid var(--line-light); padding-top: 1.5rem; }
.contact-bottom p { max-width: 420px; margin: 0; }
.contact-link { font-size: clamp(1.7rem, 3vw, 3.25rem); text-decoration: none; letter-spacing: -.04em; border-bottom: 2px solid currentColor; }

footer { background: var(--white); display: flex; justify-content: space-between; gap: 2rem; padding: 1.5rem var(--pad); border-top: 1px solid var(--line-light); font-size: .72rem; text-transform: uppercase; letter-spacing: .09em; }
footer p { margin: 0; }

@media (max-width: 800px) {
  .site-header { align-items: flex-start; }
  .menu-button { display: block; cursor: pointer; font-size: .75rem; text-transform: uppercase; letter-spacing: .08em; }
  nav { display: none; position: absolute; top: 4rem; left: 0; right: 0; padding: 1.5rem var(--pad) 2rem; flex-direction: column; align-items: flex-start; background: var(--black); border-bottom: 1px solid var(--line-dark); }
  nav.is-open { display: flex; }
  .hero { min-height: 94svh; }
  .hero-portrait { width: 100%; opacity: .52; object-position: 48% center; }
  .hero-shade { background: linear-gradient(180deg, rgba(9,9,9,.25), rgba(9,9,9,.92) 82%); }
  .hero-index { justify-self: start; }
  h1 { font-size: clamp(4.4rem, 22vw, 8rem); line-height: .78; }
  h1 span { text-align: left; }
  .hero-bottom, .contact-bottom { align-items: flex-start; flex-direction: column; }
  .circle-link { align-self: flex-end; width: 6.5rem; height: 6.5rem; }
  .manifesto-grid, .about-grid, .split-heading { grid-template-columns: 1fr; gap: 3rem; }
  .work-item { grid-template-columns: 2rem 1fr; gap: 1rem; padding-bottom: 2.5rem; }
  .work-description, .work-meta { grid-column: 2; }
  .service-list { grid-template-columns: 1fr; }
  .service { min-height: 20rem; }
  .image-manifesto { min-height: 70svh; }
  .image-manifesto figcaption { font-size: clamp(3.7rem, 20vw, 8rem); }
  .image-manifesto figcaption span:nth-child(2) { margin-left: 0; }
  .speaking-feature { grid-template-columns: 1fr; }
  footer { flex-direction: column; gap: .5rem; }
}

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