@font-face {
  font-family: 'Charter Bold';
  src: url('fonts/charter-bold.ttf') format('truetype');
  font-display: swap;
  font-weight: 700;
}

@font-face {
  font-family: 'TT Norms Pro';
  src: url('fonts/tt-norms-light.woff') format('woff');
  font-display: swap;
  font-weight: 300;
}

@font-face {
  font-family: 'TT Norms Pro';
  src: url('fonts/tt-norms-regular.woff') format('woff');
  font-display: swap;
  font-weight: 400;
}

@font-face {
  font-family: 'TT Norms Pro';
  src: url('fonts/tt-norms-semibold.woff') format('woff');
  font-display: swap;
  font-weight: 600 800;
}

:root {
  --navy: #16223a;
  --navy-panel: #17233a;
  --teal: #32929c;
  --teal-soft: #bbe0e4;
  --body: #333333;
  --nav: #2c2d36;
  --peach: #ffd3c5;
  --peach-soft: #ffded4;
  --blue-soft: #e4f7ff;
  --pill: #f5fcff;
  --pill-hover: #c0e0e0;
  --divider: #e5d4d4;
  --footer-divider: #c7c7c7;
  --white: #ffffff;
  --content: 1280px;
  --gutter: 40px;
}

* { box-sizing: border-box; }
html { overflow-x: hidden; scroll-behavior: smooth; scroll-padding-top: 118px; }
body {
  background: var(--white);
  color: var(--body);
  font-family: 'TT Norms Pro', Arial, sans-serif;
  font-size: 17.6px;
  font-weight: 300;
  line-height: 1.5;
  margin: 0;
  overflow-x: hidden;
}
body, button, input, select, textarea { font-family: 'TT Norms Pro', Arial, sans-serif; }
img { display: block; max-width: 100%; }
a { color: var(--teal); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--navy); }
button, a { -webkit-tap-highlight-color: transparent; }
:focus-visible { outline: 3px solid #f0a88f; outline-offset: 4px; }

h1, h2, h3, h4 {
  color: var(--navy);
  font-family: 'Charter Bold', Georgia, serif;
  font-weight: 700;
  line-height: 1.1;
  margin: 0 0 0.72em;
}
h1 { font-size: 56px; }
h2 { font-size: clamp(40px, 4vw, 52.8px); }
h3 { font-size: 24px; line-height: 1.2; }
h4 { font-size: 21px; }
p { margin: 0 0 1.25em; }
strong { font-weight: 600; }
code { background: #eef6f7; border-radius: 4px; font-size: .88em; padding: .12em .35em; }
ul, ol { margin: 0 0 1.35em; padding-left: 1.3em; }
li { margin-bottom: .52em; padding-left: .2em; }
li::marker { color: var(--teal); font-weight: 600; }

.skip-link { background: var(--navy); color: white; left: 1rem; padding: .7rem 1rem; position: fixed; top: -100px; z-index: 10001; }
.skip-link:focus { top: 1rem; }
.container { margin: 0 auto; max-width: calc(var(--content) + (var(--gutter) * 2)); padding-left: var(--gutter); padding-right: var(--gutter); width: 100%; }
.narrow { max-width: 900px; }
.centered { text-align: center; }
.white-section { background: var(--white); }
.soft-section { background: radial-gradient(circle farthest-side at 15% 100%, rgba(255, 211, 197, .7), rgba(228, 247, 255, .75)); }
.navy-section { background: var(--navy); color: white; }
.navy-section h2, .navy-section h3 { color: white; }

.announcement {
  align-items: center;
  background: var(--teal);
  color: var(--white);
  display: flex;
  font-size: 13px;
  font-weight: 600;
  height: 27px;
  justify-content: center;
  letter-spacing: .025em;
  padding: 0 18px;
  position: sticky;
  text-align: center;
  top: 0;
  z-index: 10000;
}

.site-header {
  background: rgba(255, 255, 255, .97);
  border-bottom: 1px solid var(--divider);
  min-height: 82px;
  position: sticky;
  top: 27px;
  z-index: 9999;
}

.header-inner {
  align-items: center;
  display: grid;
  gap: 30px;
  grid-template-columns: auto 1fr auto;
  margin: 0 auto;
  max-width: calc(var(--content) + (var(--gutter) * 2));
  min-height: 82px;
  padding: 0 var(--gutter);
}

.logo-link { display: block; width: 155px; }
.desktop-nav { align-items: center; display: flex; gap: 36px; margin-left: 24px; }
.nav-dropdown { position: relative; }
.nav-dropdown > button {
  align-items: center;
  background: transparent;
  border: 0;
  color: var(--nav);
  cursor: pointer;
  display: flex;
  font-size: 16px;
  font-weight: 400;
  gap: 7px;
  padding: 28px 0;
}
.nav-dropdown > button span { color: var(--teal); font-size: 17px; transition: transform .2s; }
.nav-dropdown > button[aria-expanded='true'] span { transform: rotate(180deg); }
.dropdown-panel {
  background: white;
  border: 1px solid #e4e4e4;
  border-radius: 5px;
  box-shadow: 0 12px 30px rgba(22, 34, 58, .13);
  display: none;
  left: -18px;
  min-width: 280px;
  padding: 10px;
  position: absolute;
  top: 68px;
}
.nav-dropdown:hover .dropdown-panel,
.nav-dropdown:focus-within .dropdown-panel,
.nav-dropdown > button[aria-expanded='true'] + .dropdown-panel { display: block; }
.dropdown-panel a {
  border-radius: 5px;
  color: var(--nav);
  display: block;
  font-size: 15px;
  padding: 9px 12px;
  text-decoration: none;
}
.dropdown-panel a:hover, .dropdown-panel a:focus-visible { background: var(--pill); color: var(--teal); }
.header-actions { align-items: center; display: flex; gap: 26px; }
.header-text-link { color: var(--nav); font-size: 13px; font-weight: 600; letter-spacing: .04em; text-decoration: none; text-transform: uppercase; }
.menu-toggle { background: none; border: 0; cursor: pointer; display: none; height: 44px; padding: 8px; width: 44px; }
.mobile-menu { background: white; border: 1px solid #e8e8e8; border-radius: 10px; box-shadow: 0 14px 35px rgba(22, 34, 58, .16); margin: 0 30px 20px; max-height: calc(100vh - 140px); overflow: auto; padding: 18px; }
.mobile-menu a { border-bottom: 1px solid #eef0f2; color: var(--nav); display: block; font-size: 16px; padding: 11px 8px; text-decoration: none; }
.mobile-menu .button { border-bottom: 3px solid var(--teal); color: white; margin-top: 12px; text-align: center; }

.button {
  background: var(--teal);
  border: 3px solid var(--teal);
  border-radius: 5rem;
  color: var(--white);
  cursor: pointer;
  display: inline-block;
  font-size: 20.8px;
  font-weight: 600;
  line-height: 1.2;
  padding: 12px 40px;
  text-align: center;
  text-decoration: none;
  transition: background .2s, color .2s, transform .2s;
}
.button:hover { background: transparent; color: var(--teal); transform: translateY(-1px); }
.button-outline { background: transparent; color: var(--teal); font-size: 16px; padding: 9px 25px; }
.button-outline:hover { background: var(--teal); color: white; }
.button-secondary { background: transparent; color: var(--teal); }
.button-secondary:hover { background: var(--teal); color: white; }
.navy-section .button, .split-cta .button, .request-section .button { color: white; }
.navy-section .button:hover, .split-cta .button:hover, .request-section .button:hover { background: transparent; color: #8bd4d9; }
.inline-cta { margin-top: 1.6rem; }

.page-hero {
  background: linear-gradient(135deg, var(--blue-soft) 0%, #edf7f9 43%, var(--peach-soft) 100%);
  min-height: 530px;
  overflow: hidden;
  padding: 7rem 0 4.5rem;
  position: relative;
}
.page-hero-inner { margin: 0 auto; max-width: 1040px; padding: 0 var(--gutter); position: relative; text-align: center; z-index: 2; }
.page-hero h1 { font-size: clamp(52px, 5.5vw, 70.4px); line-height: 1.12; margin: 0 auto; max-width: 1000px; }
.hero-line { height: 24px; margin: 11px auto 19px; object-fit: contain; opacity: .55; width: min(510px, 72vw); }
.hero-subheadline { color: var(--navy); font-size: 22.4px; font-weight: 400; line-height: 1.45; margin: 0 auto 1rem; max-width: 810px; }
.hero-paragraph { font-size: 18px; line-height: 1.6; margin: 0 auto 1.7rem; max-width: 760px; }
.hero-actions { align-items: center; display: flex; flex-wrap: wrap; gap: 16px; justify-content: center; margin-top: 1.8rem; }
.support-line { font-size: 15px; font-weight: 400; margin: 1.15rem auto 0; }
.home-hero { background: radial-gradient(circle farthest-side at 30% 100%, var(--peach), var(--blue-soft)); min-height: 820px; padding-bottom: 10.75rem; padding-top: 9.75rem; }
.home-hero .page-hero-inner { max-width: 1260px; }
.home-hero h1 { font-size: clamp(50px, 5vw, 64px); margin-bottom: 3rem; max-width: 1180px; }
.home-hero .hero-paragraph { max-width: 790px; }
.home-hero .hero-actions { margin-top: 2.6rem; }
.hero-circled { display: inline-block; position: relative; white-space: nowrap; z-index: 0; }
.hero-circled::after { background: url('images/swirl.svg?v=3') center / 100% 100% no-repeat; content: ''; inset: -.36em -.2em -.42em -.48em; opacity: .4; pointer-events: none; position: absolute; z-index: 1; }
.hero-advocacy-underline { display: inline-block; position: relative; white-space: nowrap; }
.hero-advocacy-underline::after { background: url('images/advocacy-underline.svg') center / 100% 100% no-repeat; content: ''; height: 1rem; left: -.15rem; pointer-events: none; position: absolute; top: 1.15em; width: calc(100% + .3rem); }
.article-hero { padding-bottom: 6rem; }
.hero-takeaways { display: grid; gap: 9px; list-style: none; margin: 1.8rem auto 0; max-width: 720px; padding: 0; text-align: left; }
.hero-takeaways li { align-items: flex-start; display: grid; gap: 12px; grid-template-columns: 22px 1fr; margin: 0; }

.home-about { min-height: 690px; padding: 9rem 0; position: relative; }
.home-about-grid { align-items: center; display: grid; gap: 48px; grid-template-columns: 1fr 1fr; }
.home-about-copy { max-width: 660px; }
.home-about-copy p { font-size: 19px; line-height: 1.7; }
.home-about-image { background: url('images/home-family.png') right center / contain no-repeat; height: 71vw; position: absolute; right: -24px; top: -12vw; width: 50%; }

.practice-section { background: radial-gradient(circle farthest-side at 12% 82%, rgba(255, 222, 212, .68), rgba(228, 247, 255, .72)); padding: 11rem 0 8rem; }
.section-heading { margin-bottom: 5rem; }
.section-heading.narrow { margin-left: auto; margin-right: auto; max-width: 830px; }
.section-heading > p:last-child { font-size: 20px; margin-left: auto; margin-right: auto; max-width: 760px; }
.practice-grid { align-items: stretch; display: grid; gap: 60px 80px; grid-auto-rows: 1fr; grid-template-columns: repeat(3, 1fr); }
.practice-item { display: flex; flex-direction: column; position: relative; }
.practice-intro-mobile, .practice-mobile-target { display: none; }
.practice-icon { height: 70px; margin-bottom: 24px; object-fit: contain; object-position: left center; width: 70px; }
.practice-item h3 { font-size: 28px; }
.practice-item p { font-size: 16.5px; }
.practice-item .inline-cta { margin-top: .35rem; padding-top: 0; }
.practice-item .button { background: transparent; border: 0; border-bottom: 2px solid var(--teal); border-radius: 0; color: var(--teal); font-size: 16px; padding: 4px 0; }
.section-action { margin-top: 6rem; }

.process-section { padding: 9rem 0; }
.process-grid { display: grid; gap: 22px; grid-template-columns: repeat(5, 1fr); }
.process-card { background: var(--pill); border: 1px solid rgba(50, 146, 156, .3); border-radius: 5px; min-height: 330px; padding: 34px 25px; }
.process-card:nth-child(even) { transform: translateY(30px); }
.step-number { color: var(--teal); display: block; font-size: 14px; font-weight: 600; letter-spacing: .12em; margin-bottom: 40px; }
.process-card h3 { font-size: 23px; }
.process-card p { font-size: 15.8px; }

.situation-section { background: #faf7f6; padding: 9rem 0; }
.split-heading { align-items: end; display: grid; gap: 80px; grid-template-columns: 1.1fr .9fr; text-align: left; }
.split-heading > p { font-size: 22px; margin-bottom: 1.2rem; }
.situation-grid { display: grid; gap: 18px; grid-template-columns: repeat(2, 1fr); }
.situation-card { background: white; border-left: 4px solid var(--teal); padding: 34px 38px; }
.situation-card:last-child { grid-column: 1 / -1; }
.situation-card h3 { font-size: 26px; }
.situation-card .button { background: transparent; border: 0; border-radius: 0; color: var(--teal); font-size: 16px; padding: 0; text-align: left; }

.philosophy-quote { background: #10213a; border-bottom: 1px solid #aa8846; border-top: 1px solid #aa8846; color: #fffdf8; display: grid; min-height: clamp(330px, 31vw, 450px); overflow: hidden; padding: clamp(58px, 6.5vw, 92px) clamp(24px, 6vw, 96px); place-items: center; position: relative; }
.philosophy-inner { align-items: end; display: grid; gap: 24px 60px; grid-template-columns: minmax(0, 1fr) 120px; margin: 0 auto; position: relative; text-align: left; width: min(100%, 1320px); z-index: 1; }
.philosophy-label { align-items: center; color: #d8c17f; display: flex; font-size: 11px; font-weight: 800; gap: 20px; grid-column: 1 / -1; justify-content: flex-start; letter-spacing: .16em; margin: 0; text-transform: uppercase; }
.philosophy-label::after { background: rgba(216, 193, 127, .52); content: ''; height: 1px; width: min(15vw, 140px); }
.philosophy-quote blockquote { background: transparent; border: 0; display: contents; margin: 0; padding: 0; }
.philosophy-quote blockquote > p { color: #fffdf8; font: 430 clamp(31px, 3.25vw, 49px) / 1.03 Newsreader, Georgia, serif; letter-spacing: -.04em; margin: 0; max-width: 35ch; text-wrap: balance; }
.philosophy-quote blockquote em { color: #d8c17f; font-style: italic; font-weight: inherit; }
.philosophy-mark { color: rgba(216, 193, 127, .64); display: block; grid-area: 2 / 2 / 4; margin: 0; opacity: .72; width: 74px; }
.philosophy-mark img { display: block; height: auto; width: 100%; }
.philosophy-decoration { inset: 0; pointer-events: none; position: absolute; }
.philosophy-decoration span { border: 1px solid rgba(216, 193, 127, .11); border-radius: 50%; position: absolute; top: 50%; transform: translateY(-50%); }
.philosophy-decoration span:nth-child(1) { height: 380px; left: -220px; width: 380px; }
.philosophy-decoration span:nth-child(2) { height: 250px; left: -155px; width: 250px; }
.philosophy-decoration span:nth-child(3) { height: 120px; left: -90px; width: 120px; }

.education-preview { padding: 9rem 0; }
.education-preview-grid { display: grid; gap: 13px; grid-template-columns: repeat(2, 1fr); }
.education-preview-card { align-items: center; background: var(--pill); border: 1px solid var(--teal); border-radius: 30px; color: var(--navy); display: grid; gap: 15px; grid-template-columns: 34px 1fr auto; min-height: 64px; padding: 11px 24px; text-decoration: none; transition: background .2s, transform .2s; }
.education-preview-card:hover { background: var(--pill-hover); color: var(--navy); transform: translateX(3px); }
.education-preview-card > span { color: var(--teal); font-size: 13px; font-weight: 600; }
.education-preview-card > strong { font-size: 17px; }
.education-preview-card > b { color: var(--teal); font-size: 24px; }

.split-cta { display: grid; grid-template-columns: .9fr 1fr; min-height: 630px; }
.split-cta-image img { height: 100%; object-fit: cover; width: 100%; }
.split-cta-copy { align-items: flex-start; background: var(--navy); color: white; display: flex; flex-direction: column; justify-content: center; padding: 7rem clamp(50px, 8vw, 130px); }
.split-cta-copy h2 { color: white; }
.split-cta-copy p { font-size: 19px; max-width: 620px; }
.split-cta-copy .inline-cta { display: inline-block; margin: 0 10px 0 0; }
.split-cta-copy .inline-cta .button { display: none; }

.split-content { padding: 8rem 0; }
.split-content-grid { align-items: center; display: grid; gap: 4rem; grid-template-columns: .9fr 1fr; }
.split-content-grid.reverse { grid-template-columns: 1fr .8fr; }
.content-photo { border-radius: 4px; box-shadow: 0 12px 35px rgba(22, 34, 58, .12); min-height: 520px; overflow: hidden; }
.content-photo img { height: 100%; min-height: 520px; object-fit: cover; width: 100%; }
.split-content-copy h2 { font-size: clamp(39px, 4vw, 51px); }
.split-content-copy h3 { margin-top: 2.2rem; }
.split-content-copy .button { font-size: 16px; padding: 9px 24px; }

.longform { background: white; margin: 0 auto; max-width: 880px; padding: 8rem 40px; }
.article-section { margin: 0 0 5rem; scroll-margin-top: 130px; }
.article-section:last-of-type { margin-bottom: 0; }
.article-section h2 { font-size: clamp(32px, 3.5vw, 39px); margin-top: 0; }
.article-section h3 { font-size: 25px; margin-top: 2.6rem; }
.article-section h4 { margin-top: 2rem; }
.article-section > p:first-of-type { font-size: 19px; }
.article-section a:not(.button), .split-content a:not(.button), .core-section a:not(.button), .core-lead a:not(.button) { color: #237781; font-weight: 400; }
.article-highlight { background: var(--pill); border-left: 5px solid var(--teal); margin-left: -42px; margin-right: -42px; padding: 40px 42px; }
blockquote { background: #fff8f5; border-left: 5px solid #f0a88f; margin: 2.2rem 0; padding: 24px 30px; }
blockquote p:last-child { margin-bottom: 0; }
.table-scroll { margin: 2rem 0; overflow-x: auto; }
table { border-collapse: collapse; font-size: 15px; min-width: 620px; width: 100%; }
th { background: var(--navy); color: white; font-weight: 600; text-align: left; }
th, td { border: 1px solid #d8e4e6; padding: 12px 14px; vertical-align: top; }
tbody tr:nth-child(even) { background: var(--pill); }
.sources { border-top: 1px solid var(--footer-divider); color: #535353; margin-top: 5rem; padding-top: 1.5rem; }
.sources summary { color: var(--navy); cursor: pointer; font-weight: 600; }
.sources > div { font-size: 14px; padding-top: 1rem; }
.sources .button { display: none; }

.resource-index { padding: 8rem 0 9rem; }
.resource-pill-grid { display: grid; gap: 16px 20px; grid-template-columns: repeat(2, 1fr); }
.resource-pill { align-items: center; background: var(--pill); border: 1px solid var(--teal); border-radius: 30px; color: var(--navy); display: flex; font-size: 18px; font-weight: 400; justify-content: space-between; min-height: 64px; padding: 12px 28px; text-decoration: none; transition: background .2s, transform .2s; }
.resource-pill:hover { background: var(--pill-hover); color: var(--navy); transform: translateX(3px); }
.resource-pill b { color: var(--teal); font-size: 24px; }
.hub-section { padding: 7rem 0; }
.hub-section h2 { margin-bottom: 2.5rem; text-align: center; }
.hub-section h3 { margin-top: 2.5rem; }
.hub-content + .sources { margin: 0 auto 6rem; max-width: 800px; }

.core-lead { padding: 8rem 0; }
.core-lead > .container > h2 { text-align: center; }
.core-lead > .container > p { font-size: 19px; text-align: center; }
.core-card-grid { display: grid; gap: 20px; grid-template-columns: repeat(2, 1fr); margin-top: 4rem; }
.core-card { background: var(--pill); border-top: 4px solid var(--teal); padding: 32px; }
.core-card:nth-child(3n) { background: #fff7f4; border-top-color: #efab96; }
.core-card h3 { font-size: 27px; }
.core-card .button { background: transparent; border: 0; border-radius: 0; color: var(--teal); font-size: 16px; padding: 0; text-align: left; }
.core-section { padding: 7rem 0; }
.core-section .container > h2 { margin-bottom: 2.5rem; text-align: center; }
.core-section h3 { margin-top: 2.2rem; }

.faq-section { padding: 8rem 0; }
.faq-layout { align-items: start; display: grid; gap: 80px; grid-template-columns: 260px 1fr; }
.faq-aside { position: sticky; top: 150px; }
.faq-aside a { border-bottom: 1px solid #dbe6e8; color: var(--nav); display: block; font-size: 15px; padding: 11px 0; text-decoration: none; }
.faq-aside a:hover { color: var(--teal); }
.faq-group { margin-bottom: 5rem; scroll-margin-top: 130px; }
.faq-group h2 { font-size: 40px; }
.faq-item { border-bottom: 1px solid #cbd6d8; }
.faq-item summary { align-items: center; color: var(--navy); cursor: pointer; display: flex; font-family: 'Charter Bold', Georgia, serif; font-size: 23px; font-weight: 700; justify-content: space-between; list-style: none; padding: 24px 0; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary span { color: var(--teal); font-family: 'TT Norms Pro', sans-serif; font-size: 28px; transition: transform .2s; }
.faq-item[open] summary span { transform: rotate(45deg); }
.faq-item > div { padding: 0 45px 20px 0; }

.request-section { background: var(--navy-panel); color: white; padding: 7rem 0; }
.request-grid { display: grid; gap: 90px; grid-template-columns: .8fr 1.2fr; }
.request-intro { padding-top: 20px; }
.request-intro h1 { color: white; font-size: clamp(44px, 5vw, 64px); }
.request-intro h2 { color: white; }
.request-intro > p { font-size: 19px; }
.request-intro .request-lead { font-size: 22px; font-weight: 400; }
.request-form { background: rgba(255,255,255,.025); border-radius: 3px; box-shadow: 0 0 12px rgba(0,0,0,.2); padding: 4rem; }
.request-form label { color: white; display: block; font-size: 16px; font-weight: 400; margin-bottom: 24px; }
.request-form input, .request-form select, .request-form textarea { background: transparent; border: 2px solid white; border-radius: 3px; color: white; display: block; font-size: 16px; margin-top: 8px; min-height: 46px; padding: 10px 12px; width: 100%; }
.request-form select { background-color: var(--navy-panel); }
.request-form textarea { min-height: 100px; resize: vertical; }
.request-form input::placeholder, .request-form textarea::placeholder { color: rgba(255,255,255,.62); }
.request-form input:focus, .request-form select:focus, .request-form textarea:focus { border-color: var(--teal); outline: none; }
.form-row { display: grid; gap: 20px; grid-template-columns: 1fr 1fr; }
.form-message { background: rgba(50,146,156,.24); border: 1px solid var(--teal); margin-top: 18px; padding: 14px; }

.site-footer { background: white; border-top: 1px solid var(--footer-divider); padding: 5rem 0 3rem; }
.footer-grid { display: grid; gap: 55px; grid-template-columns: 1.25fr repeat(3, 1fr); }
.footer-brand img { height: auto; margin-bottom: 22px; width: 170px; }
.footer-brand p { font-size: 15px; max-width: 290px; }
.footer-column h2 { font-family: 'TT Norms Pro', sans-serif; font-size: 15px; font-weight: 600; letter-spacing: .06em; margin-bottom: 22px; text-transform: uppercase; }
.footer-column a { color: var(--nav); display: block; font-size: 14px; margin-bottom: 11px; text-decoration: none; }
.footer-column a:hover { color: var(--teal); }
.footer-bottom { border-top: 1px solid var(--footer-divider); display: flex; font-size: 13px; justify-content: space-between; margin-top: 120px; padding-top: 25px; }
.footer-bottom p { margin: 0; }

@media (max-width: 991px) {
  :root { --gutter: 30px; }
  .desktop-nav, .header-text-link { display: none; }
  .header-inner { grid-template-columns: auto 1fr; }
  .header-actions { justify-self: end; }
  .menu-toggle { display: block; }
  .home-hero { min-height: 760px; padding-bottom: 8.5rem; padding-top: 8.5rem; }
  .home-about { padding-top: 0; }
  .home-about-grid { display: flex; flex-direction: column-reverse; gap: 20px; }
  .home-about-image { aspect-ratio: 736 / 1047; height: auto; margin: -30px auto 0; position: relative; right: auto; top: auto; width: min(100%, 620px); }
  .home-about-copy { max-width: 760px; padding-bottom: 2rem; }
  .practice-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: repeat(3, 1fr); }
  .process-card:nth-child(even) { transform: none; }
  .split-cta { grid-template-columns: 1fr; }
  .split-cta-image { height: 440px; }
  .split-cta-copy { padding-bottom: 7rem; padding-top: 7rem; text-align: center; }
  .split-cta-copy > * { margin-left: auto; margin-right: auto; }
  .footer-grid { grid-template-columns: 1.4fr repeat(2, 1fr); }
  .footer-column:last-child { grid-column: 2; }
  .split-content-grid, .split-content-grid.reverse { grid-template-columns: 1fr; }
  .split-content-grid.reverse .split-content-copy { order: 2; }
  .split-content-grid.reverse .content-photo { order: 1; }
  .content-photo, .content-photo img { min-height: 430px; }
  .faq-layout { gap: 45px; grid-template-columns: 210px 1fr; }
  .request-grid { gap: 45px; grid-template-columns: 1fr; }
}

@media (max-width: 767px) {
  :root { --gutter: 20px; }
  body { font-size: 16.5px; }
  h2 { font-size: 39px; }
  .announcement { font-size: 11.5px; }
  .site-header, .header-inner { min-height: 72px; }
  .header-cta { display: none; }
  .page-hero { min-height: 460px; padding-bottom: 4rem; padding-top: 5.5rem; }
  .page-hero h1 { font-size: 47px; }
  .home-hero { min-height: 700px; padding-bottom: 7rem; padding-top: 7rem; }
  .home-hero h1 { font-size: 44px; margin-bottom: 2.6rem; }
  .hero-subheadline { font-size: 20px; }
  .hero-paragraph { font-size: 16.5px; }
  .home-about { padding-bottom: 6rem; }
  .practice-section, .process-section, .situation-section, .education-preview, .split-content, .faq-section, .core-lead, .resource-index { padding-bottom: 6rem; padding-top: 6rem; }
  .practice-grid, .process-grid, .situation-grid, .split-heading, .education-preview-grid, .resource-pill-grid, .core-card-grid { grid-template-columns: 1fr; }
  .practice-section { padding-bottom: 4rem; padding-top: 3rem; }
  .practice-section .section-heading { margin-bottom: 2rem; }
  .practice-section .section-heading h2 { margin-bottom: .35em; }
  .practice-section .section-heading > p:last-child { font-size: 15px; line-height: 1.45; }
  .practice-intro-desktop { display: none; }
  .practice-section .practice-intro-mobile { display: block; }
  .practice-grid { gap: 1.35rem; grid-auto-rows: auto; }
  .practice-item { align-items: start; column-gap: 14px; cursor: pointer; display: grid; grid-template-columns: 56px minmax(0, 1fr); }
  .practice-mobile-target { display: block; inset: -6px; position: absolute; z-index: 2; }
  .practice-icon { grid-column: 1; grid-row: 1 / span 2; height: 52px; margin: 0; width: 52px; }
  .practice-item h3 { font-size: 22px; grid-column: 2; line-height: 1.15; margin: 0 0 .3rem; }
  .practice-item > p { font-size: 14.5px; grid-column: 2; line-height: 1.42; margin: 0; }
  .practice-item > .inline-cta { display: none; }
  .situation-card:last-child { grid-column: auto; }
  .split-heading { gap: 20px; }
  .section-heading { margin-bottom: 3.5rem; }
  .section-action { margin-top: 4rem; }
  .process-card { min-height: auto; }
  .step-number { margin-bottom: 20px; }
  .longform { padding: 6rem 20px; }
  .article-highlight { margin-left: -20px; margin-right: -20px; padding-left: 20px; padding-right: 20px; }
  .article-section { margin-bottom: 4rem; }
  .faq-layout { grid-template-columns: 1fr; }
  .faq-aside { display: none; }
  .request-form { padding: 2.5rem 2rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-column:last-child { grid-column: auto; }
  .footer-bottom { align-items: flex-start; flex-direction: column; gap: 8px; margin-top: 75px; }
}

@media (max-width: 479px) {
  :root { --gutter: 18px; }
  .announcement { height: auto; min-height: 27px; padding-bottom: 5px; padding-top: 5px; position: relative; }
  .site-header { top: 0; }
  .header-inner { min-height: 68px; }
  .logo-link { width: 135px; }
  .mobile-menu { margin: 0 18px 16px; }
  .page-hero { padding-top: 4rem; }
  .page-hero h1 { font-size: 40px; }
  .home-hero { min-height: 660px; padding-bottom: 6rem; padding-top: 6rem; }
  .home-hero h1 { font-size: 36px; margin-bottom: 2.35rem; }
  .home-hero .hero-subheadline { font-size: 18px; }
  .hero-line { height: 17px; }
  .hero-actions { align-items: stretch; flex-direction: column; }
  .hero-actions .button { width: 100%; }
  .button { font-size: 18px; padding: 11px 30px; }
  .practice-grid { gap: 1.25rem; }
  .content-photo, .content-photo img { min-height: 300px; }
  .split-cta-image { height: 300px; }
  .split-cta-copy { padding: 5rem 24px; }
  .resource-pill-grid { grid-template-columns: 1fr; }
  .resource-pill { font-size: 16px; padding-left: 20px; padding-right: 20px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .request-form { margin-left: -4px; margin-right: -4px; padding: 2rem 1.2rem; }
  .faq-item summary { font-size: 21px; }
  .footer-grid { grid-template-columns: 1fr; text-align: center; }
  .footer-brand { align-items: center; display: flex; flex-direction: column; }
  .footer-column:last-child { grid-column: auto; }
  .footer-bottom { align-items: center; text-align: center; }
}

@media (max-width: 760px) {
  .philosophy-quote { min-height: 0; padding: 64px 24px 68px; }
  .philosophy-inner { display: block; text-align: center; }
  .philosophy-label { justify-content: center; margin-bottom: 27px; }
  .philosophy-quote blockquote { display: block; }
  .philosophy-quote blockquote > p { font-size: clamp(31px, 9.6vw, 40px); line-height: 1.08; margin-left: auto; margin-right: auto; max-width: 21ch; }
  .philosophy-mark { display: block; margin: 28px auto 0; width: 46px; }
}

@media (max-width: 390px) {
  .philosophy-quote { padding-left: 20px; padding-right: 20px; }
  .philosophy-quote blockquote > p { font-size: clamp(29px, 9.4vw, 36px); }
}

@media print {
  .announcement, .site-header, .site-footer, .split-cta, .hero-actions, .inline-cta { display: none !important; }
  .page-hero { min-height: auto; padding: 2rem 0; }
  .longform { max-width: none; padding: 2rem 0; }
  .article-highlight { break-inside: avoid; }
}
