:root {
  color-scheme: light;
  --ink: #171817;
  --ink-soft: #2b2d2a;
  --muted: #60635e;
  --canvas: #efede6;
  --paper: #f8f7f3;
  --white: #ffffff;
  --sage: #dde1d8;
  --sage-dark: #5d655b;
  --line: #d3d1c8;
  --line-dark: #3b3d39;
  --dark: #181917;
  --dark-muted: #afb2ab;
  --max: 1240px;
  --gutter: clamp(20px, 4.2vw, 72px);
  --section-space: clamp(76px, 9vw, 132px);
  font-family: "Avenir Next", Avenir, "Helvetica Neue", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  background: var(--canvas);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button,
summary {
  font: inherit;
}

button,
summary {
  cursor: pointer;
}

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

figure {
  margin-right: 0;
  margin-bottom: 0;
  margin-left: 0;
}

h1,
h2,
h3 {
  text-wrap: balance;
}

p {
  text-wrap: pretty;
}

section[id] {
  scroll-margin-top: 82px;
}

:focus-visible {
  outline: 2px solid var(--ink);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 16px;
  z-index: 200;
  padding: 10px 14px;
  background: var(--ink);
  color: var(--white);
  transform: translateY(-160%);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  display: flex;
  min-height: 76px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 12px var(--gutter);
  border-bottom: 1px solid transparent;
  background: rgba(239, 237, 230, 0.88);
  backdrop-filter: blur(18px);
  transition: background 180ms ease, border-color 180ms ease;
}

.site-header.is-scrolled {
  border-color: rgba(23, 24, 23, 0.11);
  background: rgba(248, 247, 243, 0.96);
}

.brand {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  gap: 12px;
  font-size: 0.94rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.brand img {
  width: 46px;
  height: 46px;
  border: 1px solid rgba(23, 24, 23, 0.14);
  background: var(--dark);
  object-fit: cover;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2vw, 32px);
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 500;
}

.site-nav a {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  border-bottom: 1px solid transparent;
  transition: color 160ms ease, border-color 160ms ease, background 160ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a[aria-current] {
  border-color: currentColor;
  color: var(--ink);
}

.site-nav .nav-contact {
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  background: var(--ink);
  color: var(--white);
}

.site-nav .nav-contact:hover,
.site-nav .nav-contact:focus-visible,
.site-nav .nav-contact[aria-current] {
  border-color: var(--ink);
  background: transparent;
  color: var(--ink);
}

.menu-button {
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: transparent;
}

.menu-button span {
  display: block;
  width: 18px;
  height: 1.5px;
  margin: 5px auto;
  background: var(--ink);
  transition: transform 180ms ease;
}

.menu-button[aria-expanded="true"] span:first-child {
  transform: translateY(3.25px) rotate(45deg);
}

.menu-button[aria-expanded="true"] span:last-child {
  transform: translateY(-3.25px) rotate(-45deg);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.16fr) minmax(340px, 0.66fr);
  gap: clamp(38px, 6vw, 92px);
  width: min(100%, calc(var(--max) + (2 * var(--gutter))));
  min-height: calc(100svh - 76px);
  align-items: center;
  padding: clamp(44px, 6vw, 84px) var(--gutter) 0;
  margin: 0 auto;
}

.hero-copy {
  align-self: center;
  padding-bottom: 30px;
}

.eyebrow,
.section-kicker {
  margin-bottom: 20px;
  color: var(--sage-dark);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  line-height: 1.4;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 830px;
  margin-bottom: 28px;
  font-size: clamp(3.15rem, 6vw, 5.8rem);
  font-weight: 600;
  letter-spacing: -0.055em;
  line-height: 0.97;
}

.hero-text {
  max-width: 700px;
  margin-bottom: 34px;
  color: var(--muted);
  font-size: clamp(1.06rem, 1.45vw, 1.24rem);
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px 24px;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 700;
  transition: background 160ms ease, color 160ms ease, transform 160ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button-primary {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--white);
}

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

.text-link {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid currentColor;
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 600;
  transition: gap 160ms ease, color 160ms ease;
}

.text-link:hover,
.text-link:focus-visible {
  gap: 16px;
  color: var(--sage-dark);
}

.hero-media {
  position: relative;
  width: min(100%, 470px);
  align-self: stretch;
  justify-self: end;
  margin-bottom: clamp(44px, 6vw, 80px);
  overflow: hidden;
  background: var(--sage);
}

.hero-media::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(20, 22, 20, 0.72));
  content: "";
  pointer-events: none;
}

.hero-media img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
  filter: grayscale(0.34) saturate(0.7) contrast(0.96);
  transition: transform 700ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.hero-media:hover img {
  transform: scale(1.018);
}

.hero-media figcaption {
  position: absolute;
  right: 24px;
  bottom: 22px;
  left: 24px;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.48);
  color: var(--white);
  font-size: 0.77rem;
  letter-spacing: 0.04em;
}

.hero-rail {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  min-height: 72px;
  padding: 0;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.045em;
  white-space: nowrap;
}

.hero-rail span:not(:last-child)::after {
  margin-left: clamp(24px, 3vw, 52px);
  color: #a9aca4;
  content: "·";
}

.section {
  padding: var(--section-space) var(--gutter);
}

.section > * {
  width: min(100%, var(--max));
  margin-right: auto;
  margin-left: auto;
}

.section h2 {
  margin-bottom: 0;
  font-size: clamp(2.35rem, 4.6vw, 4.8rem);
  font-weight: 560;
  letter-spacing: -0.045em;
  line-height: 1.02;
}

.section h3 {
  font-weight: 600;
}

.section-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(300px, 0.65fr);
  gap: clamp(50px, 8vw, 120px);
  background: var(--paper);
}

.section-intro > * {
  width: auto;
  margin: 0;
}

.section-intro .section-heading {
  max-width: 850px;
  margin-left: max(0px, calc((100vw - var(--max) - (2 * var(--gutter))) / 2));
}

.intro-copy {
  max-width: 520px;
  align-self: end;
  margin-right: max(0px, calc((100vw - var(--max) - (2 * var(--gutter))) / 2));
}

.intro-copy p {
  margin-bottom: 22px;
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.72;
}

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

.work-flow {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: var(--max);
  margin: clamp(56px, 7vw, 100px) auto 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.work-flow article {
  padding: 26px clamp(0px, 2.5vw, 34px) 32px;
}

.work-flow article:first-child {
  padding-left: 0;
}

.work-flow article + article {
  border-left: 1px solid var(--line);
}

.work-flow > article > span {
  display: block;
  margin-bottom: 42px;
  color: var(--sage-dark);
  font-size: 0.75rem;
  font-weight: 700;
}

.flow-label {
  margin-bottom: 10px;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.work-flow h3 {
  max-width: 330px;
  margin-bottom: 0;
  font-size: clamp(1.12rem, 1.55vw, 1.42rem);
  line-height: 1.28;
}

.section-services {
  display: grid;
  grid-template-columns: minmax(280px, 0.68fr) minmax(0, 1.32fr);
  gap: clamp(48px, 9vw, 140px);
  background: var(--canvas);
}

.section-services > * {
  width: auto;
  margin: 0;
}

.services-intro {
  position: sticky;
  top: 108px;
  max-width: 440px;
  align-self: start;
  margin-left: max(0px, calc((100vw - var(--max) - (2 * var(--gutter))) / 2));
}

.services-intro h2 {
  margin-bottom: 28px;
  font-size: clamp(2.25rem, 3.7vw, 4rem);
}

.services-intro > p:last-child {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.7;
}

.service-accordion {
  margin-right: max(0px, calc((100vw - var(--max) - (2 * var(--gutter))) / 2));
  border-top: 1px solid var(--ink);
}

.service-item {
  border-bottom: 1px solid var(--line);
}

.service-item summary {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr) 36px;
  gap: 18px;
  min-height: 90px;
  align-items: center;
  list-style: none;
}

.service-item summary::-webkit-details-marker {
  display: none;
}

.service-number {
  color: var(--sage-dark);
  font-size: 0.75rem;
  font-weight: 700;
}

.service-title {
  font-size: clamp(1.2rem, 1.8vw, 1.62rem);
  font-weight: 600;
  letter-spacing: -0.02em;
}

.service-toggle {
  position: relative;
  width: 32px;
  height: 32px;
  justify-self: end;
  border: 1px solid var(--line);
  border-radius: 50%;
}

.service-toggle::before,
.service-toggle::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 1px;
  background: var(--ink);
  content: "";
  transform: translate(-50%, -50%);
  transition: transform 160ms ease;
}

.service-toggle::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.service-item[open] .service-toggle::after {
  transform: translate(-50%, -50%) rotate(0);
}

.service-body {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 0.72fr);
  gap: 32px;
  padding: 0 54px 34px 70px;
}

.service-body > p {
  max-width: 620px;
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.7;
}

.service-body ul {
  padding: 0;
  margin-bottom: 0;
  list-style: none;
}

.service-body li {
  padding: 7px 0;
  border-bottom: 1px solid rgba(23, 24, 23, 0.09);
  color: var(--ink-soft);
  font-size: 0.82rem;
}

.section-work {
  background: var(--white);
}

.work-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(300px, 0.6fr);
  gap: clamp(50px, 8vw, 120px);
  align-items: end;
  margin-bottom: clamp(54px, 7vw, 96px);
}

.work-heading > p {
  max-width: 470px;
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.72;
}

.work-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(30px, 4vw, 60px);
  align-items: start;
}

.work-card {
  display: block;
}

.work-card-wide {
  grid-column: 1 / -1;
  width: 74%;
  justify-self: center;
}

.work-card figure {
  margin-bottom: 0;
}

.work-card img {
  width: 100%;
  border: 1px solid var(--line);
  background: var(--canvas);
  box-shadow: 0 24px 60px rgba(23, 24, 23, 0.08);
  transition: transform 260ms ease, box-shadow 260ms ease;
}

.work-card:hover img,
.work-card:focus-visible img {
  transform: translateY(-5px);
  box-shadow: 0 32px 72px rgba(23, 24, 23, 0.13);
}

.work-card figcaption {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-top: 16px;
  color: var(--muted);
  font-size: 0.79rem;
}

.work-card figcaption span:last-child {
  color: var(--ink);
  font-weight: 600;
}

.work-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding-top: 34px;
  margin-top: clamp(56px, 7vw, 94px);
  border-top: 1px solid var(--line);
}

.work-cta p {
  max-width: 700px;
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.65;
}

.section-method {
  background: var(--dark);
  color: var(--white);
}

.section-method .section-kicker {
  color: #c5c9c0;
}

.method-heading {
  display: grid;
  grid-template-columns: 150px minmax(0, 1.3fr) minmax(280px, 0.55fr);
  gap: clamp(28px, 5vw, 78px);
  align-items: end;
  margin-bottom: clamp(58px, 8vw, 104px);
}

.method-heading .section-kicker,
.method-heading > p:last-child {
  margin-bottom: 0;
}

.method-heading > p:last-child {
  color: var(--dark-muted);
  line-height: 1.7;
}

.method-list {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  padding: 0;
  border-top: 1px solid var(--line-dark);
  list-style: none;
}

.method-list li {
  min-height: 300px;
  padding: 26px 24px 30px;
  border-bottom: 1px solid var(--line-dark);
}

.method-list li + li {
  border-left: 1px solid var(--line-dark);
}

.method-letter {
  display: block;
  margin-bottom: 74px;
  color: var(--white);
  font-size: clamp(2.8rem, 4.2vw, 4.6rem);
  font-weight: 500;
  letter-spacing: -0.06em;
  line-height: 1;
}

.method-list h3 {
  margin-bottom: 12px;
  font-size: 1.12rem;
}

.method-list p {
  margin-bottom: 0;
  color: var(--dark-muted);
  font-size: 0.88rem;
  line-height: 1.6;
}

.section-audience {
  background: var(--paper);
}

.audience-heading {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  gap: clamp(32px, 7vw, 110px);
  align-items: start;
}

.audience-list {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 0;
  align-items: baseline;
  padding: clamp(30px, 4vw, 48px) 0;
  margin-top: clamp(52px, 7vw, 90px);
  margin-bottom: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  list-style: none;
}

.audience-list li {
  display: inline-flex;
  min-height: 0;
  align-items: baseline;
  padding: 0;
  color: var(--ink-soft);
  font-size: clamp(1.45rem, 2.35vw, 2.45rem);
  font-weight: 520;
  letter-spacing: -0.035em;
  line-height: 1.12;
}

.audience-list li:not(:last-child)::after {
  margin: 0 clamp(18px, 2.7vw, 42px);
  color: var(--sage-dark);
  content: "·";
  font-weight: 400;
}

.boundary-note {
  display: grid;
  grid-template-columns: minmax(160px, 0.42fr) minmax(0, 1fr);
  gap: clamp(30px, 7vw, 100px);
  padding: clamp(28px, 4vw, 52px);
  margin-top: clamp(62px, 8vw, 110px);
  border-left: 4px solid var(--sage-dark);
  background: var(--sage);
}

.boundary-label {
  margin-bottom: 0;
  color: var(--sage-dark);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.boundary-note h3 {
  margin-bottom: 16px;
  font-size: clamp(1.5rem, 2.5vw, 2.5rem);
  letter-spacing: -0.03em;
  line-height: 1.1;
}

.boundary-note div p {
  max-width: 800px;
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.7;
}

.section-contact {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(320px, 0.62fr);
  gap: clamp(52px, 9vw, 140px);
  background: var(--sage);
}

.section-contact > * {
  width: auto;
  margin: 0;
}

.contact-copy {
  max-width: 800px;
  margin-left: max(0px, calc((100vw - var(--max) - (2 * var(--gutter))) / 2));
}

.contact-copy h2 {
  margin-bottom: 28px;
}

.contact-copy > p:not(.section-kicker) {
  max-width: 690px;
  margin-bottom: 34px;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.7;
}

.briefing-list {
  align-self: end;
  margin-right: max(0px, calc((100vw - var(--max) - (2 * var(--gutter))) / 2));
}

.briefing-list > p {
  margin-bottom: 14px;
  color: var(--sage-dark);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.briefing-list ul {
  padding: 0;
  margin-bottom: 0;
  border-top: 1px solid rgba(23, 24, 23, 0.24);
  list-style: none;
}

.briefing-list li {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(23, 24, 23, 0.18);
  color: var(--ink-soft);
  font-size: 0.88rem;
}

.briefing-list li span {
  color: var(--sage-dark);
  font-size: 0.74rem;
  font-weight: 700;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr minmax(280px, 1.4fr) auto;
  gap: 32px;
  align-items: start;
  padding: 38px var(--gutter) 24px;
  background: var(--dark);
  color: var(--dark-muted);
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.footer-brand img {
  width: 40px;
  height: 40px;
  object-fit: cover;
}

.site-footer > p:not(.photo-credit) {
  max-width: 560px;
  margin-bottom: 0;
  font-size: 0.88rem;
  line-height: 1.6;
}

.footer-links {
  display: flex;
  gap: 22px;
  color: var(--white);
  font-size: 0.82rem;
}

.footer-links a {
  padding-bottom: 4px;
  border-bottom: 1px solid var(--line-dark);
}

.photo-credit {
  grid-column: 2 / -1;
  margin: 8px 0 0;
  font-size: 0.67rem;
  opacity: 0.7;
}

.preview-dialog {
  width: min(1120px, calc(100vw - 40px));
  max-width: none;
  max-height: calc(100vh - 40px);
  padding: 0;
  border: 0;
  background: var(--paper);
  box-shadow: 0 30px 100px rgba(0, 0, 0, 0.32);
}

.preview-dialog::backdrop {
  background: rgba(15, 16, 15, 0.78);
  backdrop-filter: blur(8px);
}

.preview-dialog-bar {
  display: flex;
  min-height: 58px;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 10px 18px;
  border-bottom: 1px solid var(--line);
}

.preview-dialog-bar p {
  margin-bottom: 0;
  font-size: 0.86rem;
  font-weight: 600;
}

.preview-dialog-bar button {
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: transparent;
  color: var(--ink);
  font-size: 0.78rem;
}

.preview-dialog > img {
  width: 100%;
  max-height: calc(100vh - 100px);
  object-fit: contain;
}

@media (max-width: 1080px) {
  .hero {
    grid-template-columns: minmax(0, 1fr) minmax(300px, 0.58fr);
    gap: 42px;
  }

  .hero h1 {
    font-size: clamp(3.1rem, 6.4vw, 4.7rem);
  }

  .method-heading {
    grid-template-columns: 120px minmax(0, 1fr);
  }

  .method-heading > p:last-child {
    grid-column: 2;
  }

  .method-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .method-list li:nth-child(4) {
    border-left: 0;
  }
}

@media (max-width: 860px) {
  section[id] {
    scroll-margin-top: 74px;
  }

  .site-header {
    min-height: 72px;
  }

  .menu-button {
    display: block;
  }

  .site-nav {
    position: fixed;
    inset: 72px 0 auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px var(--gutter) 26px;
    border-bottom: 1px solid var(--line);
    background: rgba(248, 247, 243, 0.99);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a,
  .site-nav .nav-contact {
    min-height: 56px;
    padding: 0;
    border: 0;
    border-bottom: 1px solid var(--line);
    border-radius: 0;
    background: transparent;
    color: var(--ink);
    font-size: 1rem;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 54px;
  }

  .hero-copy {
    padding-bottom: 0;
  }

  .hero-media {
    width: 100%;
    height: 520px;
    justify-self: stretch;
    margin-bottom: 0;
  }

  .hero-media img {
    min-height: 0;
  }

  .hero-rail {
    overflow-x: auto;
    justify-content: flex-start;
    scrollbar-width: none;
  }

  .hero-rail::-webkit-scrollbar {
    display: none;
  }

  .section-intro,
  .section-services,
  .section-contact {
    grid-template-columns: 1fr;
  }

  .section-intro .section-heading,
  .intro-copy,
  .services-intro,
  .service-accordion,
  .contact-copy,
  .briefing-list {
    max-width: none;
    margin-right: 0;
    margin-left: 0;
  }

  .services-intro {
    position: static;
  }

  .work-flow {
    grid-template-columns: 1fr;
  }

  .work-flow article {
    display: grid;
    grid-template-columns: 48px 150px minmax(0, 1fr);
    gap: 14px;
    align-items: start;
    padding: 24px 0;
  }

  .work-flow article + article {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .work-flow > article > span,
  .flow-label {
    margin-bottom: 0;
  }

  .work-heading {
    grid-template-columns: 1fr;
  }

  .work-heading > p {
    max-width: 660px;
  }

  .work-card-wide {
    width: 100%;
  }

  .method-heading {
    grid-template-columns: 1fr;
  }

  .method-heading > p:last-child {
    grid-column: auto;
    max-width: 620px;
  }

  .audience-heading {
    grid-template-columns: 1fr;
  }

  .site-footer {
    grid-template-columns: 1fr 1fr;
  }

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

  .photo-credit {
    grid-column: 1 / -1;
  }
}

@media (max-width: 620px) {
  :root {
    --gutter: 20px;
    --section-space: 76px;
  }

  .brand img {
    width: 42px;
    height: 42px;
  }

  .hero {
    gap: 38px;
    padding-top: 42px;
  }

  .hero h1 {
    max-width: 350px;
    font-size: clamp(2.7rem, 13vw, 3.5rem);
    line-height: 0.99;
  }

  .hero-text {
    font-size: 1.02rem;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .hero-media {
    height: 440px;
  }

  .hero-media figcaption {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }

  .section h2 {
    font-size: clamp(2.15rem, 10.5vw, 3rem);
  }

  .work-flow article {
    grid-template-columns: 40px minmax(0, 1fr);
  }

  .work-flow h3 {
    grid-column: 2;
  }

  .service-item summary {
    grid-template-columns: 34px minmax(0, 1fr) 32px;
    gap: 12px;
    min-height: 84px;
  }

  .service-title {
    font-size: 1.12rem;
  }

  .service-body {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 0 0 28px 46px;
  }

  .work-gallery {
    grid-template-columns: 1fr;
  }

  .work-card-wide {
    grid-column: auto;
  }

  .work-card figcaption {
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
  }

  .work-cta {
    align-items: flex-start;
    flex-direction: column;
  }

  .method-list {
    grid-template-columns: 1fr;
  }

  .method-list li {
    display: grid;
    grid-template-columns: 62px minmax(0, 1fr);
    gap: 22px;
    min-height: 0;
    padding: 24px 0;
  }

  .method-list li + li,
  .method-list li:nth-child(4) {
    border-top: 0;
    border-left: 0;
  }

  .method-letter {
    margin-bottom: 0;
    font-size: 2.8rem;
  }

  .audience-list {
    display: block;
    padding: 28px 0;
  }

  .audience-list li {
    position: relative;
    display: block;
    padding-left: 24px;
    margin-bottom: 18px;
    font-size: 1.48rem;
    line-height: 1.18;
  }

  .audience-list li:last-child {
    margin-bottom: 0;
  }

  .audience-list li::before {
    position: absolute;
    top: 0;
    left: 0;
    color: var(--sage-dark);
    content: "—";
  }

  .audience-list li:not(:last-child)::after {
    display: none;
  }

  .boundary-note {
    grid-template-columns: 1fr;
  }

  .site-footer {
    grid-template-columns: 1fr;
  }

  .footer-links {
    grid-column: auto;
    grid-row: auto;
    justify-self: start;
  }

  .photo-credit {
    grid-column: auto;
  }

  .preview-dialog {
    width: calc(100vw - 20px);
    max-height: calc(100vh - 20px);
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
