:root {
  --ink: #242018;
  --charcoal: #393229;
  --muted: #756a5e;
  --stone: #ded3c2;
  --stone-2: #f1eadf;
  --ivory: #fbf6ec;
  --paper: #fffaf1;
  --olive: #59644a;
  --olive-dark: #3f4a35;
  --clay: #a56850;
  --rose: #c9a79b;
  --line: rgba(72, 55, 40, 0.14);
  --shadow: 0 22px 58px rgba(62, 45, 31, 0.12);
  --radius: 6px;
  --radius-soft: 8px;
  --serif: Georgia, "Times New Roman", serif;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--ivory);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.6;
}

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

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

a:focus-visible,
button:focus-visible,
iframe:focus-visible {
  outline: 3px solid rgba(166, 95, 69, 0.55);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  left: 1rem;
  top: 1rem;
  z-index: 50;
  transform: translateY(-150%);
  background: var(--ink);
  color: var(--paper);
  border-radius: var(--radius);
  padding: 0.7rem 1rem;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 1rem clamp(1rem, 4vw, 4rem);
  border-bottom: 1px solid var(--line);
  background: rgba(251, 246, 236, 0.94);
  backdrop-filter: blur(18px);
  box-shadow: 0 8px 28px rgba(62, 45, 31, 0.04);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  min-width: 0;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 3rem;
  height: 3rem;
  flex: 0 0 3rem;
  place-items: center;
  border: 1px solid var(--ink);
  border-radius: 50%;
  font-family: var(--serif);
  font-size: 1rem;
}

.logo-mark {
  border-color: rgba(72, 55, 40, 0.18);
  background: var(--paper);
  overflow: hidden;
}

.logo-mark img {
  width: 82%;
  height: 82%;
  object-fit: contain;
}

.brand strong {
  display: block;
  font-family: var(--serif);
  font-size: 1.25rem;
  line-height: 1.05;
}

.brand span span {
  display: block;
  color: var(--muted);
  font-size: 0.78rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2vw, 2rem);
  color: var(--charcoal);
  font-size: 0.95rem;
}

.site-nav a {
  text-decoration: none;
}

.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.8rem;
  border: 1px solid var(--ink);
  border-radius: var(--radius);
  padding: 0.7rem 1rem;
  text-decoration: none;
  transition: background 160ms ease, color 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.nav-cta {
  border-color: var(--olive-dark);
  background: var(--olive-dark);
  color: var(--paper);
}

.button {
  min-width: min(100%, 13.5rem);
  font-size: 0.95rem;
}

.button.primary {
  border-color: var(--olive-dark);
  background: var(--olive-dark);
  color: var(--paper);
}

.button.secondary {
  border-color: rgba(72, 55, 40, 0.24);
  background: rgba(255, 250, 241, 0.58);
  color: var(--ink);
}

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

.button.secondary:hover {
  background: var(--paper);
  border-color: var(--rose);
}

.menu-toggle {
  display: none;
  border: 1px solid var(--ink);
  border-radius: var(--radius);
  background: transparent;
  color: var(--ink);
  padding: 0.55rem 0.85rem;
  font: inherit;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(18rem, 1.05fr);
  min-height: min(52rem, calc(100svh - 8.5rem));
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 12% 18%, rgba(201, 167, 155, 0.22), transparent 32%),
    linear-gradient(135deg, var(--ivory), #f3eadc 72%);
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(3rem, 7vw, 5.5rem) clamp(1.2rem, 5vw, 5rem);
}

.eyebrow {
  margin: 0 0 1rem;
  color: var(--clay);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  line-height: 1.2;
  text-transform: uppercase;
}

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

h1,
h2 {
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1.04;
}

h1 {
  max-width: 13ch;
  margin-bottom: 1.25rem;
  font-size: clamp(2.5rem, 4vw, 3.95rem);
  line-height: 1;
}

h2 {
  max-width: 14ch;
  font-size: clamp(1.9rem, 2.8vw, 3.25rem);
}

h3 {
  font-size: clamp(1.2rem, 1.65vw, 1.55rem);
  line-height: 1.22;
}

.hero-lede {
  max-width: 42rem;
  color: var(--charcoal);
  font-size: clamp(1.08rem, 1.45vw, 1.32rem);
  line-height: 1.45;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.4rem;
}

.hero-media {
  position: relative;
  min-height: 32rem;
  margin: clamp(1rem, 2.5vw, 2rem) clamp(1rem, 4vw, 3rem) clamp(1rem, 2.5vw, 2rem) 0;
  border: 1px solid rgba(72, 55, 40, 0.12);
  border-radius: var(--radius-soft);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-media::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, rgba(251, 246, 236, 0.3), transparent 44%);
  pointer-events: none;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  padding: 1rem clamp(1.2rem, 5vw, 5rem);
  border-bottom: 1px solid var(--line);
  background: #f5ede2;
}

.trust-strip div {
  min-height: 8.5rem;
  padding: clamp(1.1rem, 2.4vw, 1.7rem);
  border: 1px solid rgba(72, 55, 40, 0.12);
  border-radius: var(--radius-soft);
  background: rgba(255, 250, 241, 0.72);
}

.trust-strip div:last-child {
  border-right: 1px solid rgba(72, 55, 40, 0.12);
}

.trust-strip strong,
.trust-strip span {
  display: block;
}

.trust-strip strong {
  margin-bottom: 0.35rem;
  font-family: var(--serif);
  font-size: clamp(1.1rem, 1.4vw, 1.35rem);
  font-weight: 400;
  line-height: 1.12;
}

.trust-strip span {
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.45;
}

.pt-trust-card .pt-badge {
  margin: 0.65rem 0;
}

.pt-badge {
  display: block;
  width: min(100%, 14rem);
  border-radius: var(--radius-soft);
  background: transparent;
  filter: drop-shadow(0 12px 18px rgba(62, 45, 31, 0.1));
  box-shadow: none;
  overflow: hidden;
  transition: filter 160ms ease, transform 160ms ease;
}

.pt-badge:hover {
  transform: translateY(-1px);
  filter: drop-shadow(0 16px 24px rgba(62, 45, 31, 0.14));
}

.pt-badge img {
  width: 100%;
  height: auto;
}

.pt-badge.compact {
  width: min(100%, 12rem);
}

.booking-trust {
  margin-top: 1.2rem;
}

.section {
  padding: clamp(3.5rem, 6.5vw, 6.5rem) clamp(1.2rem, 5vw, 5rem);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(18rem, 1.1fr);
  gap: clamp(2rem, 6vw, 6rem);
  align-items: start;
}

.copy-stack {
  max-width: 46rem;
  color: var(--charcoal);
  font-size: clamp(1.05rem, 1.35vw, 1.22rem);
}

.copy-stack p:last-child {
  margin-bottom: 0;
}

.profile-feature {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(13rem, 0.44fr) minmax(18rem, 1fr);
  gap: clamp(1.5rem, 4vw, 4rem);
  align-items: center;
}

.profile-portrait {
  margin: 0;
  max-width: 24rem;
  justify-self: center;
}

.profile-portrait img,
.about-card-photo {
  width: 100%;
  border: 1px solid rgba(72, 55, 40, 0.13);
  border-radius: 10px;
  box-shadow: var(--shadow);
}

.profile-portrait img {
  aspect-ratio: 0.82;
  max-height: 32rem;
  object-fit: cover;
  object-position: center 38%;
}

.evidence-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  background: #f5ede2;
}

.evidence-card {
  display: flex;
  min-height: 15rem;
  flex-direction: column;
  justify-content: center;
  padding: clamp(1.4rem, 4vw, 3rem);
  border: 1px solid rgba(72, 55, 40, 0.12);
  border-radius: var(--radius-soft);
  background: var(--paper);
  box-shadow: 0 14px 36px rgba(62, 45, 31, 0.05);
}

.process-steps span {
  display: block;
  margin-bottom: 2.2rem;
  color: var(--clay);
  font-family: var(--serif);
  font-size: 1.8rem;
}

.evidence-card h3 {
  margin-bottom: 0.85rem;
}

.evidence-card p {
  margin-bottom: 0;
}

.evidence-card p,
.service-card p,
.method-panel p,
.practice-note-copy p,
.resource-card p,
.referral-grid p,
.process-steps p,
.site-footer p {
  color: var(--muted);
}

.section-heading {
  max-width: 70rem;
  margin-bottom: clamp(2rem, 5vw, 4rem);
}

.section-heading h2 {
  max-width: 18ch;
}

.service-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 1rem;
}

.service-card,
.resource-card,
.referral-grid article,
.scenario-grid article,
.credential-grid article,
.fees-grid article {
  display: flex;
  flex-direction: column;
  min-height: 20rem;
  padding: clamp(1.4rem, 3vw, 2.4rem);
  border: 1px solid var(--line);
  border-radius: var(--radius-soft);
  background: var(--paper);
  box-shadow: none;
}

.service-card.featured {
  border-color: rgba(63, 74, 53, 0.34);
  background: linear-gradient(145deg, var(--olive-dark), #566346);
  color: var(--paper);
}

.service-card.featured p,
.service-card.featured .card-label {
  color: rgba(255, 253, 247, 0.76);
}

.service-card a,
.resource-card a,
.text-link {
  margin-top: auto;
  color: inherit;
  font-weight: 700;
}

.resource-card h2,
.referral-grid h2 {
  max-width: none;
  font-family: var(--serif);
  font-size: clamp(1.45rem, 2.2vw, 2rem);
  line-height: 1.14;
}

.card-label {
  color: var(--clay);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.fees-section {
  background: var(--paper);
}

.fees-grid,
.scenario-grid,
.credential-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.fees-grid article {
  min-height: 19rem;
  background: #fbf2e6;
}

.fees-grid span {
  color: var(--clay);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.fees-grid strong {
  margin-top: auto;
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3vw, 2.7rem);
  font-weight: 400;
  line-height: 1;
}

.note-line {
  max-width: 62rem;
  margin: 1.4rem 0 0;
  color: var(--muted);
}

.method {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(18rem, 0.9fr);
  gap: 1rem;
  background: #efe4d6;
  padding: clamp(1rem, 2vw, 1.4rem);
}

.method-panel,
.method-list {
  padding: clamp(2rem, 5vw, 5rem);
  border: 1px solid rgba(72, 55, 40, 0.12);
  border-radius: var(--radius-soft);
  background: rgba(255, 250, 241, 0.78);
}

.method-panel h2 {
  max-width: 13ch;
}

.method-list {
  display: grid;
  align-content: center;
}

.method-list p {
  margin: 0;
  padding: 1.1rem 0;
  border-bottom: 1px solid var(--line);
  color: var(--charcoal);
  font-size: clamp(1.02rem, 1.35vw, 1.18rem);
}

.method-list p:first-child {
  border-top: 1px solid var(--line);
}

.practice-note {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(18rem, 0.9fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
  background:
    radial-gradient(circle at 78% 18%, rgba(201, 167, 155, 0.16), transparent 28%),
    var(--ink);
  color: var(--paper);
}

.practice-note-copy p {
  max-width: 43rem;
  color: rgba(255, 253, 247, 0.72);
}

.quote-block {
  padding: clamp(2rem, 5vw, 4rem);
  border: 1px solid rgba(255, 253, 247, 0.22);
  border-radius: var(--radius-soft);
  background: rgba(255, 250, 241, 0.06);
}

.quote-block p {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(1.7rem, 3vw, 3.25rem);
  line-height: 1.1;
}

.cta-section {
  text-align: center;
  background: var(--stone-2);
}

.cta-section h2 {
  max-width: 20ch;
  margin-right: auto;
  margin-left: auto;
}

.cta-section .hero-actions {
  justify-content: center;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(18rem, 1fr);
  gap: 2rem;
  padding: 2.5rem clamp(1.2rem, 5vw, 5rem);
  border-top: 1px solid var(--line);
  background: #e3d7c6;
  font-size: 0.95rem;
}

.site-footer strong {
  display: block;
  margin-bottom: 0.35rem;
  font-family: var(--serif);
  font-size: 1.45rem;
}

.footer-logo {
  width: min(13.5rem, 100%);
  height: auto;
  margin-bottom: 0.6rem;
}

.page-hero {
  padding: clamp(3.25rem, 7vw, 5.75rem) clamp(1.2rem, 5vw, 5rem);
  border-bottom: 1px solid var(--line);
}

.page-hero h1 {
  max-width: 20ch;
  font-size: clamp(2.1rem, 3.4vw, 3.25rem);
  line-height: 1.05;
}

.page-hero p:not(.eyebrow) {
  max-width: 52rem;
  color: var(--charcoal);
  font-size: clamp(1.05rem, 1.45vw, 1.28rem);
}

.about-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(16rem, 0.48fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
  background:
    radial-gradient(circle at 88% 16%, rgba(201, 167, 155, 0.16), transparent 28%),
    var(--ivory);
}

.about-card {
  display: grid;
  gap: 1rem;
  margin: 0;
  width: min(100%, 23rem);
  justify-self: end;
  padding: clamp(1rem, 2vw, 1.35rem);
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255, 250, 241, 0.76);
}

.about-card-photo {
  aspect-ratio: 0.86;
  max-height: 22rem;
  object-fit: cover;
  object-position: center 36%;
}

.about-card-logo {
  width: min(15rem, 100%);
  height: auto;
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(24rem, 1.22fr);
  gap: clamp(2rem, 6vw, 6rem);
  padding: clamp(3.5rem, 7vw, 6.5rem) clamp(1.2rem, 5vw, 5rem);
  border-bottom: 1px solid var(--line);
}

.article-header {
  position: sticky;
  top: 7rem;
  align-self: start;
}

.article-header h1 {
  max-width: 13ch;
  font-size: clamp(2.25rem, 3.4vw, 3.45rem);
}

.article-header > p:not(.eyebrow) {
  max-width: 38rem;
  color: var(--charcoal);
  font-size: clamp(1.02rem, 1.25vw, 1.18rem);
  line-height: 1.45;
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
  margin-top: 1.6rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.9rem;
}

.article-body {
  max-width: 48rem;
  padding: clamp(1.5rem, 4vw, 3rem);
  border: 1px solid var(--line);
  border-radius: var(--radius-soft);
  background: var(--paper);
}

.article-body h2 {
  max-width: none;
  margin-top: 2.6rem;
  margin-bottom: 1rem;
  font-size: clamp(1.65rem, 2.2vw, 2.25rem);
  line-height: 1.12;
}

.article-body h2:first-child {
  margin-top: 0;
}

.article-body p,
.article-body li {
  color: var(--charcoal);
}

.article-body p {
  margin-bottom: 1.15rem;
}

.article-body ul {
  margin: 0 0 1.5rem;
  padding-left: 1.2rem;
}

.article-body li + li {
  margin-top: 0.75rem;
}

.article-body li p {
  margin: 0;
}

.article-body hr {
  margin: 2.4rem 0;
  border: 0;
  border-top: 1px solid var(--line);
}

.author-box {
  border-bottom: 1px solid var(--line);
  background: #f5ede2;
}

.author-box-inner {
  display: grid;
  grid-template-columns: minmax(7rem, 0.22fr) minmax(0, 1fr);
  gap: clamp(1.2rem, 3vw, 2.2rem);
  max-width: 58rem;
  align-items: center;
}

.author-box img {
  width: 8.5rem;
  height: 8.5rem;
  max-width: 100%;
  max-height: 8.5rem;
  justify-self: start;
  align-self: center;
  aspect-ratio: 1 / 1;
  border: 1px solid rgba(72, 55, 40, 0.14);
  border-radius: 50%;
  object-fit: cover;
  object-position: center 34%;
  box-shadow: 0 14px 32px rgba(62, 45, 31, 0.08);
}

.author-box h2 {
  max-width: none;
  margin-bottom: 0.55rem;
  font-size: clamp(1.45rem, 2vw, 1.9rem);
}

.author-box p:not(.eyebrow) {
  max-width: 44rem;
  color: var(--muted);
}

.author-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
  max-width: 48rem;
  margin: 1.2rem 0 1rem;
}

.author-detail-grid article {
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-soft);
  background: rgba(255, 250, 241, 0.62);
}

.author-detail-grid strong,
.author-detail-grid span {
  display: block;
}

.author-detail-grid strong {
  margin-bottom: 0.35rem;
  font-family: var(--serif);
  font-size: 1.12rem;
  font-weight: 400;
  line-height: 1.15;
}

.author-detail-grid span {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.45;
}

.article-cta {
  border-bottom: 1px solid rgba(255, 253, 247, 0.18);
}

.related-posts {
  background: var(--stone-2);
}

.service-hero .button {
  margin-top: 0.8rem;
}

.scenario-section {
  background: var(--stone-2);
}

.scenario-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.scenario-grid article {
  min-height: 21rem;
  background: var(--paper);
}

.scenario-grid p,
.credential-grid p,
.fees-grid p {
  color: var(--muted);
}

.service-detail {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(18rem, 1.1fr);
  gap: clamp(2rem, 6vw, 6rem);
  align-items: start;
}

.service-detail h2 {
  max-width: 16ch;
}

.credentials {
  background: var(--paper);
}

.credential-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.credential-grid article {
  min-height: 18rem;
  background: var(--ivory);
}

.faq-section {
  background: var(--stone-2);
}

.faq-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.faq-list article {
  padding: clamp(1.3rem, 3vw, 2rem);
  border: 1px solid var(--line);
  border-radius: var(--radius-soft);
  background: var(--paper);
}

.faq-list p {
  color: var(--muted);
}

.booking-layout {
  display: grid;
  grid-template-columns: minmax(20rem, 0.88fr) minmax(22rem, 1.12fr);
  min-height: calc(100vh - 5.1rem);
  border-bottom: 1px solid var(--line);
}

.booking-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(3rem, 7vw, 5.5rem) clamp(1.2rem, 5vw, 5rem);
}

.booking-copy h1 {
  max-width: 12ch;
}

.booking-copy > p:not(.eyebrow) {
  max-width: 42rem;
  color: var(--charcoal);
  font-size: clamp(1.05rem, 1.35vw, 1.2rem);
  line-height: 1.45;
}

.mini-facts {
  display: grid;
  gap: 0.75rem;
  max-width: 42rem;
  margin-top: 1.4rem;
  padding-top: 1.4rem;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.mini-facts p {
  margin: 0;
}

.mini-facts strong {
  color: var(--ink);
}

.booking-frame {
  min-height: 42rem;
  border-left: 1px solid var(--line);
  border-radius: var(--radius-soft);
  background: var(--paper);
  overflow: hidden;
}

.booking-frame iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 42rem;
  border: 0;
}

.referral-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.plain-list {
  margin: 0;
  padding-left: 1.2rem;
  color: var(--muted);
}

.plain-list li + li {
  margin-top: 0.75rem;
}

.newsletter-callout {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #efe4d6;
}

.newsletter-callout .copy-stack {
  max-width: 42rem;
}

.process {
  background: var(--stone-2);
}

.home-faq {
  background: #fff7ed;
}

.faq-preview-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.faq-preview-grid article {
  padding: clamp(1.25rem, 2.4vw, 1.8rem);
  border: 1px solid var(--line);
  border-radius: var(--radius-soft);
  background: var(--ivory);
}

.faq-preview-grid h3 {
  font-size: clamp(1.08rem, 1.3vw, 1.25rem);
}

.faq-preview-grid p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.96rem;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 2rem;
}

.process-steps div {
  padding: clamp(1.3rem, 3vw, 2rem);
  border: 1px solid var(--line);
  border-radius: var(--radius-soft);
  background: var(--paper);
}

.resource-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.faq-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  background: var(--paper);
}

.faq-list article {
  padding: clamp(1.4rem, 3vw, 2.4rem);
  border: 1px solid var(--line);
  border-radius: var(--radius-soft);
  background: var(--ivory);
}

.faq-list h2 {
  max-width: none;
  font-size: clamp(1.45rem, 2vw, 1.9rem);
  line-height: 1.14;
}

.faq-list p {
  color: var(--muted);
}

.not-found {
  display: grid;
  min-height: 100vh;
  align-content: center;
  justify-items: start;
  padding: clamp(2rem, 8vw, 6rem);
}

.not-found h1 {
  max-width: 11ch;
}

@media (max-width: 980px) {
  .menu-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 1px);
    right: 1rem;
    left: 1rem;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 1rem;
    border: 1px solid var(--line);
    background: var(--paper);
    box-shadow: var(--shadow);
  }

  .site-nav[data-open="true"] {
    display: flex;
  }

  .site-nav a {
    padding: 0.85rem 0;
    border-bottom: 1px solid var(--line);
  }

  .site-nav a:last-child {
    border-bottom: 0;
  }

  .nav-cta {
    margin-top: 0.8rem;
    text-align: center;
  }

  .hero,
  .booking-layout,
  .article-layout,
  .about-hero,
  .profile-feature,
  .split,
  .method,
  .practice-note,
  .site-footer,
  .trust-strip,
  .referral-grid,
  .service-detail {
    grid-template-columns: 1fr;
  }

  .trust-strip div {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

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

  .hero {
    min-height: auto;
  }

  .hero-media {
    min-height: 24rem;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .evidence-band,
  .service-grid,
  .resource-list,
  .faq-preview-grid,
  .faq-list,
  .process-steps,
  .fees-grid,
  .scenario-grid,
  .credential-grid,
  .faq-list {
    grid-template-columns: 1fr;
  }

  .evidence-card,
  .service-card,
  .resource-card,
  .referral-grid article,
  .scenario-grid article,
  .credential-grid article,
  .fees-grid article {
    min-height: auto;
  }

  .booking-layout {
    min-height: auto;
  }

  .booking-frame {
    min-height: 38rem;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .booking-frame iframe {
    min-height: 38rem;
  }

  .article-header {
    position: static;
  }

  .article-body {
    max-width: none;
  }

  .author-box-inner {
    grid-template-columns: 1fr;
  }

  .author-box img {
    width: 6.5rem;
    height: 6.5rem;
  }

  .author-detail-grid {
    grid-template-columns: 1fr;
  }

  .about-card {
    justify-self: start;
  }
}

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

  .site-header {
    gap: 1rem;
  }

  .brand-mark {
    width: 2.5rem;
    height: 2.5rem;
    flex-basis: 2.5rem;
  }

  .brand strong {
    font-size: 1rem;
  }

  .brand span span {
    max-width: 13rem;
    font-size: 0.68rem;
  }

  h1 {
    max-width: 100%;
    font-size: clamp(2.2rem, 9vw, 2.75rem);
  }

  h2 {
    max-width: 100%;
    font-size: clamp(1.9rem, 8vw, 2.65rem);
  }

  .page-hero h1,
  .article-header h1 {
    max-width: 100%;
    font-size: clamp(2rem, 8vw, 2.65rem);
  }

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

  .hero-media {
    min-height: 18rem;
  }

  .section,
  .page-hero {
    padding-right: 1rem;
    padding-left: 1rem;
  }

  .quote-block p {
    font-size: 2rem;
  }
}
