@font-face {
  font-family: "Source Sans 3";
  src: url("assets/fonts/source-sans-3-latin-ext.woff2") format("woff2");
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
  font-family: "Source Sans 3";
  src: url("assets/fonts/source-sans-3-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: "Source Serif 4";
  src: url("assets/fonts/source-serif-4-latin-ext.woff2") format("woff2");
  font-style: normal;
  font-weight: 600 700;
  font-display: swap;
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
  font-family: "Source Serif 4";
  src: url("assets/fonts/source-serif-4-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 600 700;
  font-display: swap;
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
  --paper: #f4f1ea;
  --paper-deep: #e8e2d8;
  --white: #fff;
  --ink: #17273c;
  --ink-soft: #445664;
  --muted: #59676f;
  --line: #d4cec3;
  --teal: #0f6e8f;
  --teal-dark: #094e67;
  --copper: #7b531d;
  --section-space: clamp(5rem, 9vw, 9rem);
  --gutter: clamp(1.25rem, 4vw, 4.5rem);
  --max-width: 88rem;
  --serif: "Source Serif 4", Georgia, serif;
  --sans: "Source Sans 3", "Segoe UI", sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 1rem;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

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

img {
  height: auto;
}

a {
  color: inherit;
  text-underline-offset: 0.18em;
}

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

button,
input,
textarea,
select {
  font: inherit;
}

:focus-visible {
  outline: 3px solid #f2b960;
  outline-offset: 4px;
}

::selection {
  color: var(--white);
  background: var(--teal-dark);
}

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

blockquote {
  margin-right: 0;
  margin-left: 0;
}

h1,
h2,
h3 {
  font-family: var(--serif);
  text-wrap: balance;
}

h1 {
  max-width: 10ch;
  margin-bottom: 1.5rem;
  font-size: clamp(3.25rem, 6.7vw, 7.3rem);
  font-weight: 600;
  line-height: 0.93;
  letter-spacing: -0.055em;
}

h2 {
  margin-bottom: 1.25rem;
  font-size: clamp(2.4rem, 4.7vw, 5.2rem);
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.045em;
}

h3 {
  margin-bottom: 0.55rem;
  font-size: clamp(1.5rem, 2.2vw, 2.15rem);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -0.025em;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 1rem;
  left: 1rem;
  padding: 0.75rem 1rem;
  color: var(--white);
  background: var(--ink);
  transform: translateY(-160%);
}

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

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  border-bottom: 1px solid transparent;
  background: color-mix(in srgb, var(--paper) 94%, transparent);
  backdrop-filter: blur(14px);
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled {
  border-color: var(--line);
  box-shadow: 0 8px 25px rgb(23 39 60 / 7%);
}

.header-inner {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  width: min(100%, var(--max-width));
  min-height: 5.2rem;
  margin-inline: auto;
  padding-inline: var(--gutter);
  gap: clamp(1rem, 3vw, 3rem);
}

.brand {
  display: inline-flex;
  align-items: center;
  width: max-content;
  color: var(--ink);
  text-decoration: none;
  gap: 0.7rem;
}

.brand img {
  width: 4.15rem;
  height: 4.15rem;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.brand-copy {
  display: grid;
  line-height: 1.05;
}

.brand-copy strong {
  font-family: var(--serif);
  font-size: 1.22rem;
  letter-spacing: -0.02em;
}

.brand-copy small {
  margin-top: 0.28rem;
  color: var(--muted);
  font-size: 0.67rem;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: clamp(0.85rem, 1.8vw, 1.7rem);
}

.site-nav a {
  position: relative;
  padding-block: 0.45rem;
  color: var(--ink-soft);
  font-size: 0.88rem;
  font-weight: 600;
  text-decoration: none;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 2px;
  background: var(--teal);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.site-nav a:hover,
.site-nav a[aria-current="true"] {
  color: var(--ink);
}

.site-nav a:hover::after,
.site-nav a[aria-current="true"]::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-call {
  display: grid;
  color: var(--ink);
  font-size: 0.75rem;
  line-height: 1.2;
  text-align: right;
  text-decoration: none;
}

.header-call span {
  color: var(--muted);
}

.header-call strong {
  margin-top: 0.2rem;
  font-size: 1rem;
}

.menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  min-width: 3.4rem;
  min-height: 3rem;
  padding: 0;
  border: 0;
  color: var(--ink);
  background: transparent;
  cursor: pointer;
}

.menu-toggle__label {
  font-weight: 700;
}

.menu-toggle__icon {
  display: grid;
  width: 1.35rem;
  margin-left: 0.65rem;
  gap: 0.35rem;
}

.menu-toggle__icon i {
  display: block;
  width: 100%;
  height: 2px;
  background: currentcolor;
  transition: transform 180ms ease;
}

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

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

.hero,
.section,
.approach,
.final-cta,
.site-footer {
  width: min(100%, var(--max-width));
  margin-inline: auto;
  padding-inline: var(--gutter);
}

section[id] {
  scroll-margin-top: 6.5rem;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(22rem, 0.96fr);
  min-height: calc(100svh - 5.2rem);
  padding-top: clamp(3.5rem, 8vw, 7rem);
  padding-bottom: clamp(4rem, 8vw, 7.5rem);
  gap: clamp(3rem, 6vw, 6rem);
}

.hero-copy {
  align-self: center;
}

.eyebrow {
  display: flex;
  align-items: center;
  margin-bottom: 1.4rem;
  color: var(--teal-dark);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  gap: 0.65rem;
}

.eyebrow > span {
  width: 1.65rem;
  height: 1px;
  background: currentcolor;
}

.hero-lede {
  max-width: 38rem;
  margin-bottom: 2rem;
  color: var(--ink-soft);
  font-size: clamp(1.1rem, 1.6vw, 1.35rem);
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 0;
  gap: 1rem 1.6rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.2rem;
  padding: 0.85rem 1.25rem;
  border: 1px solid transparent;
  border-radius: 0.15rem;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
  transition: background-color 180ms ease, color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.button svg {
  width: 1.15rem;
  margin-left: 1rem;
  fill: none;
  stroke: currentcolor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

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

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

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

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

.button--light:hover {
  color: var(--white);
  border-color: var(--white);
  background: transparent;
}

.text-link {
  display: inline-flex;
  align-items: center;
  font-weight: 600;
  text-decoration-thickness: 1px;
  gap: 0.45rem;
}

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

.text-link--strong {
  color: var(--teal-dark);
  font-weight: 700;
}

.hero-media {
  position: relative;
  align-self: center;
  margin: 0;
}

.hero-media::before {
  position: absolute;
  z-index: -1;
  top: -1.4rem;
  right: -1.4rem;
  width: 43%;
  height: 52%;
  border-top: 1px solid var(--copper);
  border-right: 1px solid var(--copper);
  content: "";
}

.hero-media img {
  width: 100%;
  aspect-ratio: 4 / 4.55;
  object-fit: cover;
  object-position: 53% center;
}

.hero-media figcaption {
  display: flex;
  justify-content: space-between;
  padding-top: 0.7rem;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

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

.section-heading {
  max-width: 47rem;
  margin-bottom: clamp(3rem, 6vw, 5rem);
}

.section-heading--wide {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(15rem, 0.5fr);
  max-width: none;
  column-gap: clamp(2rem, 7vw, 8rem);
}

.section-heading--wide .eyebrow {
  grid-column: 1 / -1;
}

.section-heading--wide h2 {
  margin-bottom: 0;
}

.section-heading > p:not(.eyebrow),
.practitioner-copy > p:not(.eyebrow, .credential-line),
.reviews-heading > p:not(.eyebrow),
.contact-copy > p:not(.eyebrow) {
  color: var(--ink-soft);
  font-size: 1.08rem;
}

.service-ledger {
  border-top: 1px solid var(--ink);
}

.service-row {
  display: grid;
  grid-template-columns: 5rem minmax(0, 1.35fr) minmax(16rem, 0.65fr);
  align-items: start;
  padding-block: clamp(2rem, 4vw, 3.4rem);
  border-bottom: 1px solid var(--line);
  gap: clamp(1.4rem, 4vw, 4rem);
}

.service-number {
  color: var(--copper);
  font-family: var(--serif);
  font-size: 1.05rem;
  font-weight: 700;
}

.service-row h3 {
  margin-bottom: 0.8rem;
}

.service-row > div p {
  max-width: 43rem;
  margin-bottom: 0;
  color: var(--ink-soft);
}

.service-row ul {
  display: flex;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
  list-style: none;
  gap: 0.55rem;
}

.service-row li {
  padding: 0.4rem 0.7rem;
  border: 1px solid var(--line);
  border-radius: 100vw;
  color: var(--ink-soft);
  font-size: 0.82rem;
  font-weight: 600;
}

.approach {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(25rem, 1.1fr);
  padding-top: clamp(4rem, 8vw, 7.5rem);
  padding-bottom: clamp(4rem, 8vw, 7.5rem);
  color: var(--white);
  background: var(--ink);
  gap: clamp(4rem, 8vw, 9rem);
}

.eyebrow--light {
  color: #89c7d5;
}

.approach-intro p:not(.eyebrow) {
  max-width: 34rem;
  margin-bottom: 2rem;
  color: #d6dee4;
  font-size: 1.08rem;
}

.process-list {
  margin: 0;
  padding: 0;
  border-top: 1px solid rgb(255 255 255 / 28%);
  list-style: none;
}

.process-list li {
  display: grid;
  grid-template-columns: 3.6rem 1fr;
  padding-block: 1.75rem;
  border-bottom: 1px solid rgb(255 255 255 / 22%);
  gap: 1.5rem;
}

.process-list > li > span {
  color: #d8b47b;
  font-family: var(--serif);
  font-weight: 700;
}

.process-list h3 {
  margin-bottom: 0.35rem;
  font-size: 1.55rem;
}

.process-list p {
  margin-bottom: 0;
  color: #c3ced5;
}

.practitioner {
  display: grid;
  grid-template-columns: minmax(18rem, 0.72fr) minmax(0, 1.28fr);
  align-items: center;
  gap: clamp(3rem, 8vw, 9rem);
}

.credential-visual {
  position: relative;
  display: grid;
  min-height: 31rem;
  padding: clamp(2rem, 5vw, 4.2rem);
  overflow: hidden;
  color: var(--white);
  background: var(--teal-dark);
}

.credential-visual::after {
  position: absolute;
  right: -5rem;
  bottom: -5rem;
  width: 17rem;
  height: 17rem;
  border: 1px solid rgb(255 255 255 / 35%);
  border-radius: 50%;
  content: "";
}

.credential-visual img {
  position: absolute;
  top: 2rem;
  right: 2rem;
  width: 6rem;
  height: 6rem;
  object-fit: contain;
  background: var(--white);
}

.credential-initials {
  align-self: end;
  font-family: var(--serif);
  font-size: clamp(7rem, 15vw, 13rem);
  font-weight: 600;
  line-height: 0.7;
  letter-spacing: -0.1em;
  opacity: 0.95;
}

.credential-visual p {
  position: relative;
  z-index: 1;
  align-self: end;
  margin: 3rem 0 0;
  color: #b8dce4;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  line-height: 1.35;
  text-transform: uppercase;
}

.practitioner-copy {
  max-width: 45rem;
}

.credential-line {
  margin-bottom: 1.5rem;
  color: var(--copper);
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-weight: 700;
}

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

.gallery-grid {
  display: grid;
  grid-template-columns: minmax(18rem, 0.78fr) minmax(0, 1.22fr);
  align-items: start;
  max-width: 72rem;
  margin-left: auto;
  gap: clamp(1rem, 2.5vw, 2rem);
}

.gallery-item {
  margin: 0;
}

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

.gallery-item--equipment {
  margin-top: clamp(3rem, 8vw, 7rem);
}

.gallery-item--equipment img {
  aspect-ratio: 4 / 4.2;
}

.gallery-item figcaption {
  display: flex;
  padding-top: 0.7rem;
  color: var(--ink-soft);
  font-size: 0.86rem;
  gap: 0.8rem;
}

.gallery-item figcaption span {
  color: var(--copper);
  font-family: var(--serif);
  font-weight: 700;
}

.reviews {
  display: grid;
  grid-template-columns: minmax(18rem, 0.72fr) minmax(0, 1.28fr);
  align-items: start;
  background: var(--white);
  gap: clamp(3rem, 8vw, 8rem);
}

.reviews-heading {
  position: sticky;
  top: 8rem;
}

.reviews-heading .text-link {
  margin-top: 1rem;
}

.review-stack {
  display: grid;
  gap: 1rem;
}

.review-card {
  margin: 0;
  padding: clamp(1.25rem, 2.5vw, 1.75rem);
  border: 1px solid var(--line);
  background: var(--paper);
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.review-card:hover {
  border-color: var(--teal);
  box-shadow: 0 12px 30px rgb(23 39 60 / 7%);
  transform: translateY(-2px);
}

.review-stars {
  margin-bottom: 0.8rem;
  color: var(--copper);
  font-size: 1rem;
  line-height: 1;
  letter-spacing: 0.12em;
}

.review-card blockquote {
  margin: 0 0 1.2rem;
  font-family: var(--serif);
  font-size: clamp(1.1rem, 1.7vw, 1.35rem);
  font-weight: 600;
  line-height: 1.45;
  letter-spacing: -0.015em;
}

.review-card figcaption {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  color: var(--ink-soft);
  gap: 1.2rem;
}

.review-card figcaption a {
  color: var(--teal-dark);
  font-size: 0.82rem;
  font-weight: 700;
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(24rem, 1.15fr);
  gap: clamp(3rem, 7vw, 8rem);
}

.contact-copy > p:not(.eyebrow) {
  max-width: 39rem;
  margin-bottom: 2.5rem;
}

.contact-list {
  display: grid;
  gap: 0.7rem;
  margin-bottom: 2.7rem;
  font-style: normal;
}

.contact-list a {
  display: grid;
  grid-template-columns: 3rem minmax(0, 1fr) auto;
  align-items: center;
  padding: 1rem;
  border: 1px solid var(--line);
  background: rgb(255 255 255 / 55%);
  text-decoration: none;
  gap: 1rem;
  transition: background-color 180ms ease, border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.contact-list a:hover {
  border-color: var(--teal);
  background: var(--white);
  box-shadow: 0 10px 24px rgb(23 39 60 / 7%);
  transform: translateX(4px);
}

.contact-list a:active {
  transform: translateX(2px) scale(0.995);
}

.contact-icon {
  display: grid;
  place-items: center;
  width: 3rem;
  height: 3rem;
  color: var(--teal-dark);
  background: var(--paper-deep);
  transition: background-color 180ms ease, color 180ms ease;
}

.contact-icon svg {
  width: 1.35rem;
  height: 1.35rem;
  fill: none;
  stroke: currentcolor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.contact-icon .icon-dot {
  fill: currentcolor;
  stroke: none;
}

.contact-list a:hover .contact-icon {
  color: var(--white);
  background: var(--teal-dark);
}

.contact-details {
  display: grid;
  min-width: 0;
}

.contact-label {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-details strong {
  margin-top: 0.16rem;
  overflow-wrap: anywhere;
  font-size: 1.02rem;
}

.contact-action {
  color: var(--teal-dark);
  font-size: 1.2rem;
  transition: transform 180ms ease;
}

.contact-list a:hover .contact-action {
  transform: translateX(3px);
}

.hours h3 {
  font-family: var(--sans);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hours dl {
  margin-bottom: 0;
}

.hours dl div {
  display: flex;
  justify-content: space-between;
  max-width: 27rem;
  padding-block: 0.45rem;
  border-bottom: 1px dotted var(--line);
}

.hours dt {
  color: var(--ink-soft);
}

.hours dd {
  font-weight: 700;
}

.map-shell {
  min-height: 44rem;
  background-color: var(--paper-deep);
  background-image:
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 3rem 3rem;
}

.map-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  min-height: inherit;
  padding: 3rem;
  text-align: center;
}

.map-marker {
  display: grid;
  place-items: center;
  width: 5rem;
  height: 5rem;
  margin-bottom: 1.5rem;
  border-radius: 50% 50% 50% 0;
  background: var(--teal-dark);
  transform: rotate(-45deg);
}

.map-marker span {
  width: 1.6rem;
  height: 1.6rem;
  border-radius: 50%;
  background: var(--paper);
}

.map-placeholder p {
  font-size: 1.05rem;
}

.map-placeholder .button {
  margin-block: 0.7rem 1rem;
}

.map-placeholder small {
  max-width: 22rem;
  color: var(--ink-soft);
}

.map-shell iframe {
  display: block;
  width: 100%;
  min-height: inherit;
  border: 0;
}

.final-cta {
  padding-top: clamp(4rem, 8vw, 7.5rem);
  padding-bottom: clamp(4rem, 8vw, 7.5rem);
  color: var(--white);
  background: var(--teal-dark);
  text-align: center;
}

.final-cta .eyebrow {
  justify-content: center;
}

.final-cta h2 {
  margin-inline: auto;
}

.final-cta > p:not(.eyebrow) {
  max-width: 42rem;
  margin: 0 auto 2rem;
  color: #d9e9ed;
  font-size: 1.1rem;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto;
  padding-top: 3rem;
  padding-bottom: 3rem;
  border-top: 1px solid var(--line);
  gap: 3rem;
}

.footer-brand > p {
  max-width: 26rem;
  margin: 1rem 0 0;
  color: var(--ink-soft);
}

.footer-legal {
  color: var(--ink-soft);
  font-size: 0.84rem;
  text-align: right;
}

.footer-legal p {
  margin-bottom: 0.55rem;
}

.footer-legal a:hover {
  color: var(--teal-dark);
}

.legal-page,
.error-page {
  width: min(100% - (2 * var(--gutter)), 58rem);
  margin-inline: auto;
  padding-block: clamp(5rem, 10vw, 9rem);
}

.legal-page h1,
.error-page h1 {
  max-width: 12ch;
}

.legal-lede,
.error-page > p:not(.eyebrow) {
  max-width: 45rem;
  margin-bottom: 3rem;
  color: var(--ink-soft);
  font-size: clamp(1.1rem, 2vw, 1.35rem);
}

.legal-page section {
  padding-block: 1.8rem;
  border-top: 1px solid var(--line);
}

.legal-page section h2 {
  font-size: clamp(1.7rem, 3vw, 2.4rem);
}

.legal-page section p {
  max-width: 48rem;
  color: var(--ink-soft);
}

.legal-updated {
  margin-block: 2rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.error-page {
  min-height: 100svh;
}

.error-page > img {
  width: 8rem;
  height: 8rem;
  margin-bottom: 3rem;
  object-fit: contain;
  mix-blend-mode: multiply;
}

@media (max-width: 1120px) {
  .header-call {
    display: none;
  }

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

  .hero {
    grid-template-columns: minmax(0, 1fr) minmax(19rem, 0.8fr);
  }
}

@media (max-width: 900px) {
  :root {
    --section-space: clamp(4.5rem, 12vw, 7rem);
  }

  h1 {
    max-width: 11ch;
  }

  .header-inner {
    grid-template-columns: 1fr auto;
    min-height: 4.7rem;
  }

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

  .site-nav {
    grid-column: 1 / -1;
    justify-content: flex-start;
    flex-wrap: wrap;
    padding-bottom: 1rem;
  }

  .js .site-nav {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    display: grid;
    max-height: 0;
    padding: 0 var(--gutter);
    overflow: hidden;
    visibility: hidden;
    background: var(--paper);
    box-shadow: 0 15px 25px rgb(23 39 60 / 10%);
    opacity: 0;
    pointer-events: none;
    transition: max-height 240ms ease, opacity 180ms ease, visibility 180ms ease, padding 240ms ease;
  }

  .js .site-nav[data-open="true"] {
    max-height: calc(100vh - 4.7rem);
    max-height: calc(100dvh - 4.7rem);
    padding-top: 1rem;
    padding-bottom: 1.5rem;
    overflow-y: auto;
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
  }

  .site-nav a {
    padding-block: 0.65rem;
    font-family: var(--serif);
    font-size: 1.5rem;
  }

  .site-nav a::after {
    display: none;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: clamp(3rem, 8vw, 5rem);
  }

  .hero-media {
    width: min(90%, 39rem);
    margin-left: auto;
  }

  .hero-media img {
    aspect-ratio: 4 / 3.4;
  }

  .section-heading--wide,
  .approach,
  .practitioner,
  .reviews,
  .contact {
    grid-template-columns: 1fr;
  }

  .section-heading--wide h2 {
    margin-bottom: 1rem;
  }

  .service-row {
    grid-template-columns: 3rem 1fr;
  }

  .service-row ul {
    grid-column: 2;
  }

  .approach {
    gap: 3.5rem;
  }

  .credential-visual {
    width: min(100%, 38rem);
    min-height: 25rem;
  }

  .gallery-grid {
    grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  }

  .reviews-heading {
    position: static;
  }

  .contact {
    gap: 4rem;
  }

  .map-shell {
    min-height: 32rem;
  }
}

@media (max-width: 620px) {
  :root {
    --gutter: 1.15rem;
  }

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

  h2 {
    font-size: clamp(2.35rem, 12vw, 3.6rem);
  }

  .brand img {
    width: 3.55rem;
    height: 3.55rem;
  }

  .brand-copy strong {
    font-size: 1.08rem;
  }

  .brand-copy small {
    font-size: 0.57rem;
  }

  .menu-toggle__label {
    font-size: 0.85rem;
  }

  .hero {
    padding-top: 2.7rem;
    gap: 3.5rem;
  }

  .hero-lede {
    font-size: 1.05rem;
  }

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

  .hero-actions .button {
    width: 100%;
  }

  .hero-actions .text-link {
    align-self: flex-start;
  }

  .hero-media {
    width: calc(100% - 1rem);
  }

  .hero-media::before {
    top: -0.8rem;
    right: -0.8rem;
  }

  .hero-media img {
    aspect-ratio: 4 / 3.8;
  }

  .service-row {
    grid-template-columns: 2rem 1fr;
    gap: 1rem;
  }

  .service-row ul {
    grid-column: 1 / -1;
  }

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

  .process-list li {
    grid-template-columns: 2.4rem 1fr;
    gap: 0.8rem;
  }

  .credential-visual {
    min-height: 21rem;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 2.3rem;
  }

  .gallery-item--equipment {
    margin-top: 0;
  }

  .gallery-item img,
  .gallery-item--equipment img {
    aspect-ratio: 4 / 3.5;
  }

  .gallery-item:nth-child(2) img,
  .gallery-item:nth-child(3) img {
    object-position: center 42%;
  }

  .review-card figcaption {
    display: grid;
    grid-template-columns: 1fr;
  }

  .review-card blockquote {
    font-size: 1.08rem;
  }

  .contact-list a {
    grid-template-columns: 2.65rem minmax(0, 1fr) auto;
    padding: 0.85rem;
    gap: 0.8rem;
  }

  .contact-icon {
    width: 2.65rem;
    height: 2.65rem;
  }

  .map-shell {
    min-height: 27rem;
  }

  .map-placeholder {
    padding: 2rem 1.25rem;
  }

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

  .footer-legal {
    text-align: left;
  }
}

@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;
  }
}
