:root {
  --cream: #f7f2ea;
  --paper: #fffdf8;
  --white: #ffffff;
  --sage-50: #edf1eb;
  --sage-100: #dde5da;
  --sage-300: #a8b7a3;
  --sage-500: #6e7f6a;
  --sage-700: #496151;
  --forest: #2f4738;
  --forest-deep: #20342a;
  --terracotta: #b86f52;
  --terracotta-dark: #97553d;
  --clay: #d7b8a5;
  --peach: #edd9cb;
  --gold: #c4a46d;
  --ink: #27312b;
  --ink-soft: #58615c;
  --line: rgba(47, 71, 56, .16);
  --shadow-sm: 0 8px 24px rgba(39, 49, 43, .08);
  --shadow-md: 0 20px 54px rgba(39, 49, 43, .13);
  --shadow-lg: 0 34px 90px rgba(39, 49, 43, .18);
  --radius-sm: .65rem;
  --radius-md: 1.15rem;
  --radius-lg: 2rem;
  --radius-pill: 999px;
  --serif: Iowan Old Style, Palatino Linotype, Book Antiqua, Palatino, Georgia, serif;
  --sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --container: 74rem;
  --narrow: 48rem;
  --section-space: clamp(4.5rem, 9vw, 8.5rem);
  --header-height: 5.1rem;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 7.5rem; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 1rem;
  line-height: 1.7;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  overflow-x: clip;
}
body.nav-open { overflow: hidden; }
img, picture, svg { display: block; max-width: 100%; }
img { height: auto; }
a { color: inherit; text-decoration-thickness: .08em; text-underline-offset: .18em; }
a:hover { text-decoration-thickness: .12em; }
button, input, textarea, select { font: inherit; }
button { color: inherit; }
::selection { color: var(--forest-deep); background: var(--peach); }

h1, h2, h3, h4, p, ul, ol, blockquote { margin-top: 0; }
h1, h2, h3, h4 {
  color: var(--forest-deep);
  font-family: var(--serif);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -.025em;
  text-wrap: balance;
}
h1 { font-size: clamp(3rem, 7vw, 6.7rem); }
h2 { font-size: clamp(2.25rem, 4.6vw, 4.25rem); }
h3 { font-size: clamp(1.5rem, 2.6vw, 2.3rem); }
h4 { font-size: 1.28rem; }
p { margin-bottom: 1.15rem; }
strong { font-weight: 700; }
small { font-size: .875rem; }

.container { width: min(calc(100% - 2rem), var(--container)); margin-inline: auto; }
.container--narrow { width: min(calc(100% - 2rem), var(--narrow)); margin-inline: auto; }
.section { padding-block: var(--section-space); position: relative; }
.section--compact { padding-block: clamp(3.5rem, 6vw, 5.5rem); }
.section--cream { background: var(--cream); }
.section--sage { background: var(--sage-50); }
.section--forest { color: var(--cream); background: var(--forest-deep); }
.section--forest h2, .section--forest h3, .section--forest h4 { color: var(--paper); }
.section--peach { background: #f4e8df; }
.section-overflow { overflow: hidden; }
.spacer-top { margin-top: 2rem; }

.sr-only {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0, 0, 0, 0);
  white-space: nowrap; border: 0;
}
.skip-link {
  position: fixed; z-index: 9999; left: 1rem; top: 1rem;
  padding: .75rem 1rem; border-radius: var(--radius-sm);
  color: var(--white); background: var(--forest-deep);
  transform: translateY(-180%); transition: transform .2s ease;
}
.skip-link:focus { transform: translateY(0); }
:focus-visible { outline: 3px solid var(--terracotta); outline-offset: 3px; }

.eyebrow {
  margin-bottom: 1rem;
  color: var(--terracotta-dark);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .16em;
  line-height: 1.3;
  text-transform: uppercase;
}
.section--forest .eyebrow { color: #e9bda9; }
.lead { max-width: 42rem; color: var(--ink-soft); font-size: clamp(1.12rem, 1.6vw, 1.35rem); line-height: 1.65; }
.section--forest .lead { color: rgba(255, 253, 248, .78); }
.kicker { color: var(--sage-700); font-weight: 700; }
.muted { color: var(--ink-soft); }
.max-42 { max-width: 42rem; }
.center { text-align: center; }
.center .lead, .center .section-heading__copy { margin-inline: auto; }

.button-row { display: flex; flex-wrap: wrap; align-items: center; gap: .85rem 1.1rem; }
.button {
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  min-height: 3.2rem; padding: .8rem 1.35rem;
  border: 1px solid transparent; border-radius: var(--radius-pill);
  color: var(--white); background: var(--terracotta);
  font-size: .92rem; font-weight: 800; letter-spacing: .015em;
  text-decoration: none;
  box-shadow: 0 10px 28px rgba(151, 85, 61, .2);
  transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
}
.button:hover { color: var(--white); background: var(--terracotta-dark); transform: translateY(-2px); box-shadow: 0 15px 34px rgba(151, 85, 61, .28); }
.button:active { transform: translateY(0); }
.button--secondary { color: var(--forest-deep); background: transparent; border-color: rgba(47, 71, 56, .35); box-shadow: none; }
.button--secondary:hover { color: var(--white); background: var(--forest); border-color: var(--forest); box-shadow: none; }
.button--light { color: var(--forest-deep); background: var(--paper); box-shadow: none; }
.button--light:hover { color: var(--forest-deep); background: var(--cream); box-shadow: 0 12px 25px rgba(0, 0, 0, .16); }
.button--ghost-light { color: var(--paper); background: transparent; border-color: rgba(255,255,255,.4); box-shadow: none; }
.button--ghost-light:hover { color: var(--forest-deep); background: var(--paper); }
.button--small { min-height: 2.7rem; padding: .6rem 1rem; font-size: .82rem; }
.text-link { display: inline-flex; align-items: center; gap: .35rem; color: var(--forest); font-weight: 800; text-decoration: none; }
.text-link:hover { color: var(--terracotta-dark); }
.text-link span { transition: transform .2s ease; }
.text-link:hover span { transform: translateX(.22rem); }
.text-link--light { color: var(--paper); }
.text-link--light:hover { color: #f3cbb8; }

.topbar { color: var(--cream); background: var(--forest-deep); font-size: .78rem; }
.topbar__inner { min-height: 2.3rem; display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; }
.topbar p { margin: 0; }
.topbar a { text-decoration: none; }
.topbar a:hover { color: #f2c6b2; }
.site-header {
  position: sticky; z-index: 1000; top: 0;
  border-bottom: 1px solid transparent;
  background: rgba(255,253,248,.92);
  backdrop-filter: blur(14px);
  transition: box-shadow .2s ease, border-color .2s ease;
}
.site-header.is-scrolled { border-color: var(--line); box-shadow: 0 8px 28px rgba(39,49,43,.08); }
.site-header__inner { min-height: var(--header-height); display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.brand { display: inline-flex; align-items: center; gap: .65rem; color: var(--forest-deep); text-decoration: none; flex: 0 0 auto; }
.brand__mark { width: 2.75rem; height: 2.75rem; }
.brand__text { display: flex; flex-direction: column; line-height: 1.1; }
.brand__text strong { font-family: var(--serif); font-size: 1.16rem; font-weight: 600; letter-spacing: -.015em; }
.brand__text small { margin-top: .25rem; color: var(--sage-700); font-size: .67rem; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.site-nav { display: flex; align-items: center; gap: 1.1rem; }
.site-nav ul { display: flex; align-items: center; gap: clamp(.65rem, 1.25vw, 1.25rem); margin: 0; padding: 0; list-style: none; }
.site-nav li { margin: 0; }
.site-nav li a { position: relative; color: var(--ink); font-size: .78rem; font-weight: 750; text-decoration: none; white-space: nowrap; }
.site-nav li a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -.4rem; height: 2px; background: var(--terracotta); transition: right .2s ease; }
.site-nav li a:hover::after, .site-nav li a[aria-current="page"]::after { right: 0; }
.nav-toggle { display: none; width: 2.75rem; height: 2.75rem; padding: .65rem; border: 0; border-radius: 50%; background: var(--sage-50); cursor: pointer; }
.nav-toggle span[aria-hidden] { display: block; width: 100%; height: 2px; margin: 4px 0; background: var(--forest-deep); transition: transform .2s ease, opacity .2s ease; }

.hero {
  position: relative; overflow: hidden;
  min-height: calc(100svh - var(--header-height) - 2.3rem);
  display: grid; align-items: stretch;
  background: var(--cream);
}
.hero::before { content: ""; position: absolute; z-index: 0; left: -8rem; top: 8%; width: 22rem; aspect-ratio: 1; border-radius: 50%; background: rgba(215,184,165,.24); filter: blur(2px); }
.hero__grid { position: relative; z-index: 1; display: grid; grid-template-columns: minmax(0, 1.03fr) minmax(25rem, .97fr); gap: clamp(2rem, 6vw, 7rem); align-items: center; padding-block: clamp(3rem, 7vw, 6.5rem); }
.hero__copy { max-width: 42rem; }
.hero h1 { margin-bottom: 1.55rem; font-size: clamp(3.6rem, 7vw, 7rem); }
.hero .lead { max-width: 37rem; }
.hero__actions { margin-top: 2rem; }
.hero__note { display: flex; align-items: center; gap: .75rem; margin-top: 1.6rem; color: var(--ink-soft); font-size: .84rem; }
.hero__note svg { width: 1.25rem; flex: 0 0 auto; color: var(--sage-700); }
.hero__media { position: relative; min-height: 35rem; }
.hero__image-main { position: absolute; inset: 0 4rem 1.5rem 0; overflow: hidden; border-radius: 50% 50% 2rem 2rem / 20% 20% 2rem 2rem; box-shadow: var(--shadow-lg); background: var(--sage-100); }
.hero__image-main picture { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero__image-main img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 50% 43%; }
.hero__image-small { position: absolute; right: 0; bottom: 0; width: 44%; aspect-ratio: 1; overflow: hidden; border: .5rem solid var(--cream); border-radius: 50%; box-shadow: var(--shadow-md); }
.hero__image-small img { width: 100%; height: 100%; object-fit: cover; }
.hero__badge { position: absolute; z-index: 2; left: -2.2rem; bottom: 3rem; width: 8.8rem; aspect-ratio: 1; display: grid; place-items: center; padding: 1.2rem; border-radius: 50%; color: var(--forest-deep); background: var(--paper); box-shadow: var(--shadow-md); text-align: center; }
.hero__badge strong { display: block; font-family: var(--serif); font-size: 2.1rem; line-height: 1; }
.hero__badge span { display: block; margin-top: .35rem; font-size: .67rem; font-weight: 800; letter-spacing: .09em; line-height: 1.25; text-transform: uppercase; }

.page-hero { position: relative; overflow: hidden; padding-block: clamp(4rem, 9vw, 8rem); background: var(--cream); }
.page-hero::after { content: ""; position: absolute; right: -9rem; top: -11rem; width: 32rem; aspect-ratio: 1; border: 1px solid rgba(73,97,81,.15); border-radius: 48% 52% 56% 44%; transform: rotate(14deg); }
.page-hero__grid { position: relative; z-index: 1; display: grid; grid-template-columns: minmax(0, 1fr) minmax(20rem, .72fr); gap: clamp(2rem, 7vw, 7rem); align-items: center; }
.page-hero h1 { max-width: 52rem; margin-bottom: 1.4rem; font-size: clamp(3.2rem, 6.6vw, 6.4rem); }
.page-hero__media { position: relative; min-height: 28rem; }
.page-hero__media picture, .page-hero__media img { width: 100%; height: 100%; }
.page-hero__media picture { position: absolute; inset: 0; }
.page-hero__media img { object-fit: cover; border-radius: 12rem 12rem 1.5rem 1.5rem; box-shadow: var(--shadow-md); }
.page-hero--image { min-height: 35rem; display: grid; align-items: end; color: var(--white); background-position: center; background-size: cover; }
.page-hero--image::before { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(31,52,42,.9) 0%, rgba(31,52,42,.68) 46%, rgba(31,52,42,.16) 100%); }
.page-hero--image::after { display: none; }
.page-hero--image .page-hero__content { position: relative; z-index: 2; max-width: 48rem; }
.page-hero--image h1, .page-hero--image .lead { color: var(--white); }
.page-hero--image .lead { max-width: 39rem; }

.breadcrumbs { padding-top: 1.1rem; color: var(--ink-soft); font-size: .78rem; }
.breadcrumbs ol { display: flex; flex-wrap: wrap; gap: .45rem; margin: 0; padding: 0; list-style: none; }
.breadcrumbs li { display: flex; gap: .45rem; }
.breadcrumbs li:not(:last-child)::after { content: "/"; color: var(--sage-300); }
.breadcrumbs a { text-decoration: none; }
.breadcrumbs a:hover { color: var(--terracotta-dark); }

.section-heading { display: grid; grid-template-columns: minmax(0,.82fr) minmax(18rem,.58fr); gap: 2rem 5rem; align-items: end; margin-bottom: clamp(2.4rem, 5vw, 4.5rem); }
.section-heading h2 { margin-bottom: 0; }
.section-heading__copy { max-width: 34rem; color: var(--ink-soft); }
.section-heading__copy > :last-child { margin-bottom: 0; }
.section-heading--center { display: block; max-width: 58rem; margin-inline: auto; text-align: center; }
.section-heading--center h2 { margin-bottom: 1.2rem; }
.section-heading--center .section-heading__copy { margin-inline: auto; }

.stats { position: relative; z-index: 3; margin-top: -2.4rem; }
.stats__grid { display: grid; grid-template-columns: repeat(4,1fr); overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius-lg); background: var(--paper); box-shadow: var(--shadow-md); }
.stat { padding: clamp(1.4rem,3vw,2.2rem); text-align: center; }
.stat + .stat { border-left: 1px solid var(--line); }
.stat strong { display: block; margin-bottom: .25rem; color: var(--forest-deep); font-family: var(--serif); font-size: clamp(2rem,4vw,3.2rem); line-height: 1; }
.stat span { color: var(--ink-soft); font-size: .76rem; font-weight: 750; letter-spacing: .07em; text-transform: uppercase; }

.split { display: grid; grid-template-columns: minmax(0,.9fr) minmax(0,1.1fr); gap: clamp(2.5rem,8vw,8rem); align-items: center; }
.split--reverse { grid-template-columns: minmax(0,1.1fr) minmax(0,.9fr); }
.split--reverse .split__media { order: 2; }
.split__copy > :last-child { margin-bottom: 0; }
.split__copy h2 { margin-bottom: 1.4rem; }
.split__media { position: relative; }
.split__media picture, .split__media img { width: 100%; }
.split__media img { border-radius: var(--radius-lg); box-shadow: var(--shadow-md); }
.split__media--arch img { aspect-ratio: 4 / 5; object-fit: cover; border-radius: 12rem 12rem 1.5rem 1.5rem; }
.split__caption { position: absolute; right: -1rem; bottom: 1.4rem; max-width: 15rem; padding: 1rem 1.2rem; border-radius: 1rem; background: var(--paper); box-shadow: var(--shadow-md); color: var(--ink-soft); font-size: .82rem; }

.card-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 1.25rem; }
.card-grid--2 { grid-template-columns: repeat(2, minmax(0,1fr)); }
.card-grid--4 { grid-template-columns: repeat(4, minmax(0,1fr)); }
.card {
  position: relative; overflow: hidden;
  display: flex; flex-direction: column;
  min-height: 100%; padding: clamp(1.5rem,3vw,2.3rem);
  border: 1px solid var(--line); border-radius: var(--radius-md);
  background: var(--paper); box-shadow: var(--shadow-sm);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.card:hover { transform: translateY(-4px); border-color: rgba(73,97,81,.3); box-shadow: var(--shadow-md); }
.card__icon { width: 3.1rem; height: 3.1rem; display: grid; place-items: center; margin-bottom: 1.3rem; border-radius: 50%; color: var(--forest); background: var(--sage-50); }
.card__icon svg { width: 1.45rem; }
.card h3 { margin-bottom: .85rem; font-size: 1.75rem; }
.card p { color: var(--ink-soft); }
.card .text-link { margin-top: auto; padding-top: .5rem; }
.card__eyebrow { margin-bottom: .65rem; color: var(--terracotta-dark); font-size: .72rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.card--dark { color: rgba(255,255,255,.82); border-color: rgba(255,255,255,.1); background: rgba(255,255,255,.05); box-shadow: none; }
.card--dark h3 { color: var(--paper); }
.card--dark p { color: rgba(255,255,255,.72); }
.card--dark:hover { border-color: rgba(255,255,255,.25); box-shadow: none; }
.card--image { padding: 0; }
.card--image .card__image { aspect-ratio: 16 / 10; overflow: hidden; background: var(--sage-100); }
.card--image .card__image img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.card--image:hover .card__image img { transform: scale(1.025); }
.card--image .card__body { display: flex; flex: 1; flex-direction: column; padding: 1.55rem; }

.service-card { position: relative; min-height: 31rem; display: flex; align-items: end; overflow: hidden; border-radius: var(--radius-lg); color: var(--paper); background: var(--forest); box-shadow: var(--shadow-md); text-decoration: none; }
.service-card::before { content: ""; position: absolute; inset: 0; z-index: 1; background: linear-gradient(180deg, transparent 25%, rgba(31,52,42,.87) 100%); }
.service-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .65s cubic-bezier(.2,.8,.2,1); }
.service-card:hover img { transform: scale(1.04); }
.service-card__body { position: relative; z-index: 2; width: 100%; padding: clamp(1.6rem,4vw,2.8rem); }
.service-card h3 { color: var(--paper); margin-bottom: .8rem; }
.service-card p { max-width: 31rem; color: rgba(255,255,255,.8); }
.service-card .text-link { color: var(--paper); }

.steps { display: grid; grid-template-columns: repeat(4,1fr); counter-reset: steps; }
.step { position: relative; padding: 0 1.7rem; counter-increment: steps; }
.step:first-child { padding-left: 0; }
.step:last-child { padding-right: 0; }
.step:not(:last-child)::after { content: ""; position: absolute; right: 0; top: 1.35rem; width: 1px; height: calc(100% - 1.35rem); background: var(--line); }
.step__number { width: 2.8rem; height: 2.8rem; display: grid; place-items: center; margin-bottom: 1.3rem; border-radius: 50%; color: var(--paper); background: var(--sage-700); font-family: var(--serif); font-size: 1.2rem; }
.step__number::before { content: counter(steps, decimal-leading-zero); }
.step h3 { font-size: 1.55rem; }
.step p { color: var(--ink-soft); font-size: .94rem; }

.quote-band { position: relative; overflow: hidden; padding-block: clamp(4rem,8vw,7rem); color: var(--paper); background: var(--forest); }
.quote-band::after { content: "“"; position: absolute; right: 2vw; top: -7rem; color: rgba(255,255,255,.06); font-family: var(--serif); font-size: 30rem; line-height: 1; }
.quote-band blockquote { position: relative; z-index: 1; max-width: 62rem; margin: 0 auto; text-align: center; }
.quote-band blockquote p { color: var(--paper); font-family: var(--serif); font-size: clamp(2.2rem,4.7vw,4.3rem); line-height: 1.18; letter-spacing: -.025em; }
.quote-band cite { color: #edc5b3; font-style: normal; font-size: .78rem; font-weight: 800; letter-spacing: .15em; text-transform: uppercase; }

.image-mosaic { display: grid; grid-template-columns: 1fr .76fr; grid-template-rows: 1fr .72fr; gap: 1rem; min-height: 38rem; }
.image-mosaic picture, .image-mosaic img { width: 100%; height: 100%; }
.image-mosaic picture:first-child { grid-row: 1 / -1; }
.image-mosaic img { object-fit: cover; border-radius: var(--radius-md); }
.image-mosaic picture:first-child img { border-radius: 10rem 10rem var(--radius-md) var(--radius-md); }

.testimonial-shell { position: relative; }
.testimonial-track { display: grid; grid-auto-flow: column; grid-auto-columns: minmax(18rem, 34rem); gap: 1.2rem; overflow-x: auto; padding: .25rem .15rem 1.5rem; scroll-snap-type: x mandatory; scrollbar-width: thin; scrollbar-color: var(--sage-300) transparent; }
.testimonial-track::-webkit-scrollbar { height: .45rem; }
.testimonial-track::-webkit-scrollbar-thumb { border-radius: 999px; background: var(--sage-300); }
.testimonial-card { scroll-snap-align: start; min-height: 22rem; display: flex; flex-direction: column; padding: clamp(1.6rem,3vw,2.5rem); border: 1px solid var(--line); border-radius: var(--radius-md); background: var(--paper); box-shadow: var(--shadow-sm); }
.testimonial-card::before { content: "“"; height: 2.4rem; color: var(--terracotta); font-family: var(--serif); font-size: 4rem; line-height: 1; }
.testimonial-card blockquote { display: flex; flex: 1; flex-direction: column; margin: 0; }
.testimonial-card blockquote p { color: var(--ink); font-family: var(--serif); font-size: clamp(1.25rem,2vw,1.58rem); line-height: 1.45; }
.testimonial-card footer { margin-top: auto; color: var(--sage-700); font-size: .75rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.testimonial-controls { display: flex; justify-content: flex-end; gap: .65rem; margin-top: 1rem; }
.circle-button { width: 3rem; height: 3rem; display: grid; place-items: center; border: 1px solid var(--line); border-radius: 50%; background: var(--paper); cursor: pointer; transition: color .2s ease, background .2s ease; }
.circle-button:hover { color: var(--paper); background: var(--forest); }
.circle-button svg { width: 1.1rem; }

.story-grid { columns: 3 20rem; column-gap: 1.25rem; }
.story-card { width: 100%; display: inline-block; break-inside: avoid; overflow: hidden; margin: 0 0 1.25rem; border: 1px solid var(--line); border-radius: var(--radius-md); background: var(--paper); box-shadow: var(--shadow-sm); }
.story-card__image { aspect-ratio: 4/3; overflow: hidden; }
.story-card__image img { width: 100%; height: 100%; object-fit: cover; }
.story-card__body { padding: 1.5rem; }
.story-card__body::before { content: "“"; display: block; height: 1.9rem; color: var(--terracotta); font-family: var(--serif); font-size: 3.5rem; line-height: .9; }
.story-card blockquote { margin: 0; }
.story-card blockquote p { color: var(--ink); font-family: var(--serif); font-size: 1.08rem; line-height: 1.58; }
.story-card blockquote p:last-child { margin-bottom: 0; }
.story-card h2 { margin: 1.2rem 0 0; color: var(--sage-700); font-family: var(--sans); font-size: .75rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.story-card .story-card__note { margin: .35rem 0 0; color: var(--ink-soft); font-family: var(--sans); font-size: .72rem; font-weight: 650; line-height: 1.45; }

.area-map-figure { margin: 0; }
.area-map-figure figcaption { max-width: 42rem; margin: .8rem auto 0; color: var(--ink-soft); font-size: .75rem; line-height: 1.55; text-align: center; }
.area-map { position: relative; min-height: 35rem; display: grid; place-items: center; overflow: hidden; border-radius: var(--radius-lg); background: radial-gradient(circle at 45% 45%, #fdf9f3 0 9rem, transparent 9.1rem), linear-gradient(145deg,#e7ece4,#f3e7de); box-shadow: inset 0 0 0 1px var(--line); }
.area-map::before, .area-map::after { content: ""; position: absolute; border: 1px solid rgba(73,97,81,.22); border-radius: 50%; }
.area-map::before { width: 28rem; height: 28rem; }
.area-map::after { width: 18rem; height: 18rem; }
.area-map__lake { position: absolute; left: -5%; right: -5%; top: -12%; height: 38%; border-radius: 0 0 50% 50%; background: #c9dfe1; transform: rotate(-3deg); }
.area-map__label { position: absolute; display: flex; align-items: center; gap: .45rem; padding: .45rem .75rem; border-radius: var(--radius-pill); background: rgba(255,253,248,.94); box-shadow: var(--shadow-sm); font-size: .72rem; font-weight: 800; }
.area-map__label::before { content: ""; width: .55rem; height: .55rem; border-radius: 50%; background: var(--terracotta); }
.area-map__label--cleveland { left: 44%; top: 32%; transform: translate(-50%,-50%); font-size: .85rem; }
.area-map__label--mentor { left: 69%; top: 34%; }
.area-map__label--sandusky { left: 12%; top: 31%; }
.area-map__label--akron { left: 48%; top: 76%; }
.area-map__label--medina { left: 31%; top: 69%; }
.area-map__label--streetsboro { left: 64%; top: 66%; }
.area-map__label--secondary { gap: .3rem; padding: .28rem .48rem; color: var(--ink-soft); background: rgba(255,253,248,.86); box-shadow: none; font-size: .57rem; font-weight: 750; }
.area-map__label--secondary::before { width: .38rem; height: .38rem; background: var(--sage-700); }
.area-map__label--lorain { left: 26%; top: 38%; }
.area-map__label--elyria { left: 31%; top: 48%; }
.area-map__label--parma { left: 42%; top: 49%; }
.area-map__label--heights { left: 49%; top: 40%; }
.area-map__label--willoughby { left: 61%; top: 39%; }
.area-map__label--solon { left: 56%; top: 52%; }
.area-map__label--falls { left: 45%; top: 64%; }
.area-map__label--kent { left: 58%; top: 75%; }
.area-map__route { position: absolute; left: 15%; right: 18%; top: 44%; height: 1px; border-top: 2px dashed rgba(73,97,81,.36); transform: rotate(2deg); }
.area-map__route--vertical { left: 47%; right: auto; top: 30%; width: 1px; height: 48%; border-top: 0; border-left: 2px dashed rgba(73,97,81,.36); transform: rotate(-2deg); }
.area-list { display: grid; gap: .75rem; padding: 0; list-style: none; }
.area-list li { display: flex; gap: .75rem; align-items: flex-start; padding-bottom: .75rem; border-bottom: 1px solid var(--line); }
.area-list li::before { content: ""; width: .5rem; height: .5rem; margin-top: .6rem; border-radius: 50%; background: var(--terracotta); flex: 0 0 auto; }

.city-directory { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 1.25rem; }
.city-directory__group { padding: 1.5rem; border: 1px solid var(--line); border-radius: var(--radius-md); background: var(--paper); box-shadow: var(--shadow-sm); }
.city-directory__group h3 { margin-bottom: .45rem; font-size: 1.45rem; }
.city-directory__group > p { margin-bottom: 1rem; color: var(--ink-soft); font-size: .9rem; }
.city-directory__count { display: inline-flex; margin-bottom: .7rem; color: var(--terracotta-deep); font-size: .68rem; font-weight: 850; letter-spacing: .09em; text-transform: uppercase; }
.city-link-list { display: flex; flex-wrap: wrap; gap: .55rem; margin: 0; padding: 0; list-style: none; }
.city-link-list a { display: inline-flex; align-items: center; min-height: 2.35rem; padding: .45rem .72rem; border: 1px solid var(--line); border-radius: var(--radius-pill); color: var(--forest); background: var(--cream); font-size: .76rem; font-weight: 780; text-decoration: none; transition: border-color .2s ease, background .2s ease, transform .2s ease; }
.city-link-list a:hover { border-color: var(--sage-500); background: var(--sage-100); transform: translateY(-1px); }
.city-link-list a:focus-visible { outline: 3px solid rgba(183,101,69,.25); outline-offset: 2px; }

.check-list, .plain-list { padding: 0; list-style: none; }
.check-list li { position: relative; padding-left: 2rem; margin-bottom: .8rem; }
.check-list li::before { content: "✓"; position: absolute; left: 0; top: .05rem; width: 1.35rem; height: 1.35rem; display: grid; place-items: center; border-radius: 50%; color: var(--paper); background: var(--sage-700); font-size: .75rem; font-weight: 900; }
.plain-list li { padding: .75rem 0; border-bottom: 1px solid var(--line); }
.tag-list { display: flex; flex-wrap: wrap; gap: .55rem; margin: 0; padding: 0; list-style: none; }
.tag-list li, .tag { padding: .42rem .72rem; border: 1px solid var(--line); border-radius: var(--radius-pill); color: var(--forest); background: var(--paper); font-size: .75rem; font-weight: 750; }

.timeline { position: relative; display: grid; gap: 2rem; }
.timeline::before { content: ""; position: absolute; left: 1.5rem; top: .8rem; bottom: .8rem; width: 1px; background: var(--sage-300); }
.timeline__item { position: relative; display: grid; grid-template-columns: 3rem 1fr; gap: 1.5rem; }
.timeline__dot { position: relative; z-index: 1; width: 3rem; height: 3rem; display: grid; place-items: center; border: .5rem solid var(--cream); border-radius: 50%; color: var(--paper); background: var(--terracotta); font-family: var(--serif); }
.timeline__item h3 { margin-bottom: .45rem; font-size: 1.45rem; }
.timeline__item p { color: var(--ink-soft); }

.faq-list { display: grid; gap: .75rem; }
.faq-list details { border: 1px solid var(--line); border-radius: var(--radius-sm); background: var(--paper); box-shadow: 0 4px 14px rgba(39,49,43,.04); }
.faq-list summary { position: relative; cursor: pointer; list-style: none; padding: 1.25rem 3.5rem 1.25rem 1.3rem; color: var(--forest-deep); font-family: var(--serif); font-size: clamp(1.1rem,1.7vw,1.35rem); font-weight: 600; line-height: 1.35; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: "+"; position: absolute; right: 1.25rem; top: 50%; width: 1.8rem; height: 1.8rem; display: grid; place-items: center; border-radius: 50%; color: var(--forest); background: var(--sage-50); font-family: var(--sans); font-size: 1.25rem; transform: translateY(-50%); }
.faq-list details[open] summary::after { content: "−"; }
.faq-list__answer { padding: 0 1.3rem 1.35rem; color: var(--ink-soft); }
.faq-list__answer p:last-child { margin-bottom: 0; }

.resource-grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 1rem; }
.resource-card { display: flex; flex-direction: column; padding: 1.5rem; border: 1px solid var(--line); border-radius: var(--radius-md); background: var(--paper); box-shadow: var(--shadow-sm); }
.resource-card__top { display: flex; align-items: flex-start; justify-content: space-between; gap: 1rem; margin-bottom: 1.1rem; }
.resource-card__icon { width: 3rem; height: 3rem; display: grid; place-items: center; border-radius: .9rem; color: var(--terracotta-dark); background: var(--peach); }
.resource-card__icon svg { width: 1.35rem; }
.resource-card__format { color: var(--sage-700); font-size: .68rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.resource-card h2, .resource-card h3 { margin-bottom: .7rem; font-size: 1.55rem; }
.resource-card p { color: var(--ink-soft); font-size: .92rem; }
.resource-card__links { display: flex; flex-wrap: wrap; gap: .75rem; margin-top: auto; padding-top: .4rem; }
.resource-card__links a { font-size: .78rem; }
.resource-layout { display: grid; grid-template-columns: minmax(0,1fr) 20rem; gap: clamp(2rem,7vw,6rem); align-items: start; }
.resource-article { min-width: 0; }
.resource-section { padding-block: 2rem; border-bottom: 1px solid var(--line); }
.resource-section:first-child { padding-top: 0; }
.resource-section h2 { margin-bottom: 1.1rem; font-size: clamp(1.7rem,3vw,2.4rem); }
.resource-section ul { padding-left: 1.2rem; }
.resource-section li { margin-bottom: .85rem; }
.resource-sidebar { position: sticky; top: 7rem; display: grid; gap: 1rem; }
.download-card, .safety-card { padding: 1.35rem; border-radius: var(--radius-md); }
.download-card { color: var(--paper); background: var(--forest); }
.download-card h2 { color: var(--paper); font-size: 1.5rem; }
.download-card p { color: rgba(255,255,255,.75); font-size: .87rem; }
.download-card .button { width: 100%; }
.safety-card { border: 1px solid #e4b9a5; background: #fbede6; }
.safety-card h2 { font-size: 1.3rem; }
.safety-card p { margin-bottom: 0; color: #633e2f; font-size: .85rem; }
.references { margin-top: 2.5rem; padding: 1.3rem; border: 1px solid var(--line); border-radius: var(--radius-sm); background: var(--sage-50); }
.references h2 { font-size: 1.3rem; }
.references ul { margin-bottom: 0; padding-left: 1.2rem; }
.references a { overflow-wrap: anywhere; }

.notice { display: flex; gap: 1rem; padding: 1.25rem; border: 1px solid var(--line); border-radius: var(--radius-sm); background: var(--sage-50); }
.notice svg { width: 1.45rem; flex: 0 0 auto; color: var(--sage-700); }
.notice p:last-child { margin-bottom: 0; }
.notice--warm { border-color: #e4b9a5; background: #fbede6; }
.notice--warm svg { color: var(--terracotta-dark); }

.contact-grid { display: grid; grid-template-columns: minmax(0,.75fr) minmax(0,1.25fr); gap: clamp(2rem,7vw,6rem); align-items: start; }
.contact-panel { padding: clamp(1.6rem,3vw,2.4rem); border-radius: var(--radius-lg); color: var(--paper); background: var(--forest); }
.contact-panel h2, .contact-panel h3 { color: var(--paper); }
.contact-panel p { color: rgba(255,255,255,.75); }
.contact-links { display: grid; gap: .8rem; margin-block: 1.5rem; }
.contact-links a { display: flex; align-items: center; gap: .75rem; padding: .85rem; border: 1px solid rgba(255,255,255,.15); border-radius: .8rem; color: var(--paper); text-decoration: none; }
.contact-links a:hover { border-color: rgba(255,255,255,.38); background: rgba(255,255,255,.06); }
.contact-links svg { width: 1.25rem; }
.form-card { padding: clamp(1.5rem,4vw,2.7rem); border: 1px solid var(--line); border-radius: var(--radius-lg); background: var(--paper); box-shadow: var(--shadow-md); }
.form-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 1rem; }
.form-field { display: grid; gap: .38rem; }
.form-field--full { grid-column: 1 / -1; }
.form-field label, .form-legend { color: var(--forest-deep); font-size: .82rem; font-weight: 800; }
.form-field input, .form-field textarea, .form-field select {
  width: 100%; min-height: 3.25rem; padding: .72rem .85rem;
  border: 1px solid rgba(47,71,56,.28); border-radius: .65rem;
  color: var(--ink); background: var(--white);
  transition: border-color .2s ease, box-shadow .2s ease;
}
.form-field textarea { min-height: 8.5rem; resize: vertical; }
.form-field input:focus, .form-field textarea:focus, .form-field select:focus { outline: 0; border-color: var(--sage-700); box-shadow: 0 0 0 3px rgba(110,127,106,.18); }
.form-help { color: var(--ink-soft); font-size: .74rem; }
.form-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 1rem; margin-top: 1.2rem; }
.form-actions p { max-width: 26rem; margin: 0; color: var(--ink-soft); font-size: .72rem; }
.honeypot { position: absolute; left: -9999px; }
.map-frame { overflow: hidden; min-height: 27rem; border: 1px solid var(--line); border-radius: var(--radius-lg); background: var(--sage-50); }
.map-frame iframe { width: 100%; height: 27rem; border: 0; }

.blog-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 1.25rem; }
.blog-card { padding: 2rem; border: 1px solid var(--line); border-radius: var(--radius-md); background: var(--paper); box-shadow: var(--shadow-sm); }
.blog-card time { color: var(--terracotta-dark); font-size: .72rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.blog-card h2 { margin: .7rem 0 1rem; font-size: 2rem; }
.article-header { max-width: 55rem; margin-inline: auto; text-align: center; }
.article-header h1 { font-size: clamp(3rem,6vw,5.8rem); }
.article-body { max-width: 47rem; margin-inline: auto; }
.article-body h2 { margin: 3.2rem 0 1.2rem; font-size: clamp(1.8rem,3.5vw,2.8rem); }
.article-body h3 { margin: 2.2rem 0 .9rem; font-size: 1.55rem; }
.article-body p, .article-body li { font-size: 1.05rem; }
.article-body blockquote { margin: 2.4rem 0; padding: 1.5rem 1.8rem; border-left: 4px solid var(--terracotta); background: var(--cream); font-family: var(--serif); font-size: 1.3rem; }

.table-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: var(--radius-sm); }
table { width: 100%; border-collapse: collapse; background: var(--paper); }
th, td { padding: .85rem 1rem; border-bottom: 1px solid var(--line); text-align: left; vertical-align: top; }
th { color: var(--forest-deep); background: var(--sage-50); font-size: .78rem; letter-spacing: .05em; text-transform: uppercase; }
tr:last-child td { border-bottom: 0; }

.footer-cta { display: grid; grid-template-columns: minmax(0,1fr) auto; gap: 2rem 4rem; align-items: end; padding: clamp(2rem,5vw,4rem); border-radius: var(--radius-lg); background: var(--forest); box-shadow: var(--shadow-lg); transform: translateY(-2.8rem); }
.footer-cta h2 { max-width: 45rem; margin-bottom: 1rem; color: var(--paper); font-size: clamp(2.2rem,4vw,3.8rem); }
.footer-cta p:not(.eyebrow) { max-width: 43rem; margin-bottom: 0; color: rgba(255,255,255,.75); }
.footer-cta .button-row { justify-content: flex-end; }
.site-footer { margin-top: 2.8rem; color: rgba(255,255,255,.72); background: var(--forest-deep); }
.site-footer > .container { padding-bottom: 2.6rem; }
.footer-grid { display: grid; grid-template-columns: 1.5fr .8fr 1fr .9fr; gap: 2rem 4rem; padding: 2rem 0 3.5rem; }
.brand--footer { color: var(--paper); }
.brand--footer .brand__text small { color: #b9c7b8; }
.footer-brand > p { max-width: 28rem; margin-top: 1.3rem; }
.footer-contact { display: grid; gap: .35rem; }
.footer-contact a { color: var(--paper); text-decoration: none; }
.footer-heading { margin: .5rem 0 1rem; color: var(--paper); font-family: var(--sans); font-size: .74rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.footer-links { display: grid; gap: .55rem; margin: 0; padding: 0; list-style: none; }
.footer-links--columns { grid-template-columns: repeat(2, minmax(0,1fr)); }
.footer-links a { color: rgba(255,255,255,.74); font-size: .84rem; text-decoration: none; }
.footer-links a:hover { color: var(--paper); }
.footer-bottom { display: flex; justify-content: space-between; gap: 1rem; padding-top: 1.4rem; border-top: 1px solid rgba(255,255,255,.12); font-size: .72rem; }
.footer-bottom p { margin: 0; }
.footer-bottom div { display: flex; gap: 1rem; }
.footer-bottom a { color: inherit; }
.medical-disclaimer { max-width: 68rem; margin: 1.3rem 0 0; color: rgba(255,255,255,.48); font-size: .67rem; line-height: 1.55; }
.mobile-contact-bar { display: none; }

.reveal { opacity: 1; transform: none; transition: opacity .65s ease, transform .65s cubic-bezier(.2,.8,.2,1); }
.motion-ready .reveal { opacity: 0; transform: translateY(1.1rem); }
.motion-ready .reveal.is-visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: .08s; }
.reveal-delay-2 { transition-delay: .16s; }
.reveal-delay-3 { transition-delay: .24s; }

@media (max-width: 1120px) {
  .nav-cta { display: none; }
  .site-nav { gap: .5rem; }
  .site-nav ul { gap: .72rem; }
  .site-nav li a { font-size: .73rem; }
  .hero__grid { grid-template-columns: minmax(0,1fr) minmax(22rem,.8fr); gap: 2.5rem; }
  .card-grid--4 { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: 1.4fr repeat(3,1fr); gap: 2rem; }
}

@media (max-width: 900px) {
  :root { --section-space: 5.5rem; }
  .topbar__inner { justify-content: center; }
  .topbar p { display: none; }
  .nav-toggle { display: block; }
  .site-nav {
    position: fixed; inset: calc(var(--header-height) + 2.3rem) 0 auto 0;
    max-height: calc(100svh - var(--header-height) - 2.3rem); overflow-y: auto;
    display: grid; align-content: start; gap: 1.3rem;
    padding: 1.2rem 1rem 2rem;
    border-top: 1px solid var(--line); background: var(--paper); box-shadow: var(--shadow-md);
    opacity: 0; visibility: hidden; transform: translateY(-.7rem);
    transition: opacity .2s ease, visibility .2s ease, transform .2s ease;
  }
  .site-nav.is-open { opacity: 1; visibility: visible; transform: translateY(0); }
  .site-nav ul { display: grid; gap: 0; }
  .site-nav li a { display: block; padding: .9rem .3rem; border-bottom: 1px solid var(--line); font-size: 1rem; }
  .site-nav li a::after { display: none; }
  .site-nav .nav-cta { display: inline-flex; justify-self: start; }
  .nav-toggle[aria-expanded="true"] span:nth-of-type(2) { transform: translateY(6px) rotate(45deg); }
  .nav-toggle[aria-expanded="true"] span:nth-of-type(3) { opacity: 0; }
  .nav-toggle[aria-expanded="true"] span:nth-of-type(4) { transform: translateY(-6px) rotate(-45deg); }
  .hero { min-height: auto; }
  .hero__grid, .page-hero__grid { grid-template-columns: 1fr; }
  .hero__copy { max-width: 50rem; }
  .hero__media { min-height: 35rem; width: min(100%,34rem); margin-inline: auto; }
  .hero__badge { left: -.6rem; }
  .page-hero__media { min-height: 30rem; width: min(100%,31rem); margin-inline: auto; }
  .stats { margin-top: -1.6rem; }
  .stats__grid { grid-template-columns: repeat(2,1fr); }
  .stat:nth-child(3) { border-left: 0; border-top: 1px solid var(--line); }
  .stat:nth-child(4) { border-top: 1px solid var(--line); }
  .section-heading { grid-template-columns: 1fr; gap: 1rem; }
  .split, .split--reverse { grid-template-columns: 1fr; }
  .split--reverse .split__media { order: 0; }
  .split__media { width: min(100%,37rem); margin-inline: auto; }
  .card-grid, .resource-grid { grid-template-columns: repeat(2,1fr); }
  .steps { grid-template-columns: repeat(2,1fr); gap: 2.2rem 0; }
  .step:nth-child(2)::after { display: none; }
  .step:nth-child(3) { padding-left: 0; }
  .story-grid { grid-template-columns: repeat(2,1fr); }
  .resource-layout { grid-template-columns: 1fr; }
  .resource-sidebar { position: static; grid-template-columns: repeat(2,1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-panel { order: 2; }
  .footer-cta { grid-template-columns: 1fr; align-items: start; }
  .footer-cta .button-row { justify-content: flex-start; }
  .footer-grid { grid-template-columns: repeat(2,1fr); }
}

@media (max-width: 640px) {
  :root { --section-space: 4.5rem; --header-height: 4.5rem; }
  html { scroll-padding-top: 6rem; }
  body { padding-bottom: 3.5rem; }
  .container, .container--narrow { width: min(calc(100% - 1.35rem), var(--container)); }
  .brand__mark { width: 2.45rem; height: 2.45rem; }
  .brand__text strong { font-size: 1.02rem; }
  .brand__text small { font-size: .61rem; }
  .hero__grid { padding-block: 3.25rem 4.5rem; }
  .hero h1 { font-size: clamp(3.1rem,15vw,4.4rem); }
  .hero__media { min-height: 28rem; }
  .hero__image-main { right: 2rem; }
  .hero__image-small { width: 43%; border-width: .35rem; }
  .hero__badge { left: -.15rem; bottom: 2.2rem; width: 7.2rem; padding: .9rem; }
  .split__caption { right: 0; }
  .hero__badge strong { font-size: 1.7rem; }
  .hero__badge span { font-size: .58rem; }
  .page-hero { padding-block: 3.5rem 4.5rem; }
  .page-hero h1 { font-size: clamp(3rem,14vw,4.3rem); }
  .page-hero__media { min-height: 24rem; }
  .page-hero--image { min-height: 31rem; }
  .button-row { align-items: stretch; }
  .button-row .button { width: 100%; }
  .stats__grid { border-radius: var(--radius-md); }
  .stat { padding: 1.35rem .6rem; }
  .stat strong { font-size: 2.2rem; }
  .stat span { font-size: .63rem; }
  .card-grid, .card-grid--2, .card-grid--4, .resource-grid, .blog-grid { grid-template-columns: 1fr; }
  .story-grid { columns: 1; }
  .service-card { min-height: 26rem; }
  .steps { grid-template-columns: 1fr; }
  .step { padding: 0 0 1.7rem 0; }
  .step:not(:last-child)::after { left: 1.38rem; right: auto; top: 3.1rem; bottom: 0; width: 1px; height: auto; }
  .image-mosaic { min-height: 31rem; grid-template-columns: 1.1fr .8fr; }
  .testimonial-track { grid-auto-columns: 88%; }
  .area-map { min-height: 29rem; }
  .area-map::before { width: 22rem; height: 22rem; }
  .area-map::after { width: 14rem; height: 14rem; }
  .area-map__label { padding: .35rem .52rem; font-size: .62rem; }
  .area-map__label--cleveland { font-size: .7rem; }
  .area-map__label--secondary { display: none; }
  .city-directory { grid-template-columns: 1fr; }
  .resource-sidebar { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .form-field--full { grid-column: auto; }
  .form-actions .button { width: 100%; }
  .footer-cta { padding: 1.6rem; transform: translateY(-2rem); }
  .footer-grid { grid-template-columns: 1fr; padding-top: 0; }
  .footer-bottom { flex-direction: column; }
  .mobile-contact-bar { position: fixed; z-index: 1200; left: 0; right: 0; bottom: 0; display: grid; grid-template-columns: 1fr 1.35fr; min-height: 3.55rem; box-shadow: 0 -8px 24px rgba(39,49,43,.15); }
  .mobile-contact-bar a { display: grid; place-items: center; padding: .6rem; color: var(--paper); background: var(--forest); font-size: .8rem; font-weight: 800; text-decoration: none; }
  .mobile-contact-bar a:last-child { background: var(--terracotta); }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; scroll-behavior: auto !important; }
  .motion-ready .reveal { opacity: 1; transform: none; }
  .hero__image-main img { transform: none !important; }
}

@media print {
  .topbar, .site-header, .site-footer, .mobile-contact-bar, .button-row, .breadcrumbs { display: none !important; }
  body { color: #000; background: #fff; font-size: 11pt; }
  .section, .page-hero { padding: 1rem 0; }
  .container, .container--narrow { width: 100%; }
  h1, h2, h3 { color: #000; break-after: avoid; }
  a { color: #000; text-decoration: none; }
  a[href]::after { content: " (" attr(href) ")"; font-size: 8pt; }
  .resource-layout { display: block; }
  .resource-sidebar { display: none; }
  .resource-section { break-inside: avoid; }
}
