:root {
  --forest-deep: #0b2118;
  --forest: #173329;
  --cream: #f4ead8;
  --paper: #f8f2e6;
  --white: #fffdf8;
  --mist: #dfeade;
  --ink: #10241c;
  --sage: #839b91;
  --sage-dark: #5e746c;
  --copper: #c86f3d;
  --line-dark: rgba(16, 36, 28, 0.16);
  --line-light: rgba(244, 234, 216, 0.18);
  --shadow: 0 18px 42px rgba(16, 36, 28, 0.08);
  --ease: cubic-bezier(0.2, 0.8, 0.2, 1);
  --hero-progress: 0;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: "Arial Narrow", "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: 100;
  pointer-events: none;
  content: "";
  opacity: 0.22;
  background:
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.024) 0 1px, transparent 1px 5px),
    repeating-linear-gradient(0deg, rgba(0, 0, 0, 0.018) 0 1px, transparent 1px 4px);
  mix-blend-mode: soft-light;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea {
  font: inherit;
}

::selection {
  background: var(--copper);
  color: var(--white);
}

.skip-link {
  position: fixed;
  left: 1rem;
  top: 1rem;
  z-index: 200;
  transform: translateY(-160%);
  background: var(--cream);
  color: var(--forest-deep);
  padding: 0.7rem 1rem;
  border-radius: 4px;
  font-weight: 700;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 120;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: 100%;
  min-height: 5rem;
  padding: 1.2rem 5vw;
  color: var(--header-fg, var(--cream));
  background: var(--header-bg, var(--forest-deep));
  border-bottom: 1px solid var(--header-line, var(--line-light));
  transition:
    background-color 220ms ease,
    color 220ms ease,
    border-color 220ms ease;
}

.site-header.is-dark {
  --header-bg: var(--forest-deep);
  --header-fg: var(--cream);
  --header-line: rgba(244, 234, 216, 0.14);
  --header-cta-bg: var(--cream);
  --header-cta-fg: var(--forest-deep);
  --header-cta-border: var(--cream);
}

.site-header.is-light {
  --header-bg: var(--white);
  --header-fg: var(--ink);
  --header-line: rgba(16, 36, 28, 0.12);
  --header-cta-bg: var(--copper);
  --header-cta-fg: var(--cream);
  --header-cta-border: var(--copper);
}

.brand,
.desktop-nav,
.header-actions,
.header-cta,
.menu-button {
  display: flex;
  align-items: center;
}

.brand {
  justify-self: start;
  gap: 0.6rem;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 600;
}

.brand svg {
  width: 1.45rem;
  height: 1.45rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
}

.desktop-nav {
  gap: 1.9rem;
}

.header-actions {
  justify-self: end;
  grid-column: 3;
  gap: clamp(0.85rem, 1.4vw, 1.35rem);
}

.desktop-nav a,
.header-cta,
.menu-button,
.text-link,
.service-card a {
  position: relative;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.header-cta {
  justify-content: center;
  min-height: 2.75rem;
  padding: 0 1.15rem;
  color: var(--header-cta-fg, var(--forest-deep));
  background: var(--header-cta-bg, var(--cream));
  border: 1px solid var(--header-cta-border, currentColor);
  white-space: nowrap;
  transition:
    transform 260ms var(--ease),
    color 220ms ease,
    background-color 220ms ease,
    border-color 220ms ease;
}

.header-cta:hover,
.header-cta:focus-visible {
  transform: translateY(-2px);
  color: var(--header-fg);
  background: transparent;
}

.desktop-nav a::after,
.text-link::after,
.service-card a::after {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.25rem;
  height: 1px;
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  background: currentColor;
  transition: transform 420ms var(--ease);
}

.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after,
.text-link:hover::after,
.text-link:focus-visible::after,
.service-card a:hover::after,
.service-card a:focus-visible::after {
  transform: scaleX(1);
}

.menu-button {
  display: none;
  justify-self: end;
  justify-content: center;
  min-width: 2.75rem;
  min-height: 2.75rem;
  padding: 0 0.5rem;
  border: 0;
  color: inherit;
  background: transparent;
  cursor: pointer;
}

.mobile-nav {
  position: fixed;
  inset: 5.2rem 1rem auto;
  display: none;
  padding: 1rem;
  border: 1px solid rgba(244, 234, 216, 0.18);
  border-radius: 6px;
  background: rgba(11, 33, 24, 0.98);
  color: var(--cream);
}

.mobile-nav.is-open {
  display: grid;
  gap: 0.8rem;
}

.mobile-nav a {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
  line-height: 1.05;
}

.hero-scroll {
  height: 210vh;
  background: var(--forest-deep);
}

.hero-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  min-height: 680px;
  overflow: hidden;
  isolation: isolate;
  color: var(--cream);
}

.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  z-index: -3;
  object-fit: cover;
  opacity: calc(0.54 + var(--hero-progress) * 0.32);
  transform: scale(calc(1.08 - var(--hero-progress) * 0.05));
  transition: opacity 120ms linear, transform 120ms linear;
}

.hero-shade {
  z-index: -2;
  background:
    linear-gradient(180deg, rgba(11, 33, 24, 0.68), rgba(11, 33, 24, 0.18) 44%, rgba(11, 33, 24, 0.74)),
    rgba(11, 33, 24, calc(0.54 - var(--hero-progress) * 0.2));
}

.hero-line {
  position: absolute;
  right: -10vw;
  top: 10vh;
  z-index: -1;
  width: min(78rem, 78vw);
  height: min(48rem, 78vh);
  color: var(--cream);
  transform: translateY(calc(var(--hero-progress) * 22px));
  pointer-events: none;
}

.hero-line-base {
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  opacity: calc(0.14 + var(--hero-progress) * 0.2);
  stroke-width: 1.15;
}

.hero-line-base:nth-of-type(2) {
  opacity: calc(0.1 + var(--hero-progress) * 0.14);
  stroke-width: 0.8;
}

.hero-inner {
  display: grid;
  align-content: start;
  max-width: 1600px;
  height: 100%;
  margin: 0 auto;
  padding: 9.5rem 5vw 8rem;
}

.eyebrow,
.section-kicker {
  margin: 0;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-title,
.statement h2,
.philosophy-copy h2,
.section-heading h2,
.faq-heading h2,
.services-intro h2,
.image-cta h2,
.about-section h2,
.final-cta h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  line-height: 0.94;
}

.hero-title {
  max-width: 8ch;
  margin-top: 2rem;
  font-size: clamp(4.8rem, 10.2vw, 10.75rem);
  transform: translateY(calc(var(--hero-progress) * -44px)) scale(calc(1 - var(--hero-progress) * 0.16));
  transform-origin: left top;
}

.hero-bottom {
  display: grid;
  grid-template-columns: minmax(0, 25rem) auto;
  gap: 4rem;
  align-items: end;
  max-width: 47rem;
  margin-top: 2.4rem;
}

.hero-bottom p {
  margin: 0;
  color: rgba(244, 234, 216, 0.84);
  font-size: clamp(1.18rem, 1.45vw, 1.45rem);
  line-height: 1.42;
}

.hero-bottom .text-link {
  display: inline-grid;
  place-items: center;
  min-height: 4.65rem;
  padding: 0 2rem;
  border: 1px solid rgba(244, 234, 216, 0.68);
  color: var(--cream);
  background: rgba(244, 234, 216, 0.08);
  font-size: clamp(0.8rem, 0.9vw, 0.98rem);
  letter-spacing: 0.1em;
  box-shadow: 0 0 0 1px rgba(244, 234, 216, 0.06), 0 16px 34px rgba(0, 0, 0, 0.18);
  transition:
    background-color 260ms var(--ease),
    color 260ms var(--ease),
    border-color 260ms var(--ease),
    transform 260ms var(--ease);
}

.hero-bottom .text-link::after {
  display: none;
}

.hero-bottom .text-link:hover,
.hero-bottom .text-link:focus-visible {
  transform: translateY(-2px);
  border-color: var(--cream);
  color: var(--forest-deep);
  background: var(--cream);
}

.scroll-note {
  position: absolute;
  right: 2rem;
  bottom: 2rem;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: calc(1 - var(--hero-progress) * 1.4);
}

.cream-panel {
  position: absolute;
  inset: auto 0 0;
  height: 38vh;
  background: var(--paper);
  transform: translateY(calc((1 - var(--hero-progress)) * 105%));
}

.section {
  position: relative;
  z-index: 2;
  padding: clamp(5rem, 8vw, 8rem) 5vw;
}

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

.proof-strip[id] {
  scroll-margin-top: 5.5rem;
}

.light {
  background: var(--white);
  color: var(--ink);
}

.dark {
  background: var(--forest-deep);
  color: var(--cream);
}

.pull-up {
  margin-top: -38vh;
  padding-top: clamp(2.2rem, 6vh, 4.5rem);
}

.proof-strip {
  position: relative;
  z-index: 3;
  padding: clamp(1.05rem, 2.1vw, 1.6rem) 5vw;
  background: var(--paper);
  color: var(--ink);
}

.hero-proof.pull-up {
  display: grid;
  align-items: center;
  min-height: clamp(7.5rem, 15vh, 10rem);
  margin-top: calc(-38vh - clamp(2.5rem, 5vh, 4rem));
  padding-top: 0;
  padding-bottom: 0;
  background: linear-gradient(
    to bottom,
    transparent 0 50%,
    var(--paper) 50% 100%
  );
}

.review-proof {
  background: #fbfaf6;
  padding-top: 0;
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  max-width: 1600px;
  margin: 0 auto;
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
}

.hero-proof .proof-grid {
  width: 100%;
  color: var(--cream);
  background:
    linear-gradient(135deg, rgba(244, 234, 216, 0.16), rgba(244, 234, 216, 0.08)),
    rgba(8, 30, 22, 0.58);
  border: 1px solid rgba(244, 234, 216, 0.24);
  box-shadow: 0 24px 70px rgba(6, 20, 14, 0.24);
  backdrop-filter: blur(18px) saturate(1.05);
}

.review-proof-grid {
  grid-template-columns: 0.72fr 0.72fr 1.56fr;
}

.proof-grid div {
  display: grid;
  align-content: center;
  min-height: 5.45rem;
  padding: 1rem clamp(0.85rem, 1.4vw, 1.35rem);
  border-right: 1px solid var(--line-dark);
}

.hero-proof .proof-grid div {
  border-right-color: rgba(244, 234, 216, 0.2);
}

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

.proof-grid strong {
  color: var(--forest-deep);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.3rem, 1.8vw, 2rem);
  font-weight: 500;
  line-height: 1;
}

.hero-proof .proof-grid strong {
  color: var(--cream);
  text-shadow: 0 1px 16px rgba(0, 0, 0, 0.18);
}

.proof-grid span {
  margin-top: 0.42rem;
  color: rgba(16, 36, 28, 0.62);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1.32;
  text-transform: uppercase;
}

.hero-proof .proof-grid span {
  color: rgba(244, 234, 216, 0.72);
}

.section-kicker {
  color: color-mix(in srgb, currentColor 62%, transparent);
}

.philosophy {
  background: var(--paper);
}

.section-grid {
  display: grid;
  grid-template-columns: minmax(7rem, 0.2fr) minmax(0, 1fr);
  gap: clamp(1.6rem, 4vw, 4.5rem);
  max-width: 1600px;
  margin: 0 auto;
}

.statement {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1.5rem, 2.6vw, 2.8rem);
  align-items: start;
}

.statement h2 {
  max-width: 16ch;
  color: var(--forest-deep);
  font-size: clamp(3.5rem, 5.35vw, 5.95rem);
  letter-spacing: 0;
}

.philosophy-body {
  display: grid;
  grid-template-columns: minmax(18rem, 0.58fr) minmax(0, 1fr);
  gap: clamp(2rem, 4vw, 4.8rem);
  align-items: stretch;
  max-width: none;
}

.philosophy-panel {
  display: grid;
  grid-template-columns: minmax(18rem, 0.82fr) minmax(0, 1.18fr);
  max-width: 1600px;
  margin: 0 auto;
  background: var(--white);
  box-shadow: var(--shadow);
}

.philosophy-image {
  min-height: 42rem;
  overflow: hidden;
}

.philosophy-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.86) contrast(0.95);
}

.philosophy-copy {
  display: grid;
  align-content: center;
  gap: 1.65rem;
  padding: clamp(2.2rem, 5vw, 5rem);
}

.philosophy-copy h2 {
  max-width: 10ch;
  color: var(--forest-deep);
  font-size: clamp(3.1rem, 5.4vw, 5.75rem);
}

.philosophy-lead {
  max-width: 46rem;
  margin: 0;
  color: rgba(16, 36, 28, 0.76);
  font-size: clamp(1.14rem, 1.28vw, 1.3rem);
  line-height: 1.62;
}

.philosophy-intro {
  display: grid;
  grid-template-rows: auto 1fr;
  justify-items: start;
  gap: 1.35rem;
}

.philosophy-cta {
  display: inline-grid;
  place-items: center start;
  align-self: end;
  width: min(100%, 22rem);
  min-height: 4.75rem;
  padding: 0 1.55rem;
  color: var(--cream);
  background: var(--copper);
  border: 1px solid var(--copper);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition:
    transform 260ms var(--ease),
    background 260ms var(--ease),
    color 260ms var(--ease);
}

.philosophy-cta:hover,
.philosophy-cta:focus-visible {
  transform: translateY(-3px);
  color: var(--copper);
  background: transparent;
}

.principle-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: clamp(1.4rem, 3.2vw, 3.15rem);
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
}

.principle-grid article {
  min-height: 11.5rem;
  padding: 1.25rem 1rem 1.3rem;
  border-right: 1px solid var(--line-dark);
}

.principle-grid article:last-child {
  border-right: 0;
}

.principle-grid span,
.audience-card span,
.service-card span {
  color: rgba(16, 36, 28, 0.48);
  font-size: 0.78rem;
  font-weight: 700;
}

.principle-grid h3,
.audience-card h3,
.service-card h3 {
  margin: 1.1rem 0 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.35rem, 1.7vw, 1.9rem);
  font-weight: 500;
  line-height: 1.04;
}

.principle-grid p,
.audience-card p,
.service-card p {
  margin: 0.95rem 0 0;
  color: rgba(16, 36, 28, 0.7);
}

.audience {
  background: #fbfaf6;
}

.section-heading,
.services-intro {
  max-width: 1600px;
  margin: 0 auto;
}

.section-heading {
  display: grid;
  grid-template-columns: 0.28fr minmax(0, 0.8fr) minmax(18rem, 0.5fr);
  gap: 4rem;
  align-items: end;
}

.section-heading h2,
.services-intro h2 {
  color: var(--forest-deep);
  font-size: clamp(3rem, 5.4vw, 5.8rem);
}

.section-heading h2 {
  max-width: 12ch;
}

.section-heading > p:last-child,
.services-intro p {
  margin: 0;
  color: rgba(16, 36, 28, 0.7);
  font-size: 1.05rem;
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  max-width: 1600px;
  margin: 3rem auto 0;
}

.audience-card {
  min-height: 14.5rem;
  padding: 1.45rem;
  background: var(--white);
  border: 1px solid rgba(16, 36, 28, 0.08);
  box-shadow: var(--shadow);
  transition:
    transform 260ms var(--ease),
    border-color 260ms var(--ease),
    box-shadow 260ms var(--ease);
}

.card-reveal-content {
  height: 100%;
}

.audience-card h3 {
  color: var(--copper);
  font-size: clamp(1.65rem, 2.25vw, 2.35rem);
}

.audience-card p {
  color: rgba(16, 36, 28, 0.74);
  font-size: 1.05rem;
  line-height: 1.5;
}

.audience-card:hover,
.audience-card:focus-within {
  transform: translateY(-6px);
  border-color: rgba(200, 111, 61, 0.32);
  box-shadow: 0 24px 50px rgba(16, 36, 28, 0.12);
}

.testimonial-split {
  position: relative;
  z-index: 2;
  overflow: hidden;
  background: var(--white);
  color: var(--ink);
}

.testimonial-track {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.testimonial-track::-webkit-scrollbar {
  display: none;
}

.testimonial-slide {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  flex: 0 0 100%;
  min-width: 0;
  min-height: 36rem;
  scroll-snap-align: start;
}

.testimonial-photo {
  overflow: hidden;
  background: var(--mist);
}

.testimonial-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.85) contrast(0.96);
  transition: transform 1200ms var(--ease);
}

.testimonial-split:hover .testimonial-photo img {
  transform: scale(1.035);
}

.testimonial-story {
  display: grid;
  place-content: center;
  justify-items: center;
  padding: clamp(3rem, 7vw, 7rem);
  text-align: center;
}

.testimonial-story .section-kicker {
  color: var(--copper);
}

.testimonial-story blockquote {
  max-width: 52rem;
  margin: 2rem 0 0;
  color: var(--copper);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 3.2vw, 3.65rem);
  font-weight: 500;
  line-height: 1.12;
}

.person {
  margin: 1.75rem 0 0;
  color: var(--sage-dark);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.testimonial-dots {
  position: absolute;
  left: 50%;
  bottom: 1.5rem;
  transform: translateX(-50%);
  display: flex;
  gap: 0.55rem;
}

.testimonial-dots span {
  width: 0.78rem;
  height: 0.78rem;
  border-radius: 999px;
  background: var(--mist);
  box-shadow: 0 0 14px rgba(94, 116, 108, 0.18);
}

.testimonial-dots span:first-child {
  background: var(--sage);
}

.services {
  background: #f7f4ee;
}

.services-intro {
  display: grid;
  justify-items: center;
  gap: 1.25rem;
  text-align: center;
}

.services-intro h2 {
  max-width: 14ch;
}

.services-intro p {
  max-width: 49rem;
  font-size: 1.15rem;
}

.service-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.25rem, 4vw, 5rem);
  max-width: 1600px;
  margin: 3.5rem auto 0;
}

.service-card {
  display: grid;
  align-content: start;
  min-height: 19rem;
  padding: clamp(1.6rem, 3vw, 2.6rem);
  background: var(--white);
  border: 1px solid rgba(16, 36, 28, 0.08);
  box-shadow: 0 10px 28px rgba(16, 36, 28, 0.08);
  transition:
    transform 260ms var(--ease),
    border-color 260ms var(--ease);
}

.service-card:hover,
.service-card:focus-within {
  transform: translateY(-8px);
  border-color: rgba(200, 111, 61, 0.32);
}

.service-card h3 {
  color: var(--copper);
  font-size: clamp(2rem, 2.55vw, 2.75rem);
}

.service-card .card-reveal-content {
  display: grid;
  align-content: start;
  height: 100%;
}

.service-card a {
  align-self: end;
  justify-self: start;
  margin-top: 2rem;
  color: var(--copper);
}

.visit-accordion {
  max-width: 1600px;
  margin: 2.4rem auto 0;
  background: var(--white);
  border: 1px solid rgba(16, 36, 28, 0.1);
  box-shadow: 0 10px 28px rgba(16, 36, 28, 0.06);
}

.visit-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  width: 100%;
  min-height: 5.1rem;
  padding: 1.25rem clamp(1.25rem, 3vw, 2.2rem);
  border: 0;
  color: var(--forest-deep);
  background: transparent;
  cursor: pointer;
}

.visit-toggle span:first-child {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.55rem, 2.1vw, 2.45rem);
  line-height: 1.08;
  text-align: left;
}

.visit-toggle span:last-child {
  display: grid;
  place-items: center;
  width: 2.25rem;
  height: 2.25rem;
  flex: 0 0 auto;
  border: 1px solid var(--line-dark);
  color: var(--copper);
  font-size: 1.35rem;
  line-height: 1;
}

.visit-panel {
  max-height: 0;
  overflow: hidden;
  padding: 0 clamp(1.25rem, 3vw, 2.2rem);
  border-top: 0 solid transparent;
  opacity: 0;
  transition:
    max-height 520ms var(--ease),
    opacity 260ms ease,
    padding 520ms var(--ease),
    border-color 520ms var(--ease);
}

.visit-panel.is-open {
  padding-bottom: 1.8rem;
  border-top-width: 1px;
  border-top-color: var(--line-dark);
  opacity: 1;
}

.visit-panel ol {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin: 0;
  padding: 0;
  list-style: none;
  background: var(--line-dark);
}

.visit-panel li {
  min-height: 11rem;
  padding: 1.2rem;
  background: var(--white);
  color: rgba(16, 36, 28, 0.74);
  font-size: 1rem;
  line-height: 1.48;
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 780ms cubic-bezier(0.19, 1, 0.22, 1),
    transform 780ms cubic-bezier(0.19, 1, 0.22, 1);
}

.visit-panel.is-open li {
  opacity: 1;
  transform: translateY(0);
}

.visit-panel.is-open li:nth-child(2) {
  transition-delay: 80ms;
}

.visit-panel.is-open li:nth-child(3) {
  transition-delay: 160ms;
}

.visit-panel.is-open li:nth-child(4) {
  transition-delay: 240ms;
}

.visit-panel strong {
  display: block;
  margin-bottom: 0.6rem;
  color: var(--copper);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
  font-weight: 500;
  line-height: 1.1;
}

.about-section {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(18rem, 0.52fr);
  align-items: center;
  gap: clamp(2rem, 5vw, 5.5rem);
  min-height: 0;
  padding: clamp(3.2rem, 5vw, 5.2rem) 7vw;
  background: #dce9d9;
  color: var(--forest-deep);
}

.about-copy {
  display: grid;
  align-content: center;
  gap: 1rem;
  padding: 0;
}

.about-section h2 {
  max-width: 15ch;
  font-size: clamp(2.35rem, 3.45vw, 3.8rem);
}

.about-copy p {
  max-width: 38rem;
  margin: 0;
  color: rgba(16, 36, 28, 0.74);
  font-size: 0.98rem;
  line-height: 1.54;
}

.about-link {
  justify-self: start;
  margin-top: 0.6rem;
  color: var(--copper);
}

.about-photo {
  overflow: hidden;
  background: #d3e2d0;
  align-self: center;
  height: clamp(18rem, 31vw, 25rem);
}

.about-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 34%;
  filter: saturate(0.88) contrast(0.96);
}

.closing-section {
  background: var(--paper);
  padding: clamp(3.5rem, 5.6vw, 5.8rem) 5vw;
}

.closing-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(24rem, 0.82fr);
  gap: clamp(1.1rem, 2vw, 1.6rem);
  align-items: stretch;
  max-width: 1600px;
  margin: 0 auto;
}

.faq-column {
  display: grid;
  grid-template-rows: auto minmax(13rem, 1fr);
  gap: clamp(1rem, 1.8vw, 1.45rem);
  min-height: 100%;
}

.faq-card {
  background: var(--white);
  border: 1px solid rgba(16, 36, 28, 0.08);
  box-shadow: var(--shadow);
  padding: clamp(1.6rem, 3.8vw, 3.2rem);
}

.faq-heading {
  max-width: 46rem;
}

.faq-heading h2 {
  margin-top: 1.15rem;
  color: var(--forest-deep);
  font-size: clamp(2.5rem, 3.8vw, 4.3rem);
}

.faq-heading > p {
  max-width: 34rem;
  margin: 1rem 0 0;
  color: rgba(16, 36, 28, 0.7);
  font-size: 1rem;
}

.map-link {
  display: inline-flex;
  width: fit-content;
  margin-top: 1rem;
  color: var(--copper);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.map-link:hover,
.map-link:focus-visible {
  text-decoration: underline;
  text-underline-offset: 0.28rem;
}

.mobile-form-map {
  display: none;
}

.map-preview {
  position: relative;
  display: block;
  min-height: 13rem;
  overflow: hidden;
  color: var(--forest-deep);
  background: var(--white);
  border: 1px solid rgba(16, 36, 28, 0.12);
  box-shadow: 0 18px 40px rgba(16, 36, 28, 0.08);
}

.map-preview::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  box-shadow: inset 0 0 0 1px rgba(244, 234, 216, 0.72);
}

.map-preview-label {
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 2;
  display: grid;
  gap: 0.18rem;
  max-width: min(21rem, calc(100% - 2rem));
  padding: 0.85rem 1rem;
  background: rgba(255, 253, 248, 0.94);
  border: 1px solid rgba(16, 36, 28, 0.12);
  box-shadow: 0 12px 26px rgba(16, 36, 28, 0.12);
}

.map-preview-label span {
  color: var(--copper);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.map-preview-label strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.2rem, 1.7vw, 1.75rem);
  font-weight: 500;
  line-height: 1;
}

.map-preview iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: inherit;
  border: 0;
  filter: saturate(0.75) contrast(0.92);
}

.faq-list {
  margin: clamp(1.6rem, 2.6vw, 2.35rem) 0 0;
  border-top: 1px solid var(--line-dark);
}

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

.faq-question {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1.5rem;
  align-items: center;
  width: 100%;
  min-height: 4.9rem;
  padding: 1rem 0;
  color: var(--forest-deep);
  background: transparent;
  border: 0;
  text-align: left;
  cursor: pointer;
}

.faq-question span:first-child {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.45rem, 2vw, 2.2rem);
  line-height: 1.05;
}

.faq-question span:last-child {
  display: inline-grid;
  place-items: center;
  width: 2.2rem;
  height: 2.2rem;
  color: var(--copper);
  border: 1px solid rgba(16, 36, 28, 0.14);
}

.faq-panel {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition:
    max-height 560ms var(--ease),
    opacity 360ms ease,
    padding 560ms var(--ease);
}

.faq-panel.is-open {
  padding-bottom: 1.35rem;
  opacity: 1;
}

.faq-panel p {
  max-width: 48rem;
  margin: 0;
  color: rgba(16, 36, 28, 0.7);
  font-size: 0.98rem;
  line-height: 1.56;
}

.final-cta {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr;
  align-content: start;
  gap: clamp(1.25rem, 2.4vw, 2rem);
  min-height: 0;
  padding: clamp(1.75rem, 3.4vw, 3.1rem);
  background:
    radial-gradient(circle at 84% 16%, rgba(131, 155, 145, 0.28), transparent 24rem),
    var(--forest-deep);
  color: var(--cream);
}

.final-cta-copy {
  max-width: 46rem;
}

.final-cta .section-kicker {
  color: rgba(244, 234, 216, 0.76);
}

.final-cta h2 {
  max-width: 15ch;
  color: var(--cream);
  font-size: clamp(1.85rem, 2.35vw, 2.9rem);
}

.final-cta-copy p:not(.section-kicker) {
  max-width: 34rem;
  margin: 0.85rem 0 0;
  color: rgba(244, 234, 216, 0.74);
  font-size: clamp(0.94rem, 0.95vw, 1rem);
  line-height: 1.5;
}

.final-button {
  display: inline-grid;
  place-items: center;
  min-height: 3.65rem;
  margin-top: 1.1rem;
  padding: 0 1.8rem;
  color: var(--forest-deep);
  background: var(--cream);
  border: 1px solid var(--cream);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition:
    transform 260ms var(--ease),
    background 260ms var(--ease),
    color 260ms var(--ease);
}

.final-button:hover,
.final-button:focus-visible {
  transform: translateY(-3px);
  color: var(--cream);
  background: transparent;
}

.help-form {
  display: grid;
  gap: 0.62rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(244, 234, 216, 0.18);
}

.form-heading {
  display: grid;
  gap: 0.18rem;
  margin-bottom: 0.05rem;
}

.form-heading span,
.help-form label span {
  color: rgba(244, 234, 216, 0.58);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.form-heading p {
  margin: 0;
  color: rgba(244, 234, 216, 0.72);
  font-size: 0.88rem;
  line-height: 1.4;
}

.help-form label {
  display: grid;
  gap: 0.28rem;
}

.help-form input,
.help-form textarea {
  width: 100%;
  border: 1px solid rgba(244, 234, 216, 0.18);
  background: rgba(244, 234, 216, 0.06);
  color: var(--cream);
  padding: 0.72rem 0.82rem;
  outline: none;
  resize: vertical;
  transition:
    border-color 220ms var(--ease),
    background 220ms var(--ease);
}

.help-form input::placeholder,
.help-form textarea::placeholder {
  color: rgba(244, 234, 216, 0.42);
}

.help-form input:focus,
.help-form textarea:focus {
  border-color: rgba(244, 234, 216, 0.58);
  background: rgba(244, 234, 216, 0.1);
}

.form-button {
  min-height: 3.35rem;
  margin-top: 0.2rem;
  color: var(--cream);
  background: transparent;
  border: 1px solid rgba(244, 234, 216, 0.48);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition:
    transform 220ms var(--ease),
    background 220ms var(--ease),
    color 220ms var(--ease);
}

.form-button:hover,
.form-button:focus-visible {
  transform: translateY(-2px);
  color: var(--forest-deep);
  background: var(--cream);
}

.contact-fallback {
  margin: 0;
  color: rgba(244, 234, 216, 0.62);
  font-size: 0.84rem;
  line-height: 1.45;
}

.contact-fallback a {
  color: var(--cream);
  text-decoration: underline;
  text-underline-offset: 0.24rem;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 2rem;
  align-items: center;
  padding: 1.4rem 5vw;
  background: var(--forest-deep);
  border-top: 1px solid rgba(244, 234, 216, 0.16);
  color: var(--cream);
}

.site-footer .brand {
  color: var(--cream);
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.2rem;
  color: rgba(244, 234, 216, 0.72);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-footer p {
  justify-self: end;
  margin: 0;
  color: rgba(244, 234, 216, 0.55);
  font-size: 0.82rem;
}

.subpage-placeholder {
  min-height: 100vh;
  padding-top: clamp(8rem, 14vw, 12rem);
  background: var(--paper);
}

.subpage-placeholder h1 {
  max-width: 12ch;
  margin: 1.2rem 0 0;
  color: var(--forest-deep);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.4rem, 8vw, 7rem);
  font-weight: 500;
  line-height: 0.94;
}

.subpage-placeholder p:not(.section-kicker) {
  max-width: 42rem;
  margin: 1.5rem 0 0;
  color: rgba(16, 36, 28, 0.72);
  font-size: 1.08rem;
  line-height: 1.62;
}

.subpage-placeholder .text-link {
  display: inline-grid;
  margin-top: 2rem;
  color: var(--copper);
}

.image-cta {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(20rem, 0.95fr);
  min-height: max(42rem, calc(100vh - 5rem));
  background: var(--sage);
  color: var(--white);
}

.image-cta-copy {
  display: grid;
  align-content: center;
  gap: 1.8rem;
  padding: clamp(3rem, 10vw, 9rem) 12vw;
}

.image-cta h2 {
  max-width: 10ch;
  font-size: clamp(3rem, 6.5vw, 6.6rem);
}

.image-cta p {
  max-width: 41rem;
  margin: 0;
  color: rgba(255, 253, 248, 0.88);
  font-size: 1.15rem;
}

.outline-button {
  display: inline-grid;
  place-items: center;
  width: min(18rem, 100%);
  min-height: 5rem;
  margin-top: 1.2rem;
  border: 1px solid rgba(255, 253, 248, 0.7);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition:
    background-color 260ms var(--ease),
    color 260ms var(--ease);
}

.outline-button:hover,
.outline-button:focus-visible {
  background: var(--white);
  color: var(--forest-deep);
}

.image-cta-photo {
  overflow: hidden;
}

.image-cta-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.9) contrast(0.94);
}

.reveal,
.reveal-on-scroll {
  opacity: 0;
  transform: translateY(34px);
  will-change: opacity, transform;
}

.reveal {
  animation: reveal 1150ms cubic-bezier(0.19, 1, 0.22, 1) forwards;
}

.reveal-delay-1 {
  animation-delay: 140ms;
}

.reveal-delay-2 {
  animation-delay: 310ms;
}

.reveal-on-scroll {
  transition:
    opacity 1150ms cubic-bezier(0.19, 1, 0.22, 1),
    transform 1150ms cubic-bezier(0.19, 1, 0.22, 1);
  transition-delay: var(--reveal-delay, 0ms);
}

.reveal-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.section-grid.reveal-on-scroll > *,
.section-heading.reveal-on-scroll > *,
.faq-heading.reveal-on-scroll > *,
.services-intro.reveal-on-scroll > *,
.testimonial-story.reveal-on-scroll > *,
.about-copy.reveal-on-scroll > *,
.final-cta-copy.reveal-on-scroll > * {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 900ms cubic-bezier(0.19, 1, 0.22, 1),
    transform 900ms cubic-bezier(0.19, 1, 0.22, 1);
}

.section-grid.reveal-on-scroll.is-visible > *,
.section-heading.reveal-on-scroll.is-visible > *,
.faq-heading.reveal-on-scroll.is-visible > *,
.services-intro.reveal-on-scroll.is-visible > *,
.testimonial-story.reveal-on-scroll.is-visible > *,
.about-copy.reveal-on-scroll.is-visible > *,
.final-cta-copy.reveal-on-scroll.is-visible > * {
  opacity: 1;
  transform: translateY(0);
}

.section-grid.reveal-on-scroll > *:nth-child(2),
.section-heading.reveal-on-scroll > *:nth-child(2),
.faq-heading.reveal-on-scroll > *:nth-child(2),
.services-intro.reveal-on-scroll > *:nth-child(2),
.testimonial-story.reveal-on-scroll > *:nth-child(2),
.about-copy.reveal-on-scroll > *:nth-child(2),
.final-cta-copy.reveal-on-scroll > *:nth-child(2) {
  transition-delay: 120ms;
}

.section-grid.reveal-on-scroll > *:nth-child(3),
.section-heading.reveal-on-scroll > *:nth-child(3),
.faq-heading.reveal-on-scroll > *:nth-child(3),
.services-intro.reveal-on-scroll > *:nth-child(3),
.testimonial-story.reveal-on-scroll > *:nth-child(3),
.about-copy.reveal-on-scroll > *:nth-child(3),
.final-cta-copy.reveal-on-scroll > *:nth-child(3) {
  transition-delay: 220ms;
}

.testimonial-story.reveal-on-scroll > *:nth-child(4),
.about-copy.reveal-on-scroll > *:nth-child(4),
.final-cta-copy.reveal-on-scroll > *:nth-child(4),
.faq-heading.reveal-on-scroll > *:nth-child(4) {
  transition-delay: 320ms;
}

.testimonial-photo.reveal-on-scroll,
.about-photo.reveal-on-scroll {
  clip-path: inset(7% 0 0 0);
  transition:
    opacity 1200ms cubic-bezier(0.19, 1, 0.22, 1),
    transform 1200ms cubic-bezier(0.19, 1, 0.22, 1),
    clip-path 1200ms cubic-bezier(0.19, 1, 0.22, 1);
}

.testimonial-photo.reveal-on-scroll.is-visible,
.about-photo.reveal-on-scroll.is-visible {
  clip-path: inset(0);
}

.reveal-card {
  opacity: 1;
  transform: none;
}

.faq-card.reveal-on-scroll {
  opacity: 1;
  transform: none;
}

.map-preview.reveal-on-scroll {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 1050ms cubic-bezier(0.19, 1, 0.22, 1),
    transform 1050ms cubic-bezier(0.19, 1, 0.22, 1);
  transition-delay: 130ms;
}

.map-preview.reveal-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.faq-card.reveal-on-scroll .faq-heading,
.faq-card.reveal-on-scroll .faq-list {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 1050ms cubic-bezier(0.19, 1, 0.22, 1),
    transform 1050ms cubic-bezier(0.19, 1, 0.22, 1);
}

.faq-card.reveal-on-scroll .faq-list {
  transition-delay: 150ms;
}

.faq-card.reveal-on-scroll.is-visible .faq-heading,
.faq-card.reveal-on-scroll.is-visible .faq-list {
  opacity: 1;
  transform: translateY(0);
}

.reveal-card .card-reveal-content {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 1050ms cubic-bezier(0.19, 1, 0.22, 1),
    transform 1050ms cubic-bezier(0.19, 1, 0.22, 1);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}

.reveal-card.is-visible .card-reveal-content {
  opacity: 1;
  transform: translateY(0);
}

.audience-grid .reveal-card:nth-child(2),
.service-card-grid .reveal-card:nth-child(2) {
  --reveal-delay: 120ms;
}

.audience-grid .reveal-card:nth-child(3),
.service-card-grid .reveal-card:nth-child(3) {
  --reveal-delay: 240ms;
}

.audience-grid .reveal-card:nth-child(4) {
  --reveal-delay: 80ms;
}

.audience-grid .reveal-card:nth-child(5) {
  --reveal-delay: 200ms;
}

.audience-grid .reveal-card:nth-child(6) {
  --reveal-delay: 320ms;
}

@keyframes reveal {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--copper);
  outline-offset: 4px;
}

@media (max-width: 1040px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .header-actions {
    grid-column: 2;
  }

  .desktop-nav {
    display: none;
  }

  .menu-button {
    display: flex;
  }

  .philosophy-panel,
  .testimonial-split,
  .image-cta,
  .about-section {
    grid-template-columns: 1fr;
  }

  .about-section {
    gap: 2rem;
    padding: 3rem 1.2rem;
  }

  .philosophy-image,
  .testimonial-photo,
  .image-cta-photo {
    min-height: 22rem;
  }

  .about-photo {
    width: min(100%, 34rem);
    height: min(22rem, 62vw);
    min-height: 16rem;
  }

  .testimonial-photo {
    order: 0;
  }

  .testimonial-story {
    order: 0;
  }

  .section-grid,
  .statement {
    grid-template-columns: 1fr;
  }

  .philosophy-body {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .philosophy-intro {
    grid-template-rows: auto;
  }

  .philosophy-cta {
    align-self: start;
  }

  .principle-grid {
    margin-top: 0;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 1.4rem;
    align-items: start;
  }

  .faq-heading,
  .final-cta {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

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

  .faq-column {
    grid-template-rows: auto;
  }

  .map-preview {
    min-height: 20rem;
  }

  .audience-grid,
  .service-card-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .visit-panel ol {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 720px) {
  .site-header {
    min-height: 3.85rem;
    padding: 0.8rem 0.75rem;
  }

  .brand {
    gap: 0.38rem;
  }

  .brand svg {
    width: 1.12rem;
    height: 1.12rem;
  }

  .brand span {
    max-width: none;
    font-size: 0.78rem;
    line-height: 1.05;
    white-space: nowrap;
  }

  .header-actions {
    gap: 0.45rem;
  }

  .header-cta,
  .menu-button {
    font-size: 0.64rem;
  }

  .header-cta {
    min-height: 2.75rem;
    padding: 0 0.62rem;
  }

  .menu-button {
    min-width: 2.75rem;
    min-height: 2.75rem;
  }

  .mobile-nav {
    inset: 4.15rem 0.75rem auto;
  }

  .mobile-nav a {
    display: grid;
    align-items: center;
    min-height: 2.75rem;
  }

  .hero-sticky {
    min-height: 620px;
  }

  .hero-line {
    right: -34vw;
    top: 19vh;
    width: 45rem;
  }

  .hero-inner {
    padding: 8rem 1rem 6rem;
  }

  .hero-title {
    font-size: clamp(3.55rem, 17vw, 4.8rem);
  }

  .hero-bottom {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .hero-bottom .text-link {
    width: min(100%, 19rem);
    min-height: 4.25rem;
    padding-inline: 1.4rem;
  }

  .section {
    padding: 4.5rem 1rem;
  }

  .philosophy {
    padding-top: 3.35rem;
  }

  .proof-strip {
    padding-inline: 1rem;
  }

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

  .proof-grid div {
    min-height: 4.6rem;
  }

  .proof-grid div:nth-child(2n) {
    border-right: 0;
  }

  .proof-grid div:last-child,
  .review-proof-grid div:last-child {
    grid-column: 1 / -1;
    border-right: 0;
  }

  .proof-grid strong {
    font-size: 1.42rem;
  }

  .proof-grid span {
    font-size: 0.68rem;
  }

  .pull-up {
    margin-top: -30vh;
    padding-top: 3.8rem;
  }

  .philosophy-copy {
    padding: 2rem 1.2rem;
  }

  .philosophy-copy h2,
  .statement h2,
  .section-heading h2,
  .faq-heading h2,
  .services-intro h2,
  .image-cta h2,
  .about-section h2,
  .final-cta h2 {
    font-size: clamp(2.6rem, 13vw, 3.6rem);
  }

  .statement h2 {
    max-width: 10.5ch;
  }

  .philosophy-cta {
    width: min(100%, 18rem);
    min-height: 4rem;
  }

  .principle-grid,
  .audience-grid,
  .service-card-grid {
    grid-template-columns: 1fr;
  }

  .audience-grid {
    gap: 0.85rem;
    margin-top: 2rem;
  }

  .audience-card {
    min-height: auto;
    padding: 1.05rem;
  }

  .audience-card h3 {
    margin-top: 0.75rem;
    font-size: clamp(1.42rem, 7vw, 1.82rem);
  }

  .audience-card p {
    margin-top: 0.7rem;
    font-size: 0.94rem;
    line-height: 1.42;
  }

  .principle-grid article {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line-dark);
  }

  .principle-grid article:last-child {
    border-bottom: 0;
  }

  .testimonial-split {
    padding: 1rem 0 1.5rem;
    background: #fbfaf6;
  }

  .testimonial-track {
    gap: 0.75rem;
    padding: 0 1rem 1rem;
    scroll-padding-inline: 1rem;
  }

  .testimonial-slide {
    grid-template-columns: minmax(7.65rem, 0.44fr) minmax(0, 0.56fr);
    flex-basis: calc(100vw - 2rem);
    min-height: 18rem;
    background: var(--white);
    border: 1px solid rgba(16, 36, 28, 0.08);
    box-shadow: var(--shadow);
  }

  .testimonial-photo {
    min-height: 0;
    height: 100%;
  }

  .testimonial-story {
    place-content: center start;
    justify-items: start;
    min-width: 0;
    padding: 1rem 0.95rem;
    text-align: left;
  }

  .testimonial-story .section-kicker {
    font-size: 0.64rem;
  }

  .testimonial-story blockquote {
    margin-top: 0.65rem;
    font-size: clamp(1.08rem, 5.1vw, 1.34rem);
    line-height: 1.14;
  }

  .person {
    margin-top: 0.95rem;
    font-size: 0.72rem;
  }

  .testimonial-dots {
    position: static;
    justify-content: center;
    margin-top: 0.25rem;
    transform: none;
  }

  .service-card {
    min-height: auto;
  }

  .visit-toggle {
    min-height: 4.6rem;
    padding-inline: 1rem;
  }

  .visit-panel {
    padding-inline: 1rem;
  }

  .visit-panel.is-open {
    padding-bottom: 1rem;
  }

  .visit-panel ol {
    grid-template-columns: 1fr;
  }

  .visit-panel li {
    min-height: auto;
  }

  .image-cta-copy {
    padding: 4rem 1rem;
  }

  .about-copy {
    padding: 0;
  }

  .about-photo {
    order: -1;
    width: 100%;
    height: min(17rem, 68vw);
    min-height: 13.5rem;
  }

  .faq-question {
    min-height: 5.2rem;
  }

  .faq-question span:first-child {
    font-size: clamp(1.45rem, 8vw, 2.2rem);
  }

  .closing-section {
    padding: 4rem 1rem;
  }

  .faq-card {
    padding: 1.35rem;
  }

  .faq-heading .map-link {
    display: none;
  }

  .map-preview {
    display: none;
  }

  .map-preview-label {
    top: 0.8rem;
    left: 0.8rem;
    max-width: calc(100% - 1.6rem);
    padding: 0.7rem 0.82rem;
  }

  .final-cta {
    padding: 2rem 1.35rem;
  }

  .final-button {
    width: 100%;
    min-height: 4.4rem;
  }

  .mobile-form-map {
    display: inline-flex;
    width: fit-content;
    margin-top: 0.95rem;
    color: var(--cream);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    line-height: 1.35;
    text-transform: uppercase;
    text-decoration: underline;
    text-underline-offset: 0.24rem;
  }

  .site-footer {
    grid-template-columns: 1fr;
    gap: 1.1rem;
    justify-items: start;
    padding: 1.6rem 1rem;
  }

  .site-footer nav {
    justify-content: flex-start;
  }

  .site-footer p {
    justify-self: start;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .reveal,
  .reveal-on-scroll,
  .reveal-card .card-reveal-content,
  .visit-panel li {
    opacity: 1;
    transform: none;
  }

  .testimonial-photo.reveal-on-scroll,
  .about-photo.reveal-on-scroll {
    clip-path: inset(0);
  }
}
