:root {
  color-scheme: light;
  --navy: #222a47;
  --navy-deep: #151b31;
  --navy-soft: #303a5f;
  --gold: #e7c775;
  --gold-soft: #f1d998;
  --gold-deep: #8f6b2d;
  --cream: #ede1d2;
  --ink: #222a47;
  --ink-2: #19213c;
  --paper: #f8f5ef;
  --paper-2: #ede6dc;
  --copper: #e7c775;
  --copper-dark: #8f6b2d;
  --teal: #e7c775;
  --white: #fffdf8;
  --muted: #62697b;
  --line: rgba(34, 42, 71, 0.17);
  --line-dark: rgba(255, 255, 255, 0.18);
  --shadow: 0 28px 70px rgba(21, 27, 49, 0.24);
  --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;
  scroll-padding-top: 88px;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 1rem;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: 10;
  pointer-events: none;
  content: "";
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='96' height='96' viewBox='0 0 96 96'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.72' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.8'/%3E%3C/svg%3E");
}

a {
  color: inherit;
}

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

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

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

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 10px 16px;
  background: var(--white);
  color: var(--ink);
  transform: translateY(-180%);
}

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  padding: 0 4vw;
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
  background: rgba(34, 42, 71, 0.93);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand-emblem {
  display: block;
  width: 46px;
  height: 46px;
  flex: 0 0 46px;
  overflow: hidden;
  background: var(--navy);
  border: 1px solid rgba(231, 199, 117, 0.42);
  border-radius: 3px 16px 3px 3px;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.035);
}

.brand-emblem img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: left center;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  color: var(--cream);
  font-size: 0.93rem;
  letter-spacing: 0.02em;
}

.brand small {
  margin-top: 1px;
  color: rgba(237, 225, 210, 0.7);
  font-size: 0.7rem;
  letter-spacing: 0.14em;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.3vw, 38px);
}

.site-nav a {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.86rem;
  font-weight: 600;
  letter-spacing: 0.035em;
  text-decoration: none;
  transition: color 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--gold-soft);
}

.site-nav .nav-cta {
  padding: 11px 17px;
  color: var(--navy-deep);
  background: var(--gold);
  border-radius: 999px;
}

.policy-header .nav-cta {
  padding: 11px 17px;
  color: var(--navy-deep);
  background: var(--gold);
  border-radius: 999px;
  font-size: 0.86rem;
  font-weight: 700;
  text-decoration: none;
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  padding: 9px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--white);
  background: transparent;
}

.menu-button > span:not(.sr-only) {
  display: block;
  width: 100%;
  height: 1px;
  margin: 5px 0;
  background: currentColor;
}

.hero {
  display: grid;
  min-height: 760px;
  padding: 140px 5vw 64px;
  grid-template-columns: minmax(0, 1.05fr) minmax(380px, 0.95fr);
  align-items: center;
  gap: clamp(48px, 7vw, 112px);
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 18% 26%, rgba(231, 199, 117, 0.16), transparent 32%),
    linear-gradient(125deg, var(--navy) 0%, #293354 56%, var(--navy-deep) 100%);
}

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

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 22px;
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow span {
  width: 34px;
  height: 1px;
  background: currentColor;
}

.hero h1 {
  max-width: 850px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(3.2rem, 6.1vw, 6.65rem);
  font-weight: 500;
  letter-spacing: -0.055em;
  line-height: 0.93;
  color: var(--cream);
}

.hero-lead {
  max-width: 640px;
  margin: 30px 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: clamp(1rem, 1.3vw, 1.22rem);
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border: 0;
  border-radius: 999px;
  font-weight: 750;
  letter-spacing: 0.015em;
  text-decoration: none;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

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

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--gold-soft);
}

.text-link {
  color: rgba(255, 255, 255, 0.78);
  font-weight: 650;
  text-underline-offset: 6px;
}

.text-link span {
  margin-left: 5px;
  color: var(--teal);
}

.hero-facts {
  display: flex;
  padding: 0;
  margin: 54px 0 0;
  list-style: none;
  border-top: 1px solid var(--line-dark);
}

.hero-facts li {
  min-width: 120px;
  padding: 17px 24px 0 0;
}

.hero-facts li + li {
  padding-left: 24px;
  border-left: 1px solid var(--line-dark);
}

.hero-facts strong,
.hero-facts span {
  display: block;
}

.hero-facts strong {
  color: rgba(255, 255, 255, 0.42);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-facts span {
  margin-top: 4px;
  font-size: 0.9rem;
}

.hero-portrait {
  position: relative;
  width: min(100%, 560px);
  justify-self: end;
}

.portrait-frame {
  position: relative;
  height: clamp(500px, 65vw, 690px);
  max-height: 69vh;
  overflow: hidden;
  border-radius: 2px 74px 2px 2px;
  box-shadow: var(--shadow);
}

.portrait-frame::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(to top, rgba(21, 27, 49, 0.42), transparent 42%);
}

.portrait-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 30%;
  filter: saturate(0.78) contrast(1.05) sepia(0.05);
}

.portrait-note {
  position: absolute;
  right: -2vw;
  bottom: 42px;
  z-index: 2;
  width: min(310px, 76%);
  padding: 22px 24px;
  color: var(--navy-deep);
  background: var(--gold);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.24);
}

.portrait-note span {
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.portrait-note p {
  margin: 7px 0 0;
  font-family: var(--serif);
  font-size: 1.18rem;
  line-height: 1.35;
}

.portrait-rail {
  position: absolute;
  top: 12px;
  right: -42px;
  color: rgba(255, 255, 255, 0.36);
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  writing-mode: vertical-rl;
}

.signal-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 76px;
  padding: 18px 4vw;
  gap: clamp(16px, 3vw, 46px);
  overflow: hidden;
  color: var(--navy-deep);
  background: linear-gradient(90deg, #c9a95c 0%, var(--gold-soft) 48%, #c9a95c 100%);
}

.signal-strip p {
  margin: 0;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  white-space: nowrap;
}

.signal-strip span {
  font-size: 0.45rem;
}

.section {
  padding: clamp(82px, 10vw, 150px) 5vw;
}

.section-intro {
  display: grid;
  grid-template-columns: minmax(130px, 0.28fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 90px);
  max-width: 1240px;
  margin: 0 auto clamp(46px, 6vw, 84px);
}

.section-number {
  margin: 7px 0 0;
  color: var(--copper-dark);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.section-intro h2,
.profile-copy h2,
.intake-intro h2,
.privacy-section h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2.35rem, 4.5vw, 4.8rem);
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 1.02;
}

.section-intro > div > p {
  max-width: 760px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.practice-grid {
  display: grid;
  max-width: 1240px;
  margin: 0 auto;
  grid-template-columns: repeat(12, 1fr);
  gap: 18px;
}

.practice-card {
  position: relative;
  min-height: 285px;
  padding: 32px;
  background: var(--white);
  border: 1px solid var(--line);
  grid-column: span 4;
}

.practice-card-featured {
  min-height: 438px;
  color: var(--white);
  background: linear-gradient(145deg, var(--navy) 0%, var(--navy-deep) 100%);
  border: 0;
  grid-column: span 7;
  grid-row: span 2;
}

.practice-card:nth-child(2),
.practice-card:nth-child(3) {
  grid-column: span 5;
}

.practice-card-quiet {
  color: var(--white);
  background: var(--navy-soft);
}

.card-index {
  margin-bottom: 46px;
  color: var(--copper-dark);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.practice-card-featured .card-index,
.practice-card-quiet .card-index {
  color: var(--teal);
}

.practice-card h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(1.6rem, 2.2vw, 2.45rem);
  font-weight: 500;
  line-height: 1.1;
}

.practice-card p {
  margin: 18px 0 0;
  color: var(--muted);
}

.practice-card-featured p,
.practice-card-quiet p {
  color: rgba(255, 255, 255, 0.68);
}

.practice-card ul {
  display: grid;
  padding: 0;
  margin: 26px 0 0;
  gap: 8px;
  color: rgba(255, 255, 255, 0.82);
  list-style: none;
}

.practice-card li::before {
  margin-right: 9px;
  color: var(--copper);
  content: "—";
}

.process-section {
  color: var(--white);
  background:
    radial-gradient(circle at 82% 10%, rgba(231, 199, 117, 0.09), transparent 30%),
    var(--navy-deep);
}

.section-intro-light .section-number {
  color: var(--teal);
}

.process-list {
  max-width: 1080px;
  padding: 0;
  margin: 0 auto;
  list-style: none;
  border-top: 1px solid var(--line-dark);
}

.process-list li {
  display: grid;
  padding: 36px 0;
  grid-template-columns: 105px minmax(0, 1fr);
  gap: 28px;
  border-bottom: 1px solid var(--line-dark);
}

.process-count {
  color: var(--copper);
  font-family: var(--serif);
  font-size: 2.7rem;
}

.process-list h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: 1.65rem;
  font-weight: 500;
}

.process-list p {
  max-width: 740px;
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.6);
}

.profile-section {
  position: relative;
  display: grid;
  grid-template-columns: 0.18fr minmax(0, 1fr) minmax(280px, 0.55fr);
  gap: clamp(30px, 5vw, 80px);
  align-items: start;
  background: var(--paper-2);
}

.profile-quote {
  margin-top: -25px;
  color: var(--copper);
  font-family: var(--serif);
  font-size: clamp(7rem, 14vw, 13rem);
  line-height: 0.8;
}

.profile-role {
  margin: 16px 0 30px;
  color: var(--copper-dark);
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.profile-copy > p:not(.section-number):not(.profile-role) {
  max-width: 720px;
  color: #454d51;
  font-size: 1.06rem;
}

.profile-card {
  display: grid;
  padding: 34px;
  color: var(--white);
  background: var(--navy);
  border-top: 3px solid var(--gold);
  box-shadow: var(--shadow);
}

.profile-card p {
  margin: 0 0 22px;
  color: var(--teal);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.profile-card strong {
  font-family: var(--serif);
  font-size: 1.65rem;
  font-weight: 500;
}

.profile-card span {
  margin: 3px 0 28px;
  color: rgba(255, 255, 255, 0.58);
}

.profile-card a {
  padding: 13px 0;
  color: rgba(255, 255, 255, 0.84);
  border-top: 1px solid var(--line-dark);
  overflow-wrap: anywhere;
  text-underline-offset: 4px;
}

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

.faq-list {
  max-width: 980px;
  margin: 0 auto;
  border-top: 1px solid var(--line);
}

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

.faq-list summary {
  position: relative;
  padding: 27px 54px 27px 0;
  font-family: var(--serif);
  font-size: clamp(1.25rem, 2vw, 1.7rem);
  cursor: pointer;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  position: absolute;
  top: 50%;
  right: 0;
  color: var(--copper-dark);
  font-family: var(--sans);
  font-size: 1.35rem;
  content: "+";
  transform: translateY(-50%);
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list details p {
  max-width: 790px;
  padding: 0 48px 26px 0;
  margin: 0;
  color: var(--muted);
}

.official-note {
  display: grid;
  max-width: 980px;
  padding: clamp(28px, 4vw, 44px);
  margin: 54px auto 0;
  grid-template-columns: minmax(0, 1fr) minmax(270px, 0.72fr);
  gap: clamp(28px, 5vw, 64px);
  color: var(--cream);
  background: var(--navy);
  border-top: 3px solid var(--gold);
  box-shadow: var(--shadow);
}

.official-note h3 {
  margin: 8px 0 0;
  font-family: var(--serif);
  font-size: clamp(1.65rem, 2.6vw, 2.35rem);
  font-weight: 500;
  line-height: 1.1;
}

.official-note p:not(.section-number) {
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.68);
}

.official-links {
  display: grid;
  align-content: start;
}

.official-links a {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 15px 0;
  color: var(--cream);
  border-bottom: 1px solid var(--line-dark);
  font-weight: 700;
  text-decoration: none;
}

.official-links a:first-child {
  border-top: 1px solid var(--line-dark);
}

.official-links a:hover,
.official-links a:focus-visible {
  color: var(--gold-soft);
}

.intake-section {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(440px, 1.18fr);
  gap: clamp(44px, 7vw, 110px);
  color: var(--white);
  background:
    radial-gradient(circle at 86% 12%, rgba(231, 199, 117, 0.13), transparent 33%),
    var(--navy-deep);
}

.intake-intro {
  position: sticky;
  top: 118px;
  align-self: start;
}

.intake-intro .section-number {
  color: var(--teal);
}

.intake-intro p:not(.section-number) {
  max-width: 560px;
  margin: 26px 0 0;
  color: rgba(255, 255, 255, 0.62);
}

.privacy-points {
  display: grid;
  margin-top: 36px;
  gap: 12px;
}

.privacy-points span {
  display: flex;
  align-items: center;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.9rem;
}

.privacy-points span::before {
  width: 7px;
  height: 7px;
  margin-right: 12px;
  background: var(--teal);
  border-radius: 50%;
  content: "";
}

.intake-form {
  display: grid;
  padding: clamp(26px, 4vw, 54px);
  gap: 22px;
  color: var(--ink);
  background: var(--paper);
}

.field-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.intake-form label:not(.consent-field) {
  display: grid;
  gap: 8px;
}

.intake-form label > span:first-child {
  font-size: 0.79rem;
  font-weight: 800;
  letter-spacing: 0.03em;
}

.intake-form input[type="text"],
.intake-form select,
.intake-form textarea {
  width: 100%;
  min-height: 52px;
  padding: 13px 14px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid rgba(11, 17, 23, 0.24);
  border-radius: 0;
}

.intake-form textarea {
  min-height: 136px;
  resize: vertical;
}

.intake-form input:focus,
.intake-form select:focus,
.intake-form textarea:focus {
  outline: 3px solid rgba(231, 199, 117, 0.4);
  border-color: var(--gold-deep);
}

.intake-form label small {
  color: var(--muted);
  text-align: right;
}

.consent-field {
  display: grid;
  grid-template-columns: 20px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  margin-top: 4px;
  color: #4d5558;
  font-size: 0.86rem;
  line-height: 1.5;
}

.consent-field input {
  width: 18px;
  height: 18px;
  margin: 2px 0 0;
  accent-color: var(--copper-dark);
}

.consent-field a,
.policy-link {
  color: var(--copper-dark);
  font-weight: 750;
  text-underline-offset: 4px;
}

.button-wide {
  width: 100%;
  margin-top: 6px;
}

.button-wide span {
  margin-left: 8px;
}

.form-note {
  min-height: 24px;
  margin: -7px 0 0;
  color: #7a4023;
  font-size: 0.86rem;
  text-align: center;
}

.privacy-section {
  display: grid;
  padding: 70px 5vw;
  grid-template-columns: minmax(260px, 0.55fr) minmax(0, 1fr);
  gap: clamp(42px, 8vw, 120px);
  background: var(--paper-2);
  border-bottom: 1px solid var(--line);
}

.privacy-section h2 {
  margin-top: 14px;
  font-size: clamp(2rem, 3.3vw, 3.4rem);
}

.privacy-copy {
  max-width: 780px;
  color: #4f5759;
}

.privacy-copy p:first-child {
  margin-top: 0;
}

.site-footer {
  display: grid;
  padding: 56px 5vw 34px;
  grid-template-columns: minmax(250px, 0.8fr) minmax(270px, 0.7fr) minmax(260px, 1fr);
  gap: 36px;
  color: var(--white);
  background: var(--navy-deep);
  border-top: 1px solid rgba(231, 199, 117, 0.28);
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.footer-brand p {
  margin: 3px 0 0;
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.77rem;
}

.footer-contact {
  display: grid;
  align-content: start;
  gap: 7px;
}

.footer-contact a {
  color: rgba(255, 255, 255, 0.72);
  text-underline-offset: 4px;
  overflow-wrap: anywhere;
}

.footer-legal {
  max-width: 490px;
  margin: 0;
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.84rem;
}

.footer-copy {
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.34);
  font-size: 0.73rem;
  grid-column: 1 / -1;
}

.policy-page {
  min-height: 100vh;
  background: var(--paper);
}

.policy-header {
  position: static;
}

.policy-main {
  max-width: 980px;
  padding: clamp(72px, 9vw, 130px) 5vw;
  margin: 0 auto;
}

.policy-hero {
  padding-bottom: 48px;
  border-bottom: 1px solid var(--line);
}

.policy-hero h1 {
  max-width: 820px;
  margin: 16px 0 0;
  font-family: var(--serif);
  font-size: clamp(3rem, 7vw, 6.4rem);
  font-weight: 500;
  letter-spacing: -0.055em;
  line-height: 0.96;
}

.policy-hero p:last-child {
  max-width: 740px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.policy-content {
  display: grid;
  margin-top: 52px;
  gap: 38px;
}

.policy-content section {
  display: grid;
  grid-template-columns: minmax(180px, 0.3fr) minmax(0, 1fr);
  gap: 32px;
  padding-bottom: 36px;
  border-bottom: 1px solid var(--line);
}

.policy-content h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 500;
}

.policy-content p,
.policy-content ul {
  margin-top: 0;
  color: #50585a;
}

.policy-content li + li {
  margin-top: 7px;
}

.policy-back {
  display: inline-flex;
  margin-top: 48px;
  color: var(--copper-dark);
  font-weight: 800;
  text-underline-offset: 5px;
}

@media (max-width: 1040px) {
  .site-nav {
    gap: 17px;
  }

  .hero {
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.72fr);
  }

  .hero h1 {
    font-size: clamp(3.2rem, 6vw, 5rem);
  }

  .portrait-note {
    right: -10px;
  }

  .practice-card-featured {
    grid-column: span 8;
  }

  .practice-card:nth-child(2),
  .practice-card:nth-child(3) {
    grid-column: span 4;
  }

  .practice-card {
    grid-column: span 6;
  }

  .intake-section {
    grid-template-columns: 0.75fr 1.25fr;
  }
}

@media (max-width: 820px) {
  .menu-button {
    display: block;
  }

  .site-nav {
    position: absolute;
    inset: 76px 0 auto;
    display: none;
    padding: 22px 5vw 28px;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: rgba(34, 42, 71, 0.99);
    border-bottom: 1px solid var(--line-dark);
  }

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

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

  .site-nav .nav-cta {
    margin-top: 14px;
    padding: 12px 18px;
    text-align: center;
    border: 0;
  }

  .hero {
    min-height: auto;
    padding-top: 124px;
    grid-template-columns: 1fr;
  }

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

  .hero-portrait {
    width: min(86vw, 560px);
    justify-self: center;
  }

  .portrait-frame {
    height: min(92vw, 660px);
    max-height: none;
  }

  .portrait-rail {
    display: none;
  }

  .section-intro {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .practice-card-featured,
  .practice-card:nth-child(2),
  .practice-card:nth-child(3),
  .practice-card {
    grid-column: span 6;
  }

  .profile-section {
    grid-template-columns: minmax(0, 1fr) minmax(260px, 0.65fr);
  }

  .profile-quote {
    display: none;
  }

  .intake-section {
    grid-template-columns: 1fr;
  }

  .intake-intro {
    position: static;
  }

  .privacy-section {
    grid-template-columns: 1fr;
  }

  .official-note {
    grid-template-columns: 1fr;
  }

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

  .footer-legal {
    grid-column: 1 / -1;
  }
}

@media (max-width: 600px) {
  .brand strong {
    font-size: 0.82rem;
  }

  .hero {
    padding-inline: 22px;
  }

  .hero h1 {
    font-size: clamp(2.85rem, 14vw, 4.5rem);
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 18px;
  }

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

  .text-link {
    text-align: center;
  }

  .hero-facts {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .hero-facts li,
  .hero-facts li + li {
    padding: 14px 16px 14px 0;
    border-left: 0;
    border-bottom: 1px solid var(--line-dark);
  }

  .hero-facts li:nth-child(even) {
    padding-left: 16px;
    border-left: 1px solid var(--line-dark);
  }

  .hero-facts li:last-child {
    grid-column: 1 / -1;
  }

  .hero-portrait {
    width: 100%;
  }

  .portrait-frame {
    height: 132vw;
    max-height: 650px;
  }

  .portrait-note {
    position: relative;
    right: auto;
    bottom: auto;
    width: calc(100% - 30px);
    margin: -48px 15px 0;
  }

  .signal-strip {
    justify-content: flex-start;
  }

  .section {
    padding-inline: 22px;
  }

  .practice-grid {
    display: block;
  }

  .practice-card,
  .practice-card-featured {
    min-height: auto;
    margin-bottom: 14px;
  }

  .card-index {
    margin-bottom: 28px;
  }

  .process-list li {
    grid-template-columns: 62px minmax(0, 1fr);
  }

  .process-count {
    font-size: 2rem;
  }

  .profile-section {
    grid-template-columns: 1fr;
  }

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

  .intake-form {
    padding: 24px 18px;
  }

  .privacy-section {
    padding-inline: 22px;
  }

  .site-footer {
    padding-inline: 22px;
    grid-template-columns: 1fr;
  }

  .footer-legal {
    grid-column: auto;
  }

  .policy-main {
    padding-inline: 22px;
  }

  .policy-content section {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}

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

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