:root {
  --ink: #171717;
  --ink-soft: #2c2a27;
  --plaster: #f7f4ed;
  --paper: #fffdf8;
  --joint: #ddd5c8;
  --concrete: #92877a;
  --rust: #a94d29;
  --rust-bright: #c86539;
  --sage: #d9e0da;
  --line: rgba(23, 23, 23, .16);
  --shadow: 0 24px 70px rgba(23, 23, 23, .13);
  --radius: 22px;
  --max: 1240px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--plaster);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration-thickness: .08em;
  text-underline-offset: .2em;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid var(--rust-bright);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: .75rem;
  left: .75rem;
  z-index: 100;
  padding: .7rem 1rem;
  background: var(--paper);
  color: var(--ink);
  border-radius: .4rem;
  transform: translateY(-160%);
}

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

.concept-bar {
  min-height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .65rem;
  padding: .4rem 1rem;
  background: var(--rust);
  color: #fff;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .13em;
  text-align: center;
  text-transform: uppercase;
}

.concept-bar::before {
  content: "";
  width: .5rem;
  height: .5rem;
  border: 2px solid currentColor;
  border-radius: 50%;
}

.site-header {
  position: relative;
  z-index: 20;
  background: var(--ink);
  color: #fff;
}

.header-inner {
  width: min(calc(100% - 2rem), var(--max));
  min-height: 82px;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.brand {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: .8rem;
  text-decoration: none;
}

.brand-mark {
  flex: 0 0 44px;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .45);
  border-radius: 50%;
  color: var(--rust-bright);
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .06em;
}

.brand-name {
  max-width: 290px;
  font-size: .79rem;
  font-weight: 800;
  letter-spacing: .04em;
  line-height: 1.25;
  text-transform: uppercase;
}

.menu-toggle {
  display: none;
  min-height: 44px;
  padding: .55rem .8rem;
  border: 1px solid rgba(255, 255, 255, .38);
  border-radius: 999px;
  background: transparent;
  color: #fff;
  font: inherit;
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.site-nav,
.nav-list {
  display: flex;
  align-items: center;
}

.nav-list {
  margin: 0;
  padding: 0;
  gap: .2rem;
  list-style: none;
}

.nav-list a {
  display: block;
  padding: .75rem .78rem;
  color: #fff;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .09em;
  text-decoration: none;
  text-transform: uppercase;
}

.nav-list a:hover,
.nav-list a[aria-current="page"] {
  color: #f09a70;
}

.nav-list .nav-cta {
  margin-left: .45rem;
  padding-inline: 1.05rem;
  border-radius: 999px;
  background: var(--rust);
  color: #fff;
}

.nav-list .nav-cta:hover,
.nav-list .nav-cta[aria-current="page"] {
  background: #c85f34;
  color: #fff;
}

.shell {
  width: min(calc(100% - 2rem), var(--max));
  margin-inline: auto;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: .65rem;
  margin: 0 0 1rem;
  color: var(--rust);
  font-size: .73rem;
  font-weight: 900;
  letter-spacing: .14em;
  line-height: 1.2;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 34px;
  height: 3px;
  background: currentColor;
}

.eyebrow-light {
  color: #f09a70;
}

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

h1,
h2,
h3 {
  font-family: "Arial Narrow", "Helvetica Neue", Arial, sans-serif;
  font-stretch: condensed;
  letter-spacing: -.045em;
}

h1 {
  margin-bottom: 1.3rem;
  font-size: clamp(3rem, 7.3vw, 7.2rem);
  line-height: .91;
  text-wrap: balance;
}

h2 {
  margin-bottom: 1rem;
  font-size: clamp(2.25rem, 5vw, 4.7rem);
  line-height: .98;
  text-wrap: balance;
}

h3 {
  font-size: clamp(1.3rem, 2.3vw, 1.8rem);
  line-height: 1.08;
}

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

.hero::after {
  content: "";
  position: absolute;
  right: -10vw;
  bottom: -22vw;
  width: 40vw;
  height: 40vw;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 50%;
}

.hero-grid {
  position: relative;
  z-index: 1;
  min-height: 690px;
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(320px, .8fr);
  align-items: center;
  gap: clamp(2.5rem, 7vw, 7rem);
  padding-block: clamp(4rem, 8vw, 7.5rem);
}

.hero-copy {
  max-width: 760px;
}

.hero-lead {
  max-width: 670px;
  margin-bottom: 2rem;
  color: #d5d0c7;
  font-size: clamp(1.05rem, 1.7vw, 1.28rem);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: .8rem;
}

.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .7rem;
  padding: .85rem 1.18rem;
  border: 2px solid var(--ink);
  border-radius: 999px;
  background: var(--ink);
  color: #fff;
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .08em;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
}

.button::after {
  content: "↗";
  font-size: 1rem;
}

.button-rust {
  border-color: var(--rust-bright);
  background: var(--rust-bright);
  color: var(--ink);
}

.button-light {
  border-color: rgba(255, 255, 255, .52);
  background: transparent;
  color: #fff;
}

.button-paper {
  border-color: var(--ink);
  background: transparent;
  color: var(--ink);
}

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

.hero-visual {
  position: relative;
}

.hero-art {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, .15);
  border-radius: 180px 180px 20px 20px;
  box-shadow: 0 30px 90px rgba(0, 0, 0, .32);
}

.location-chip {
  position: absolute;
  left: -2rem;
  bottom: 2rem;
  max-width: 210px;
  padding: 1rem 1.1rem;
  background: var(--paper);
  color: var(--ink);
  border-radius: 14px;
  box-shadow: var(--shadow);
}

.location-chip strong,
.location-chip span {
  display: block;
}

.location-chip strong {
  font-size: .72rem;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.location-chip span {
  margin-top: .25rem;
  color: #5e5851;
  font-size: .87rem;
}

.audience-bar {
  background: var(--rust);
  color: #fff;
}

.audience-grid {
  display: grid;
  grid-template-columns: .85fr repeat(3, 1fr);
}

.audience-intro,
.audience-item {
  min-height: 145px;
  padding: 1.6rem;
  border-right: 1px solid rgba(255, 255, 255, .24);
}

.audience-intro {
  display: flex;
  align-items: center;
  font-family: "Arial Narrow", Arial, sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -.03em;
  line-height: 1.05;
}

.audience-item:last-child {
  border-right: 0;
}

.audience-item span {
  display: block;
  margin-bottom: 1.4rem;
  color: #ffd8c7;
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .12em;
}

.audience-item a {
  font-size: 1.02rem;
  font-weight: 800;
}

.section {
  padding-block: clamp(4.5rem, 9vw, 8.5rem);
}

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

.section-dark {
  background: var(--ink);
  color: #fff;
}

.section-heading {
  max-width: 850px;
  margin-bottom: clamp(2.5rem, 5vw, 4.5rem);
}

.section-heading p:last-child {
  max-width: 700px;
  color: #655f57;
  font-size: 1.08rem;
}

.section-dark .section-heading p:last-child {
  color: #c9c3b9;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1rem;
}

.service-card {
  grid-column: span 4;
  min-height: 350px;
  display: flex;
  flex-direction: column;
  padding: 1.7rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--plaster);
}

.service-card:nth-child(4),
.service-card:nth-child(5) {
  grid-column: span 6;
}

.service-number {
  width: 2.5rem;
  height: 2.5rem;
  display: grid;
  place-items: center;
  margin-bottom: 3.5rem;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--rust);
  font-size: .72rem;
  font-weight: 900;
}

.service-card h3 {
  max-width: 310px;
  margin-bottom: .75rem;
}

.service-card p {
  color: #615b54;
}

.text-link {
  margin-top: auto;
  color: var(--rust);
  font-size: .75rem;
  font-weight: 900;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.process-grid {
  display: grid;
  grid-template-columns: .72fr 1.28fr;
  gap: clamp(2rem, 7vw, 7rem);
  align-items: start;
}

.sticky-copy {
  position: sticky;
  top: 2rem;
}

.project-stack {
  display: grid;
  gap: 1.2rem;
}

.project-card {
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--ink-soft);
}

.project-card img {
  width: 100%;
  aspect-ratio: 1.55;
  object-fit: cover;
}

.project-caption {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.2rem 1.35rem 1.35rem;
}

.project-caption strong {
  font-family: "Arial Narrow", Arial, sans-serif;
  font-size: 1.3rem;
  letter-spacing: -.03em;
}

.project-caption span {
  color: #bdb6ab;
  font-size: .78rem;
  text-align: right;
}

.concept-note {
  margin-top: 1rem;
  padding: 1rem 1.1rem;
  border-left: 3px solid var(--rust-bright);
  color: #c9c3b9;
  font-size: .86rem;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2.5rem, 7vw, 7rem);
  align-items: center;
}

.about-panel {
  position: relative;
  min-height: 500px;
  display: grid;
  place-items: center;
  padding: 2.5rem;
  border-radius: 180px 180px 24px 24px;
  background: var(--joint);
  overflow: hidden;
}

.about-panel::before,
.about-panel::after {
  content: "";
  position: absolute;
  border-radius: 50%;
}

.about-panel::before {
  width: 340px;
  height: 340px;
  border: 44px solid var(--paper);
}

.about-panel::after {
  width: 170px;
  height: 170px;
  background: var(--rust);
}

.about-panel p {
  position: relative;
  z-index: 1;
  max-width: 250px;
  margin: 0;
  color: #fff;
  font-family: "Arial Narrow", Arial, sans-serif;
  font-size: 1.55rem;
  font-weight: 800;
  letter-spacing: -.035em;
  line-height: 1.05;
  text-align: center;
}

.about-copy p:not(.eyebrow) {
  max-width: 620px;
  color: #5e5851;
  font-size: 1.07rem;
}

.service-area {
  padding-block: clamp(3rem, 6vw, 5rem);
  background: var(--sage);
}

.area-grid {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 2rem;
  align-items: center;
}

.area-label {
  font-size: .75rem;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.area-name {
  margin: 0;
  font-family: "Arial Narrow", Arial, sans-serif;
  font-size: clamp(2.2rem, 5.4vw, 5.3rem);
  font-weight: 800;
  letter-spacing: -.055em;
  line-height: .93;
}

.questions-grid {
  display: grid;
  grid-template-columns: .7fr 1.3fr;
  gap: clamp(2rem, 7vw, 7rem);
}

.questions-list {
  border-top: 1px solid var(--line);
}

.questions-list details {
  border-bottom: 1px solid var(--line);
}

.questions-list summary {
  padding: 1.25rem 2.4rem 1.25rem 0;
  cursor: pointer;
  font-family: "Arial Narrow", Arial, sans-serif;
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: -.025em;
}

.questions-list p {
  max-width: 680px;
  padding: 0 2rem .4rem 0;
  color: #615b54;
}

.contact-band {
  background: var(--rust);
  color: #fff;
}

.contact-band-grid {
  min-height: 390px;
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  gap: 2rem;
  align-items: center;
  padding-block: 4rem;
}

.contact-band h2 {
  max-width: 760px;
  margin-bottom: 0;
}

.contact-actions {
  display: grid;
  gap: .7rem;
}

.contact-actions .button {
  width: 100%;
  border-color: #fff;
}

.contact-actions .button:first-child {
  background: #fff;
  color: var(--ink);
}

.site-footer {
  background: var(--ink);
  color: #fff;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr .8fr .8fr;
  gap: 2.5rem;
  padding-block: 4rem 3rem;
}

.footer-brand {
  max-width: 390px;
  font-family: "Arial Narrow", Arial, sans-serif;
  font-size: 1.7rem;
  font-weight: 800;
  letter-spacing: -.035em;
  line-height: 1.08;
}

.footer-label {
  margin-bottom: .9rem;
  color: #f09a70;
  font-size: .69rem;
  font-weight: 900;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.footer-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-list li + li {
  margin-top: .42rem;
}

.footer-list a,
.footer-list span {
  color: #c9c3b9;
  font-size: .88rem;
  overflow-wrap: anywhere;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-block: 1.1rem;
  border-top: 1px solid rgba(255, 255, 255, .14);
  color: #999289;
  font-size: .72rem;
}

.subhero {
  position: relative;
  padding-block: clamp(4.5rem, 9vw, 8rem);
  background: var(--ink);
  color: #fff;
  overflow: hidden;
}

.subhero::after {
  content: "";
  position: absolute;
  top: -100px;
  right: -80px;
  width: 420px;
  height: 420px;
  border: 58px solid rgba(184, 92, 50, .26);
  border-radius: 50%;
}

.subhero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.15fr .55fr;
  gap: 3rem;
  align-items: end;
}

.subhero h1 {
  max-width: 920px;
  font-size: clamp(3.2rem, 7vw, 7rem);
}

.subhero-aside {
  padding: 1.4rem;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 18px;
  color: #cec8bf;
}

.subhero-aside strong {
  display: block;
  margin-bottom: .35rem;
  color: #fff;
}

.service-detail-grid {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: clamp(2rem, 7vw, 7rem);
}

.service-detail-intro {
  position: sticky;
  top: 2rem;
  align-self: start;
}

.service-detail-intro p:not(.eyebrow) {
  color: #615b54;
  font-size: 1.08rem;
}

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

.work-item {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 1rem;
  padding-block: 1.5rem;
  border-bottom: 1px solid var(--line);
}

.work-item span {
  color: var(--rust);
  font-size: .72rem;
  font-weight: 900;
}

.work-item h3 {
  margin-bottom: .45rem;
}

.work-item p {
  max-width: 650px;
  margin-bottom: 0;
  color: #615b54;
}

.route-panel {
  padding: clamp(2rem, 5vw, 4rem);
  border-radius: var(--radius);
  background: var(--joint);
}

.route-panel h2 {
  max-width: 820px;
}

.route-options {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: .8rem;
  margin-top: 2rem;
}

.route-option {
  min-height: 170px;
  padding: 1.25rem;
  border: 1px solid rgba(23, 23, 23, .18);
  border-radius: 16px;
  background: rgba(255, 255, 255, .42);
}

.route-option strong {
  display: block;
  margin-bottom: .6rem;
  font-family: "Arial Narrow", Arial, sans-serif;
  font-size: 1.2rem;
}

.route-option p {
  margin-bottom: 0;
  color: #615b54;
  font-size: .9rem;
}

.projects-intro {
  display: grid;
  grid-template-columns: 1fr .8fr;
  gap: clamp(2rem, 7vw, 7rem);
  align-items: end;
}

.projects-intro p:last-child {
  color: #615b54;
  font-size: 1.08rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1rem;
  margin-top: 3.5rem;
}

.gallery-card {
  grid-column: span 6;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
}

.gallery-card:first-child {
  grid-column: span 7;
}

.gallery-card:nth-child(2) {
  grid-column: span 5;
}

.gallery-card img {
  width: 100%;
  aspect-ratio: 1.48;
  object-fit: cover;
}

.gallery-copy {
  padding: 1.35rem;
}

.gallery-copy h2 {
  margin-bottom: .55rem;
  font-size: clamp(1.55rem, 2.8vw, 2.35rem);
}

.gallery-copy p {
  margin-bottom: .55rem;
  color: #615b54;
}

.gallery-meta {
  color: var(--rust);
  font-size: .7rem;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.project-index {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: .8rem;
}

.index-card {
  padding: 1.25rem;
  border-top: 3px solid var(--rust);
  background: rgba(255, 255, 255, .08);
}

.index-card strong,
.index-card span {
  display: block;
}

.index-card strong {
  margin-bottom: .35rem;
  font-family: "Arial Narrow", Arial, sans-serif;
  font-size: 1.25rem;
}

.index-card span {
  color: #beb7ad;
  font-size: .85rem;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.contact-card,
.prep-card {
  min-height: 500px;
  padding: clamp(1.7rem, 5vw, 3.7rem);
  border-radius: var(--radius);
}

.contact-card {
  background: var(--rust);
  color: #fff;
}

.prep-card {
  background: var(--joint);
}

.contact-card h2,
.prep-card h2 {
  font-size: clamp(2rem, 4vw, 3.7rem);
}

.contact-methods {
  margin: 2.2rem 0 0;
  padding: 0;
  list-style: none;
}

.contact-methods li {
  padding-block: 1rem;
  border-top: 1px solid rgba(255, 255, 255, .25);
}

.contact-methods span,
.contact-methods a {
  display: block;
}

.contact-methods span {
  margin-bottom: .2rem;
  color: #ffd5c2;
  font-size: .7rem;
  font-weight: 900;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.contact-methods a {
  font-family: "Arial Narrow", Arial, sans-serif;
  font-size: clamp(1.1rem, 2.2vw, 1.55rem);
  font-weight: 800;
  overflow-wrap: anywhere;
}

.prep-list {
  margin: 2rem 0 0;
  padding: 0;
  counter-reset: prep;
  list-style: none;
}

.prep-list li {
  position: relative;
  padding: 1.05rem 0 1.05rem 3rem;
  border-top: 1px solid rgba(23, 23, 23, .17);
  counter-increment: prep;
}

.prep-list li::before {
  content: counter(prep, decimal-leading-zero);
  position: absolute;
  top: 1.15rem;
  left: 0;
  color: var(--rust);
  font-size: .7rem;
  font-weight: 900;
}

.legal-note {
  margin-top: 1.5rem;
  padding: 1rem;
  border: 1px solid rgba(23, 23, 23, .17);
  border-radius: 12px;
  color: #615b54;
  font-size: .84rem;
}

@media (max-width: 1080px) {
  .header-inner {
    flex-wrap: wrap;
    padding-block: .75rem;
  }

  .js .header-inner {
    flex-wrap: nowrap;
    padding-block: 0;
  }

  .js .menu-toggle {
    display: inline-flex;
  }

  .site-nav {
    width: 100%;
    display: block;
  }

  .js .site-nav {
    position: absolute;
    top: 100%;
    left: 0;
    padding: 1rem;
    background: var(--ink);
    border-top: 1px solid rgba(255, 255, 255, .12);
  }

  .js .site-nav[data-open="false"] {
    display: none;
  }

  .nav-list {
    width: min(100%, var(--max));
    margin-inline: auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: .3rem;
  }

  .nav-list a {
    padding: .85rem;
    background: rgba(255, 255, 255, .04);
  }

  .nav-list .nav-cta {
    margin-left: 0;
    border-radius: .4rem;
  }

  .hero-grid {
    min-height: 0;
    grid-template-columns: 1fr 360px;
    gap: 3rem;
  }

  .service-card {
    grid-column: span 6;
  }

  .service-card:nth-child(5) {
    grid-column: span 12;
  }
}

@media (max-width: 780px) {
  .header-inner {
    min-height: 74px;
  }

  .brand-name {
    max-width: 210px;
    font-size: .7rem;
  }

  .brand-mark {
    flex-basis: 38px;
    width: 38px;
    height: 38px;
  }

  .hero-grid,
  .subhero-inner,
  .process-grid,
  .about-grid,
  .area-grid,
  .questions-grid,
  .service-detail-grid,
  .projects-intro,
  .contact-band-grid,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    padding-top: 4rem;
  }

  .hero-copy {
    order: 1;
  }

  .hero-visual {
    order: 2;
    width: min(100%, 430px);
    margin-inline: auto;
  }

  .location-chip {
    left: .8rem;
    bottom: .8rem;
  }

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

  .audience-intro,
  .audience-item {
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, .24);
  }

  .audience-item span {
    margin-bottom: .45rem;
  }

  .sticky-copy,
  .service-detail-intro {
    position: static;
  }

  .about-panel {
    min-height: 400px;
  }

  .contact-band-grid {
    min-height: 0;
  }

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

  .footer-grid > :first-child {
    grid-column: 1 / -1;
  }

  .subhero-aside {
    max-width: 520px;
  }

  .route-options,
  .project-index {
    grid-template-columns: 1fr;
  }

  .gallery-card,
  .gallery-card:first-child,
  .gallery-card:nth-child(2) {
    grid-column: span 12;
  }
}

@media (max-width: 540px) {
  .shell,
  .header-inner {
    width: min(calc(100% - 1.25rem), var(--max));
  }

  .brand-name {
    max-width: 165px;
  }

  .nav-list {
    grid-template-columns: 1fr;
    max-height: calc(100vh - 126px);
    overflow-y: auto;
  }

  h1 {
    font-size: clamp(2.7rem, 14vw, 4.3rem);
  }

  .hero-grid {
    gap: 2.5rem;
  }

  .button-row,
  .button {
    width: 100%;
  }

  .location-chip {
    position: static;
    max-width: none;
    border-radius: 0 0 16px 16px;
    box-shadow: none;
  }

  .hero-art {
    border-radius: 100px 100px 0 0;
  }

  .service-card,
  .service-card:nth-child(4),
  .service-card:nth-child(5) {
    grid-column: span 12;
    min-height: 310px;
  }

  .project-caption,
  .footer-bottom {
    flex-direction: column;
  }

  .project-caption span {
    text-align: left;
  }

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

  .footer-grid > :first-child {
    grid-column: auto;
  }

  .work-item {
    grid-template-columns: 40px 1fr;
  }

  .contact-card,
  .prep-card {
    min-height: 0;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}
