:root {
  --paper: #f3f0e9;
  --ink: #101713;
  --lime: #dfff68;
  --mint: #6ad9c4;
  --line: #bcc5bb;
  --muted: #4f5951;
  --serif: 'Spectral', Georgia, serif;
  --body: 'Source Serif 4', Georgia, serif;
  --mono: ui-monospace, SFMono-Regular, Consolas, monospace;
}

* {
  box-sizing: border-box;
}

.show--mobile {
  display: none;
}

.show--desktop {
  display: initial;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font: 16px/1.55 var(--body);
}

a {
  color: inherit;
  text-underline-offset: 5px;
  text-decoration-thickness: 1px;
}

a:hover {
  text-decoration-thickness: 2px;
}

a:focus-visible {
  outline: 3px solid var(--ink);
  outline-offset: 5px;
  box-shadow: 0 0 0 5px var(--paper);
}

main:focus {
  outline: none;
}

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

h2 {
  margin-bottom: 0;
  font: 400 clamp(2.25rem, 4.4vw, 3.75rem)/1.06 var(--serif);
  letter-spacing: -.045em;
}

h2 .uppercase {
  letter-spacing: -.065em;
}

h3 {
  font: 500 1.85rem/1.12 var(--serif);
  letter-spacing: -.04em;
}

h3 .uppercase {
  letter-spacing: -.06em;
}

abbr[title] {
  text-decoration: underline;
  text-decoration-style: dotted;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  text-decoration-color: var(--muted);
  cursor: help;
}

abbr[title]:hover {
  text-decoration-color: var(--ink);
}

.wrap {
  width: min(1180px, calc(100% - 64px));
  margin-inline: auto;
}

.eyebrow {
  font: 700 .85rem / 1.6 var(--mono);
  letter-spacing: .05em;
  text-transform: uppercase;
}

.skip-link {
  position: absolute;
  top: 12px;
  left: 16px;
  z-index: 2;
  padding: 12px 18px;
  background: var(--lime);
  transform: translateY(-180%);
}

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

/* Header keeps navigation visible at every width. */
.top {
  min-height: 82px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  border-bottom: 1px solid var(--line);
}

.brand {
  font: 400 1.6rem/1.2 var(--serif);
  text-decoration: none;
  white-space: nowrap;
  letter-spacing: -.035em;
}

.start {
  justify-self: start;
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  padding-block: 12px;
}

nav {
  justify-self: end;
  display: flex;
  gap: 22px;
}

nav a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  font-size: .8rem;
  font-weight: 700;
  text-decoration: none;
}

nav a:hover {
  text-decoration: underline;
}

.hero {
  padding-block: 86px 82px;
  text-align: center;
}

.hero .eyebrow {
  margin-bottom: 25px;
}

h1 {
  max-width: 960px;
  margin: 0 auto;
  font: 400 clamp(3rem, 7.5vw, 6.5rem)/1.02 var(--serif);
  letter-spacing: -.055em;
}

mark {
  display: inline-block;
  color: inherit;
  background: linear-gradient(transparent 60%, var(--lime) 60%);
  padding-inline: .035em;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}

.hero-intro {
  max-width: 690px;
  margin: 28px auto 0;
  font-size: 1.125rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 10px 18px;
  background: var(--ink);
  color: var(--paper);
  font-size: .95rem;
  font-weight: 600;
  text-decoration: none;
  border: 2.5px dotted var(--ink);
  box-shadow: 4px 4px 0 var(--line);
}

.button:hover,
.button:focus {
  background: var(--lime);
  color: var(--ink);
}

.hero .button {
  margin-top: 28px;
}

.section {
  padding-block: 76px;
}

.services,
.work {
  border-top: 1px solid var(--line);
}

.section-lede {
  margin-bottom: 48px;
}

.section-lede h2 {
  max-width: 760px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
}

.service {
  border-right: 1px solid var(--line);
  padding-right: 28px;
}

.service:last-child {
  border-right: 0;
  padding-right: 0;
}

.service h3 {
  margin: 8px 0 14px;
}

.service p {
  max-width: 34ch;
  margin-bottom: 0;
  font-size: .9375rem;
}

.doodle {
  display: block;
  width: 54px;
  height: 54px;
  margin-bottom: 16px;
}

.doodle path {
  fill: none;
  stroke: var(--ink);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.doodle .mint-fill {
  fill: var(--mint);
}

.doodle .lime-fill {
  fill: var(--lime);
}

.case-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.case {
  background: #fcfbf7;
  border: 1px solid var(--line);
}

.shot,
.portrait {
  display: block;
  width: 100%;
  height: auto;
}

.shot {
  width: calc(100% - 48px);
  margin: 24px auto 0;
  aspect-ratio: 16 / 9.2;
  object-fit: contain;
  background: #fff;
  border: 2px dotted var(--line);
}

.case-copy {
  padding: 24px;
}

.case-copy h3 {
  margin-bottom: 14px;
}

.case-copy p {
  font-size: .9375rem;
}

.case-copy p:last-child {
  margin-bottom: 0;
}

.numbers {
  background: var(--ink);
  color: var(--paper);
  padding-block: 32px 38px;
}

.stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 0;
}

.stats>div {
  display: flex;
  flex-direction: column;
  padding-inline: 24px;
  border-right: 1px solid #445049;
}

.stats>div:first-child {
  padding-left: 0;
}

.stats>div:last-child {
  border-right: 0;
}

.stats dd {
  order: -1;
  margin: 0 0 14px;
  color: var(--lime);
  font: 400 clamp(2.5rem, 4.5vw, 4rem)/1 var(--body);
  letter-spacing: -.035em;
}

.stats dt {
  font-size: .7rem;
  letter-spacing: .05em;
  max-width: 25ch;
}

.partners {
  padding-block: 58px 64px;
  background: var(--lime);
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  list-style: none;
  padding: 0;
  margin: 0;
  border-top: 1px solid var(--ink);
  border-left: 1px solid var(--ink);
}

.partners-grid li {
  min-height: 126px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 12px;
  padding: 22px;
  border-right: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  text-align: center;
  font-weight: 600;
  text-transform: uppercase;
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 2fr);
  gap: 50px;
  align-items: start;
}

.portrait {
  object-fit: cover;
  background: var(--mint);
  border: 2px dotted var(--ink);
}

.about h2 {
  margin-bottom: 28px;
}

.contact {
  padding-block: 40px;
  border-top: 1px solid var(--ink);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
}

.contact h2 {
  max-width: 700px;
  font-size: clamp(2rem, 3.5vw, 3rem);
}

.contact .button {
  flex-shrink: 0;
}

.footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding-block: 16px 30px;
  color: var(--muted);
  font: 400 .7rem/1.6 var(--mono);
}

@media (max-width: 1000px) {
  .top {
    grid-template-columns: 1fr auto;
    gap: 8px 24px;
    padding-block: 14px;
  }

  .brand {
    grid-column: 1;
    grid-row: 1;
  }

  .start {
    grid-column: 2;
    grid-row: 1;
    justify-self: end;
  }

  nav {
    grid-column: 1 / -1;
    justify-self: start;
  }

  .service-grid {
    gap: 22px;
  }

  .service {
    padding-right: 20px;
  }

  .stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 30px 0;
  }

  .stats>div:nth-child(even) {
    border-right: 0;
  }

  .stats>div:nth-child(odd) {
    padding-left: 0;
  }

  .about-grid {
    gap: 32px;
  }

  .contact {
    align-items: start;
    flex-direction: column;
    gap: 24px;
  }
}

@media (max-width: 650px) {
  .wrap {
    width: calc(100% - 40px);
  }

  .top {
    gap: 2px 12px;
  }

  .brand {
    font-size: 1.25rem;
  }

  .start {
    font-size: .625rem;
  }

  nav {
    display: none;
  }

  .hero {
    padding-block: 56px;
  }

  .hero .eyebrow {
    max-width: 30ch;
    margin-inline: auto;
  }

  h1 {
    font-size: clamp(2.65rem, 10vw, 4rem);
  }

  .hero-intro {
    font-size: 1rem;
  }

  .section {
    padding-block: 52px;
  }

  .section-lede {
    margin-bottom: 32px;
  }

  .service-grid {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .service {
    border-right: 0;
    border-bottom: 1px solid var(--line);
    padding: 0 0 26px;
  }

  .service:last-child {
    border-bottom: 0;
    padding-bottom: 0;
  }

  .service p {
    max-width: none;
  }

  .doodle {
    margin-bottom: 10px;
  }

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

  .case-copy {
    padding: 22px;
  }

  .stats>div {
    padding-inline: 16px;
  }

  .stats>div:nth-child(even) {
    padding-right: 0;
  }

  .stats dd {
    font-size: 2.5rem;
  }

  .stats dt {
    font-size: .75rem;
  }

  .partners {
    padding-block: 42px;
  }

  .partners-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .partners-grid li {
    padding: 18px 12px;
    font-size: .8125rem;
  }

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

  .portrait {
    width: min(250px, 100%);
  }

  .footer {
    flex-wrap: wrap;
    gap: 0 20px;
  }

  .show--mobile {
    display: initial;
  }

  .show--desktop {
    display: none;
  }
}

/* No motion is needed; keep navigation immediate if motion rules are added later. */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

.work-heading {
  margin-bottom: 34px;
}

.case-copy .project-organization {
  margin-bottom: 10px;
  font-family: var(--mono);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .04em;
}