:root {
  --color-bg: #f5f1eb;
  --color-text: #171715;
  --color-accent: #98583f;
  --color-muted: #655f58;
  --color-secondary: #eae3da;
  --color-white: #faf9f6;
  --color-line: #cec7bd;
  --font-display: "Instrument Serif", Georgia, serif;
  --font-body: "DM Sans", Arial, sans-serif;
  --container: 1328px;
  --section-spacing: 110px;
  --gutter: clamp(24px, 4.5vw, 72px);
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 105px;
}
body {
  margin: 0;
  background: var(--color-bg);
  color: var(--color-text);
  font: 16px/1.65 var(--font-body);
  -webkit-font-smoothing: antialiased;
}
body:has(dialog[open]) {
  overflow: hidden;
}
::selection {
  background: var(--color-accent);
  color: white;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  color: inherit;
  font: inherit;
  cursor: pointer;
  background: none;
  border: 0;
}
a,
button {
  -webkit-tap-highlight-color: transparent;
}
a:focus-visible,
button:focus-visible,
summary:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 5px;
}
figure,
h1,
h2,
h3,
p {
  margin: 0;
}
img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
h1,
h2,
h3 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.035em;
}
h2 {
  font-size: clamp(46px, 5vw, 72px);
}
h3 {
  font-size: 35px;
}
em {
  font-family: var(--font-display);
  font-weight: 400;
  color: var(--color-accent);
}
.wrap {
  width: min(calc(100% - var(--gutter) * 2), var(--container));
  margin-inline: auto;
}
.section {
  padding-block: var(--section-spacing);
}
.eyebrow {
  font-size: 12px;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  line-height: 1.7;
}
.section-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 45px;
}
.section-aside {
  font-size: 13px;
  color: var(--color-muted);
}
.section-heading {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 10%;
  align-items: end;
  margin-bottom: 55px;
}
.section-heading > p {
  font-size: 16px;
  color: var(--color-muted);
  max-width: 390px;
}
.image-wrap {
  position: relative;
  overflow: hidden;
  background: var(--color-secondary);
}
.image-wrap img {
  transition: transform 0.8s ease;
  filter: saturate(0.78);
}
.image-wrap:hover img {
  transform: scale(1.03);
}
.text-link {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 10px 0;
  border-bottom: 1px solid currentColor;
  font-size: 14px;
  line-height: 1.6;
  transition: color 0.2s;
}
.text-link:hover {
  color: var(--color-accent);
}
.text-link > span {
  font-size: 20px;
}
.text-link.compact {
  font-size: 13px;
}
.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 25px;
  min-height: 53px;
  padding: 15px 22px;
  font-size: 14px;
  line-height: 1.5;
  border: 1px solid transparent;
  transition:
    background 0.2s,
    color 0.2s,
    transform 0.2s;
}
.button > span {
  font-size: 20px;
}
.button:hover {
  transform: translateY(-2px);
}
.button-accent {
  background: var(--color-accent);
  color: #fff;
}
.button-accent:hover {
  background: #7e4632;
}
.button-dark {
  background: var(--color-text);
  color: var(--color-bg);
}
.button-dark:hover {
  background: #3b3934;
}
.button-outline {
  border-color: #817b70;
  color: var(--color-bg);
}
.button-outline:hover {
  background: var(--color-bg);
  color: var(--color-text);
}
.skip-link {
  position: fixed;
  top: -100px;
  left: 15px;
  padding: 12px 20px;
  background: var(--color-white);
  z-index: 100;
}
.skip-link:focus {
  top: 10px;
}
.site-header {
  height: 92px;
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 25px;
  padding: 0 var(--gutter);
  transition:
    background 0.3s,
    box-shadow 0.3s;
}
.site-header.is-scrolled {
  background: rgb(245 241 235 / 0.95);
  backdrop-filter: blur(18px);
  box-shadow: 0 1px 0 #17171518;
}
.wordmark {
  font: 30px/1 var(--font-display);
  white-space: nowrap;
}
.wordmark > span {
  font: 13px var(--font-body);
  vertical-align: top;
  margin-left: 5px;
  color: var(--color-accent);
}
.desktop-nav {
  display: flex;
  gap: 28px;
  font-size: 13px;
}
.desktop-nav a {
  position: relative;
  white-space: nowrap;
}
.desktop-nav a:after {
  content: "";
  position: absolute;
  inset: auto 0 -5px;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s;
}
.desktop-nav a:hover:after {
  transform: scaleX(1);
}
.header-contact {
  font-size: 13px;
  border-bottom: 1px solid;
  padding: 9px 0;
  white-space: nowrap;
}
.header-contact span {
  margin-left: 20px;
}
.menu-toggle {
  display: none;
}
.hero {
  display: grid;
  grid-template-columns: 1.12fr 1fr;
  gap: 6%;
  padding-top: 45px;
  padding-bottom: 45px;
  align-items: center;
}
.hero-copy > .eyebrow {
  font-size: 11px;
  margin-bottom: 27px;
}
.asterisk {
  font-size: 23px;
  color: var(--color-accent);
  vertical-align: middle;
  margin-right: 10px;
}
.hero h1 {
  font-size: clamp(64px, 6.8vw, 100px);
  line-height: 0.98;
  letter-spacing: -0.035em;
}
.hero-lead {
  font-size: 20px;
  line-height: 1.5;
  max-width: 465px;
  margin-top: 28px;
}
.hero-description {
  font-size: 15px;
  color: var(--color-muted);
  max-width: 470px;
  margin-top: 16px;
  line-height: 1.75;
}
.hero-description a {
  text-decoration: underline;
  text-underline-offset: 3px;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 23px;
  margin-top: 28px;
}
.hero-actions .button {
  font-size: 13px;
  padding-inline: 18px;
  gap: 20px;
}
.hero-actions .text-link {
  font-size: 13px;
  gap: 15px;
}
.hero-location {
  font-size: 12px;
  margin-top: 30px;
  color: var(--color-muted);
}
.hero-location span {
  display: block;
  font-size: 11px;
  margin-top: 3px;
}
.hero-figure {
  padding-left: 10px;
}
.hero-photo {
  height: 625px;
}
.hero-photo img {
  object-position: center 43%;
}
.photo-top {
  position: absolute;
  top: 20px;
  left: 22px;
  color: white;
  font-size: 10px;
  letter-spacing: 0.08em;
  text-shadow: 0 1px 6px #000;
}
.photo-link {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, #171715bd);
  display: flex;
  justify-content: space-between;
  align-items: end;
  padding: 65px 25px 23px;
  color: white;
  gap: 20px;
  font-size: 12px;
}
.photo-link > span:last-child {
  border-bottom: 1px solid #ffffff90;
  padding-bottom: 4px;
  white-space: nowrap;
}
.hero-figure figcaption {
  padding-top: 12px;
  font: italic 23px var(--font-display);
  color: var(--color-muted);
}
.professional-strip {
  border-block: 1px solid var(--color-line);
  padding: 23px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 25px;
  font-size: 13px;
  color: var(--color-muted);
}
.professional-strip strong {
  font-weight: 500;
  color: var(--color-text);
}
.professional-strip > a {
  white-space: nowrap;
  color: var(--color-text);
}
.professional-strip > a span {
  margin-left: 18px;
}
.service-row {
  display: grid;
  grid-template-columns: 65px 1.1fr 1fr;
  gap: 35px;
  padding: 37px 0;
  border-top: 1px solid var(--color-line);
}
.number {
  font: 30px var(--font-display);
  color: var(--color-accent);
}
.service-row h3 {
  font-size: 39px;
}
.service-row h3 br {
  display: none;
}
.service-row h3 br:after {
  content: " ";
}
.service-row p {
  font-size: 15px;
  color: var(--color-muted);
  max-width: 440px;
  margin-top: 14px;
}
.service-detail {
  border-left: 1px solid var(--color-line);
  padding-left: 35px;
}
.service-detail > .eyebrow {
  font-size: 11px;
  color: var(--color-muted);
}
.service-detail > p {
  font-size: 14px;
  margin-top: 9px;
  max-width: 325px;
}
.service-detail > .text-link {
  font-size: 13px;
  margin-top: 14px;
}
.service-footnote {
  border-top: 1px solid var(--color-line);
  padding-top: 22px;
  font-size: 12px;
  color: var(--color-muted);
}
.work {
  background: var(--color-text);
  color: var(--color-bg);
}
.work .section-top {
  border-bottom: 1px solid #ffffff26;
  padding-bottom: 24px;
}
.work .text-link:hover {
  color: #d5aa91;
}
.work em {
  color: #d5aa91;
}
.work .section-heading {
  grid-template-columns: 1.4fr 1fr;
}
.work .section-heading > p {
  color: #bdb7ae;
  font-size: 15px;
}
.work .section-heading h2 {
  font-size: clamp(48px, 5.4vw, 78px);
}
.work-grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr 1fr;
  gap: 28px;
  align-items: start;
}
.work-item > .image-wrap {
  display: block;
  height: 385px;
}
.work-feature > .image-wrap {
  height: 480px;
}
.work-item:nth-child(3) {
  margin-top: 75px;
}
.image-label {
  position: absolute;
  left: 18px;
  top: 20px;
  font-size: 10px;
  letter-spacing: 0.1em;
  color: #fff;
  text-shadow: 0 1px 5px #171715;
}
.image-cta {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 45px 19px 20px;
  background: linear-gradient(transparent, #171715b0);
  color: #fff;
  font-size: 12px;
}
.work-item img {
  object-position: center 48%;
}
.work-caption {
  padding-top: 21px;
}
.work-caption h3 {
  font-size: 29px;
  line-height: 1.13;
  letter-spacing: -0.02em;
}
.work-caption p {
  color: #bdb7ae;
  font-size: 12px;
  margin-top: 9px;
}
.work-bottom {
  border-top: 1px solid #ffffff26;
  margin-top: 50px;
  padding-top: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}
.work-bottom p {
  font-size: 13px;
  color: #bdb7ae;
}
.work-bottom p strong {
  font-weight: 400;
  color: var(--color-bg);
}
.work-bottom .button {
  font-size: 13px;
}
.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 12%;
  align-items: center;
}
.about-figure {
  padding-left: 10%;
}
.about-figure .image-wrap {
  height: 550px;
}
.about-figure img {
  object-position: center 50%;
}
.about-figure figcaption {
  font-size: 12px;
  padding-top: 14px;
  color: var(--color-muted);
}
.about-copy h2 {
  font-size: clamp(47px, 4.6vw, 65px);
  margin-bottom: 30px;
}
.about-copy > p {
  font-size: 16px;
  color: var(--color-muted);
  margin-top: 18px;
  max-width: 505px;
}
.about-copy > .lead {
  font: 28px/1.25 var(--font-display);
  color: var(--color-text);
}
.about-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 25px;
  margin-top: 20px;
}
.about-links .text-link {
  font-size: 13px;
}
.career {
  background: var(--color-secondary);
}
.career-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 9%;
}
.career-intro h2 {
  font-size: clamp(44px, 4.2vw, 59px);
}
.career-intro > p {
  font-size: 16px;
  color: var(--color-muted);
  margin-top: 27px;
  max-width: 360px;
}
.tools {
  margin-top: 33px;
  padding-top: 24px;
  border-top: 1px solid var(--color-line);
}
.tools .eyebrow {
  font-size: 10px;
}
.tools p {
  font-size: 13px;
  margin-top: 10px;
  line-height: 1.9;
}
.career-intro .button {
  margin-top: 28px;
  font-size: 13px;
  gap: 20px;
}
.timeline {
  padding: 0;
  margin: 0;
  list-style: none;
}
.timeline li {
  display: grid;
  grid-template-columns: 85px 1fr;
  gap: 23px;
  border-top: 1px solid #c5bdb2;
  padding: 26px 0;
}
.year {
  font-size: 11px;
  color: var(--color-accent);
  padding-top: 7px;
  white-space: nowrap;
}
.timeline h3 {
  font-size: 30px;
}
.timeline h3 > span {
  display: block;
  font: 13px var(--font-body);
  margin-top: 8px;
  color: var(--color-muted);
}
.timeline p {
  font-size: 13px;
  color: var(--color-muted);
  margin-top: 12px;
}
.timeline p.role {
  font-size: 12px;
  font-weight: 500;
  color: var(--color-text);
  line-height: 1.7;
}
.dates {
  display: block;
  font-size: 10px;
  color: var(--color-muted);
  margin-top: 12px;
}
.contact-star {
  font-size: 35px;
  line-height: 1;
  color: var(--color-accent);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 12%;
  align-items: start;
}
.contact h2 {
  font-size: clamp(49px, 5.3vw, 75px);
}
.contact-intro {
  font-size: 16px;
  color: var(--color-muted);
  max-width: 430px;
  margin-top: 25px;
}
.contact-channels {
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 15px;
  margin-top: 28px;
}
.contact-channels .button {
  font-size: 14px;
  gap: 30px;
}
.contact-handle {
  font-size: 12px;
  color: var(--color-muted);
  margin-top: 24px;
}
.brief {
  background: var(--color-secondary);
  padding: 35px;
}
.brief > .eyebrow {
  font-size: 10px;
}
.brief h3 {
  font-size: 36px;
  margin-top: 18px;
}
.brief ol {
  list-style: none;
  padding: 0;
  margin: 27px 0 20px;
}
.brief li {
  display: flex;
  gap: 18px;
  border-top: 1px solid var(--color-line);
  padding: 15px 0;
  font-size: 13px;
  color: var(--color-muted);
}
.brief li > span {
  font: 20px var(--font-display);
  color: var(--color-accent);
}
.brief .text-link {
  font-size: 12px;
  text-align: left;
}
.interest {
  font-size: 12px;
  margin: 15px 0;
  padding: 12px 0;
  border-block: 1px solid var(--color-line);
  color: var(--color-accent);
}
.copy-status {
  font-size: 12px;
  color: var(--color-accent);
  margin-top: 12px;
  line-height: 1.7;
}
.copy-status:empty {
  display: none;
}
.copy-fallback {
  width: 100%;
  height: 220px;
  margin-top: 15px;
  font: 13px/1.7 var(--font-body);
  padding: 13px;
  border: 1px solid var(--color-line);
  background: var(--color-bg);
  resize: vertical;
}
.faq {
  margin-top: 65px;
  max-width: 850px;
}
.faq details {
  border-top: 1px solid var(--color-line);
}
.faq details:last-child {
  border-bottom: 1px solid var(--color-line);
}
.faq summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  gap: 25px;
  padding: 20px 0;
  font-size: 14px;
}
.faq summary::-webkit-details-marker {
  display: none;
}
.faq summary > span {
  font-size: 22px;
  line-height: 1;
  transition: transform 0.2s;
}
.faq details[open] summary > span {
  transform: rotate(45deg);
}
.faq details > p {
  font-size: 14px;
  color: var(--color-muted);
  padding: 0 35px 24px 0;
  max-width: 700px;
}
.faq p > a {
  text-decoration: underline;
  text-underline-offset: 3px;
}
.site-footer {
  background: var(--color-secondary);
  padding-top: 40px;
}
.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding-bottom: 30px;
}
.footer-top > p {
  font-size: 12px;
  color: var(--color-muted);
}
.footer-top .text-link {
  font-size: 12px;
  border: 0;
}
.footer-bottom {
  padding: 20px 0;
  border-top: 1px solid var(--color-line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  font-size: 11px;
  color: var(--color-muted);
}
.footer-bottom > div {
  display: flex;
  gap: 25px;
}
.mobile-menu {
  width: 100%;
  height: 100dvh;
  max-width: none;
  max-height: none;
  margin: 0;
  border: 0;
  padding: 26px var(--gutter);
  background: var(--color-bg);
  color: var(--color-text);
}
.mobile-menu[open] {
  display: flex;
  flex-direction: column;
  animation: menu-enter 0.25s ease;
}
.mobile-menu::backdrop {
  background: #17171580;
}
.menu-top,
.menu-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}
.menu-close {
  padding: 10px;
  font-size: 14px;
}
.mobile-menu nav {
  display: flex;
  flex-direction: column;
  gap: 25px;
  margin: auto 0;
}
.mobile-menu nav > a {
  font: clamp(30px, 7vw, 50px) / 1.1 var(--font-display);
  display: flex;
  gap: 20px;
}
.mobile-menu small {
  font: 11px var(--font-body);
  color: var(--color-accent);
  padding-top: 10px;
}
.menu-bottom {
  padding: 24px 0;
  border-top: 1px solid var(--color-line);
  font-size: 14px;
}
@keyframes menu-enter {
  from {
    opacity: 0;
    transform: translateY(-15px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.reveal {
  opacity: 1;
  transform: none;
}
.reveal.is-waiting {
  opacity: 1;
  transform: none;
}
.reveal.is-visible {
  animation: content-enter 0.65s ease;
}
@keyframes content-enter {
  from {
    opacity: 0.65;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@media (min-width: 1600px) {
  .site-header {
    padding-inline: max(var(--gutter), calc((100vw - var(--container)) / 2));
  }
  .hero {
    padding-top: 55px;
  }
}
@media (max-width: 1200px) {
  .desktop-nav {
    gap: 20px;
    font-size: 12px;
  }
  .site-header {
    gap: 22px;
  }
  .header-contact {
    font-size: 12px;
  }
  .header-contact span {
    margin-left: 12px;
  }
  .hero {
    gap: 5%;
    grid-template-columns: 1.2fr 1fr;
  }
  .hero h1 {
    font-size: clamp(65px, 7vw, 82px);
  }
  .hero-photo {
    height: 615px;
  }
  .hero-actions {
    gap: 15px;
  }
  .hero-actions .button {
    font-size: 12px;
    padding-inline: 16px;
    gap: 12px;
  }
  .hero-actions .text-link {
    font-size: 12px;
    gap: 10px;
  }
  .service-row {
    grid-template-columns: 45px 1.1fr 1fr;
    gap: 25px;
  }
  .service-row h3 {
    font-size: 35px;
  }
  .service-detail {
    padding-left: 25px;
  }
  .work-grid {
    gap: 20px;
  }
  .work-item > .image-wrap {
    height: 340px;
  }
  .work-feature > .image-wrap {
    height: 440px;
  }
  .work-caption h3 {
    font-size: 26px;
  }
  .about-grid {
    gap: 8%;
  }
  .about-figure {
    padding-left: 0;
  }
  .career-grid {
    gap: 6%;
  }
  .timeline li {
    grid-template-columns: 75px 1fr;
    gap: 20px;
  }
  .contact-grid {
    gap: 7%;
  }
  .brief {
    padding: 29px;
  }
}
@media (max-width: 1000px) {
  .desktop-nav {
    gap: 15px;
    font-size: 11px;
  }
  .header-contact {
    display: none;
  }
  .hero h1 {
    font-size: 68px;
  }
  .hero-lead {
    font-size: 19px;
  }
  .hero-description {
    font-size: 14px;
  }
  .hero-photo {
    height: 585px;
  }
  .hero-actions {
    align-items: start;
  }
  .hero-actions .button {
    font-size: 13px;
  }
  .hero-actions .text-link {
    font-size: 13px;
  }
  .hero-location {
    margin-top: 24px;
  }
  .section-heading {
    gap: 7%;
  }
  .section-heading > p {
    font-size: 15px;
  }
  .work .section-heading {
    grid-template-columns: 1.1fr 1fr;
  }
  .career-grid {
    grid-template-columns: 0.9fr 1.1fr;
  }
  .career-intro h2 {
    font-size: 45px;
  }
  .timeline li {
    grid-template-columns: 1fr;
    gap: 7px;
  }
  .year {
    font-size: 11px;
  }
  .contact h2 {
    font-size: 56px;
  }
}
@media (max-width: 800px) {
  :root {
    --section-spacing: 85px;
  }
  .site-header {
    height: 80px;
  }
  .desktop-nav {
    display: none;
  }
  .menu-toggle {
    display: flex;
    gap: 15px;
    align-items: center;
    font-size: 13px;
    padding: 10px 0;
  }
  .menu-toggle i {
    width: 24px;
    height: 7px;
    border-block: 1px solid;
  }
  .hero {
    padding-top: 25px;
    grid-template-columns: 1.2fr 1fr;
    gap: 5%;
    align-items: start;
  }
  .hero h1 {
    font-size: 60px;
  }
  .hero-copy > .eyebrow {
    font-size: 9px;
    margin-bottom: 22px;
    line-height: 1.7;
    max-width: 260px;
  }
  .asterisk {
    font-size: 20px;
    margin-right: 5px;
  }
  .hero-lead {
    font-size: 17px;
    margin-top: 23px;
  }
  .hero-description {
    font-size: 13px;
  }
  .hero-photo {
    height: 515px;
  }
  .hero-figure {
    padding-left: 0;
  }
  .hero-figure figcaption {
    font-size: 19px;
  }
  .photo-top {
    font-size: 8px;
    left: 15px;
  }
  .photo-link {
    flex-direction: column;
    gap: 9px;
    align-items: start;
    font-size: 11px;
    padding-inline: 16px;
  }
  .hero-location {
    font-size: 11px;
  }
  .hero-actions {
    margin-top: 20px;
    gap: 10px;
  }
  .hero-actions .button {
    font-size: 12px;
    padding: 12px;
    gap: 12px;
  }
  .hero-actions .text-link {
    font-size: 12px;
  }
  .professional-strip {
    font-size: 12px;
    align-items: start;
    gap: 25px;
  }
  .professional-strip > a {
    white-space: normal;
    min-width: 135px;
    max-width: 150px;
    text-align: right;
  }
  .section-top {
    margin-bottom: 35px;
  }
  .section-heading {
    gap: 30px;
  }
  .section-heading h2 {
    font-size: 48px;
  }
  .section-heading > p {
    font-size: 14px;
  }
  .section-aside {
    font-size: 11px;
  }
  .service-row {
    grid-template-columns: 35px 1fr 1fr;
    gap: 20px;
  }
  .service-row h3 {
    font-size: 31px;
  }
  .service-row p {
    font-size: 14px;
  }
  .service-detail {
    padding-left: 20px;
  }
  .service-detail .text-link {
    font-size: 12px;
  }
  .work-grid {
    grid-template-columns: 1.15fr 1fr;
    gap: 30px 24px;
  }
  .work-feature {
    grid-row: span 2;
  }
  .work-feature > .image-wrap {
    height: 590px;
  }
  .work-item > .image-wrap {
    height: 245px;
  }
  .work-feature > .image-wrap {
    height: 590px;
  }
  .work-item:nth-child(3) {
    margin-top: 0;
  }
  .work-caption h3 {
    font-size: 27px;
  }
  .work-caption {
    padding-top: 15px;
  }
  .work-caption p {
    font-size: 11px;
  }
  .work .section-heading {
    grid-template-columns: 1.1fr 1fr;
  }
  .work .section-heading h2 {
    font-size: 48px;
  }
  .work .section-heading > p {
    font-size: 13px;
  }
  .work-bottom {
    align-items: start;
  }
  .work-bottom p {
    max-width: 240px;
  }
  .work-bottom .button {
    font-size: 12px;
    gap: 13px;
  }
  .about-grid {
    grid-template-columns: 0.9fr 1.1fr;
    gap: 7%;
  }
  .about-figure .image-wrap {
    height: 495px;
  }
  .about-copy h2 {
    font-size: 45px;
  }
  .about-copy > p {
    font-size: 14px;
  }
  .about-copy > .lead {
    font-size: 25px;
  }
  .career-grid {
    grid-template-columns: 1fr;
    gap: 45px;
  }
  .career-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px 35px;
    align-items: start;
  }
  .career-intro h2 {
    grid-row: span 3;
    font-size: 48px;
  }
  .career-intro > p {
    margin-top: 0;
    font-size: 15px;
  }
  .tools {
    margin-top: 0;
  }
  .career-intro > .button {
    margin-top: 0;
    justify-self: start;
    font-size: 12px;
    gap: 12px;
  }
  .timeline li {
    grid-template-columns: 110px 1fr;
    gap: 25px;
  }
  .timeline h3 > span {
    display: inline;
    font-size: 12px;
  }
  .contact-grid {
    grid-template-columns: 1fr 1fr;
    gap: 35px;
  }
  .contact h2 {
    font-size: 48px;
  }
  .contact-intro {
    font-size: 14px;
  }
  .contact-channels .button {
    font-size: 12px;
    gap: 20px;
    padding: 14px;
  }
  .contact-channels .text-link {
    font-size: 13px;
  }
  .brief {
    padding: 24px;
  }
  .brief h3 {
    font-size: 31px;
  }
  .brief li {
    font-size: 12px;
    gap: 12px;
  }
  .brief .text-link {
    font-size: 11px;
  }
  .footer-top .wordmark {
    font-size: 27px;
  }
  .footer-top > p {
    font-size: 11px;
  }
}
@media (max-width: 600px) {
  :root {
    --section-spacing: 72px;
    --gutter: 24px;
  }
  .site-header {
    height: 74px;
  }
  .wordmark {
    font-size: 28px;
  }
  h2 {
    font-size: 47px;
  }
  .hero {
    grid-template-columns: 1fr;
    gap: 0;
    padding-top: 21px;
    padding-bottom: 30px;
  }
  .hero-copy > .eyebrow {
    font-size: 9px;
    margin-bottom: 20px;
    max-width: none;
  }
  .hero h1 {
    font-size: clamp(55px, 14.7vw, 76px);
    line-height: 1.02;
    letter-spacing: -0.035em;
  }
  .hero h1 br:first-child {
    display: block;
  }
  .hero-lead {
    font-size: 18px;
    margin-top: 24px;
    max-width: 380px;
  }
  .hero-description {
    font-size: 14px;
    line-height: 1.75;
    margin-top: 14px;
  }
  .hero-actions {
    margin-top: 24px;
    gap: 15px;
    flex-wrap: wrap;
  }
  .hero-actions .button {
    font-size: 13px;
    min-height: 52px;
    padding: 13px 17px;
    gap: 22px;
  }
  .hero-actions .text-link {
    font-size: 13px;
    gap: 14px;
  }
  .hero-location {
    font-size: 11px;
    display: flex;
    justify-content: space-between;
    gap: 15px;
    margin-top: 24px;
  }
  .hero-location span {
    font-size: 10px;
    margin-top: 0;
    text-align: right;
  }
  .hero-figure {
    margin-top: 27px;
    margin-left: 14%;
  }
  .hero-photo {
    height: 390px;
  }
  .hero-photo img {
    object-position: center 46%;
  }
  .hero-figure figcaption {
    font-size: 21px;
  }
  .photo-top {
    font-size: 8px;
    top: 14px;
  }
  .photo-link {
    flex-direction: row;
    align-items: end;
    font-size: 10px;
    gap: 10px;
    padding: 60px 16px 20px;
  }
  .professional-strip {
    display: block;
    padding: 20px 0;
    font-size: 12px;
  }
  .professional-strip > span {
    display: block;
  }
  .professional-strip > a {
    display: inline-block;
    max-width: none;
    margin-top: 12px;
    text-align: left;
  }
  .section-top {
    margin-bottom: 29px;
    gap: 20px;
    align-items: start;
  }
  .section-top > .eyebrow {
    font-size: 10px;
    max-width: 210px;
  }
  .section-aside {
    font-size: 10px;
    text-align: right;
    max-width: 100px;
  }
  .section-heading {
    display: block;
    margin-bottom: 35px;
  }
  .section-heading h2 {
    font-size: 47px;
  }
  .section-heading > p {
    font-size: 15px;
    margin-top: 22px;
  }
  .service-row {
    grid-template-columns: 26px 1fr;
    gap: 15px;
    padding: 28px 0;
  }
  .service-row h3 {
    font-size: 31px;
  }
  .service-row p {
    font-size: 14px;
    margin-top: 13px;
  }
  .number {
    font-size: 25px;
    line-height: 1.4;
  }
  .service-detail {
    grid-column: 2;
    border-left: 0;
    padding-left: 0;
    margin-top: 5px;
  }
  .service-detail > .eyebrow {
    font-size: 10px;
  }
  .service-detail > p {
    font-size: 12px;
    margin-top: 7px;
  }
  .service-detail .text-link {
    font-size: 13px;
    margin-top: 10px;
  }
  .service-footnote {
    font-size: 11px;
    line-height: 1.75;
  }
  .work .section-top {
    align-items: start;
  }
  .work .section-top .compact {
    font-size: 11px;
    padding-top: 0;
    gap: 8px;
    white-space: nowrap;
  }
  .work .section-heading {
    display: block;
  }
  .work .section-heading h2 {
    font-size: 49px;
  }
  .work .section-heading > p {
    font-size: 14px;
    margin-top: 22px;
  }
  .work-grid {
    grid-template-columns: 1fr;
    gap: 37px;
  }
  .work-feature {
    grid-row: auto;
  }
  .work-item > .image-wrap,
  .work-feature > .image-wrap {
    height: 420px;
  }
  .work-item:nth-child(2) {
    margin-left: 12%;
  }
  .work-item:nth-child(3) {
    margin-right: 12%;
  }
  .work-item:nth-child(2) > .image-wrap,
  .work-item:nth-child(3) > .image-wrap {
    height: 340px;
  }
  .work-caption h3 {
    font-size: 30px;
  }
  .work-caption p {
    font-size: 12px;
  }
  .image-cta {
    font-size: 12px;
  }
  .work-bottom {
    display: block;
    margin-top: 35px;
  }
  .work-bottom p {
    font-size: 13px;
    max-width: 290px;
  }
  .work-bottom .button {
    margin-top: 23px;
    font-size: 13px;
    gap: 20px;
  }
  .about-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .about-figure {
    width: 84%;
  }
  .about-figure .image-wrap {
    height: 390px;
  }
  .about-figure figcaption {
    font-size: 11px;
  }
  .about-copy h2 {
    font-size: 49px;
    margin-bottom: 24px;
  }
  .about-copy > .lead {
    font-size: 27px;
  }
  .about-copy > p {
    font-size: 15px;
  }
  .about-links {
    gap: 10px;
    margin-top: 20px;
    flex-direction: column;
    align-items: start;
  }
  .about-links .text-link {
    font-size: 13px;
  }
  .career .section-top {
    align-items: start;
  }
  .career .section-top > .eyebrow {
    max-width: 180px;
  }
  .career .section-top > .compact {
    font-size: 10px;
    max-width: 130px;
    gap: 8px;
    padding-top: 0;
    text-align: right;
  }
  .career-intro {
    display: block;
  }
  .career-intro h2 {
    font-size: 47px;
  }
  .career-intro > p {
    font-size: 15px;
    margin-top: 24px;
  }
  .tools {
    margin-top: 25px;
    padding-top: 20px;
  }
  .tools p {
    font-size: 13px;
  }
  .career-intro > .button {
    font-size: 13px;
    margin-top: 24px;
    padding: 14px 17px;
    gap: 20px;
  }
  .career-grid {
    gap: 35px;
  }
  .timeline li {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 25px 0;
  }
  .timeline .year {
    font-size: 11px;
    padding-top: 0;
  }
  .timeline h3 {
    font-size: 32px;
  }
  .timeline h3 > span {
    display: block;
    font-size: 12px;
  }
  .timeline p.role {
    font-size: 12px;
  }
  .timeline p {
    font-size: 14px;
    line-height: 1.75;
  }
  .dates {
    font-size: 10px;
  }
  .contact .section-top {
    margin-bottom: 28px;
  }
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 35px;
  }
  .contact h2 {
    font-size: 51px;
  }
  .contact-intro {
    font-size: 15px;
    margin-top: 22px;
  }
  .contact-channels .button {
    font-size: 14px;
    gap: 30px;
    padding: 15px 20px;
  }
  .contact-channels .text-link {
    font-size: 14px;
  }
  .contact-handle {
    font-size: 11px;
    margin-top: 20px;
  }
  .brief {
    padding: 26px;
  }
  .brief h3 {
    font-size: 35px;
  }
  .brief li {
    font-size: 13px;
  }
  .brief .text-link {
    font-size: 12px;
  }
  .faq {
    margin-top: 40px;
  }
  .faq summary {
    font-size: 14px;
    line-height: 1.65;
    padding: 19px 0;
  }
  .faq details > p {
    font-size: 14px;
    padding-right: 5px;
  }
  .footer-top {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 22px;
    padding-bottom: 25px;
  }
  .footer-top > p {
    grid-row: 2;
    grid-column: 1/-1;
    font-size: 12px;
  }
  .footer-top > .text-link {
    font-size: 10px;
  }
  .footer-bottom {
    flex-wrap: wrap;
    gap: 15px;
    font-size: 10px;
  }
  .footer-bottom > div {
    width: 100%;
    gap: 25px;
  }
  .mobile-menu nav {
    gap: 24px;
  }
  .mobile-menu nav > a {
    font-size: 34px;
  }
  .mobile-menu small {
    font-size: 10px;
    padding-top: 9px;
  }
  .menu-top .wordmark {
    font-size: 27px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *:before,
  *:after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
  .reveal.is-waiting {
    opacity: 1;
    transform: none;
  }
}
