:root {
  --bg: #ffffff;
  --surface: #f6f8f3;
  --surface-strong: #ecf2e8;
  --ink: #171417;
  --text: #312f32;
  --muted: #6c7069;
  --line: #d9dfd2;
  --sage: #657755;
  --sage-dark: #536345;
  --sage-light: #dfe8d8;
  --coral: #c97862;
  --clay: #b96f5d;
  --plum: #55445a;
  --moss: #3f5139;
  --bluestone: #536165;
  --bluegreen: #78928d;
  --mist-blue: #dce9e7;
  --rose-soft: #f4ddd6;
  --gold: #baa070;
  --gold-dark: #8f7443;
  --gold-soft: #f4ead6;
  --shadow: 0 24px 60px rgba(33, 38, 28, 0.12);
  --shadow-soft: 0 16px 46px rgba(42, 50, 35, 0.1);
  --shadow-lift: 0 18px 42px rgba(42, 50, 35, 0.13);
  --serif: "Iowan Old Style", "Apple Garamond", Georgia, "Times New Roman", serif;
  --sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --container: min(1220px, calc(100vw - 48px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

[id] {
  scroll-margin-top: 112px;
}

body {
  margin: 0;
  padding-top: 100px;
  background:
    linear-gradient(140deg, rgba(236, 242, 232, 0.72), rgba(255, 255, 255, 0) 28%),
    linear-gradient(220deg, rgba(244, 234, 214, 0.42), rgba(255, 255, 255, 0) 38%),
    var(--bg);
  color: var(--text);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
}

img,
svg {
  display: block;
}

picture {
  display: block;
}

a {
  color: inherit;
}

a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 2px solid var(--coral);
  outline-offset: 4px;
}

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

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

.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: 100px;
  padding: 28px max(24px, calc((100vw - 1220px) / 2)) 10px;
  background: #fff;
  border-bottom: 1px solid rgba(217, 223, 210, 0.9);
  box-shadow: 0 1px 0 rgba(217, 223, 210, 0.55);
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  text-decoration: none;
}

.brand__logo {
  display: block;
  width: clamp(260px, 25vw, 340px);
  max-height: 70px;
  height: auto;
  object-fit: contain;
  object-position: left center;
}

.hero__media picture,
.subpage-hero__media picture,
.service-spotlight__media picture,
.service-pathway figure picture {
  width: 100%;
  height: 100%;
}

.service-detail__media picture,
.subpage-hero__portrait picture,
.about-photo picture,
.about-local-image picture {
  width: 100%;
}

.brand__name {
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(1.7rem, 2.4vw, 2.45rem);
  line-height: 1;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(16px, 2.6vw, 38px);
  font-size: 0.92rem;
}

.site-nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 2px;
  text-decoration: none;
  white-space: nowrap;
  transition: color 160ms ease, background 160ms ease, border-color 160ms ease;
}

.site-nav a:not(.nav-cta) {
  color: var(--ink);
}

.site-nav a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 7px;
  left: 0;
  height: 1px;
  background: currentColor;
  opacity: 0.55;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 180ms ease;
}

.site-nav a:not(.nav-cta):hover,
.site-nav a:not(.nav-cta):focus-visible,
.site-nav a[aria-current="page"] {
  color: var(--sage-dark);
}

.site-nav a:not(.nav-cta):hover::after,
.site-nav a:not(.nav-cta):focus-visible::after,
.site-nav a[aria-current="page"]::after {
  transform: scaleX(1);
}

.nav-cta {
  min-width: 144px;
  min-height: 46px;
  padding: 0 24px;
  border: 1px solid var(--sage);
  color: var(--sage-dark);
}

.nav-cta:hover,
.nav-cta:focus-visible {
  background: var(--sage);
  color: #fff;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--ink);
}

.nav-toggle__line {
  display: block;
  width: 18px;
  height: 1px;
  margin: 5px auto;
  background: currentColor;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(560px, 1fr) minmax(0, 2fr);
  min-height: max(560px, calc(100svh - 100px));
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(118deg, #fbfaf6 0%, rgba(246, 248, 243, 0.96) 34%, rgba(255, 255, 255, 0.94) 64%, #fff 100%),
    linear-gradient(230deg, rgba(220, 233, 231, 0.28), rgba(255, 255, 255, 0) 44%),
    #fbfaf6;
  isolation: isolate;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='220' height='220'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.55'/%3E%3C/svg%3E");
  background-size: 220px 220px;
  mix-blend-mode: multiply;
  opacity: 0.05;
  pointer-events: none;
}

.hero__copy {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: none;
  padding: 32px clamp(20px, 2.2vw, 30px) 100px clamp(24px, 2.6vw, 52px);
  padding-top: clamp(20px, 3svh, 40px);
  padding-bottom: clamp(72px, 14svh, 150px);
}

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

h1,
h2 {
  color: var(--ink);
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: 0;
}

h1 {
  margin-bottom: 18px;
  font-size: clamp(2.85rem, 4.3vw, 4.45rem);
  line-height: 1;
}

.hero h1 {
  max-width: 670px;
  margin-bottom: 28px;
  margin-bottom: clamp(20px, 3.5svh, 42px);
  font-size: clamp(2.4rem, 3.2vw, 3.65rem);
  line-height: 1.08;
}

.hero__copy p {
  max-width: 560px;
  margin-bottom: 0;
  color: var(--text);
  font-size: clamp(0.98rem, 1.12vw, 1.08rem);
  line-height: 1.45;
}

.gold-badge {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  width: fit-content;
  margin-bottom: 18px;
  padding: 8px 13px 8px 8px;
  border: 1px solid rgba(186, 160, 112, 0.5);
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(244, 234, 214, 0.82));
  box-shadow: 0 12px 30px rgba(143, 116, 67, 0.12);
  color: var(--ink);
  text-decoration: none;
}

.gold-badge__seal {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  min-width: 42px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 34% 26%, rgba(255, 255, 255, 0.38), rgba(255, 255, 255, 0) 42%),
    var(--gold);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.36), 0 10px 24px rgba(143, 116, 67, 0.22);
}

.gold-badge__seal img {
  width: 15px;
  height: 34px;
}

.gold-badge strong,
.gold-badge small {
  display: block;
}

.gold-badge strong {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 400;
  line-height: 1.1;
}

.gold-badge small {
  margin-top: 2px;
  color: var(--muted);
  font-size: 0.76rem;
  line-height: 1.2;
}

.gold-badge--large {
  margin-bottom: 24px;
  padding: 12px 18px 12px 12px;
}

.gold-badge--large .gold-badge__seal {
  width: 64px;
  height: 64px;
  min-width: 64px;
}

.gold-badge--large strong {
  font-size: 1.35rem;
}

.hero__actions .gold-badge--compact {
  gap: 7px;
  min-height: 44px;
  margin: 0;
  padding: 4px 11px 4px 6px;
  box-shadow: 0 8px 20px rgba(143, 116, 67, 0.1);
}

.hero__actions .gold-badge--compact .gold-badge__seal {
  width: 25px;
  height: 25px;
  min-width: 25px;
}

.hero__actions .gold-badge--compact .gold-badge__seal img {
  width: 9px;
  height: 20px;
}

.hero__actions .gold-badge--compact strong {
  font-size: 0.76rem;
}

.hero__actions .gold-badge--compact small {
  margin-top: 1px;
  font-size: 0.58rem;
}

.hero__actions {
  display: flex;
  align-self: flex-start;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-start;
  margin-top: 36px;
  margin-top: clamp(24px, 4.5svh, 56px);
  gap: 12px;
}

.hero__actions .button {
  min-height: 44px;
  padding: 11px 16px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 14px 25px;
  border: 1px solid var(--sage);
  border-radius: 0;
  cursor: pointer;
  font-size: 0.92rem;
  font-weight: 600;
  line-height: 1;
  text-decoration: none;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease,
    transform 180ms ease;
}

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

.button--primary {
  background: var(--sage);
  color: #fff;
}

.button--primary:hover,
.button--primary:focus-visible {
  background: var(--sage-dark);
  border-color: var(--sage-dark);
}

.button--secondary {
  border-color: rgba(101, 119, 85, 0.72);
  background: rgba(255, 255, 255, 0.62);
  color: var(--sage-dark);
}

.button--secondary:hover,
.button--secondary:focus-visible {
  background: var(--surface);
}

.button:disabled {
  cursor: wait;
  opacity: 0.68;
  transform: none;
}

.hero__media {
  position: relative;
  z-index: 1;
  min-height: 100%;
  margin: 0;
  background: #f7f5ee;
  overflow: hidden;
}

.hero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(251, 250, 246, 0.7), rgba(255, 255, 255, 0.18) 11%, rgba(255, 255, 255, 0) 22%),
    linear-gradient(0deg, rgba(23, 20, 23, 0.08), rgba(23, 20, 23, 0) 34%);
  pointer-events: none;
}

.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 54% center;
}

.hero__slides {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero__slide {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  opacity: 0;
  pointer-events: none;
  transform: scale(1.035);
  transition: opacity 950ms cubic-bezier(0.33, 0, 0.2, 1),
    transform 1300ms cubic-bezier(0.22, 0.61, 0.36, 1);
  will-change: opacity, transform;
}

.hero__slide.is-active {
  z-index: 1;
  opacity: 1;
  transform: scale(1);
}

.hero__slide.is-active img {
  animation: heroImageDrift 6000ms ease-in-out forwards;
}

.hero__slide:nth-child(2) img {
  object-position: 54% center;
}

.hero__slide:nth-child(3) img {
  object-position: 52% center;
}

.hero__media.is-paused .hero__slide.is-active img {
  animation-play-state: paused;
}

.hero__dots {
  position: absolute;
  bottom: clamp(18px, 3vw, 30px);
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 0;
  padding: 2px 6px;
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.6);
  -webkit-backdrop-filter: blur(10px) saturate(1.18);
  backdrop-filter: blur(10px) saturate(1.18);
  box-shadow: 0 10px 26px rgba(33, 38, 28, 0.14);
}

.hero__dots button {
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
}

.hero__dots button::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: rgba(33, 38, 28, 0.32);
  transition: width 280ms cubic-bezier(0.22, 0.8, 0.3, 1), background 220ms ease;
}

.hero__dots button:hover::before,
.hero__dots button:focus-visible::before {
  background: rgba(33, 38, 28, 0.55);
}

.hero__dots button.is-active {
  width: 34px;
}

.hero__dots button.is-active::before {
  width: 20px;
  background: var(--sage-dark);
}

/* Dynamic hero: settle-in choreography, animated underline, KonMari chip */

.hero__copy > * {
  animation: heroSettle 640ms cubic-bezier(0.22, 0.8, 0.3, 1) backwards;
}

.hero__copy > *:nth-child(1) {
  animation-delay: 60ms;
}

.hero__copy > *:nth-child(2) {
  animation-delay: 150ms;
}

.hero__copy > *:nth-child(3) {
  animation-delay: 240ms;
}

.hero__copy > *:nth-child(4) {
  animation-delay: 330ms;
}

.hero__copy > *:nth-child(5) {
  animation-delay: 420ms;
}

.hero-underline {
  position: relative;
  display: inline-block;
}

.hero-underline svg {
  position: absolute;
  right: 0;
  bottom: -0.1em;
  left: 0;
  width: 100%;
  height: 0.26em;
  overflow: visible;
  pointer-events: none;
}

.hero-underline svg path {
  fill: none;
  stroke: var(--gold);
  stroke-width: 6.5;
  stroke-linecap: round;
  stroke-dasharray: 1;
  stroke-dashoffset: 0;
  animation: drawLine 950ms cubic-bezier(0.6, 0, 0.3, 1) 1050ms backwards;
}

.hero__chip {
  position: absolute;
  right: clamp(18px, 3vw, 34px);
  bottom: clamp(18px, 3vw, 34px);
  z-index: 2;
  padding: 13px 21px 15px 15px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.78);
  -webkit-backdrop-filter: blur(12px) saturate(1.3);
  backdrop-filter: blur(12px) saturate(1.3);
  box-shadow: 0 18px 44px rgba(33, 38, 28, 0.18);
  animation: heroSettle 500ms ease-out 1250ms backwards;
}

.hero__chip-label {
  margin: 0 0 9px;
  color: var(--muted);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.hero__chip ul {
  display: grid;
  gap: 7px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.hero__chip li {
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--ink);
  font-size: 0.85rem;
  line-height: 1.2;
  animation: chipItem 420ms ease-out backwards;
}

.hero__chip li:nth-child(1) {
  animation-delay: 1450ms;
}

.hero__chip li:nth-child(2) {
  animation-delay: 1600ms;
}

.hero__chip li:nth-child(3) {
  animation-delay: 1750ms;
}

.hero__chip li:nth-child(4) {
  animation-delay: 1900ms;
}

.hero__chip li:nth-child(5) {
  animation-delay: 2050ms;
}

.hero__chip li svg {
  flex: none;
  width: 17px;
  height: 17px;
  border-radius: 50%;
  background: rgba(101, 119, 85, 0.16);
}

.hero__chip li svg path {
  fill: none;
  stroke: var(--sage-dark);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 1;
  stroke-dashoffset: 0;
  animation: drawLine 380ms ease-out backwards;
}

.hero__chip li:nth-child(1) svg path {
  animation-delay: 1570ms;
}

.hero__chip li:nth-child(2) svg path {
  animation-delay: 1720ms;
}

.hero__chip li:nth-child(3) svg path {
  animation-delay: 1870ms;
}

.hero__chip li:nth-child(4) svg path {
  animation-delay: 2020ms;
}

.hero__chip li:nth-child(5) svg path {
  animation-delay: 2170ms;
}

@keyframes heroSettle {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
}

@keyframes drawLine {
  from {
    stroke-dashoffset: 1;
  }
}

@keyframes chipItem {
  from {
    opacity: 0;
    transform: translateX(-8px);
  }
}

@media (max-width: 1060px) {
  .hero__chip {
    right: 16px;
    bottom: 16px;
    padding: 11px 17px 13px 12px;
  }

  .hero__chip li {
    font-size: 0.8rem;
  }
}

@media (max-width: 820px) {
  .hero__chip {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero__copy > *,
  .hero__media,
  .hero__chip,
  .hero__chip li,
  .hero__chip li svg path,
  .hero-underline svg path {
    animation: none !important;
  }

  .hero__slide {
    transform: none;
    transition: none;
  }
}

.hero__quick {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: clamp(18px, 2.6vw, 30px);
  row-gap: 0;
  width: min(520px, 100%);
  margin: 40px 0 0;
  margin-top: clamp(24px, 5svh, 64px);
  padding-top: 22px;
  padding-top: clamp(16px, 2.5svh, 34px);
  border-top: 1px solid rgba(101, 119, 85, 0.2);
}

.hero__quick > dt,
.hero__quick > dd {
  min-width: 0;
  padding-left: 15px;
  border-left: 1px solid rgba(101, 119, 85, 0.24);
}

.hero__quick > dt:nth-of-type(1),
.hero__quick > dd:nth-of-type(1) {
  grid-column: 1;
}

.hero__quick > dt:nth-of-type(2),
.hero__quick > dd:nth-of-type(2) {
  grid-column: 2;
}

.hero__quick > dt {
  grid-row: 1;
}

.hero__quick dt {
  margin-bottom: 5px;
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero__quick dd {
  grid-row: 2;
  margin: 0;
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(1rem, 1.24vw, 1.16rem);
  line-height: 1.16;
}

.hero__area-list {
  display: grid;
  gap: 7px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.hero__area-list li {
  display: flex;
  align-items: center;
  gap: 9px;
}

.hero__area-list li::before {
  content: "";
  width: 6px;
  height: 6px;
  min-width: 6px;
  background: var(--ink);
}

.scroll-cue {
  position: absolute;
  bottom: clamp(18px, 2.3vw, 30px);
  left: calc(max(560px, 33.333vw) / 2);
  z-index: 4;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border: 1px solid rgba(186, 160, 112, 0.58);
  border-radius: 50%;
  background:
    radial-gradient(circle at 36% 24%, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.72) 48%, rgba(244, 234, 214, 0.58)),
    rgba(255, 255, 255, 0.9);
  box-shadow: 0 14px 34px rgba(42, 50, 35, 0.14), inset 0 0 0 1px rgba(255, 255, 255, 0.68);
  color: var(--sage-dark);
  text-decoration: none;
  transform: translateX(-50%);
  transition: border-color 180ms ease, box-shadow 180ms ease, color 180ms ease;
}

.scroll-cue:hover,
.scroll-cue:focus-visible {
  border-color: rgba(101, 119, 85, 0.72);
  box-shadow: 0 18px 40px rgba(42, 50, 35, 0.18), inset 0 0 0 1px rgba(255, 255, 255, 0.82);
  color: var(--ink);
}

.scroll-cue__line {
  position: absolute;
  top: 13px;
  width: 2px;
  height: 21px;
  border-radius: 999px;
  background: currentColor;
  opacity: 0.42;
  transform-origin: top center;
  animation: scrollLine 1800ms ease-in-out infinite;
}

.scroll-cue__arrow {
  width: 13px;
  height: 13px;
  margin-top: 14px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  animation: scrollArrow 1800ms ease-in-out infinite;
}

.subpage-main {
  overflow: hidden;
  background: #fff;
}

.subpage-main--services {
  background:
    linear-gradient(180deg, #fff 0 10%, rgba(220, 233, 231, 0.48) 30%, rgba(255, 255, 255, 0) 60%),
    #fff;
}

.subpage-main--about {
  background:
    linear-gradient(180deg, #fff 0 10%, rgba(83, 97, 101, 0.08) 28%, rgba(63, 81, 57, 0.06) 52%, rgba(255, 255, 255, 0) 70%),
    #fff;
}

.subpage-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(460px, 0.95fr) minmax(440px, 1.05fr);
  min-height: min(500px, calc(100svh - 100px));
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(130deg, rgba(236, 242, 232, 0.9), rgba(255, 255, 255, 0.74) 46%),
    linear-gradient(230deg, rgba(244, 234, 214, 0.62), rgba(255, 255, 255, 0) 42%),
    #fff;
}

.subpage-hero--services {
  background:
    linear-gradient(125deg, rgba(220, 233, 231, 0.88), rgba(255, 255, 255, 0.7) 44%),
    linear-gradient(230deg, rgba(85, 68, 90, 0.18), rgba(185, 111, 93, 0.2) 34%, rgba(255, 255, 255, 0) 56%),
    #f8faf7;
}

.subpage-hero--services h1 {
  font-size: clamp(2.7rem, 4vw, 4.05rem);
}

.subpage-hero--about {
  grid-template-columns: minmax(430px, 0.92fr) minmax(340px, 0.72fr);
  min-height: min(454px, calc(100svh - 100px));
  background:
    linear-gradient(128deg, rgba(232, 229, 221, 0.72), rgba(255, 255, 255, 0.82) 42%),
    linear-gradient(232deg, rgba(83, 97, 101, 0.14), rgba(63, 81, 57, 0.13) 38%, rgba(255, 255, 255, 0) 58%),
    #f7f4ef;
}

.subpage-hero--about h1 {
  font-size: clamp(2.55rem, 3.65vw, 3.95rem);
}

.subpage-hero--about .subpage-hero__copy {
  padding-top: clamp(34px, 5vw, 62px);
  padding-bottom: clamp(34px, 5vw, 62px);
}

.subpage-hero--about .subpage-hero__copy p {
  max-width: 520px;
  margin-bottom: 18px;
  font-size: clamp(0.98rem, 1.12vw, 1.08rem);
}

.subpage-hero__copy {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 650px;
  padding: clamp(46px, 6vw, 78px) clamp(28px, 4vw, 56px)
    clamp(48px, 6vw, 80px) max(24px, calc((100vw - 1220px) / 2));
}

.subpage-hero__copy p {
  max-width: 560px;
  margin-bottom: 22px;
  color: var(--text);
  font-size: clamp(1rem, 1.25vw, 1.18rem);
  line-height: 1.52;
}

.subpage-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.subpage-hero__media,
.subpage-hero__portrait {
  position: relative;
  min-height: 100%;
  margin: 0;
  overflow: hidden;
}

.subpage-hero__media img,
.subpage-hero__portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.subpage-hero__media img {
  object-position: 45% 54%;
}

.subpage-hero--services .subpage-hero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(23, 20, 23, 0.2), rgba(23, 20, 23, 0) 36%),
    linear-gradient(0deg, rgba(23, 20, 23, 0.12), rgba(23, 20, 23, 0) 42%);
  pointer-events: none;
}

.subpage-hero__portrait {
  display: grid;
  place-items: center;
  padding: clamp(38px, 5vw, 70px) max(24px, calc((100vw - 1220px) / 2)) clamp(38px, 5vw, 70px)
    clamp(26px, 4vw, 56px);
}

.subpage-hero--about .subpage-hero__portrait {
  padding: clamp(30px, 4.2vw, 52px) max(24px, calc((100vw - 1220px) / 2)) clamp(30px, 4.2vw, 52px)
    clamp(22px, 3.2vw, 44px);
  background:
    linear-gradient(150deg, rgba(255, 255, 255, 0.42), rgba(236, 242, 232, 0.46)),
    rgba(246, 248, 243, 0.34);
}

.subpage-hero__portrait::before {
  content: "";
  position: absolute;
  inset: 18% 8% 12% 24%;
  border-radius: 8px;
  background: linear-gradient(145deg, var(--gold-soft), var(--sage-light));
}

.subpage-hero--about .subpage-hero__portrait::before {
  display: none;
}

.subpage-hero__portrait img {
  position: relative;
  width: min(420px, 100%);
  height: auto;
  aspect-ratio: 4 / 5;
  border-radius: 8px;
  box-shadow: var(--shadow);
  object-position: center 43%;
}

.subpage-hero--about .subpage-hero__portrait img {
  width: min(350px, 100%);
  aspect-ratio: 1 / 1;
  object-position: center 38%;
}

.service-page {
  padding-top: clamp(52px, 6vw, 82px);
}

.service-detail-grid {
  display: grid;
  gap: clamp(20px, 3vw, 34px);
}

.service-local-band {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 14px 24px;
  align-items: center;
  margin: 0 0 clamp(18px, 3vw, 34px);
  padding: 18px 0;
  border-top: 1px solid rgba(83, 97, 101, 0.24);
  border-bottom: 1px solid rgba(83, 97, 101, 0.18);
}

.service-local-band p {
  margin: 0;
  color: var(--moss);
  font-size: clamp(0.82rem, 0.95vw, 0.98rem);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.service-local-band ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.service-local-band li {
  color: var(--text);
  font-family: var(--serif);
  font-size: clamp(1rem, 1.35vw, 1.13rem);
  line-height: 1.18;
  white-space: nowrap;
}

.service-local-band li::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-right: 10px;
  border-radius: 50%;
  background: var(--bluestone);
  vertical-align: 0.08em;
}

.service-detail {
  --service-accent: var(--sage);
  --service-soft: rgba(236, 242, 232, 0.54);
  --service-line: rgba(101, 119, 85, 0.28);
  position: relative;
  display: grid;
  grid-template-columns: minmax(300px, 0.82fr) minmax(420px, 1fr);
  gap: clamp(30px, 5vw, 74px);
  align-items: center;
  padding: clamp(28px, 4vw, 46px);
  border: 1px solid rgba(217, 223, 210, 0.9);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 54px rgba(37, 45, 35, 0.06);
}

.service-detail:nth-child(2) {
  --service-accent: var(--bluegreen);
  --service-soft: rgba(220, 233, 231, 0.58);
  --service-line: rgba(120, 146, 141, 0.34);
}

.service-detail:nth-child(3) {
  --service-accent: var(--bluestone);
  --service-soft: rgba(220, 233, 231, 0.44);
  --service-line: rgba(83, 97, 101, 0.28);
}

.service-detail:nth-child(4) {
  --service-accent: var(--clay);
  --service-soft: rgba(244, 221, 214, 0.58);
  --service-line: rgba(185, 111, 93, 0.3);
}

.service-detail:nth-child(5) {
  --service-accent: var(--plum);
  --service-soft: rgba(85, 68, 90, 0.1);
  --service-line: rgba(85, 68, 90, 0.26);
}

.service-detail::before,
.service-detail::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.service-detail::before {
  top: clamp(24px, 3.5vw, 42px);
  bottom: clamp(24px, 3.5vw, 42px);
  left: 0;
  width: 6px;
  border-radius: 999px;
  background: var(--service-accent);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.7);
}

.service-detail::after {
  inset: 0;
  z-index: 0;
  border-radius: 8px;
  background:
    linear-gradient(115deg, var(--service-soft), rgba(255, 255, 255, 0.48) 54%),
    #fff;
  opacity: 0.78;
}

.service-detail > * {
  position: relative;
  z-index: 1;
}

.service-detail--reverse {
  grid-template-columns: minmax(420px, 1fr) minmax(300px, 0.82fr);
}

.service-detail--reverse .service-detail__media {
  order: 2;
}

.service-detail__media {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--service-line);
  border-radius: 8px;
  background: var(--service-soft);
  box-shadow: var(--shadow-soft);
}

.service-detail__media img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 520ms ease;
}

.service-detail:hover .service-detail__media img {
  transform: scale(1.035);
}

.service-detail__copy h2 {
  max-width: 560px;
  margin-bottom: 14px;
  font-size: clamp(2rem, 3vw, 3.25rem);
}

.service-detail .eyebrow {
  color: var(--service-accent);
}

.service-detail__copy > p:not(.eyebrow) {
  max-width: 650px;
  margin-bottom: 0;
  color: var(--muted);
}

.service-detail__copy .button {
  width: fit-content;
}

.service-detail .service-points li::before {
  background: var(--service-accent);
}

.cta-band.page-cta {
  margin-top: clamp(6px, 1vw, 14px);
  margin-bottom: clamp(64px, 8vw, 110px);
}

.about-story-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.4fr) minmax(420px, 1fr);
  gap: clamp(28px, 4.6vw, 58px);
  align-items: stretch;
}

.about-story-grid .about-story__side {
  order: -1;
}

.about-story__copy h2 {
  max-width: 640px;
  margin-bottom: clamp(18px, 2.2vw, 28px);
  font-size: clamp(2rem, 3vw, 3.1rem);
}

.about-story__copy p.about-story__lede {
  color: var(--muted);
  margin-bottom: clamp(18px, 2.2vw, 26px);
  font-size: clamp(1.06rem, 1.3vw, 1.22rem);
  line-height: 1.5;
}

.about-story__side {
  display: grid;
  grid-template-rows: auto minmax(150px, 1fr);
  gap: 16px;
}

.about-story__copy {
  max-width: 760px;
}

.about-story__copy p {
  color: var(--text);
  margin-bottom: 18px;
  font-size: clamp(1.05rem, 1.24vw, 1.18rem);
  line-height: 1.62;
}

.about-story__copy p:last-child {
  margin-bottom: 0;
}

.about-facts {
  position: relative;
  overflow: hidden;
  padding: clamp(20px, 2.4vw, 28px);
  border: 1px solid rgba(85, 68, 90, 0.2);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(85, 68, 90, 0.08), rgba(220, 233, 231, 0.66) 56%, rgba(255, 255, 255, 0.96)),
    #fff;
  box-shadow: var(--shadow-soft);
}

.about-local-image {
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(85, 68, 90, 0.22);
  border-radius: 8px;
  background: var(--plum);
  box-shadow: var(--shadow-soft);
}

.about-local-image {
  position: relative;
  min-height: 170px;
}

.about-local-image picture {
  display: block;
  height: 100%;
}

.about-local-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 52% 50%;
}

.about-facts::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 6px;
  background: linear-gradient(90deg, var(--plum), var(--clay), var(--sage));
}

.about-facts .proof-list dt {
  color: var(--bluestone);
}

.about-facts .proof-list dd {
  font-family: var(--serif);
  font-size: clamp(1.03rem, 1.28vw, 1.28rem);
  line-height: 1.13;
}

.principle-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 3vw, 28px);
}

.principle-card {
  --principle-accent: var(--sage);
  position: relative;
  overflow: hidden;
  min-height: 198px;
  padding: clamp(22px, 2.6vw, 30px);
  border: 1px solid rgba(217, 223, 210, 0.9);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(246, 248, 243, 0.94), rgba(255, 255, 255, 0.96)),
    #fff;
}

.principle-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  background: var(--principle-accent);
}

.principle-card:nth-child(1) {
  --principle-accent: var(--plum);
  border-color: rgba(85, 68, 90, 0.2);
  background:
    linear-gradient(145deg, rgba(85, 68, 90, 0.08), rgba(255, 255, 255, 0.96)),
    #fff;
}

.principle-card:nth-child(2) {
  --principle-accent: var(--bluegreen);
  border-color: rgba(120, 146, 141, 0.28);
  background:
    linear-gradient(145deg, rgba(220, 233, 231, 0.72), rgba(255, 255, 255, 0.95)),
    #fff;
}

.principle-card:nth-child(3) {
  --principle-accent: var(--clay);
  border-color: rgba(185, 111, 93, 0.25);
  background:
    linear-gradient(145deg, rgba(244, 221, 214, 0.72), rgba(255, 255, 255, 0.95)),
    #fff;
}

.principle-card h3 {
  margin-bottom: 12px;
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(1.36rem, 1.76vw, 1.78rem);
  font-weight: 400;
  line-height: 1.08;
}

.principle-card p {
  margin: 0;
  color: var(--muted);
}

.section {
  width: var(--container);
  margin: 0 auto;
  padding: clamp(58px, 7vw, 98px) 0;
}

.subpage-main--about .section {
  padding-top: clamp(42px, 5vw, 70px);
  padding-bottom: clamp(42px, 5vw, 70px);
}

.subpage-main--about .section__intro {
  align-items: start;
  gap: clamp(22px, 4vw, 54px);
  margin-bottom: clamp(24px, 3vw, 36px);
}

.subpage-main--about .section__intro h2 {
  max-width: 720px;
  font-size: clamp(1.95rem, 3vw, 3.2rem);
}

.services.section {
  padding-top: clamp(44px, 5vw, 72px);
  padding-bottom: clamp(44px, 5vw, 72px);
}

.section__intro {
  display: grid;
  grid-template-columns: minmax(280px, 0.76fr) minmax(300px, 0.6fr);
  gap: clamp(28px, 6vw, 82px);
  align-items: center;
  margin-bottom: clamp(30px, 4vw, 48px);
}

.section__intro h2 {
  margin-bottom: 0;
  font-size: clamp(2rem, 3vw, 3.3rem);
}

.services .section__intro {
  align-items: start;
  margin-bottom: clamp(24px, 3vw, 34px);
}

.services .section__intro h2 {
  font-size: clamp(2rem, 3vw, 3.25rem);
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2.1rem, 3.6vw, 3.85rem);
  line-height: 1.02;
}

.section__intro p,
.proof-band p,
.contact__copy p {
  color: var(--muted);
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--sage-dark);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.services-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
  gap: clamp(28px, 4.5vw, 58px);
  align-items: start;
}

.service-spotlight {
  display: grid;
  grid-template-columns: minmax(210px, 0.62fr) minmax(300px, 1fr);
  min-height: 560px;
  border: 1px solid rgba(217, 223, 210, 0.72);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(246, 248, 243, 0.92), rgba(255, 255, 255, 0.94)),
    #fff;
  overflow: hidden;
}

.service-spotlight__media {
  min-height: 100%;
  margin: 0;
  overflow: hidden;
}

.service-spotlight__media img,
.service-pathway figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform 500ms ease;
}

.service-spotlight__media img {
  object-position: 42% 56%;
}

.service-spotlight:hover .service-spotlight__media img,
.service-pathway:hover figure img {
  transform: scale(1.055);
}

.service-spotlight__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(30px, 4vw, 52px);
}

.service-spotlight h3,
.service-pathway h3 {
  margin: 0;
  color: var(--ink);
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: 0;
}

.service-spotlight h3 {
  max-width: 390px;
  margin-bottom: 16px;
  font-size: clamp(1.85rem, 2.35vw, 2.48rem);
  line-height: 1.04;
}

.service-spotlight__copy > p:not(.eyebrow),
.service-pathway p:not(.eyebrow) {
  margin-bottom: 0;
  color: var(--muted);
}

.service-points {
  display: grid;
  gap: 10px;
  margin: 20px 0 24px;
  padding: 0;
  list-style: none;
}

.service-points li {
  position: relative;
  padding-left: 20px;
  color: var(--text);
}

.service-points li::before {
  content: "";
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
}

.service-pathways {
  display: grid;
  gap: 0;
  border-top: 1px solid rgba(217, 223, 210, 0.9);
}

.service-pathway {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 176px;
  gap: clamp(18px, 2.4vw, 28px);
  align-items: center;
  padding: clamp(17px, 2.3vw, 24px) 0;
  border-bottom: 1px solid rgba(217, 223, 210, 0.9);
}

.service-pathway figure {
  position: relative;
  height: 126px;
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: var(--surface);
}

.service-pathway--move {
  grid-template-columns: minmax(0, 1fr) 174px;
}

.service-pathway--move figure {
  height: 148px;
}

.service-pathway--digital figure,
.service-pathway--business figure {
  height: 120px;
}

.service-pathway--virtual figure img {
  object-position: 58% 42%;
}

.service-pathway--move figure img {
  object-position: 35% 48%;
}

.service-pathway--digital figure img {
  object-position: 52% 54%;
}

.service-pathway--business figure img {
  object-position: 52% 50%;
}

.service-pathway h3 {
  margin-bottom: 8px;
  font-size: clamp(1.5rem, 1.9vw, 1.95rem);
  line-height: 1.05;
}

.service-pathway p:not(.eyebrow) {
  max-width: 430px;
  font-size: 0.96rem;
}

.service-pathway a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  margin-top: 18px;
  color: var(--sage-dark);
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
}

.service-pathway a::after {
  content: "";
  width: 18px;
  height: 1px;
  background: currentColor;
  box-shadow: 6px 0 0 currentColor;
  clip-path: polygon(0 42%, 72% 42%, 72% 0, 100% 50%, 72% 100%, 72% 58%, 0 58%);
}

.contact-notes svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.55;
}

.services-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  margin-top: clamp(26px, 3vw, 34px);
  padding: clamp(22px, 3vw, 30px) 0 0;
  border: 0;
  border-top: 1px solid rgba(217, 223, 210, 0.9);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.audience-strip {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  align-items: start;
  margin-top: clamp(20px, 3vw, 28px);
  padding: 12px 0 0;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.audience-strip p {
  margin: 0;
  color: var(--sage-dark);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.audience-strip ul {
  display: grid;
  justify-content: start;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.audience-strip li {
  display: flex;
  align-items: baseline;
  gap: 12px;
  color: var(--text);
  font-size: 0.94rem;
}

.audience-strip li::before {
  content: "";
  display: block;
  flex: 0 0 auto;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
}

.services-cta h3 {
  margin: 0 0 8px;
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(1.55rem, 2.2vw, 2.15rem);
  font-weight: 400;
  line-height: 1.08;
}

.services-cta p {
  max-width: 650px;
  margin: 0;
  color: var(--muted);
}

.about-panel {
  padding: clamp(52px, 6vw, 86px) max(24px, calc((100vw - 1220px) / 2));
  background:
    linear-gradient(115deg, rgba(236, 242, 232, 0.98), rgba(255, 255, 255, 0.72) 48%, rgba(244, 234, 214, 0.72)),
    #fff;
}

.about-panel__inner {
  display: grid;
  grid-template-columns: minmax(260px, 0.46fr) minmax(420px, 1fr);
  gap: clamp(36px, 7vw, 92px);
  align-items: center;
}

.about-photo {
  position: relative;
  margin: 0;
  border-radius: 8px;
  max-width: 430px;
  justify-self: center;
  isolation: isolate;
}

.about-photo::before {
  content: "";
  position: absolute;
  inset: 18px -18px -18px 18px;
  z-index: -1;
  border-radius: 8px;
  background: linear-gradient(145deg, var(--gold-soft), var(--sage-light));
}

.about-photo img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center 45%;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.about-copy h2 {
  max-width: 480px;
  margin-bottom: 14px;
}

.proof-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  column-gap: 18px;
  row-gap: 0;
  margin: 0;
}

.proof-list > dt,
.proof-list > dd {
  min-height: auto;
  padding: 0 20px 0 0;
  border: 0;
  border-right: 1px solid rgba(101, 119, 85, 0.22);
  border-radius: 0;
  background: transparent;
}

.proof-list > dt:nth-of-type(1),
.proof-list > dd:nth-of-type(1) {
  grid-column: 1;
}

.proof-list > dt:nth-of-type(2),
.proof-list > dd:nth-of-type(2) {
  grid-column: 2;
}

.proof-list > dt:nth-of-type(3),
.proof-list > dd:nth-of-type(3) {
  grid-column: 3;
  border-right: 0;
}

.proof-list > dt {
  grid-row: 1;
}

.proof-list > dd {
  grid-row: 2;
}

.proof-list > dt:last-of-type,
.proof-list > dd:last-of-type {
  border-right: 0;
}

.proof-list dt {
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.proof-list dd {
  margin: 0;
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(1.15rem, 1.35vw, 1.5rem);
  line-height: 1.2;
}

.proof-list .hero__area-list {
  gap: 8px;
}

.proof-list.proof-list--stacked {
  grid-template-columns: 1fr;
  gap: 0;
}

.proof-list.proof-list--stacked > dt,
.proof-list.proof-list--stacked > dd {
  grid-column: 1;
  grid-row: auto;
  padding-right: 0;
  border-right: 0;
}

.proof-list.proof-list--stacked > dt:not(:first-of-type) {
  padding-top: 18px;
}

.proof-list.proof-list--stacked > dd {
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(101, 119, 85, 0.22);
}

.proof-list.proof-list--stacked > dd:last-of-type {
  padding-bottom: 0;
  border-bottom: 0;
}

.about-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.cta-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  width: var(--container);
  margin: clamp(38px, 5vw, 66px) auto 0;
  padding: clamp(30px, 4vw, 48px);
  border-radius: 8px;
  background:
    linear-gradient(110deg, rgba(83, 99, 69, 0.96), rgba(101, 119, 85, 0.88)),
    var(--sage);
  color: #fff;
  box-shadow: var(--shadow);
}

.cta-band h2 {
  margin-bottom: 10px;
  color: #fff;
  font-size: clamp(1.9rem, 2.4vw, 2.3rem);
}

.cta-band p {
  max-width: 680px;
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
}

.cta-band .button {
  border-color: #fff;
  background: #fff;
  color: var(--sage-dark);
}

.faq.section {
  padding-top: clamp(52px, 6vw, 82px);
  padding-bottom: clamp(40px, 5vw, 72px);
}

.faq .section__intro {
  margin-bottom: clamp(20px, 3vw, 32px);
}

.faq-list {
  display: grid;
  counter-reset: faq;
  border-top: 1px solid rgba(217, 223, 210, 0.96);
}

.faq-item {
  counter-increment: faq;
  border-bottom: 1px solid rgba(217, 223, 210, 0.96);
}

.faq-item summary {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) 28px;
  gap: clamp(14px, 2.4vw, 26px);
  align-items: center;
  padding: clamp(16px, 2vw, 22px) 0;
  cursor: pointer;
  list-style: none;
}

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

.faq-item summary::before {
  content: counter(faq, decimal-leading-zero);
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(186, 160, 112, 0.42);
  border-radius: 50%;
  background: linear-gradient(145deg, rgba(244, 234, 214, 0.72), rgba(255, 255, 255, 0.88));
  color: var(--gold-dark);
  font-family: var(--sans);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.05em;
}

.faq-item summary span:first-child {
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(1.08rem, 1.32vw, 1.42rem);
  line-height: 1.18;
}

.faq-item__icon {
  position: relative;
  justify-self: end;
  width: 24px;
  height: 24px;
  color: var(--gold-dark);
}

.faq-item__icon::before,
.faq-item__icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transform: translate(-50%, -50%);
  transition: opacity 180ms ease, transform 180ms ease;
}

.faq-item__icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-item[open] .faq-item__icon::after {
  opacity: 0;
  transform: translate(-50%, -50%) rotate(90deg) scaleX(0.4);
}

.faq-item__answer {
  max-width: 780px;
  padding: 0 58px clamp(22px, 3vw, 30px) 0;
}

.faq-item__answer p {
  margin: 0;
  color: var(--muted);
  font-size: 1.02rem;
}

.faq-item__answer a {
  color: var(--sage-dark);
  font-weight: 700;
  text-decoration: none;
  border-bottom: 1px solid rgba(83, 99, 69, 0.38);
}

.faq-item__answer a:hover,
.faq-item__answer a:focus-visible {
  color: var(--ink);
  border-bottom-color: currentColor;
}

.contact {
  display: grid;
  grid-template-columns: minmax(280px, 0.74fr) minmax(420px, 1fr);
  gap: clamp(34px, 6vw, 82px);
  align-items: start;
}

.contact-notes {
  display: grid;
  gap: 18px;
  margin: 34px 0 0;
  padding: 0;
  list-style: none;
  color: var(--text);
}

.contact-notes li {
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
}

.contact-notes svg {
  width: 24px;
  height: 24px;
  color: var(--sage);
}

.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.field-group {
  display: grid;
  gap: 7px;
}

.field-group--wide {
  grid-column: 1 / -1;
}

.field-group--honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.field-group--honeypot input {
  width: 1px;
  height: 1px;
  min-height: 0;
  padding: 0;
  border: 0;
}

label {
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 0;
  background: #fff;
  color: var(--ink);
  min-height: 52px;
  padding: 13px 15px;
  outline: none;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

textarea {
  min-height: 148px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--sage);
  box-shadow: 0 0 0 4px rgba(101, 119, 85, 0.14);
}

input[aria-invalid="true"],
textarea[aria-invalid="true"] {
  border-color: var(--coral);
  box-shadow: 0 0 0 4px rgba(201, 120, 98, 0.14);
}

.form-status {
  grid-column: 1 / -1;
  margin: -2px 0 0;
  color: var(--sage-dark);
  font-size: 0.94rem;
}

.contact-form--submitted .form-status {
  font-weight: 700;
}

.form-response-page {
  min-height: 100svh;
  padding: clamp(28px, 5vw, 64px);
}

.form-response {
  width: min(720px, 100%);
  margin: 0 auto;
  padding: clamp(30px, 5vw, 54px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.form-response h1 {
  margin-bottom: 14px;
  font-size: clamp(2.1rem, 4vw, 3.4rem);
}

.form-response p {
  margin-bottom: 24px;
  color: var(--muted);
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 28px max(24px, calc((100vw - 1220px) / 2));
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.9rem;
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  color: var(--sage-dark);
  text-decoration: none;
}

.reveal {
  opacity: 0.96;
  transform: translateY(12px);
  transition: opacity 700ms ease, transform 700ms ease;
}

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

@keyframes heroImageDrift {
  from {
    transform: scale(1.01) translate3d(0, 0, 0);
  }

  to {
    transform: scale(1.055) translate3d(-1.4%, 0.8%, 0);
  }
}

@keyframes scrollLine {
  0%,
  100% {
    transform: scaleY(0.58);
    opacity: 0.28;
  }

  45% {
    transform: scaleY(1);
    opacity: 0.62;
  }
}

@keyframes scrollArrow {
  0%,
  100% {
    transform: translateY(-5px) rotate(45deg);
    opacity: 0.48;
  }

  45% {
    transform: translateY(5px) rotate(45deg);
    opacity: 1;
  }
}

@media (max-width: 1060px) {
  .hero,
  .subpage-hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero__media,
  .subpage-hero__media {
    min-height: 330px;
    max-height: 430px;
    order: -1;
  }

  .hero__media {
    order: 0;
  }

  .hero__copy,
  .subpage-hero__copy {
    max-width: none;
    padding-top: clamp(34px, 6vw, 56px);
    padding-bottom: clamp(42px, 7vw, 64px);
  }

  .hero__copy {
    order: -1;
  }

  .scroll-cue {
    left: 50%;
  }

  .subpage-hero__portrait {
    min-height: auto;
    order: -1;
    padding: clamp(34px, 6vw, 56px) 24px 0;
  }

  .subpage-hero__portrait img {
    margin-inline: auto;
  }

  .subpage-hero__portrait::before {
    inset: 24% 18% 4% 24%;
  }

  .subpage-hero--about .subpage-hero__copy {
    order: -1;
    padding-top: clamp(30px, 5vw, 46px);
    padding-bottom: 22px;
  }

  .subpage-hero--about .subpage-hero__portrait {
    order: 0;
    padding: 0 24px clamp(30px, 5vw, 46px);
  }

  .subpage-hero--about .subpage-hero__portrait img {
    width: min(320px, 72vw);
  }

  .services-layout,
  .service-spotlight,
  .service-detail,
  .service-detail--reverse,
  .about-story-grid,
  .service-local-band,
  .principle-grid {
    grid-template-columns: 1fr;
  }

  .about-story__side,
  .about-story-grid .about-story__side {
    grid-template-columns: minmax(220px, 0.78fr) minmax(240px, 1fr);
    grid-template-rows: none;
    align-items: stretch;
    order: 0;
  }

  .service-detail--reverse .service-detail__media {
    order: 0;
  }

  .service-spotlight {
    min-height: auto;
  }

  .service-spotlight__media {
    min-height: 360px;
  }

  .contact,
  .about-panel__inner,
  .cta-band,
  .services-cta {
    grid-template-columns: 1fr;
  }

  .proof-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

}

@media (max-width: 820px) {
  :root {
    --container: min(100vw - 32px, 660px);
  }

  [id] {
    scroll-margin-top: 98px;
  }

  .site-header {
    height: 84px;
    padding: 7px 16px;
  }

  body {
    padding-top: 84px;
  }

  .nav-toggle {
    display: inline-block;
  }

  .site-nav {
    position: absolute;
    inset: 84px 16px auto 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px;
    border: 1px solid var(--line);
    background: #fff;
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    justify-content: flex-start;
    min-height: auto;
    padding: 14px 10px;
  }

  .site-nav a:not(.nav-cta)::after {
    display: none;
  }

  .nav-cta {
    min-width: 0;
    min-height: 44px;
    margin-top: 8px;
    padding: 0 14px;
    text-align: center;
  }

  .brand__name {
    font-size: 1.8rem;
  }

  .brand__logo {
    width: min(270px, calc(100vw - 104px));
    max-height: 70px;
  }

  h1 {
    font-size: clamp(1.86rem, 7.15vw, 2.36rem);
    line-height: 1.08;
  }

  .hero h1 {
    max-width: 12.2em;
    margin-bottom: 14px;
    font-size: clamp(1.8rem, 6.95vw, 2.24rem);
    line-height: 1.09;
  }

  .hero__copy,
  .subpage-hero__copy {
    padding: 20px 20px 26px;
  }

  .hero__copy p {
    font-size: 0.98rem;
    line-height: 1.46;
  }

  .hero__media,
  .subpage-hero__media {
    min-height: 188px;
    max-height: 226px;
  }

  .hero__media {
    animation: none;
  }

  .hero__copy > *,
  .hero-underline svg path,
  .hero__slide.is-active img {
    animation: none;
  }

  .scroll-cue {
    display: none;
  }

  .subpage-hero__portrait {
    padding: 28px 16px 0;
  }

  .subpage-hero__portrait::before {
    inset: 18% 10% -4% 16%;
  }

  .subpage-hero--about .subpage-hero__copy {
    padding: 22px 20px 18px;
  }

  .subpage-hero--about .subpage-hero__portrait {
    padding: 0 20px 26px;
  }

  .subpage-hero--about .subpage-hero__portrait img {
    width: min(278px, 82vw);
  }

  .subpage-main--about .section {
    padding-top: 36px;
    padding-bottom: 36px;
  }

  .subpage-main--about .section__intro {
    margin-bottom: 22px;
  }

  .about-story__side,
  .about-story-grid .about-story__side {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .about-local-image {
    position: static;
    min-height: 0;
  }

  .about-local-image img {
    position: static;
    height: auto;
    aspect-ratio: 16 / 10;
  }

  .gold-badge {
    max-width: 100%;
    margin-bottom: 12px;
    padding: 7px 12px 7px 7px;
  }

  .gold-badge__seal {
    width: 38px;
    height: 38px;
    min-width: 38px;
  }

  .gold-badge__seal img {
    width: 14px;
    height: 31px;
  }

  .gold-badge strong {
    font-size: 1rem;
  }

  .gold-badge small {
    font-size: 0.72rem;
  }

  .hero__actions {
    align-self: stretch;
    gap: 10px;
  }

  .hero__actions .gold-badge--compact {
    margin: 4px auto 0;
  }

  .hero__quick {
    grid-template-columns: 1fr;
    row-gap: 0;
    margin-top: 16px;
    padding-top: 15px;
  }

  .hero__quick > dt,
  .hero__quick > dd {
    grid-column: 1;
    grid-row: auto;
    padding-left: 12px;
  }

  .hero__quick > dd:not(:last-of-type) {
    margin-bottom: 11px;
  }

  .hero__quick dd {
    font-size: 0.98rem;
  }

  .section__intro,
  .services-layout,
  .service-spotlight,
  .service-pathway,
  .service-detail,
  .proof-list,
  .contact-form {
    grid-template-columns: 1fr;
  }

  .hero__actions .button,
  .subpage-hero__actions .button,
  .about-actions .button,
  .service-spotlight .button,
  .service-detail__copy .button {
    width: 100%;
    min-height: 46px;
  }

  .service-spotlight__media {
    min-height: 250px;
  }

  .service-spotlight__copy {
    padding: 26px 20px 30px;
  }

  .service-points {
    margin: 20px 0 24px;
  }

  .service-pathway {
    gap: 18px;
    padding: 24px 0;
  }

  .service-pathway figure,
  .service-pathway--move figure,
  .service-pathway--digital figure,
  .service-pathway--business figure {
    height: 210px;
  }

  .service-detail {
    gap: 18px;
    padding: 18px;
  }

  .service-detail::before {
    top: 18px;
    bottom: 18px;
    width: 4px;
  }

  .service-detail__copy h2 {
    font-size: clamp(1.8rem, 8vw, 2.55rem);
  }

  .about-facts,
  .principle-card {
    padding: 22px 18px;
  }

  .principle-card {
    min-height: auto;
  }

  .about-panel {
    padding: 54px 16px;
  }

  .about-panel .proof-list > dt,
  .about-panel .proof-list > dd {
    grid-column: 1;
    grid-row: auto;
    padding-right: 0;
    border-right: 0;
  }

  .proof-list > dt:not(:first-of-type) {
    padding-top: 16px;
  }

  .proof-list > dd {
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(101, 119, 85, 0.22);
  }

  .proof-list > dd:last-of-type {
    padding-bottom: 0;
    border-bottom: 0;
  }

  .gold-badge,
  .audience-strip,
  .services-cta,
  .cta-band {
    width: 100%;
  }

  .hero__actions .gold-badge--compact {
    width: fit-content;
  }

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

  .service-local-band {
    grid-template-columns: 1fr;
    padding: 16px 0;
  }

  .service-local-band ul {
    display: grid;
    gap: 8px;
  }

  .cta-band,
  .services-cta {
    padding: 28px 20px;
  }

  .faq.section {
    padding-top: 44px;
  }

  .faq-item summary {
    grid-template-columns: 34px minmax(0, 1fr) 24px;
    gap: 12px;
  }

  .faq-item summary::before {
    width: 28px;
    height: 28px;
    font-size: 0.58rem;
  }

  .faq-item__answer {
    padding-right: 0;
  }

  .about-photo::before {
    inset: 12px -10px -12px 10px;
  }

  .field-group--wide {
    grid-column: auto;
  }

  .site-footer {
    flex-direction: column;
    align-items: flex-start;
    padding: 26px 16px;
  }
}

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

  .hero__media img,
  .hero__slide.is-active img,
  .service-spotlight__media img,
  .service-pathway figure img,
  .scroll-cue__line,
  .scroll-cue__arrow,
  .reveal,
  .reveal.is-visible {
    animation: none !important;
    transition: none !important;
    transform: none !important;
  }

  .hero__slide {
    transition: none !important;
  }

  .hero__slide:not(.is-active) {
    display: none;
  }
}

/* Legal pages and footer meta */
.legal-content {
  max-width: 760px;
  padding-top: clamp(44px, 6vw, 72px);
}

.legal-content h1 {
  margin-bottom: 8px;
  font-size: clamp(2.1rem, 3vw, 2.9rem);
}

.legal-updated {
  margin-bottom: clamp(28px, 3.5vw, 42px);
  color: var(--muted);
  font-size: 0.9rem;
}

.legal-content h2 {
  margin: 34px 0 12px;
  font-size: clamp(1.3rem, 1.8vw, 1.6rem);
}

.legal-content p,
.legal-content li {
  color: var(--text);
  font-size: 1.02rem;
  line-height: 1.65;
}

.legal-content ul {
  margin: 0 0 16px;
  padding-left: 22px;
}

.legal-content a {
  color: var(--sage-dark);
}

.site-footer__meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}
