@charset "UTF-8";

/* Shared foundation: one type scale and one responsive layout. */
:root {
  --paper: #faf9f5;
  --ink: #243c31;
  --muted: #536158;
  --line: #d7dfd6;
  --olive: #284b39;
  --pale: #edf1e8;
  --white: #ffffff;
  --radius: 12px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: var(--paper);
  font-synthesis: none;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 28px; }
body { margin: 0; font-size: 18px; line-height: 1.65; }
h1, h2, h3, p { margin: 0; }
h1, h2, h3 { font-family: inherit; text-wrap: balance; }
h1, h2 { font-weight: 600; letter-spacing: -.035em; line-height: 1.12; }
h1 { font-size: clamp(44px, 3.5vw, 64px); }
h2 { font-size: clamp(32px, 2.6vw, 44px); }
h3 { font-size: 23px; line-height: 1.3; font-weight: 600; letter-spacing: -.015em; }
em { font-style: normal; color: #516d46; }
a { color: inherit; text-underline-offset: 5px; }
button, input { font: inherit; }
a, button, input, summary { touch-action: manipulation; }
a:focus-visible, button:focus-visible, input:focus-visible, summary:focus-visible {
  outline: 3px solid #997028; outline-offset: 5px;
}
button, a { -webkit-tap-highlight-color: transparent; }
.wrap { width: min(1520px, calc(100% - clamp(40px, 8vw, 160px))); margin-inline: auto; }
.eyebrow { font-size: 14px; font-weight: 600; line-height: 1.5; letter-spacing: .08em; text-transform: uppercase; }
.muted { color: var(--muted); }
.text-link { display: inline-block; font-size: 16px; font-weight: 600; text-decoration-thickness: 1px; }
.button {
  display: inline-flex; justify-content: space-between; align-items: center; gap: 22px;
  min-height: 56px; padding: 15px 24px; border: 1px solid var(--olive);
  border-radius: 7px; background: var(--olive); color: white;
  font-size: 17px; line-height: 1.45; font-weight: 600; text-decoration: none; cursor: pointer;
  transition: background .18s;
}
.button:hover { background: #193626; }
.button span { font-size: 23px; }
.preview-note { padding: 8px 20px; background: #e9e6da; text-align: center; color: #565344; font-size: 14px; line-height: 1.45; }
.skip-link { position: absolute; top: -100px; left: 20px; z-index: 20; padding: 12px; background: white; }
.skip-link:focus { top: 12px; }

/* Shared header and footer. */
.site-header { min-height: 104px; display: flex; align-items: center; justify-content: space-between; gap: 28px; border-bottom: 1px solid var(--line); }
.site-name { display: inline-block; max-width: 220px; font-size: 21px; font-weight: 600; line-height: 1.25; text-decoration: none; }
.site-header nav { display: flex; flex-wrap: wrap; gap: 25px; font-size: 16px; }
.site-header nav a { text-decoration: none; }
.site-header nav a:hover, .site-header nav a[aria-current] { text-decoration: underline; }
.header-cta { font-size: 16px; font-weight: 600; white-space: nowrap; }
.header-cta span { margin-left: 12px; }
.menu-toggle { display: none; }
.site-footer { padding-top: 38px; }
.footer-top { display: flex; align-items: center; justify-content: space-between; gap: 32px; padding-bottom: 32px; border-bottom: 1px solid var(--line); }
.footer-top > p { font-size: 20px; font-weight: 600; line-height: 1.4; }
.footer-top > a:last-child { font-size: 16px; }
.footer-legal, .footer-bottom { display: flex; justify-content: space-between; gap: 30px; padding-block: 24px; font-size: 14px; color: var(--muted); }
.footer-legal a { display: block; margin-bottom: 6px; }
.footer-bottom { border-top: 1px solid var(--line); padding-bottom: 30px; }

/* Homepage: an explicit service offer and useful consultation outline. */
.hero { display: grid; grid-template-columns: 1.2fr 1fr; gap: clamp(36px, 5vw, 88px); align-items: center; padding-block: 64px; }
.hero-copy, .consultation-copy, .service-card, .cost-section > div { min-width: 0; }
.hero h1 { max-width: 800px; margin-top: 20px; text-wrap: pretty; }
.hero-description { max-width: 650px; margin-top: 25px; font-size: 20px; color: var(--muted); }
.hero-actions { display: flex; align-items: center; flex-wrap: wrap; gap: 22px; margin-top: 30px; }
.hero-reassurance { font-size: 16px; color: var(--muted); margin-top: 18px; }
.consultation-preview { background: var(--pale); border: 1px solid var(--line); padding: 34px; border-radius: var(--radius); }
.consultation-preview h2 { margin-top: 16px; font-size: 30px; max-width: 440px; }
.discussion-list { list-style: none; padding: 0; margin: 26px 0 0; }
.discussion-list li { padding-block: 18px; border-top: 1px solid #c9d3c5; }
.discussion-list li:last-child { padding-bottom: 0; }
.discussion-list h3 { font-size: 20px; }
.discussion-list p { margin-top: 7px; font-size: 18px; line-height: 1.55; color: var(--muted); }

/* One lead form, placed early on the homepage. */
.consultation-section { display: grid; grid-template-columns: 1.15fr 1fr; gap: clamp(32px, 5vw, 80px); align-items: center; background: var(--ink); color: white; padding: 48px; border-radius: 16px; scroll-margin-top: 24px; }
.consultation-copy h2 { max-width: 600px; margin-top: 18px; }
.consultation-copy > p:not(.eyebrow) { max-width: 600px; margin-top: 22px; color: #e0e8df; }
.consultation-copy .eyebrow { color: #d6e4cb; }
.contact-promises { margin: 24px 0 0; padding-left: 22px; color: #e0e8df; font-size: 17px; }
.contact-promises li { margin-bottom: 10px; }
.contact-methods { display: grid; margin-top: 26px; border-top: 1px solid #627369; }
.contact-methods div { display: grid; gap: 3px; padding-block: 11px; border-bottom: 1px solid #627369; }
.contact-methods span { color: #d6e4cb; font-size: 14px; font-weight: 600; }
.contact-methods a { color: inherit; font-size: 20px; font-weight: 600; overflow-wrap: anywhere; }
.prose .contact-methods { margin-bottom: 24px; }
.prose .contact-methods { border-color: var(--line); }
.prose .contact-methods div { border-color: var(--line); }
.prose .contact-methods span { color: var(--muted); }
.prose .contact-methods a { font-size: 22px; }
.practitioner-note { margin-top: 26px; padding-top: 22px; border-top: 1px solid #627369; }
.practitioner-note h3 { margin-block: 8px; }
.lead-form { position: relative; background: var(--white); color: var(--ink); border: 1px solid var(--line); border-radius: var(--radius); padding: 30px; }
.lead-form h3 { font-size: 25px; }
.form-note { font-size: 15px; line-height: 1.5; color: var(--muted); margin: 12px 0 24px; }
.lead-form > label:not(.consent-checkbox) { display: flex; justify-content: space-between; gap: 8px; font-size: 16px; margin-bottom: 8px; }
.lead-form > label > span { color: var(--muted); font-size: 14px; }
.lead-form > input:not([type=hidden]) { display: block; width: 100%; min-height: 54px; margin-bottom: 19px; padding: 12px 14px; border: 1px solid #aab7ac; border-radius: 6px; font-size: 17px; color: var(--ink); background: white; }
.lead-form > input[aria-invalid=true] { border-color: #a14436; }
.consent-checkbox { display: flex; align-items: flex-start; gap: 12px; margin: 22px 0; }
.consent-checkbox input { width: 20px; height: 20px; flex-shrink: 0; margin: 3px 0 0; accent-color: var(--olive); }
.consent-checkbox span { font-size: 14px; line-height: 1.55; color: var(--muted); }
.lead-form .button { width: 100%; }
.form-footnote { margin-top: 16px; font-size: 14px; line-height: 1.55; color: var(--muted); }
.honey { position: absolute; left: -10000px; width: 1px; height: 1px; overflow: hidden; }
.error-summary { border: 1px solid #d8aca0; background: #fcf0eb; color: #823728; padding: 16px; margin-block: 16px; font-size: 16px; }
.error-summary ul { padding-left: 20px; margin: 8px 0 0; }

/* Services, process, pricing and questions. */
.section { padding-block: 72px; }
.section-heading { display: flex; align-items: flex-end; justify-content: space-between; gap: 40px; margin-bottom: 30px; }
.section-heading h2 { max-width: 740px; margin-top: 14px; }
.section-heading > p { max-width: 390px; color: var(--muted); }
.service-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; }
.service-card { display: flex; flex-direction: column; border: 1px solid var(--line); border-top: 3px solid #6d8561; border-radius: var(--radius); background: white; padding: 28px; }
.service-card p { margin: 18px 0 24px; color: var(--muted); }
.service-card > a { display: flex; justify-content: space-between; gap: 12px; margin-top: auto; padding-top: 18px; border-top: 1px solid var(--line); font-size: 16px; font-weight: 600; }
.practice-section { background: #f4f5ef; }
.practice-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; }
.practice-card { display: flex; flex-direction: column; padding: 28px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); }
.practice-label { color: #516d46; font-size: 15px; font-weight: 600; line-height: 1.45; }
.practice-card h3 { margin-top: 16px; }
.practice-card > p:not(.practice-label):not(.practice-result) { margin-top: 16px; color: var(--muted); }
.practice-result { margin-top: auto; padding-top: 18px; border-top: 1px solid var(--line); font-size: 16px; font-weight: 600; line-height: 1.55; }
.practice-card > p:not(.practice-label):not(.practice-result) { margin-bottom: 22px; }
.site-header > .site-name { min-width: 0; flex-shrink: 0; }
.site-header { flex-wrap: wrap; padding-block: 16px; }
.site-header nav a { white-space: nowrap; }
.field-errors { color: #823728; font-size: 15px; margin-bottom: 16px; }
.practice-disclaimer { max-width: 800px; margin-top: 24px; color: var(--muted); font-size: 16px; }
.approach { background: var(--pale); padding-block: 64px; }
.approach-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 80px; }
.approach h2 { margin: 16px 0 24px; max-width: 600px; }
.approach .muted { max-width: 580px; }
.timeline { list-style: none; padding: 0; margin: 0; border-left: 2px solid #a9b9a2; }
.timeline li { position: relative; margin-left: 26px; padding-block: 22px; border-bottom: 1px solid #cbd6c5; }
.timeline li:first-child { padding-top: 0; }
.timeline li:last-child { border-bottom: 0; padding-bottom: 0; }
.timeline li::before { content: ""; position: absolute; left: -33px; top: 31px; width: 12px; height: 12px; border-radius: 50%; background: var(--olive); }
.timeline li:first-child::before { top: 9px; }
.timeline p { color: var(--muted); margin-top: 10px; }
.cost-section { display: grid; grid-template-columns: 1.1fr 1fr; gap: 80px; align-items: center; }
.cost-section h2 { margin-top: 16px; max-width: 650px; }
.cost-section > div > p:not(.eyebrow) { margin-block: 22px; color: var(--muted); }
.cost-note { padding: 30px; border: 1px solid var(--line); border-radius: var(--radius); background: white; }
.cost-note ul { padding-left: 22px; margin-block: 20px; }
.cost-note li { margin-bottom: 12px; }
.cost-section .cost-note > p { font-size: 16px; border-top: 1px solid var(--line); padding-top: 18px; margin-bottom: 0; }
.faq-section { padding-top: 0; }
.faq-list { border-top: 1px solid var(--line); }
details { border-bottom: 1px solid var(--line); padding-inline: 2px; }
summary { display: flex; justify-content: space-between; align-items: center; gap: 24px; list-style: none; padding-block: 23px; cursor: pointer; font-size: 20px; font-weight: 500; line-height: 1.5; }
summary::-webkit-details-marker { display: none; }
summary span { font-size: 26px; }
details[open] summary span { transform: rotate(45deg); }
details p { max-width: 850px; padding: 0 24px 24px 0; color: var(--muted); }
.quiet-cta { display: flex; justify-content: space-between; align-items: center; gap: 28px; background: var(--pale); padding: 32px; border-radius: var(--radius); margin-top: 36px; }
.quiet-cta p { margin-top: 8px; color: var(--muted); }
.legal-warning { background: #e2e8db; border-block: 1px solid #cbd5c3; padding-block: 36px; }
.warning-inner { display: grid; grid-template-columns: 200px 1fr; gap: 32px; }
.warning-inner p { font-size: 18px; line-height: 1.65; }
.mobile-contact { display: none; }

/* Compact homepage, with native case disclosure on small screens. */
.section-link { margin-top: 22px; }
.case-details { border: 0; padding: 0; margin-top: 18px; }
.case-details summary { font-size: 16px; padding-block: 14px; border-top: 1px solid var(--line); }
.case-details p { padding: 0; font-size: 17px; }
.case-details .practice-result { margin-top: 20px; padding-top: 18px; font-size: 16px; color: var(--ink); }
.experience-note { border-left: 3px solid #6d8561; padding-left: 24px; }
.home-contacts { padding-top: 0; }
.home-contacts .contact-methods { grid-template-columns: 1fr 1fr 1.5fr; gap: 24px; border-color: var(--line); }
.home-contacts .contact-methods div { border-color: var(--line); }
.home-contacts .contact-methods span { color: var(--muted); }
.faq-section:has(+ .home-contacts) .faq-list details:nth-child(n+4) { display: none; }
@media (min-width: 761px) {
  .case-details[open] summary { display: none; }
}

/* Existing editorial, contact and legal routes. */
.page-heading { max-width: 1000px; padding-block: 48px 38px; }
.page-heading > .eyebrow { margin: 28px 0 16px; }
.page-heading > p:last-child { margin-top: 24px; max-width: 760px; color: var(--muted); }
.editorial-grid { display: grid; grid-template-columns: 1.65fr 1fr; gap: 70px; align-items: start; padding-bottom: 64px; }
.prose { font-size: 18px; line-height: 1.8; overflow-wrap: anywhere; }
.prose h2 { font-size: 32px; margin: 30px 0 16px; }
.prose h3 { margin: 24px 0 12px; }
.prose p { margin-bottom: 18px; }
.prose ul { padding-left: 24px; }
.prose li { margin-bottom: 12px; }
.side-card { padding: 30px; border-radius: var(--radius); background: var(--pale); margin-top: 30px; }
.side-card h3 { font-size: 28px; margin: 18px 0; }
.side-card p { margin-bottom: 24px; color: var(--muted); }
.draft-note { border-left: 3px solid #95722f; background: #f1eddf; padding: 18px; margin-block: 24px; font-size: 16px; }
.page-faq { padding-bottom: 64px; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; padding-bottom: 64px; align-items: start; }
.large-phone { font-size: 28px; }
.legal-document { max-width: 960px; padding-block: 44px 64px; }
.legal-document > .eyebrow { margin: 28px 0 18px; }
.legal-document h1 { font-size: clamp(34px, 3vw, 48px); }
.consent-text { white-space: pre-line; margin-top: 26px; }
.status-page { padding-block: 72px; text-align: center; }
.status-page h1 { margin: 22px 0; }
.status-page > p:not(.eyebrow) { max-width: 680px; margin: 22px auto 30px; }
.status-emblem { display: grid; place-items: center; margin: 0 auto 22px; width: 64px; height: 64px; border-radius: 50%; background: var(--pale); font-size: 30px; }

@media (min-width: 1800px) {
  body { font-size: 20px; }
  .hero { padding-block: 72px; }
  .hero-description { font-size: 21px; }
  .consultation-preview { padding: 40px; }
  .discussion-list p { font-size: 20px; }
  .site-header nav, .header-cta, .text-link, .button { font-size: 18px; }
  .consultation-section { padding: 52px; }
}
@media (max-width: 1100px) {
  .header-cta { display: none; }
  .site-header nav { gap: 20px; }
  .hero { gap: 28px; }
  .hero h1 { font-size: 46px; }
  .consultation-preview { padding: 24px; }
  .consultation-preview h2 { font-size: 27px; }
  .consultation-section { padding: 30px; gap: 30px; grid-template-columns: 1fr 1fr; }
  .service-card { padding: 22px; }
  .service-card h3 { font-size: 22px; }
  .approach-grid, .cost-section, .editorial-grid { gap: 40px; }
}
@media (max-width: 900px) {
  .hero, .consultation-section { grid-template-columns: 1fr; }
  .hero h1 { max-width: 750px; font-size: 48px; text-wrap: balance; }
  .hero-description { max-width: 720px; }
  .discussion-list { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; }
  .discussion-list p { font-size: 16px; }
  .discussion-list h3 { font-size: 19px; }
  .consultation-preview h2 { max-width: none; }
  .consultation-section { gap: 28px; }
  .consultation-section .lead-form { width: 100%; max-width: 640px; justify-self: center; }
  .service-grid { grid-template-columns: 1fr; }
  .practice-grid { grid-template-columns: 1fr; }
  .section-heading { display: block; }
  .section-heading > p, .section-heading > a { margin-top: 20px; max-width: 650px; }
  .approach-grid, .cost-section, .editorial-grid, .contact-grid { grid-template-columns: 1fr; gap: 32px; }
}
@media (max-width: 760px) {
  .hero .consultation-preview, .home-consultation .consultation-copy { display: none; }
  .home-consultation { padding: 0 !important; background: transparent; }
  .home-consultation .lead-form { max-width: none; }
  .hero .hero-actions { display: none; }
  .hero .hero-description { line-height: 1.55; }
  #help .service-grid { gap: 0; }
  #help .service-card { border: 0; border-bottom: 1px solid var(--line); border-radius: 0; background: transparent; padding: 20px 0; }
  #help .service-card:first-child { padding-top: 0; }
  #help .service-card p { margin: 8px 0 0; }
  .home-contacts .contact-methods { grid-template-columns: 1fr; gap: 0; }
  body { font-size: 17px; }
  .wrap { width: calc(100% - 36px); }
  .site-header { min-height: 88px; flex-wrap: wrap; gap: 10px; padding-block: 16px; }
  .site-name { font-size: 18px; max-width: 190px; }
  .site-header nav { width: 100%; font-size: 16px; }
  .has-js .menu-toggle { display: block; padding: 10px 12px; border: 1px solid #aab7ac; background: transparent; border-radius: 6px; font-size: 14px; }
  .has-js .site-header nav { display: none; }
  .has-js .site-header nav.is-open { display: flex; }
  .hero { padding-block: 34px; gap: 28px; }
  .hero h1 { font-size: clamp(34px, 8.8vw, 40px); margin-top: 16px; }
  .hero-description { font-size: 18px; margin-top: 20px; }
  .hero-actions { margin-top: 24px; gap: 18px; }
  .hero-actions .button { width: 100%; }
  .hero-reassurance { font-size: 16px; }
  .eyebrow { font-size: 14px; letter-spacing: .04em; }
  .consultation-preview { padding: 24px; }
  .consultation-preview h2 { font-size: 26px; }
  .discussion-list { display: block; margin-top: 18px; }
  .discussion-list p { font-size: 17px; }
  .discussion-list h3 { font-size: 20px; }
  h2 { font-size: 32px; }
  h3 { font-size: 23px; }
  .consultation-section { padding: 26px 18px; border-radius: 12px; }
  .consultation-copy h2 { font-size: 30px; }
  .contact-promises { font-size: 16px; }
  .contact-methods a { font-size: 18px; }
  .prose .contact-methods a { font-size: 20px; }
  .lead-form { padding: 24px 18px; }
  .lead-form h3 { font-size: 24px; }
  .lead-form > label:not(.consent-checkbox) { flex-wrap: wrap; }
  .section { padding-block: 44px; }
  .section-heading { margin-bottom: 24px; }
  .service-card { padding: 24px; }
  .service-grid { gap: 16px; }
  .service-card p { margin-top: 14px; }
  .practice-card { padding: 24px; }
  .approach { padding-block: 44px; }
  .cost-note { padding: 24px; }
  .faq-section { padding-top: 0; }
  summary { font-size: 18px; padding-block: 20px; }
  details p { padding-right: 0; font-size: 17px; }
  .quiet-cta { flex-direction: column; align-items: stretch; padding: 24px; gap: 22px; }
  .warning-inner { grid-template-columns: 1fr; gap: 16px; }
  .warning-inner p { font-size: 16px; }
  .legal-warning { padding-block: 28px; }
  .footer-top, .footer-legal, .footer-bottom { flex-direction: column; align-items: flex-start; gap: 22px; }
  .footer-top > p { font-size: 18px; }
  .page-heading { padding-block: 32px; }
  .page-heading h1 { font-size: 36px; overflow-wrap: anywhere; }
  .prose { font-size: 17px; }
  .prose h2 { font-size: 28px; }
  .legal-document h1 { font-size: 34px; }
  .contact-grid { gap: 24px; }
  .side-card { margin-top: 0; }
  .has-mobile-contact { padding-bottom: calc(70px + env(safe-area-inset-bottom)); }
  .has-js .mobile-contact { position: fixed; z-index: 10; bottom: calc(12px + env(safe-area-inset-bottom)); right: 18px; left: auto; display: flex; min-height: 46px; padding: 10px 15px; font-size: 15px; box-shadow: 0 4px 24px #12271f30; }
  .has-js .mobile-contact span { font-size: 19px; }
  .has-js .mobile-contact[hidden] { display: none; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; animation: none !important; }
}
