:root {
  --background: #fbf9f4;
  --surface: #f5f3ee;
  --surface-strong: #e8e3d8;
  --surface-muted: #f0eee9;
  --primary: #041627;
  --primary-soft: #1a2b3c;
  --text: #1b1c19;
  --muted: #44474c;
  --line: #d7d2c8;
  --olive: #7b856d;
  --blue: #8aa6b9;
  --white: #ffffff;
  --shadow: 0 18px 50px rgba(26, 43, 60, 0.08);
  --container: 1280px;
  --gutter: clamp(24px, 5vw, 64px);
  --section: clamp(72px, 10vw, 124px);
  --serif: "Playfair Display", Georgia, serif;
  --sans: "Inter", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--background);
  color: var(--text);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

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

a {
  color: inherit;
}

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

.sr-only,
.skip-link {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link:focus {
  position: fixed;
  top: 16px;
  left: 16px;
  z-index: 1000;
  width: auto;
  height: auto;
  padding: 10px 14px;
  clip: auto;
  background: var(--primary);
  color: var(--white);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(251, 249, 244, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.nav-shell {
  max-width: var(--container);
  margin: 0 auto;
  padding: 18px var(--gutter);
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 24px;
}

.brand {
  font-family: var(--serif);
  font-size: 32px;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  color: var(--primary);
}

.desktop-nav {
  display: flex;
  justify-content: center;
  gap: clamp(16px, 2.2vw, 34px);
}

.desktop-nav a,
.mobile-nav a,
.site-footer nav a {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--muted);
  position: relative;
  transition: color 180ms ease;
}

.desktop-nav a:hover,
.desktop-nav a.is-active,
.mobile-nav a:hover,
.mobile-nav a.is-active,
.site-footer nav a:hover {
  color: var(--primary);
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -9px;
  height: 1px;
  background: var(--primary);
  opacity: 0;
  transform: scaleX(0.5);
  transition: opacity 180ms ease, transform 180ms ease;
}

.desktop-nav a:hover::after,
.desktop-nav a.is-active::after {
  opacity: 1;
  transform: scaleX(1);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 24px;
  border: 1px solid var(--primary);
  border-radius: 4px;
  background: var(--primary);
  color: var(--white);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: background 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.nav-cta:hover {
  background: var(--background);
  color: var(--primary);
  box-shadow: var(--shadow);
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  padding: 11px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: transparent;
}

.menu-button span:not(.sr-only) {
  display: block;
  height: 2px;
  margin: 4px 0;
  background: var(--primary);
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-button[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.menu-button[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-button[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.mobile-nav {
  display: none;
  padding: 4px var(--gutter) 20px;
  border-top: 1px solid var(--line);
}

.mobile-nav a {
  display: block;
  padding: 14px 0;
}

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

.section {
  padding: var(--section) 0;
  scroll-margin-top: 84px;
}

.tonal-band {
  background: var(--surface);
}

.hero {
  min-height: calc(100vh - 82px);
  display: flex;
  align-items: center;
  padding-top: clamp(44px, 5vw, 64px);
  padding-bottom: clamp(56px, 6vw, 80px);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.75fr);
  gap: clamp(40px, 5vw, 64px);
  align-items: center;
}

.hero-copy {
  max-width: 720px;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--olive);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  line-height: 1.35;
  text-transform: uppercase;
}

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

h1,
h2,
h3 {
  color: var(--primary);
  font-family: var(--serif);
  line-height: 1.12;
}

h1 {
  margin-bottom: 28px;
  font-size: 56px;
  font-weight: 700;
  line-height: 1.12;
}

h2 {
  margin-bottom: 24px;
  font-size: 40px;
  font-weight: 700;
  line-height: 1.2;
}

h3 {
  margin-bottom: 14px;
  font-size: 26px;
  font-weight: 600;
  line-height: 1.23;
}

.hero-text,
.section-intro p,
.text-stack p,
.about-copy p,
.cta-copy p,
.contact-copy p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.58;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 15px 28px;
  border: 1px solid var(--primary);
  border-radius: 4px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-align: center;
  text-decoration: none;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.button.primary {
  background: var(--primary);
  color: var(--white);
}

.button.primary:hover {
  background: var(--background);
  color: var(--primary);
  box-shadow: var(--shadow);
}

.button.secondary {
  background: transparent;
  color: var(--primary);
}

.button.secondary:hover {
  background: var(--background);
  color: var(--primary);
  box-shadow: var(--shadow);
}

.button.light {
  background: var(--background);
  color: var(--primary);
}

.button.light:hover {
  background: var(--background);
  border-color: var(--background);
  color: var(--primary);
  box-shadow: var(--shadow);
}

.hero-media {
  position: relative;
}

.hero-media img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border: 1px solid rgba(4, 22, 39, 0.08);
}

.seal {
  position: absolute;
  left: -38px;
  bottom: 34px;
  width: 128px;
  height: 128px;
  display: grid;
  place-content: center;
  gap: 4px;
  border: 1px solid rgba(123, 133, 109, 0.45);
  border-radius: 50%;
  background: rgba(251, 249, 244, 0.92);
  color: var(--primary);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  line-height: 1.3;
  text-align: center;
  text-transform: uppercase;
}

.page-hero {
  padding-top: clamp(72px, 8vw, 116px);
}

.contact-hero {
  padding-top: clamp(48px, 6vw, 76px);
  padding-bottom: clamp(22px, 3vw, 36px);
}

.contact-hero-grid {
  max-width: 1120px;
  text-align: left;
}

.page-hero-grid,
.image-feature-grid,
.contact-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.8fr);
  gap: clamp(40px, 7vw, 96px);
  align-items: center;
}

.page-hero-media img,
.image-feature-media img {
  width: 100%;
  aspect-ratio: 4 / 3.8;
  object-fit: cover;
  border: 1px solid rgba(4, 22, 39, 0.08);
}

.image-feature-copy {
  max-width: 620px;
}

.photo-story-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(360px, 1.14fr);
  gap: clamp(36px, 6vw, 86px);
  align-items: center;
}

.photo-story .section-heading p:not(.eyebrow) {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.62;
}

.photo-strip {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 14px;
}

.photo-tile {
  min-width: 0;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(4, 22, 39, 0.08);
  background: var(--surface-muted);
}

.photo-tile.tall {
  grid-row: span 2;
}

.photo-tile img {
  width: 100%;
  height: 100%;
  min-height: 210px;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.photo-tile.tall img {
  aspect-ratio: 4 / 5.25;
}

.image-feature-copy .button,
.about-copy .button {
  margin-top: 18px;
}

.split,
.cta-grid,
.about-grid,
.knowledge-layout,
.faq-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(40px, 7vw, 96px);
}

.faq-page-container {
  max-width: 1040px;
}

.faq-page-container .section-intro {
  margin-bottom: 28px;
}

.section-heading {
  max-width: 530px;
}

.text-stack {
  max-width: 780px;
}

.text-stack p + p {
  margin-top: 24px;
}

.narrow-heading,
.section-intro {
  max-width: 760px;
  margin-bottom: clamp(34px, 5vw, 62px);
}

.section-intro p {
  max-width: 760px;
}

.card-grid,
.service-grid,
.role-grid,
.process-grid {
  display: grid;
  gap: 18px;
}

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

.feature-card,
.service-card,
.role-card,
.process-step {
  background: var(--surface-muted);
  border: 1px solid rgba(4, 22, 39, 0.08);
  border-radius: 4px;
  padding: clamp(24px, 3vw, 34px);
  transition: background 180ms ease, box-shadow 180ms ease;
}

.feature-card:hover,
.service-card:hover,
.role-card:hover,
.process-step:hover {
  background: var(--white);
  box-shadow: var(--shadow);
}

.card-marker {
  display: block;
  width: 28px;
  height: 2px;
  margin-bottom: 28px;
  background: var(--olive);
}

.feature-card p,
.service-card p,
.role-card p,
.process-step p,
.knowledge-item p,
.line-list li {
  color: var(--muted);
}

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

.service-card {
  background: var(--background);
}

.fee-preview-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: clamp(34px, 6vw, 86px);
  align-items: center;
}

.fee-preview .section-heading p:not(.eyebrow) {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.62;
}

.fee-preview .button {
  margin-top: 18px;
}

.fee-teaser-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.fee-teaser {
  min-height: 230px;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(4, 22, 39, 0.08);
  border-radius: 4px;
  background: var(--background);
  padding: clamp(22px, 3vw, 30px);
  transition: background 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.fee-teaser:hover {
  background: var(--white);
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

.fee-teaser span {
  margin-bottom: auto;
  color: var(--olive);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.fee-teaser h3 {
  margin-top: 34px;
  font-size: 24px;
}

.fee-value {
  margin: 0;
  color: var(--primary);
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 700;
  line-height: 1.16;
}

.fee-teaser.is-featured {
  background: var(--primary);
}

.fee-teaser.is-featured,
.fee-teaser.is-featured span,
.fee-teaser.is-featured h3,
.fee-teaser.is-featured .fee-value {
  color: var(--white);
}

.fee-teaser.is-featured:hover {
  background: var(--primary-soft);
}

.knowledge-layout {
  align-items: start;
}

.knowledge-aside {
  position: sticky;
  top: 112px;
}

.knowledge-aside p {
  color: var(--muted);
}

.knowledge-list {
  border-top: 1px solid var(--line);
}

.knowledge-item {
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
}

.knowledge-item h3 {
  font-size: 30px;
}

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

.role-card {
  background: rgba(251, 249, 244, 0.74);
}

.role-card h3 {
  font-size: 25px;
}

.buy-card {
  grid-column: span 2;
  background: var(--primary);
}

.buy-card h3,
.buy-card p {
  color: var(--white);
}

.buy-card:hover h3,
.buy-card:hover p {
  color: var(--primary);
}

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

.process-step {
  grid-column: span 2;
  min-height: 260px;
  display: flex;
  flex-direction: column;
}

.process-step span {
  margin-bottom: auto;
  color: var(--blue);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.18em;
}

.about-grid {
  grid-template-columns: minmax(0, 1.12fr) minmax(340px, 0.88fr);
  align-items: start;
}

.about-media {
  position: relative;
}

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

.about-portrait-main {
  aspect-ratio: 4 / 5;
  border: 1px solid rgba(4, 22, 39, 0.08);
}

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

.about-subheadline {
  margin: -8px 0 28px;
  color: var(--primary);
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 600;
  line-height: 1.25;
}

.about-text p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.72;
}

.about-text p + p {
  margin-top: 22px;
}

.about-quote {
  margin: 34px 0 28px;
  padding: 24px 0 24px 28px;
  border-left: 2px solid var(--olive);
  color: var(--primary);
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 600;
  line-height: 1.3;
}

.about-aside {
  position: sticky;
  top: 112px;
}

.about-highlights {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 16px;
}

.about-highlight {
  border: 1px solid rgba(4, 22, 39, 0.08);
  border-radius: 4px;
  background: var(--surface-muted);
  padding: 18px;
  transition: background 180ms ease, box-shadow 180ms ease;
}

.about-highlight:hover {
  background: var(--white);
  box-shadow: var(--shadow);
}

.about-highlight h3 {
  margin-bottom: 8px;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.11em;
  line-height: 1.35;
  text-transform: uppercase;
}

.about-highlight p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.line-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.line-list li {
  position: relative;
  padding: 16px 0 16px 40px;
  border-bottom: 1px solid var(--line);
}

.line-list li::before {
  content: "";
  position: absolute;
  top: 30px;
  left: 0;
  width: 18px;
  height: 2px;
  background: var(--olive);
}

.accordion {
  border-top: 1px solid var(--line);
}

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

.faq-item h3 {
  margin: 0;
}

.faq-item button {
  position: relative;
  width: 100%;
  padding: 24px 42px 24px 0;
  border: 0;
  background: transparent;
  color: var(--primary);
  cursor: pointer;
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 600;
  line-height: 1.25;
  overflow-wrap: anywhere;
  text-align: left;
}

.faq-item button::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 22px;
  color: var(--olive);
  font-family: var(--sans);
  font-size: 28px;
  font-weight: 400;
  transition: transform 180ms ease;
}

.faq-item button[aria-expanded="true"]::after {
  transform: rotate(45deg);
}

.faq-panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 220ms ease;
}

.faq-panel > p {
  min-height: 0;
  margin: 0;
  overflow: hidden;
  color: var(--muted);
}

.faq-item.is-open .faq-panel {
  grid-template-rows: 1fr;
}

.faq-item.is-open .faq-panel > p {
  padding: 0 0 24px;
}

.cta-section {
  padding: clamp(64px, 8vw, 96px) 0;
  background: var(--primary);
  color: var(--white);
}

.cta-section h2,
.cta-section .eyebrow,
.cta-section p {
  color: var(--white);
}

.cta-copy {
  align-self: end;
}

.cta-question {
  margin: -8px 0 0;
  color: var(--white);
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 600;
  line-height: 1.25;
}

.contact-layout {
  max-width: 940px;
}

.contact-form-section {
  padding-top: clamp(24px, 3vw, 40px);
}

.contact-copy {
  max-width: 760px;
  margin: 0 auto 36px;
  text-align: center;
}

.legal-note {
  margin-top: 34px;
  padding: 18px 20px;
  border: 1px solid var(--line);
  background: var(--surface-muted);
  color: var(--muted);
  font-size: 12px;
  line-height: 1.6;
  text-align: left;
}

.form-legal-note {
  grid-column: 1 / -1;
  margin: 2px 0 0;
}

.form-status {
  margin: 0 0 18px;
  padding: 16px 18px;
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--primary);
  font-weight: 600;
  text-align: center;
}

.form-status.is-success {
  border-color: rgba(123, 133, 109, 0.45);
  background: rgba(123, 133, 109, 0.12);
}

.contact-form {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
  padding: clamp(24px, 4vw, 42px);
  border: 1px solid var(--line);
  background: var(--surface);
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-row.full,
.fieldset,
.form-submit {
  grid-column: 1 / -1;
}

.form-website {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
}

label,
legend {
  color: var(--primary);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1.4;
  text-transform: uppercase;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid transparent;
  border-bottom-color: var(--line);
  border-radius: 0;
  background: rgba(255, 255, 255, 0.45);
  color: var(--text);
  min-height: 48px;
  padding: 10px 12px;
  outline: none;
  transition: border-color 180ms ease, background 180ms ease;
}

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

input:focus,
select:focus,
textarea:focus {
  border-color: var(--primary);
  background: var(--white);
}

.fieldset {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px 26px;
  padding: 0;
  border: 0;
}

.fieldset legend {
  width: 100%;
}

.radio {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
}

.radio input {
  width: 18px;
  min-height: auto;
  accent-color: var(--primary);
}

.form-submit {
  width: 100%;
  cursor: pointer;
}

.site-footer {
  padding: 36px 0;
  border-top: 1px solid var(--line);
  background: var(--surface-strong);
}

.footer-grid {
  display: grid;
  grid-template-columns: auto minmax(220px, 1fr) auto auto;
  gap: 28px;
  align-items: center;
}

.footer-brand {
  font-size: 28px;
}

.site-footer p {
  margin: 0;
  color: var(--text);
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}

.copyright {
  color: var(--muted);
  font-size: 14px;
}

.legal-page {
  min-height: 70vh;
}

.legal-content {
  max-width: 860px;
}

.legal-content h1 {
  margin-bottom: 36px;
}

.legal-content h2 {
  margin-top: 42px;
  font-size: 30px;
}

.legal-content p,
.legal-content li {
  color: var(--muted);
}

.legal-content a {
  color: var(--primary);
  font-weight: 700;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 650ms ease, transform 650ms ease;
}

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


.price-hero .hero-text {
  max-width: 760px;
}

.price-intro-grid,
.info-section-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: clamp(34px, 6vw, 86px);
  align-items: start;
}

.price-intro-copy p,
.info-panel p,
.trust-block p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.68;
}

.price-intro-copy p + p,
.info-panel p + p {
  margin-top: 22px;
}

.price-principles {
  display: grid;
  gap: 16px;
}

.price-principles div,
.info-panel,
.trust-block {
  border: 1px solid rgba(4, 22, 39, 0.08);
  border-radius: 4px;
  background: var(--background);
  padding: clamp(24px, 3vw, 34px);
}

.price-principles span,
.price-principles strong {
  display: block;
}

.price-principles span {
  margin-bottom: 6px;
  color: var(--olive);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.price-principles strong {
  color: var(--primary);
  font-family: var(--serif);
  font-size: 26px;
  line-height: 1.22;
}

.price-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.price-card {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  border: 1px solid rgba(4, 22, 39, 0.08);
  border-radius: 4px;
  background: var(--surface-muted);
  padding: clamp(24px, 3vw, 34px);
  transition: background 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.price-card:hover {
  background: var(--white);
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

.price-card.is-featured {
  border-color: var(--primary);
  background: var(--primary);
}

.price-card.is-featured,
.price-card.is-featured h3,
.price-card.is-featured .price-value,
.price-card.is-featured p,
.price-card.is-featured li,
.price-card.is-featured .price-label {
  color: var(--white);
}

.price-card.is-featured .price-list li {
  border-color: rgba(255, 255, 255, 0.18);
}

.price-card.is-featured .price-list li::before {
  background: var(--white);
}

.price-card.is-featured:hover {
  background: var(--primary-soft);
  box-shadow: var(--shadow);
}

.price-label {
  margin-bottom: 18px;
  color: var(--olive);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.price-card h3 {
  min-height: 64px;
}

.price-value {
  margin: 4px 0 22px;
  color: var(--primary);
  font-family: var(--serif);
  font-size: 30px;
  font-weight: 700;
  line-height: 1.16;
}

.price-card p {
  color: var(--muted);
}

.price-card .button {
  margin-top: auto;
}

.price-list {
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.price-list li {
  position: relative;
  padding: 11px 0 11px 26px;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.price-list li::before {
  content: "";
  position: absolute;
  top: 23px;
  left: 0;
  width: 12px;
  height: 2px;
  background: var(--olive);
}

.price-note {
  margin-top: 20px;
  font-weight: 700;
}

.info-panel,
.trust-block {
  background: var(--background);
}

.line-list.compact {
  margin: 18px 0 22px;
}

.line-list.compact li {
  padding-top: 11px;
  padding-bottom: 11px;
}

.line-list.compact li::before {
  top: 25px;
}

.independence-section .trust-block {
  border-left: 2px solid var(--olive);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

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

@media (max-width: 1100px) {
  .hero-grid,
  .page-hero-grid,
  .image-feature-grid,
  .contact-hero-grid,
  .split,
  .cta-grid,
  .about-grid,
  .knowledge-layout,
  .faq-layout,
  .fee-preview-layout,
  .photo-story-grid,
  .price-intro-grid,
  .info-section-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy,
  .section-heading,
  .text-stack,
  .about-copy,
  .knowledge-aside {
    max-width: 820px;
  }

  .knowledge-aside,
  .about-aside,
  .contact-copy {
    position: static;
  }

  .service-grid,
  .role-grid,
  .fee-teaser-grid,
  .price-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .process-step {
    grid-column: span 3;
  }
}

@media (max-width: 820px) {
  .desktop-nav,
  .nav-cta {
    display: none;
  }

  .nav-shell {
    grid-template-columns: 1fr auto;
  }

  .menu-button {
    display: block;
  }

  .site-header.is-open .mobile-nav {
    display: block;
  }

  .hero {
    min-height: auto;
  }

  .hero-grid {
    gap: 44px;
  }

  .hero-media {
    max-width: 560px;
  }

  .seal {
    left: 18px;
    bottom: 18px;
    width: 112px;
    height: 112px;
  }

  .card-grid.three,
  .service-grid,
  .role-grid,
  .fee-teaser-grid,
  .photo-strip,
  .process-grid,
  .about-highlights,
  .price-card-grid,
  .contact-form {
    grid-template-columns: 1fr;
  }

  .photo-tile.tall {
    grid-row: auto;
  }

  .photo-tile img,
  .photo-tile.tall img {
    aspect-ratio: 4 / 3;
  }

  .process-step,
  .buy-card {
    grid-column: auto;
  }

  .process-step {
    min-height: 220px;
  }

  .price-card h3 {
    min-height: auto;
  }

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

@media (max-width: 560px) {
  :root {
    --gutter: 24px;
  }

  .nav-shell {
    padding-top: 16px;
    padding-bottom: 16px;
  }

  .brand {
    font-size: 25px;
  }

  h1 {
    font-size: 40px;
    line-height: 1.2;
  }

  h2 {
    font-size: 32px;
  }

  h3,
  .knowledge-item h3,
  .faq-item button {
    font-size: 24px;
  }

  .about-subheadline,
  .about-quote {
    font-size: 24px;
  }

  .button-row,
  .button {
    width: 100%;
  }

  .hero-media img {
    aspect-ratio: 4 / 4.7;
  }

  .contact-form {
    padding: 24px;
  }

  .faq-item button {
    padding-right: 34px;
  }
}
