@font-face {
  font-family: 'Cinzel';
  src: url('assets/fonts/Cinzel-Regular.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Cinzel';
  src: url('assets/fonts/Cinzel-SemiBold.otf') format('opentype');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Cinzel';
  src: url('assets/fonts/Cinzel-Bold.otf') format('opentype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --primary: oklch(0.35 0.077 160);
  --primary-dark: oklch(0.22 0.045 160);
  --primary-light: oklch(0.91 0.025 160);
  --accent: oklch(0.47 0.15 28);
  --accent-dark: oklch(0.39 0.13 28);
  --bg: oklch(0.985 0 0);
  --surface: oklch(0.945 0.008 160);
  --ink: oklch(0.18 0.018 160);
  --muted: oklch(0.39 0.025 160);
  --rule: oklch(0.79 0.015 160);
  --white: oklch(0.985 0 0);
  --display: 'Cinzel', Georgia, serif;
  --body: 'Avenir Next', 'Segoe UI', sans-serif;
  --shadow-sm: 0 4px 8px oklch(0.12 0.02 160 / 0.12);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --header-height: 5rem;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 1.5rem);
}

body {
  margin: 0;
  overflow-x: clip;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--body);
  font-size: 1rem;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.22em;
}

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

button:focus-visible,
a:focus-visible,
summary:focus-visible {
  outline: 3px solid oklch(0.77 0.14 75);
  outline-offset: 3px;
}

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

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

p {
  text-wrap: pretty;
}

svg {
  width: 1.2em;
  height: 1.2em;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 50;
  padding: 0.8rem 1rem;
  background: var(--white);
  color: var(--primary-dark);
  transform: translateY(-150%);
}

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

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

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

.utility-bar {
  background: var(--primary-dark);
  color: var(--white);
  font-size: 0.78rem;
}

.utility-inner {
  min-height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.utility-inner p {
  margin: 0;
}

.utility-inner a {
  display: none;
  align-items: center;
  gap: 0.45rem;
  min-height: 2.5rem;
  font-weight: 700;
  text-decoration: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  min-height: var(--header-height);
  background: oklch(0.985 0 0 / 0.96);
  border-bottom: 1px solid var(--rule);
  backdrop-filter: blur(12px);
}

.header-inner {
  min-height: var(--header-height);
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 1rem;
}

.wordmark {
  display: inline-flex;
  align-items: baseline;
  gap: 0.45rem;
  width: fit-content;
  color: var(--primary-dark);
  font-family: var(--display);
  font-weight: 600;
  line-height: 1;
  text-decoration: none;
}

.wordmark span {
  font-size: clamp(1rem, 4.5vw, 1.45rem);
  letter-spacing: -0.025em;
}

.wordmark small {
  font-size: 0.62rem;
  letter-spacing: 0.08em;
}

.menu-toggle {
  width: 3rem;
  height: 3rem;
  display: grid;
  place-items: center;
  border: 0;
  background: transparent;
  color: var(--primary-dark);
  cursor: pointer;
}

.menu-toggle svg {
  width: 1.6rem;
  height: 1.6rem;
}

.site-nav {
  position: fixed;
  inset: calc(2.5rem + var(--header-height)) 0 0;
  display: grid;
  align-content: start;
  gap: 0;
  padding: 1.5rem 1rem;
  background: var(--bg);
  transform: translateX(100%);
  transition: transform 320ms var(--ease);
}

.site-nav[data-open='true'] {
  transform: translateX(0);
}

.site-nav a {
  display: flex;
  align-items: center;
  min-height: 4rem;
  border-bottom: 1px solid var(--rule);
  color: var(--primary-dark);
  font-family: var(--display);
  font-size: 1.35rem;
  font-weight: 600;
  text-decoration: none;
}

.header-call {
  display: none !important;
}

.button {
  min-height: 3rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  width: fit-content;
  padding: 0.8rem 1.1rem;
  border: 0;
  border-radius: 0.2rem;
  font-weight: 750;
  line-height: 1.2;
  text-decoration: none;
  transition: background-color 180ms ease, transform 180ms var(--ease);
}

.button-call {
  background: var(--accent);
  color: var(--white);
}

.button-large {
  min-height: 3.65rem;
  padding-inline: 1.35rem;
}

.button-light {
  background: var(--white);
  color: var(--primary-dark);
}

.hero {
  overflow: hidden;
  background: var(--surface);
}

.hero-grid {
  display: grid;
}

.hero-copy {
  position: relative;
  z-index: 2;
  padding-block: clamp(3.75rem, 10vw, 7rem);
  animation: enter-copy 750ms var(--ease) both;
}

.hero-location,
.section-mark {
  margin-bottom: 1.25rem;
  color: var(--accent-dark);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 12ch;
  margin-bottom: 1.5rem;
  color: var(--primary-dark);
  font-family: var(--display);
  font-size: clamp(2.45rem, 10vw, 5.45rem);
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 1.02;
}

.hero-lead {
  max-width: 39rem;
  margin-bottom: 2rem;
  color: var(--muted);
  font-size: clamp(1.05rem, 2.5vw, 1.35rem);
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 1.15rem;
}

.text-link {
  min-height: 2.75rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--accent-dark);
  font-weight: 750;
}

.text-link span {
  font-size: 1.2em;
}

.text-link-dark {
  color: var(--primary-dark);
}

.call-note {
  max-width: 30rem;
  margin: 1rem 0 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.hero-portrait {
  position: relative;
  min-height: 30rem;
  margin: 0 -1rem;
  overflow: hidden;
  animation: enter-image 900ms 80ms var(--ease) both;
}

.hero-portrait::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 65%, oklch(0.12 0.02 160 / 0.64));
  pointer-events: none;
}

.hero-portrait img {
  width: 100%;
  height: 100%;
  min-height: 30rem;
  object-fit: cover;
  object-position: 59% center;
}

.hero-portrait figcaption {
  position: absolute;
  z-index: 2;
  right: 1.25rem;
  bottom: 1.25rem;
  left: 1.25rem;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  color: var(--white);
}

.hero-portrait figcaption strong {
  font-family: var(--display);
  font-size: 1.15rem;
}

.hero-portrait figcaption span {
  font-size: 0.82rem;
  text-align: right;
}

.proof-band {
  border-block: 1px solid var(--rule);
  background: var(--bg);
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

.proof-grid p {
  min-height: 7rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin: 0;
  padding: 1rem;
  border-bottom: 1px solid var(--rule);
}

.proof-grid p:nth-child(odd) {
  border-right: 1px solid var(--rule);
}

.proof-grid strong {
  color: var(--primary-dark);
  font-family: var(--display);
  font-size: clamp(0.95rem, 3vw, 1.2rem);
  line-height: 1.25;
}

.proof-grid span {
  margin-top: 0.35rem;
  color: var(--muted);
  font-size: 0.78rem;
}

.story {
  background: var(--primary);
  color: var(--white);
}

.story-grid {
  display: grid;
  gap: 2.5rem;
}

.story .section-mark {
  color: oklch(0.85 0.11 65);
}

.story h2,
.section-intro h2,
.work-heading h2,
.process h2,
.service-area h2,
.faq h2,
.contact h2 {
  margin-bottom: 1.25rem;
  font-family: var(--display);
  font-size: clamp(2rem, 6.5vw, 3.8rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.08;
}

.story-copy {
  max-width: 44rem;
}

.story-copy p {
  color: oklch(0.9 0.02 160);
}

.story-copy .lead-copy {
  color: var(--white);
  font-size: clamp(1.2rem, 3vw, 1.55rem);
  line-height: 1.5;
}

.story .text-link-dark {
  color: var(--white);
}

.section-intro {
  max-width: 58rem;
  margin-bottom: clamp(2.5rem, 6vw, 5rem);
}

.section-intro h2 {
  color: var(--primary-dark);
}

.section-intro p,
.work-heading p,
.process-title-wrap p,
.faq-heading p {
  max-width: 44rem;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1.1rem;
}

.services-layout {
  display: grid;
  gap: 2.5rem;
}

.service-feature {
  margin: 0;
  background: var(--primary-dark);
  color: var(--white);
  overflow: hidden;
}

.service-feature img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.service-feature > div {
  padding: 1.5rem;
}

.service-feature h3,
.service-list h3 {
  margin-bottom: 0.45rem;
  font-family: var(--display);
  font-size: clamp(1.3rem, 3vw, 1.8rem);
  line-height: 1.2;
}

.service-feature p {
  margin: 0;
  color: oklch(0.87 0.02 160);
}

.service-list {
  border-top: 1px solid var(--rule);
}

.service-list article {
  display: grid;
  grid-template-columns: 2.5rem 1fr;
  gap: 1rem;
  padding-block: 1.5rem;
  border-bottom: 1px solid var(--rule);
}

.service-list article > span {
  color: var(--accent-dark);
  font-size: 0.8rem;
  font-weight: 800;
}

.service-list h3 {
  margin-bottom: 0.4rem;
  color: var(--primary-dark);
  font-size: 1.25rem;
}

.service-list p {
  max-width: 38rem;
  margin: 0;
  color: var(--muted);
}

.callout {
  padding-block: clamp(3.5rem, 7vw, 6.5rem);
  background: var(--accent);
  color: var(--white);
}

.callout-grid {
  display: grid;
  gap: 2rem;
}

.callout p:first-child {
  margin-bottom: 0.75rem;
  font-weight: 750;
}

.callout h2 {
  max-width: 18ch;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(2rem, 7vw, 4.35rem);
  line-height: 1.06;
}

.callout-action p {
  max-width: 28rem;
  margin: 1rem 0 0;
  color: oklch(0.92 0.025 28);
  font-size: 0.92rem;
}

.work {
  background: var(--surface);
}

.work-heading {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 2.5rem;
}

.work-heading h2 {
  margin: 0;
  color: var(--primary-dark);
}

.work-grid {
  display: grid;
  gap: 1rem;
}

.work-grid figure {
  position: relative;
  min-height: 21rem;
  margin: 0;
  overflow: hidden;
  background: var(--primary-dark);
}

.work-grid img {
  width: 100%;
  height: 100%;
  min-height: 21rem;
  object-fit: cover;
  transition: transform 600ms var(--ease);
}

.work-grid figcaption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.1rem;
  background: oklch(0.12 0.025 160 / 0.9);
  color: var(--white);
}

.work-grid figcaption strong {
  font-family: var(--display);
}

.work-grid figcaption span {
  color: oklch(0.83 0.02 160);
  font-size: 0.78rem;
}

.process-grid {
  display: grid;
  gap: 3rem;
}

.process h2 {
  color: var(--primary-dark);
}

.process ol {
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--rule);
  list-style: none;
}

.process li {
  display: grid;
  grid-template-columns: 3rem 1fr;
  gap: 1rem;
  padding-block: 1.5rem;
  border-bottom: 1px solid var(--rule);
}

.process li > span {
  display: grid;
  place-items: center;
  width: 2.35rem;
  height: 2.35rem;
  border-radius: 50%;
  background: var(--primary);
  color: var(--white);
  font-family: var(--display);
  font-weight: 700;
}

.process h3 {
  margin-bottom: 0.3rem;
  color: var(--primary-dark);
  font-family: var(--display);
  font-size: 1.35rem;
}

.process li p {
  max-width: 38rem;
  margin: 0;
  color: var(--muted);
}

.service-area {
  background: var(--primary-dark);
  color: var(--white);
}

.area-grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}

.area-visual {
  position: relative;
  min-height: 22rem;
  overflow: hidden;
  border: 1px solid oklch(0.65 0.04 160);
  background: radial-gradient(circle at 68% 40%, oklch(0.4 0.07 160), var(--primary-dark) 52%);
}

.area-ring {
  position: absolute;
  border: 1px solid oklch(0.78 0.04 160 / 0.7);
  border-radius: 50%;
}

.area-ring-one {
  width: 18rem;
  height: 18rem;
  top: 4rem;
  left: 4rem;
}

.area-ring-two {
  width: 28rem;
  height: 28rem;
  top: -1rem;
  left: -1rem;
}

.area-point {
  position: absolute;
  z-index: 2;
  padding-left: 1.15rem;
  font-weight: 750;
}

.area-point::before {
  content: '';
  position: absolute;
  top: 0.45em;
  left: 0;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: oklch(0.78 0.16 65);
  box-shadow: 0 0 0 0.35rem oklch(0.78 0.16 65 / 0.18);
}

.area-prosser {
  top: 62%;
  left: 21%;
}

.area-tricities {
  top: 35%;
  left: 64%;
}

.service-area .section-mark {
  color: oklch(0.85 0.11 65);
}

.service-area h2 {
  color: var(--white);
}

.service-area p:not(.section-mark) {
  max-width: 40rem;
  color: oklch(0.86 0.02 160);
}

.service-area .area-note {
  color: var(--white) !important;
  font-weight: 750;
}

.faq-grid {
  display: grid;
  gap: 3rem;
}

.faq-heading h2 {
  color: var(--primary-dark);
}

.faq-list {
  border-top: 1px solid var(--rule);
}

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

.faq-list summary {
  position: relative;
  min-height: 4.5rem;
  display: flex;
  align-items: center;
  padding: 1.25rem 3rem 1.25rem 0;
  color: var(--primary-dark);
  font-family: var(--display);
  font-size: 1.05rem;
  font-weight: 600;
  line-height: 1.35;
  cursor: pointer;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: '+';
  position: absolute;
  right: 0.25rem;
  color: var(--accent-dark);
  font-family: var(--body);
  font-size: 1.8rem;
  font-weight: 400;
  transition: transform 220ms var(--ease);
}

.faq-list details[open] summary::after {
  transform: rotate(45deg);
}

.faq-list details p {
  max-width: 43rem;
  margin: -0.35rem 0 1.5rem;
  padding-right: 1rem;
  color: var(--muted);
}

.contact {
  padding-block: clamp(4rem, 9vw, 8rem);
  background: var(--accent);
  color: var(--white);
}

.contact-grid {
  display: grid;
  gap: 2.5rem;
}

.contact > .shell > div:first-child > p {
  margin-bottom: 0.75rem;
  font-weight: 750;
}

.contact h2 {
  max-width: 16ch;
  margin: 0;
}

.contact-phone {
  display: flex;
  flex-direction: column;
  width: fit-content;
  color: var(--white);
  text-decoration: none;
}

.contact-phone span {
  font-size: 0.9rem;
}

.contact-phone strong {
  font-family: var(--display);
  font-size: clamp(2rem, 9vw, 4.3rem);
  line-height: 1.15;
}

.contact-actions > p {
  margin: 2rem 0 0.35rem;
  color: oklch(0.92 0.025 28);
}

.contact-email {
  color: var(--white);
  font-weight: 750;
  overflow-wrap: anywhere;
}

.site-footer {
  padding: 4rem 0 7rem;
  background: var(--primary-dark);
  color: oklch(0.86 0.02 160);
}

.footer-grid {
  display: grid;
  gap: 3rem;
}

.wordmark-footer {
  color: var(--white);
}

.footer-grid > div:first-child p {
  max-width: 32rem;
  margin-top: 1.25rem;
}

.footer-grid h2 {
  margin-bottom: 1rem;
  color: var(--white);
  font-family: var(--display);
  font-size: 1rem;
}

.footer-grid > div:not(:first-child) {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.6rem;
}

.footer-grid a {
  color: inherit;
}

.footer-grid address {
  margin-top: 0.75rem;
  font-style: normal;
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  margin-top: 3.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid oklch(0.48 0.035 160);
  color: oklch(0.72 0.02 160);
  font-size: 0.78rem;
}

.footer-bottom p {
  margin: 0;
}

.mobile-call-bar {
  position: fixed;
  z-index: 30;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 0.65rem max(1rem, env(safe-area-inset-right)) max(0.65rem, env(safe-area-inset-bottom)) max(1rem, env(safe-area-inset-left));
  background: var(--accent);
  color: var(--white);
  box-shadow: 0 -4px 8px oklch(0.12 0.02 160 / 0.18);
}

.mobile-call-bar a {
  min-height: 3.25rem;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 0.65rem;
  color: inherit;
  text-decoration: none;
}

.mobile-call-bar span {
  font-weight: 800;
}

.mobile-call-bar strong {
  font-variant-numeric: tabular-nums;
}

@keyframes enter-copy {
  from { opacity: 0; transform: translateY(1rem); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes enter-image {
  from { opacity: 0; clip-path: inset(0 0 100% 0); }
  to { opacity: 1; clip-path: inset(0); }
}

@media (min-width: 40rem) {
  .shell {
    width: min(100% - 3rem, 86rem);
  }

  .utility-inner {
    justify-content: space-between;
  }

  .utility-inner a {
    display: inline-flex;
  }

  .hero-actions {
    flex-direction: row;
    align-items: center;
  }

  .hero-portrait {
    margin-inline: -1.5rem;
  }

  .proof-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .proof-grid p {
    border-bottom: 0;
    border-right: 1px solid var(--rule);
  }

  .proof-grid p:last-child {
    border-right: 0;
  }

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

  .work-wide {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}

@media (min-width: 56rem) {
  .menu-toggle {
    display: none;
  }

  body.menu-open {
    overflow: auto;
  }

  .header-inner {
    grid-template-columns: auto 1fr auto;
  }

  .site-nav {
    position: static;
    inset: auto;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: clamp(1.25rem, 3vw, 2.5rem);
    padding: 0;
    background: transparent;
    transform: none;
    transition: none;
  }

  .site-nav a {
    min-height: 2.75rem;
    border: 0;
    font-family: var(--body);
    font-size: 0.95rem;
    font-weight: 650;
  }

  .header-call {
    display: inline-flex !important;
  }

  .hero-grid {
    min-height: min(52rem, calc(100svh - 7.5rem));
    grid-template-columns: minmax(0, 0.96fr) minmax(28rem, 1.04fr);
    align-items: stretch;
  }

  .hero-copy {
    align-self: center;
    padding-right: clamp(2.5rem, 5vw, 6rem);
  }

  .hero-portrait {
    min-height: auto;
    margin: 0 calc((100vw - min(100vw - 3rem, 86rem)) / -2) 0 0;
  }

  .hero-portrait img {
    position: absolute;
    inset: 0;
    min-height: 100%;
  }

  .story-grid,
  .faq-grid {
    grid-template-columns: minmax(0, 0.92fr) minmax(30rem, 1.08fr);
    gap: clamp(4rem, 9vw, 9rem);
  }

  .services-layout {
    grid-template-columns: minmax(0, 1.15fr) minmax(24rem, 0.85fr);
    align-items: stretch;
  }

  .service-feature img {
    aspect-ratio: 16 / 10;
  }

  .callout-grid,
  .contact-grid {
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
    gap: 5rem;
  }

  .work-heading {
    flex-direction: row;
    justify-content: space-between;
    align-items: end;
  }

  .work-heading p {
    max-width: 24rem;
  }

  .work-grid {
    grid-template-columns: repeat(12, minmax(0, 1fr));
    grid-auto-rows: 15rem;
  }

  .work-grid figure {
    min-height: 0;
  }

  .work-grid img {
    min-height: 0;
  }

  .work-grid figure:nth-child(1) { grid-column: span 7; grid-row: span 2; }
  .work-grid figure:nth-child(2) { grid-column: span 5; grid-row: span 2; }
  .work-grid figure:nth-child(3) { grid-column: span 4; grid-row: span 2; }
  .work-grid figure:nth-child(4) { grid-column: span 4; grid-row: span 2; }
  .work-grid figure:nth-child(5) { grid-column: span 4; grid-row: span 2; }

  .process-grid {
    grid-template-columns: 0.8fr 1.2fr;
    gap: clamp(4rem, 9vw, 8rem);
  }

  .area-grid {
    grid-template-columns: 0.95fr 1.05fr;
    gap: clamp(4rem, 8vw, 8rem);
  }

  .area-visual {
    min-height: 34rem;
  }

  .footer-grid {
    grid-template-columns: minmax(22rem, 2fr) 1fr 0.7fr;
    gap: 4rem;
  }

  .site-footer {
    padding-bottom: 3rem;
  }

  .mobile-call-bar {
    display: none;
  }
}

@media (min-width: 72rem) {
  .header-inner {
    gap: 2.5rem;
  }

  .wordmark span {
    font-size: 1.65rem;
  }

  .wordmark small {
    font-size: 0.7rem;
  }
}

@media (hover: hover) and (pointer: fine) {
  .button:hover {
    transform: translateY(-2px);
  }

  .button-call:hover {
    background: var(--accent-dark);
  }

  .button-light:hover {
    background: var(--primary-light);
  }

  .site-nav a:hover,
  .text-link:hover,
  .footer-grid a:hover {
    text-decoration-thickness: 0.12em;
  }

  .work-grid figure:hover img {
    transform: scale(1.025);
  }
}

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

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

@media print {
  .utility-bar,
  .site-header,
  .mobile-call-bar,
  .hero-actions,
  .callout,
  .contact {
    display: none !important;
  }

  body {
    background: white;
    color: black;
  }

  .section {
    padding-block: 2rem;
  }
}
