:root {
  --paper: #efe7d6;
  --paper-deep: #e7ddc7;
  --paper-shade: #ddd1b6;
  --paper-blue: #d7e6e8;
  --paper-grey: #d8d4c8;
  --ink: #1c241f;
  --ink-soft: #2e3830;
  --ink-mute: #687069;
  --rule: rgba(28, 36, 31, .22);
  --rule-soft: rgba(28, 36, 31, .12);
  --clay: #b6552d;
  --moss: #4a5b3e;
  --blue: #4f8290;
  --blue-deep: #345f6c;
  --display: "Fraunces", "Newsreader", Georgia, serif;
  --serif: "Newsreader", Georgia, "Times New Roman", serif;
  --mono: "JetBrains Mono", ui-monospace, "SFMono-Regular", Menlo, monospace;
  --gutter: clamp(1.25rem, 3vw, 3.25rem);
  --max: 1320px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--serif);
  font-size: 18px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: .36;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='220' height='220'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 .12 0 0 0 0 .14 0 0 0 0 .12 0 0 0 .04 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(90% 55% at 8% 12%, rgba(79,130,144,.22), transparent 64%),
    radial-gradient(70% 50% at 100% 95%, rgba(182,85,45,.08), transparent 60%),
    linear-gradient(180deg, rgba(255,248,229,.44), transparent 36%);
}

.ambient-flow {
  --ambient-x: 50%;
  --ambient-y: 50%;
  --ambient-shift-x: 0px;
  --ambient-shift-y: 0px;
  position: fixed;
  inset: 0;
  z-index: 6;
  overflow: hidden;
  pointer-events: none;
  opacity: .86;
  mix-blend-mode: normal;
  transform: translate(var(--ambient-shift-x), var(--ambient-shift-y));
  background:
    radial-gradient(34vw 34vw at var(--ambient-x) var(--ambient-y), rgba(255,255,255,.22), rgba(126,174,188,.18) 34%, transparent 72%);
  filter: saturate(1.08);
  transition: opacity .4s ease, transform .2s ease-out;
}

.ambient-flow::before {
  content: "";
  position: absolute;
  left: var(--ambient-x);
  top: var(--ambient-y);
  width: clamp(220px, 38vw, 620px);
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(255,255,255,.28), rgba(126,174,188,.16) 34%, transparent 72%);
  filter: blur(14px);
  transform: translate(-50%, -50%) scale(.86);
  opacity: .46;
  transition: left .16s ease-out, top .16s ease-out, opacity .24s ease, transform .24s ease;
}

.ambient-flow.is-active {
  opacity: .96;
}

.ambient-flow.is-active::before {
  opacity: .68;
  transform: translate(-50%, -50%) scale(1);
}

.ambient-pool {
  position: absolute;
  display: block;
  border-radius: 52% 48% 58% 42% / 46% 56% 44% 54%;
  filter: blur(20px);
  opacity: .58;
  transform: translate(0, 0) rotate(0deg);
  animation-duration: 28s;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
  will-change: transform, border-radius, opacity;
}

.ambient-pool-a {
  width: 52vw;
  height: 38vw;
  left: -13vw;
  top: 8vh;
  background: rgba(96,153,168,.32);
  animation-name: pool-flow-a;
}

.ambient-pool-b {
  width: 48vw;
  height: 34vw;
  right: -12vw;
  top: 42vh;
  background: rgba(182,85,45,.2);
  animation-name: pool-flow-b;
  animation-duration: 32s;
  animation-delay: -10s;
}

.ambient-pool-c {
  width: 46vw;
  height: 30vw;
  left: 22vw;
  bottom: -12vw;
  background: rgba(126,174,188,.3);
  animation-name: pool-flow-c;
  animation-duration: 36s;
  animation-delay: -20s;
}

@keyframes pool-flow-a {
  0%, 100% {
    border-radius: 52% 48% 58% 42% / 46% 56% 44% 54%;
    opacity: .48;
    transform: translate3d(-3vw, -1vh, 0) rotate(0deg) scale(.96);
  }
  35% {
    border-radius: 44% 56% 42% 58% / 58% 42% 56% 44%;
    opacity: .74;
    transform: translate3d(13vw, 8vh, 0) rotate(10deg) scale(1.12);
  }
  70% {
    border-radius: 60% 40% 50% 50% / 42% 62% 38% 58%;
    opacity: .58;
    transform: translate3d(5vw, 16vh, 0) rotate(-8deg) scale(1.02);
  }
}

@keyframes pool-flow-b {
  0%, 100% {
    border-radius: 46% 54% 39% 61% / 55% 45% 58% 42%;
    opacity: .34;
    transform: translate3d(5vw, 0, 0) rotate(-4deg) scale(.94);
  }
  40% {
    border-radius: 61% 39% 56% 44% / 43% 61% 39% 57%;
    opacity: .58;
    transform: translate3d(-16vw, 7vh, 0) rotate(12deg) scale(1.12);
  }
  75% {
    border-radius: 42% 58% 62% 38% / 58% 44% 56% 42%;
    opacity: .46;
    transform: translate3d(-8vw, -10vh, 0) rotate(-10deg) scale(1.03);
  }
}

@keyframes pool-flow-c {
  0%, 100% {
    border-radius: 58% 42% 49% 51% / 40% 58% 42% 60%;
    opacity: .4;
    transform: translate3d(0, 4vh, 0) rotate(6deg) scale(.98);
  }
  38% {
    border-radius: 43% 57% 60% 40% / 61% 39% 54% 46%;
    opacity: .66;
    transform: translate3d(12vw, -14vh, 0) rotate(-13deg) scale(1.16);
  }
  72% {
    border-radius: 64% 36% 44% 56% / 48% 64% 36% 52%;
    opacity: .52;
    transform: translate3d(-10vw, -6vh, 0) rotate(9deg) scale(1.06);
  }
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button { font: inherit; }

.container {
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.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: 12px;
  left: 12px;
  z-index: 100;
  transform: translateY(-160%);
  background: var(--ink);
  color: var(--paper);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: 10px 14px;
  border-radius: 999px;
}

.skip-link:focus { transform: translateY(0); }
a:focus-visible, button:focus-visible, summary:focus-visible {
  outline: 2px solid var(--clay);
  outline-offset: 4px;
}

.masthead {
  position: sticky;
  top: 0;
  z-index: 30;
  background: color-mix(in srgb, var(--paper) 92%, transparent);
  border-bottom: 1px solid var(--rule-soft);
  backdrop-filter: blur(7px) saturate(1.05);
}

.masthead-inner {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) auto minmax(170px, 1fr);
  align-items: center;
  gap: 1.5rem;
  min-height: 72px;
}

.brand {
  display: flex;
  align-items: center;
  gap: .85rem;
  font-family: var(--display);
  font-size: clamp(1.1rem, 1.7vw, 1.4rem);
  font-weight: 350;
  font-variation-settings: "opsz" 144, "SOFT" 60;
}

.mark {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  color: var(--blue-deep);
  flex: 0 0 auto;
}

.brand .lbl {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--blue-deep);
}

.primary {
  display: flex;
  gap: clamp(1rem, 2.5vw, 2rem);
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.primary a {
  padding: .35rem 0;
  color: var(--ink-soft);
  border-bottom: 1px solid transparent;
}

.primary a:hover { border-bottom-color: var(--clay); }

.cta {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .65rem;
  min-height: 44px;
  padding: 11px 19px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  background: var(--ink);
  color: var(--paper);
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
  transition: background .25s ease, border-color .25s ease, transform .25s ease;
}

.cta:hover {
  background: var(--clay);
  border-color: var(--clay);
  transform: translateY(-1px);
}

.pulse {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--clay);
  animation: breathe 3.6s ease-in-out infinite;
}

.cta:hover .pulse { background: var(--paper); }

@keyframes breathe {
  0%, 100% { box-shadow: 0 0 0 0 rgba(182,85,45,.55); transform: scale(1); }
  50% { box-shadow: 0 0 0 7px rgba(182,85,45,0); transform: scale(1.08); }
}

.menu-toggle { display: none; }

.hero {
  position: relative;
  padding: clamp(2.4rem, 6vw, 5.5rem) 0 clamp(2.2rem, 5vw, 4rem);
}

.hero-meta {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  padding-bottom: 1.35rem;
  margin-bottom: clamp(2rem, 4.5vw, 3.3rem);
  border-bottom: 1px solid color-mix(in srgb, var(--blue) 48%, var(--rule));
}

.hero-meta div {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .17em;
  text-transform: uppercase;
  color: var(--ink-mute);
}

.hero-meta b {
  display: block;
  margin-top: .35rem;
  color: var(--ink);
  font-weight: 400;
  letter-spacing: .11em;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 330px);
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: end;
}

.eyebrow, .section-num {
  margin: 0 0 .9rem;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--blue-deep);
}

.dot {
  display: inline-block;
  width: 5px;
  height: 5px;
  margin: 0 .55em .15em;
  border-radius: 50%;
  background: var(--blue);
  vertical-align: middle;
}

h1, h2, h3 {
  margin: 0;
  font-family: var(--display);
  font-weight: 330;
  line-height: .98;
  letter-spacing: 0;
  font-variation-settings: "opsz" 144, "SOFT" 35;
}

h1 {
  max-width: 11.5ch;
  font-size: clamp(3.25rem, 8vw, 7.1rem);
}

h2 { font-size: clamp(2.3rem, 5vw, 4.15rem); }
h3 { font-size: clamp(2rem, 4.2vw, 3.35rem); }
em {
  color: var(--moss);
  font-style: italic;
  font-variation-settings: "opsz" 144, "SOFT" 100;
}

.hero-note {
  position: relative;
  margin-bottom: .35rem;
  padding: 1.15rem 0 0 1.25rem;
  border-left: 1px solid var(--blue);
  color: var(--ink-soft);
}

.hero-note p { margin: 0 0 1.1rem; }
.hero-note a, .text-link, .footer-contact a {
  color: var(--blue-deep);
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
  border-bottom: 1px solid currentColor;
}

.terrain {
  --touch-x: 50%;
  --touch-y: 50%;
  margin-top: clamp(2.1rem, 5vw, 4rem);
  height: clamp(100px, 13vw, 190px);
  border-top: 1px solid var(--rule-soft);
  border-bottom: 1px solid var(--rule-soft);
  background:
    radial-gradient(circle at var(--touch-x) var(--touch-y), rgba(255,255,255,.5), rgba(215,230,232,.18) 18%, transparent 36%),
    linear-gradient(90deg, rgba(215,230,232,.58), rgba(231,221,199,.2));
  overflow: hidden;
  position: relative;
  cursor: crosshair;
  isolation: isolate;
}

.terrain svg {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
}

.terrain path {
  fill: none;
  stroke: rgba(52,95,108,.42);
  stroke-width: 1.1;
  transform-origin: center;
  animation: terrain-breathe 9s ease-in-out infinite;
}

.terrain path:nth-child(2) { animation-delay: -2.5s; }
.terrain path:nth-child(3) { animation-delay: -5s; }

.pressure-field {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.pressure-field::before {
  content: "";
  position: absolute;
  left: var(--touch-x);
  top: var(--touch-y);
  width: clamp(70px, 12vw, 150px);
  aspect-ratio: 1;
  border: 1px solid rgba(52,95,108,.22);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(79,130,144,.16), transparent 62%);
  transform: translate(-50%, -50%) scale(.9);
  transition: left .45s ease, top .45s ease, opacity .45s ease;
  opacity: .82;
  animation: pressure-ring 4.8s ease-in-out infinite;
}

.pressure-field span {
  position: absolute;
  left: var(--x);
  top: var(--y);
  width: clamp(28px, 4.6vw, 62px);
  aspect-ratio: 2.7 / 1;
  border-radius: 50%;
  border: 1px solid rgba(74,91,62,.14);
  background: rgba(239,231,214,.22);
  transform: rotate(var(--rot));
  animation: pressure-drift 11s ease-in-out infinite;
  animation-delay: var(--delay);
}

.terrain.is-touched .pressure-field::before {
  animation: pressure-touch 700ms ease-out;
}

@keyframes terrain-breathe {
  0%, 100% { transform: translateY(0) scaleY(1); opacity: .82; }
  50% { transform: translateY(4px) scaleY(.96); opacity: .58; }
}

@keyframes pressure-ring {
  0%, 100% { transform: translate(-50%, -50%) scale(.9); opacity: .58; }
  50% { transform: translate(-50%, -50%) scale(1.12); opacity: .86; }
}

@keyframes pressure-touch {
  0% { transform: translate(-50%, -50%) scale(.55); opacity: .9; }
  100% { transform: translate(-50%, -50%) scale(1.45); opacity: 0; }
}

@keyframes pressure-drift {
  0%, 100% { transform: translate(0, 0) rotate(var(--rot)); opacity: .44; }
  50% { transform: translate(10px, -6px) rotate(var(--rot)); opacity: .7; }
}

.section {
  padding: clamp(4rem, 8vw, 7rem) 0;
  border-top: 1px solid var(--rule);
}

.section-grid {
  display: grid;
  grid-template-columns: .86fr minmax(0, 1fr) minmax(260px, 360px);
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: start;
}

.about-copy p {
  margin: 0 0 1rem;
  color: var(--ink-soft);
}

.lede {
  font-size: clamp(1.08rem, 1.5vw, 1.24rem);
  color: var(--ink);
}

.dropcap::first-letter {
  float: left;
  margin: .08em .14em 0 0;
  font-family: var(--display);
  font-size: 4.3em;
  line-height: .72;
  color: var(--blue-deep);
}

.credentials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 1.6rem;
  border-top: 1px solid var(--rule-soft);
  border-bottom: 1px solid var(--rule-soft);
}

.credentials div {
  padding: 1rem .9rem;
  border-right: 1px solid var(--rule-soft);
}

.credentials div:last-child { border-right: 0; }
.credentials span, .address span {
  display: block;
  margin-bottom: .35rem;
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--blue-deep);
}

.credentials b, .address strong {
  display: block;
  font-family: var(--display);
  font-weight: 360;
  font-size: 1.18rem;
  line-height: 1.16;
  font-variation-settings: "opsz" 80, "SOFT" 55;
}

.portrait {
  margin: 0;
}

.portrait img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border: 1px solid color-mix(in srgb, var(--blue) 35%, var(--rule));
  filter: sepia(.05) saturate(.95);
}

.portrait figcaption {
  padding: .75rem .2rem 0;
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--ink-mute);
}

.services, .faq {
  background: linear-gradient(180deg, rgba(215,230,232,.34), rgba(231,221,199,.78));
}

.section-head {
  display: grid;
  grid-template-columns: 1.3fr minmax(260px, .7fr);
  gap: clamp(1.5rem, 5vw, 4rem);
  align-items: end;
  margin-bottom: clamp(2.2rem, 5vw, 4rem);
}

.section-head p {
  margin: 0;
  color: var(--ink-soft);
}

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

.service-row {
  display: grid;
  grid-template-columns: 64px minmax(230px, .95fr) minmax(260px, 1fr) minmax(210px, .42fr);
  gap: clamp(1rem, 3vw, 2rem);
  padding: clamp(1.6rem, 3.4vw, 2.7rem) 0;
  border-bottom: 1px solid var(--rule);
  align-items: center;
}

.service-index {
  align-self: start;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: .2em;
  color: var(--blue-deep);
}

.service-title ul {
  display: flex;
  flex-wrap: wrap;
  gap: .45rem;
  padding: 0;
  margin: 1rem 0 0;
  list-style: none;
}

.service-title li {
  padding: .35rem .55rem;
  border: 1px solid rgba(79,130,144,.42);
  border-radius: 999px;
  background: rgba(215,230,232,.42);
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--blue-deep);
}

.service-row p {
  margin: 0;
  color: var(--ink-soft);
}

.prices {
  display: grid;
  gap: .55rem;
}

.prices div {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: .6rem;
  align-items: end;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.prices i {
  display: block;
  border-bottom: 1px dotted rgba(28,36,31,.38);
  transform: translateY(-.35em);
}

.prices b {
  font-weight: 500;
  color: var(--clay);
}

.insurance-note {
  max-width: 760px;
  margin: 1.5rem 0 0;
  padding-left: 1rem;
  border-left: 3px solid var(--blue);
  color: var(--ink-soft);
}

.quote-band {
  padding: clamp(4rem, 9vw, 8rem) 0;
  background: var(--ink);
  color: var(--paper);
}

.quote-grid {
  display: grid;
  grid-template-columns: minmax(180px, .45fr) 1fr minmax(250px, .45fr);
  gap: clamp(1.7rem, 5vw, 4rem);
  align-items: start;
}

.quote-band .section-num { color: var(--paper-blue); }
.quote-band h2 {
  font-size: clamp(1.7rem, 3vw, 2.5rem);
  line-height: 1.04;
}

.featured-quote, .supporting-quote {
  margin: 0;
}

.featured-quote blockquote, .supporting-quote blockquote {
  margin: 0;
  font-family: var(--display);
  font-style: italic;
  font-weight: 330;
  line-height: 1.06;
  font-variation-settings: "opsz" 144, "SOFT" 100;
}

.featured-quote blockquote {
  font-size: clamp(2rem, 4.8vw, 4.2rem);
}

.supporting-quote {
  padding: 1rem 0 0 1.2rem;
  border-left: 1px solid rgba(215,230,232,.48);
}

.supporting-quote blockquote {
  font-size: clamp(1.35rem, 2.6vw, 2.05rem);
}

.featured-quote figcaption, .supporting-quote figcaption {
  margin-top: 1rem;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--paper-blue);
}

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

details {
  border-bottom: 1px solid var(--rule-soft);
}

summary {
  display: grid;
  grid-template-columns: minmax(70px, auto) 1fr;
  gap: 1.1rem;
  padding: 1.25rem 2.4rem 1.25rem 0;
  cursor: pointer;
  position: relative;
  font-family: var(--display);
  font-size: clamp(1.2rem, 2vw, 1.55rem);
  line-height: 1.18;
  font-weight: 360;
  list-style: none;
}

summary::-webkit-details-marker { display: none; }
summary span {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--blue-deep);
  padding-top: .3rem;
}

summary::after {
  content: "+";
  position: absolute;
  right: .2rem;
  top: 1.13rem;
  color: var(--blue-deep);
  font-family: var(--mono);
  font-size: 1.3rem;
}

details[open] {
  background: rgba(215,230,232,.28);
}

details[open] summary::after {
  content: "-";
}

details p {
  max-width: 760px;
  margin: 0;
  padding: 0 2.4rem 1.35rem calc(70px + 1.1rem);
  color: var(--ink-soft);
}

.visit {
  padding: clamp(4rem, 8vw, 7rem) 0;
  background:
    linear-gradient(90deg, rgba(215,230,232,.58), rgba(221,209,182,.5)),
    var(--paper-grey);
  border-top: 1px solid var(--rule);
}

.visit-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 460px);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}

.visit p {
  max-width: 650px;
  color: var(--ink-soft);
}

.visit-card {
  padding: clamp(1.3rem, 3vw, 2rem);
  border: 1px solid rgba(52,95,108,.3);
  background: color-mix(in srgb, var(--paper) 78%, var(--paper-blue));
}

.address + .address {
  margin-top: 1.2rem;
  padding-top: 1.2rem;
  border-top: 1px solid var(--rule-soft);
}

.visit-actions {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}

.visit-actions .cta {
  justify-self: auto;
}

.site-footer {
  padding: clamp(2.3rem, 5vw, 4rem) 0 1.25rem;
  background: var(--paper-shade);
  border-top: 1px solid var(--rule);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(240px, 1fr) auto minmax(220px, .55fr);
  gap: clamp(1.5rem, 5vw, 4rem);
}

.footer-brand {
  font-family: var(--display);
  font-size: 1.45rem;
  font-weight: 360;
}

.footer-grid p {
  margin: .55rem 0 0;
  color: var(--ink-soft);
}

.footer-grid nav {
  display: grid;
  gap: .45rem;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.fine-print {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 2.5rem;
  padding-top: 1rem;
  border-top: 1px solid var(--rule-soft);
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--ink-mute);
}

@media (max-width: 980px) {
  .masthead-inner {
    grid-template-columns: 1fr auto;
  }

  .menu-toggle {
    display: inline-grid;
    gap: 5px;
    width: 42px;
    height: 42px;
    place-content: center;
    border: 1px solid var(--rule);
    border-radius: 999px;
    background: transparent;
    color: var(--ink);
  }

  .menu-toggle span:not(.sr-only) {
    display: block;
    width: 17px;
    height: 1px;
    background: currentColor;
  }

  .primary {
    display: none;
    grid-column: 1 / -1;
    padding: .75rem 0 1rem;
    border-top: 1px solid var(--rule-soft);
  }

  .primary.is-open {
    display: grid;
    grid-template-columns: repeat(4, auto);
    justify-content: start;
  }

  .masthead .cta {
    display: none;
  }

  .hero-meta,
  .hero-grid,
  .section-grid,
  .section-head,
  .quote-grid,
  .visit-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

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

  h1 { max-width: 12ch; }

  .section-grid {
    gap: 2rem;
  }

  .portrait {
    max-width: 420px;
  }

  .service-row {
    grid-template-columns: 44px 1fr;
  }

  .service-row p,
  .prices {
    grid-column: 2;
  }

  .quote-grid {
    gap: 2rem;
  }

  .supporting-quote {
    padding-top: 0;
  }

  .fine-print {
    flex-direction: column;
  }
}

@media (max-width: 620px) {
  body { font-size: 17px; }

  .brand .lbl {
    display: none;
  }

  .primary.is-open {
    grid-template-columns: 1fr 1fr;
  }

  .hero-meta {
    grid-template-columns: 1fr;
  }

  .terrain {
    height: 86px;
  }

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

  .credentials div {
    border-right: 0;
    border-bottom: 1px solid var(--rule-soft);
  }

  .credentials div:last-child {
    border-bottom: 0;
  }

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

  .service-row p,
  .prices {
    grid-column: auto;
  }

  summary {
    grid-template-columns: 1fr;
    gap: .35rem;
  }

  details p {
    padding-left: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    scroll-behavior: auto !important;
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
}
