@font-face {
  font-family: 'Lato';
  src: url('assets/fonts/Lato-Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Lato';
  src: url('assets/fonts/Lato-Bold.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {

  --ink:        #000000;
  --ink-2:      #303030;
  --ink-3:      #494949;
  --paper:      #FFFFFF;
  --paper-2:    #EEEEEE;
  --line:       #DCDCDC;
  --accent:     #E9D400;

  --font-head:  Verdana, Geneva, 'Lato', sans-serif;
  --font-body:  'Lato', 'Trebuchet MS', 'Segoe UI', Tahoma, Helvetica, Arial, sans-serif;

  --measure:    62ch;
  --wrap:       1180px;
  --gutter:     28px;

  --step-eyebrow: 11px;
  --step-body:    17px;
  --step-lead:    20px;
  --step-h3:      19px;
  --step-h2:      27px;

  --step-h1:      clamp(30px, 4.4vw, 50px);
}

@media (max-width: 760px) {
  :root { --font-head: var(--font-body); }
}

*, *::before, *::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink-2);
  font-family: var(--font-body);
  font-size: var(--step-body);
  line-height: 1.62;
  -webkit-font-smoothing: antialiased;
}

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

.wrap {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

h1, h2, h3 {
  color: var(--ink);
  font-family: var(--font-head);
  font-weight: 700;
  line-height: 1.14;
  letter-spacing: -0.02em;
  margin: 0;
  text-wrap: balance;
}

h1 { font-size: var(--step-h1); }
h2 { font-size: var(--step-h2); }
h3 { font-size: var(--step-h3); }

p { margin: 0 0 1.15em; max-width: var(--measure); }
p:last-child { margin-bottom: 0; }

.lead { font-size: var(--step-lead); line-height: 1.55; color: var(--ink-2); }

.eyebrow {
  font-size: var(--step-eyebrow);
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin: 0 0 14px;
}

.rule-accent {
  width: 46px;
  height: 4px;
  background: var(--accent);
  border: 0;
  margin: 0 0 26px;
}

a { color: var(--ink); text-decoration: none; }
a:hover { text-decoration: underline; text-underline-offset: 3px; }
a:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }

.site-head {

  background: var(--ink);

  position: sticky;
  top: 0;
  z-index: 20;
}
.site-head .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 92px;
  flex-wrap: wrap;
}

.brand img { height: 58px; width: auto; }

.nav {
  display: flex;
  gap: 30px;
  align-items: center;
  flex-wrap: wrap;
}
.nav a {
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: #FFFFFF;
  padding: 6px 0;
  border-bottom: 2px solid transparent;
  transition: border-color 120ms ease;
}
.nav a:hover { text-decoration: none; border-bottom-color: var(--accent); }
.nav a[aria-current='page'] { border-bottom-color: #FFFFFF; }

.hero { position: relative; background: var(--ink); color: #fff; }

.hero-copy {
  position: absolute;
  inset: auto 0 0 0;
  padding: 0 0 clamp(34px, 6vw, 62px);
}
.hero-copy .wrap { max-width: var(--wrap); }
.hero h1 { color: #fff; max-width: 17ch; }
.hero .hero-sub {
  color: #fff;
  font-size: var(--step-lead);
  line-height: 1.45;
  max-width: 46ch;
  margin: 20px 0 0;
  padding-left: 16px;
  border-left: 4px solid var(--accent);
}

.section { padding: clamp(52px, 7vw, 92px) 0; }

.band-white { background: var(--paper); }
.band-light { background: var(--paper-2); }
.band-dark,
.band-black { background: var(--ink); color: #D8D8D8; }
.band-dark h1, .band-dark h2, .band-dark h3,
.band-black h1, .band-black h2, .band-black h3 { color: #FFFFFF; }

.band-dark .eyebrow, .band-black .eyebrow { color: var(--accent); }
.band-dark a, .band-black a { color: #FFFFFF; }

.band-intro {
  background: var(--ink);
  padding: clamp(44px, 5.5vw, 68px) 0;
  text-align: center;
}
.band-intro h2 { color: #FFFFFF; max-width: 26ch; margin: 0 auto; }
.band-intro .eyebrow { color: var(--accent); }
.band-intro .rule-accent { margin: 20px auto 0; }

.band-bright { background: var(--accent); color: var(--ink); }
.band-bright h2, .band-bright .quotes blockquote p { color: var(--ink); }
.band-bright .eyebrow { color: rgba(0, 0, 0, 0.62); }
.band-bright .quotes blockquote { border-left-color: var(--ink); }

.band-black .quotes blockquote p, .band-dark .quotes blockquote p { color: #D8D8D8; }
.band-black .quotes cite, .band-dark .quotes cite { color: #9A9A9A; }

.two-col {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.35fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
}

.cols-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: clamp(28px, 4vw, 52px);
  margin-top: 44px;
}
.col h3 { margin-bottom: 10px; }
.col .n {
  font-size: var(--step-eyebrow);
  font-weight: 700;
  letter-spacing: 0.16em;
  color: var(--ink-3);
  display: block;
  margin-bottom: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}
.col p { font-size: 16px; }

.projects {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 26px;
  margin-top: 44px;
}

.clients {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 44px;
  margin-top: 30px;
  padding: 0;
  list-style: none;
}
.clients li {
  font-size: 15px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: 0.01em;
}

.contact-band .rule-accent { margin-bottom: 30px; }

.contact-band h2 .cta-mark {
  text-decoration: underline;
  text-decoration-color: var(--accent);
  text-decoration-thickness: 4px;
  text-underline-offset: 8px;
  text-decoration-skip-ink: none;
}

.contact-lines {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 60px;
  margin-top: 34px;
}
.contact-lines .item .label {
  display: block;
  font-size: var(--step-eyebrow);
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-bottom: 8px;
}

.band-black .contact-lines .item .label,
.band-dark .contact-lines .item .label { color: #9A9A9A; }
.contact-lines .item a,
.contact-lines .item .val {

  color: inherit;
  font-size: clamp(21px, 2.6vw, 29px);
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.2;
}
.contact-lines .item a:hover { text-decoration: underline; text-underline-offset: 4px; }

.site-foot {
  border-top: 1px solid var(--line);
  padding: 34px 0;
  font-size: 14px;
  color: var(--ink-3);
}

.site-foot .wrap {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  align-items: center;
}
.site-foot a { color: var(--ink-3); }

@media (max-width: 760px) {
  .two-col { grid-template-columns: 1fr; }
  .site-head .wrap { min-height: 0; padding-top: 18px; padding-bottom: 18px; }
  .nav { gap: 20px; }
}

@media print {
  .site-head, .site-foot { border-color: #ccc; }
  .hero, .contact-band { background: #fff; color: #000; }
  .hero h1, .contact-band h2, .contact-lines .item a { color: #000; }
}

.skip {
  position: absolute;
  left: -9999px;
  background: var(--ink);
  color: #fff;
  padding: 12px 18px;
  z-index: 10;
}
.skip:focus { left: 12px; top: 12px; }

.hero { overflow: hidden; }
.hero .hero-img {
  width: 100%;
  aspect-ratio: 16 / 9;
  max-height: 68vh;
  object-fit: cover;

  filter: brightness(0.62);
}

.hero::after {
  content: "";
  position: absolute;

  inset: 25% 0 0 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0),
    rgba(0, 0, 0, 0.55) 35%,
    rgba(0, 0, 0, 0.88)
  );
  pointer-events: none;
}
.hero-copy { z-index: 1; }

@media (max-width: 760px) {

  .hero .hero-img { aspect-ratio: 3 / 4; max-height: 78vh; }
  .hero-copy { position: absolute; padding-bottom: 30px; background: none; }

}

.fig { margin: 0; }
.fig img { width: 100%; height: auto; }
.fig.map { max-width: 780px; margin: 40px auto 0; }
.fig.map img { background: var(--paper); }

.map-stats {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(28px, 4vw, 56px);
  align-items: center;
  margin-top: 38px;
}

.map-stats .fig.map { max-width: none; margin: 0; }

.map-stats .stats { grid-template-columns: 1fr; gap: 26px; margin-top: 0; }

.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 28px;
  margin-top: 38px;
}
.stat { border-top: 3px solid var(--accent); padding-top: 16px; }
.stat .v {
  display: block;
  font-size: clamp(34px, 5vw, 52px);
  font-weight: 700;
  color: var(--ink);
  line-height: 1;
  letter-spacing: -0.02em;
}
.stat .k {
  display: block;
  margin-top: 10px;
  font-size: var(--step-eyebrow);
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-3);
}

.markets {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(28px, 4vw, 56px);
  margin-top: 40px;
  align-items: start;
}
.market { margin: 0; }

.market img { aspect-ratio: 3 / 2; object-fit: cover; width: 100%; }
.market h3 {
  margin-top: 18px;
  font-family: var(--font-head);
  font-size: clamp(19px, 2vw, 23px);
  line-height: 1.25;
}
.market p { margin-top: 10px; }

.market .more.quiet { margin-top: 18px; }

.project { display: block; color: inherit; }
.project:hover { text-decoration: none; }
.project .shot { display: block; overflow: hidden; background: var(--paper-2); }
.project .shot img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  transition: opacity 120ms ease;
}
.project:hover .shot img { opacity: 0.88; }
.project .meta { display: block; padding-top: 16px; }
.project .meta .kicker {
  display: block;
  font-size: var(--step-eyebrow);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-3);
}
.project .meta .title {
  display: block;
  font-size: 19px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.25;
  margin-top: 7px;
  border-bottom: 2px solid transparent;
  transition: border-color 120ms ease;
}
.project:hover .meta .title { border-bottom-color: var(--accent); }
.more { margin-top: 40px; }
.more a {
  font-weight: 700;
  border-bottom: 2px solid var(--accent);
  padding-bottom: 3px;
}
.more a:hover { text-decoration: none; }

.quotes {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: clamp(26px, 4vw, 48px);
  margin-top: 42px;
}
.quotes blockquote { margin: 0; padding-left: 20px; border-left: 3px solid var(--accent); }
.quotes blockquote p { font-size: 17px; line-height: 1.6; color: var(--ink-2); max-width: none; }
.pull {
  margin: 0;
  padding-left: 24px;
  border-left: 4px solid var(--accent);
  max-width: 42ch;
}
.pull p { font-size: var(--step-lead); color: var(--ink); max-width: none; }

.cols-2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: clamp(24px, 3vw, 40px);
  margin-top: 30px;
}

.logos {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 34px 30px;
  align-items: center;
  margin: 40px 0 0;
  padding: 0;
  list-style: none;
}
.logos li { display: flex; align-items: center; justify-content: center; }
.logos img {

  height: 52px;
  width: 100%;
  object-fit: contain;

  filter: grayscale(1);
  opacity: 0.75;
}
.logos.assoc img { height: 46px; }

.bio-linkedin { margin: 12px 0 0; }
.bio-linkedin a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--ink-3);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.bio-linkedin .li-mark { flex: none; }
.bio-linkedin a:hover { color: var(--ink); text-decoration: none; }
.bio-linkedin a:hover span { text-decoration: underline; text-underline-offset: 3px; }

.page-top { padding-bottom: clamp(30px, 4vw, 46px); }
.page-top.slim { padding-bottom: clamp(22px, 3vw, 34px); }
.page-title { font-size: clamp(30px, 4.6vw, 50px); text-transform: none; letter-spacing: -0.02em; }
.page-top .eyebrow a { color: var(--ink-3); }
.plain-list { margin: 26px 0 30px; padding-left: 20px; }
.plain-list li { margin-bottom: 8px; }
.eyebrow.role { margin-top: 8px; color: var(--ink-3); }

.project-sub {
  font-size: var(--step-lead);
  color: var(--ink-3);
  margin: 16px 0 0;
}
.project-hero { margin: 0; }
.project-hero img {

  display: block;
  width: 100%;
  max-width: 1100px;
  height: auto;
  margin: 0 auto;
}
.project-body { padding-top: 4px; }
.project-body.brief { max-width: 70ch; }
.sub-head { margin-top: 34px; margin-bottom: 10px; }
.stats-panel {
  background: var(--paper-2);
  border-top: 3px solid var(--accent);
  padding: 28px 30px;
}
.stats-panel h3 { font-size: var(--step-eyebrow); letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink-3); }
.stat-list, .role-list { margin: 18px 0 0; padding: 0; list-style: none; }
.stat-list li, .role-list li {
  padding: 11px 0;
  border-bottom: 1px solid var(--line);
  font-size: 16px;
  color: var(--ink);
}
.stat-list li:last-child, .role-list li:last-child { border-bottom: 0; }
.role-list li { padding-left: 22px; position: relative; font-size: 17px; }
.role-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 20px;
  width: 10px;
  height: 3px;
  background: var(--accent);
}

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 22px;
}
.gallery figure { margin: 0; }

.gallery img { width: 100%; height: auto; }
.gallery { align-items: start; }

.photo-missing {
  background: var(--paper-2);
  color: var(--ink-3);
  font-size: 12px;
  padding: 40px 16px;
  text-align: center;
}

@media (max-width: 760px) {
  .stats { gap: 22px; }

  .logos { grid-template-columns: repeat(auto-fill, minmax(90px, 1fr)); gap: 22px 16px; }

}

.btn {
  display: inline-block;
  background: var(--accent);
  color: var(--ink);
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 17px 34px;
  border: 2px solid var(--accent);
  transition: background-color 120ms ease, color 120ms ease;
}
.btn:hover { background: transparent; color: var(--accent); text-decoration: none; }
.band-white .btn:hover, .band-light .btn:hover { color: var(--ink); border-color: var(--ink); }
.hero .btn { margin-top: 28px; }
.cta-close { text-align: center; }
.cta-close h2 { max-width: 22ch; margin: 0 auto 8px; }
.cta-close .rule-accent { margin: 20px auto 26px; }

.two-col.flip { grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr); }
.two-col.flip .fig img { width: 100%; }

.site-foot {
  background: var(--ink);
  border-top: 0;
  color: #8C8C8C;
}
.site-foot a { color: #D8D8D8; }

.band-dark p { color: #D8D8D8; }
.band-bright .rule-accent { background: var(--ink); }

@media (max-width: 760px) {

  .two-col.flip { grid-template-columns: 1fr; }

  .map-stats { grid-template-columns: 1fr; }

  .markets { grid-template-columns: 1fr; }
}

[id] { scroll-margin-top: 96px; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

.more.quiet { margin-top: 34px; }
.more.quiet a {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;

  color: inherit;
  border-bottom: 2px solid var(--accent);
  padding-bottom: 4px;
}
.band-dark .more.quiet a, .band-black .more.quiet a { color: #FFFFFF; }

.bio-head {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 26px;
}
.bio-head .portrait { margin: 0; flex: 0 0 auto; }
.bio-head .portrait img {
  width: 176px;
  height: auto;
}
.bio-head h2 { margin: 0; }
.bio-head .role { margin-top: 6px; }
.bio-body { max-width: var(--measure); }
.bio-body p { max-width: none; }

@media (max-width: 760px) {
  .bio-head { gap: 18px; }
  .bio-head .portrait img { width: 128px; }
}

.site-head .wrap {
  justify-content: space-between;
  align-items: center;
  min-height: 84px;
}

.btn-sm {
  padding: 11px 22px;
  font-size: 12px;
  letter-spacing: 0.09em;
}
.head-cta:hover { background: transparent; color: var(--accent); }

@media (max-width: 760px) {

  .site-head .wrap { min-height: 58px; padding-top: 10px; padding-bottom: 10px; }

  .brand img { height: 42px; }
  .btn-sm { padding: 9px 16px; font-size: 11px; }
  [id] { scroll-margin-top: 74px; }
}

.serve-version .eyebrow { text-align: left; }
.serve-manifesto { max-width: none; margin: 0 auto; text-align: center; }

.serve-manifesto p {
  color: var(--ink);
  font-family: var(--font-head);
  font-size: clamp(20px, 3vw, 42px);
  line-height: 1.25;
  margin: 0 0 clamp(26px, 3vw, 44px);
}
.serve-manifesto p:last-child { margin-bottom: 0; }

.band-dark .serve-manifesto p,
.band-black .serve-manifesto p,
.band-intro .serve-manifesto p { color: #FFFFFF; }

@media (max-width: 760px) {
  .serve-manifesto { text-align: left; }
  .serve-manifesto p {
    font-size: clamp(19px, 5.2vw, 26px);

    line-height: 1.45;
    margin-bottom: clamp(20px, 4vw, 32px);
  }
}

.case { padding: 0; }

.band-light + .band-light > .wrap { border-top: 1px solid #D0D0D0; padding-top: clamp(40px, 5vw, 70px); }
.case .case-hero { margin-bottom: clamp(22px, 3vw, 34px); }
.case .case-hero img { width: 100%; height: auto; }
.case h2 { margin-top: 4px; }
.case .eyebrow { margin-bottom: 6px; }
.case .lead { margin-top: 16px; }

.case-stats {
  list-style: none;
  margin: 24px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 10px 30px;
}
.case-stats li {
  padding-left: 16px;
  border-left: 3px solid var(--accent);
  font-weight: 700;
  line-height: 1.35;
}
.case-bullets { margin: 20px 0 0; padding-left: 20px; }
.case-bullets li { margin-bottom: 8px; }
.case-role { margin-top: 20px; color: var(--ink-3); max-width: var(--measure); }

.case-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: clamp(14px, 2vw, 22px);
  margin-top: clamp(24px, 3vw, 34px);
}
.case-gallery .fig img { width: 100%; height: auto; }

.more-projects {
  list-style: none;
  margin: 30px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 14px 40px;
}
.more-projects li {
  padding: 14px 0;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: baseline;
}
.more-projects .n { font-weight: 700; }
.more-projects .c { color: var(--ink-3); font-size: 14px; text-align: right; }

@media (max-width: 760px) {
  .case-stats { grid-template-columns: 1fr; }
  .more-projects li { flex-direction: column; gap: 2px; }
  .more-projects .c { text-align: left; }
}

.market-insert h2 { max-width: 26ch; }
.market-insert .lead { margin-top: 18px; max-width: var(--measure); }

.market-insert .logos { margin-top: 30px; }

.market-quote {
  margin: 24px 0 0;
  padding-left: 24px;
  border-left: 3px solid var(--accent);
  max-width: 46ch;
}
.market-quote p {
  font-size: clamp(18px, 2vw, 23px);
  line-height: 1.5;
  color: var(--ink-2);
}
